:root {
	--bg: #0c0c10;
	--accent: #f8d34e;
	--accent-2: #ff4f5e;
	--text: #f7f7fb;
	--muted: #a9abbb;
	--card: rgba(255, 255, 255, 0.04);
	--border: rgba(255, 255, 255, 0.08);
	--radius: 18px;
	--shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
	--font: 'Space Grotesk', 'Segoe UI', sans-serif;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	min-height: 100vh;
	overflow: hidden;
	font-family: var(--font);
	background: radial-gradient(circle at 20% 20%, rgba(255, 79, 94, 0.18), transparent 32%),
		radial-gradient(circle at 80% 10%, rgba(248, 211, 78, 0.22), transparent 30%),
		radial-gradient(circle at 50% 90%, rgba(255, 255, 255, 0.08), transparent 35%),
		var(--bg);
	color: var(--text);
}

a {
	color: inherit;
	text-decoration: none;
}

.hero {
	position: relative;
	min-height: 100vh;
	display: grid;
	place-items: center;
	padding: 32px;
	isolation: isolate;
}

.hero__bg {
	position: absolute;
	inset: 16px;
	border: 1px solid var(--border);
	border-radius: 28px;
	backdrop-filter: blur(18px);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
	box-shadow: var(--shadow);
	z-index: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero__content {
	position: relative;
	z-index: 1;
	width: 90%;
	max-width: 100%;
	display: grid;
	gap: 16px;
}

.hero__brand h1 {
	margin: 6px 0;
	font-size: clamp(36px, 6vw, 60px);
	letter-spacing: -1px;
}

.hero__brand .lead {
	margin: 8px 0 0;
	max-width: 620px;
	line-height: 1.6;
	color: var(--muted);
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.06);
	font-size: 13px;
	color: var(--text);
}

.badge::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 6px rgba(248, 211, 78, 0.2);
}

.hero__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 8px;
}

.info-card {
	padding: 18px 18px 20px;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	background: var(--card);
	backdrop-filter: blur(12px);
}

.info-card h2 {
	margin: 0 0 10px;
	font-size: 20px;
}

.info-card p {
	margin: 0 0 10px;
	line-height: 1.5;
	color: var(--muted);
}

.link {
	font-weight: 600;
	color: var(--accent);
}

.contact-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 10px 0;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid var(--border);
	font-weight: 600;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button.primary {
	background: linear-gradient(135deg, var(--accent), #ffb347);
	color: #0c0c10;
	border: none;
}

.button.secondary {
	background: rgba(255, 255, 255, 0.08);
	color: var(--text);
}

.button.ghost {
	background: transparent;
	color: var(--text);
}

.button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.hours {
	margin-top: 10px;
	color: var(--muted);
	font-size: 12px;
	text-align: left;
}

.hero__cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	padding: 16px 18px;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.05);
}

.tagline {
	font-weight: 600;
	letter-spacing: 0.2px;
	text-align: center;
}

.cta-buttons {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

.loader {
	position: fixed;
	inset: 0;
	display: grid;
	place-items: center;
	background: #050507;
	z-index: 10;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader__content {
	display: grid;
	place-items: center;
	gap: 12px;
}

.loader__logo {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 4px;
	color: var(--text);
	opacity: 0;
	transform: translateY(30px);
	animation: rise-in 0.8s ease-out forwards;
}

.loader__ring {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	border: 3px solid rgba(255, 255, 255, 0.1);
	border-top-color: var(--accent);
	opacity: 0;
	animation:
	  fade-in 0.4s ease forwards 1s,
	  spin-once 1.4s ease-in-out 1 forwards 1s;
}

.loader__text {
	margin: 0;
	color: var(--muted);
	letter-spacing: 1px;
	font-size: 13px;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(18px);
	animation: rise-in 0.8s ease-out forwards 0.35s;
}

.loader--hide {
	opacity: 0;
	visibility: hidden;
}

.showcase {
  position: fixed;
  inset: 0;
  opacity: 0;
  z-index: 9; /* under loader(10), above hero */
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.showcase::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 50% 40%, rgba(0,0,0,0.15), rgba(0,0,0,0.55));
}

.showcase__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
	filter: blur(4px) saturate(75%);
  transform-origin: center;
	backface-visibility: hidden;
	will-change: transform, opacity;
}

.showcase__img.is-active {
  animation: showcase-seq 1.7s ease-in-out forwards;
}

body.showcase-active .showcase { opacity: 1; }
.showcase.done { opacity: 0; visibility: hidden; transition: opacity 0.6s ease, visibility 0.6s ease; }

.hero__content { opacity: 0; transform: translateY(10px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-hero .hero__content { opacity: 1; transform: translateY(0); }
.reveal-hero .hero__bg { opacity: 1; visibility: visible; }

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

@keyframes spin-once {
	to {
		transform: rotate(720deg);
	}
}

@keyframes rise-in {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes showcase-seq {
	/* Keep images upright; subtle anti-clockwise tilt and zoom to avoid background edges */
	0%   { opacity: 0;   transform: rotate(-10deg) scale(1.24); }
	12%  { opacity: 1;   transform: rotate(-12deg) scale(1.26); }
	70%  { opacity: 1;   transform: rotate(-16deg) scale(1.30); }
	100% { opacity: 0;   transform: rotate(-18deg) scale(1.33); }
}

@media (max-width: 640px) {
	.hero {
		padding: 24px 18px;
	}

	.hero__bg {
		inset: 8px;
	}

	.hero__cta {
		flex-direction: column;
		align-items: flex-start;
	}
}
