/* ================================================
   ROOT
================================================ */
:root {
  --bg: #080807;
  --surface: rgba(255, 255, 255, 0.055);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f0ebe0;
  --muted: rgba(240, 235, 224, 0.62);
  --accent: #ff6a3d;
  --accent-2: #ffcf6f;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  --shadow-card: 0 12px 48px rgba(0, 0, 0, 0.45);
}

/* ================================================
   RESET & BASE
================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  overscroll-behavior-x: none;
  -webkit-font-smoothing: antialiased;
  touch-action: pan-y pinch-zoom;
}

main {
  overflow-x: hidden;
  max-width: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 5% 2%, rgba(255, 106, 61, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 92% 8%, rgba(255, 207, 111, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 95%, rgba(255, 106, 61, 0.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

/* ================================================
   NOISE & FIXED CHROME
================================================ */
.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
  z-index: 25;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  z-index: 35;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px rgba(255, 106, 61, 0.65);
}

.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 61, 0.08) 0%, transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: opacity 0.4s;
  display: none;
}

@media (hover: hover) {
  .cursor-glow {
    display: block;
  }
}

/* ================================================
   LOADER
================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition:
    opacity 0.55s ease,
    transform 0.65s cubic-bezier(0.7, 0, 0.3, 1);
}

.loader.loaded {
  opacity: 0;
  transform: translateY(-6%);
  pointer-events: none;
}

.loader-eyebrow {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-2);
  opacity: 0;
  animation: fadeUp 0.5s ease 0.1s forwards;
}

.loader-brand {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(5.5rem, 18vw, 13rem);
  line-height: 0.88;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.22);
  opacity: 0;
  animation: loaderReveal 0.95s cubic-bezier(0.2, 0.9, 0.2, 1) 0.05s forwards;
}

/* ================================================
   NAV
================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.3rem 1.2rem;
  transition:
    background 0.35s ease,
    backdrop-filter 0.35s ease,
    padding 0.35s ease,
    border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.nav.nav-scrolled {
  background: rgba(8, 8, 7, 0.88);
  backdrop-filter: blur(22px);
  padding-block: 0.95rem;
  border-bottom-color: var(--border);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.nav-logo strong {
  font-size: 0.98rem;
  font-weight: 800;
}

.nav-logo small {
  font-size: 0.72rem;
  color: var(--muted);
}

.nav-links {
  display: none;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  font-size: 0.88rem;
  padding: 0.65rem 1.4rem;
  min-height: 0;
}

/* ================================================
   LAYOUT
================================================ */
.section {
  width: 100%;
  max-width: 100%;
  padding-inline: 1.2rem;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  margin: 0 0 0.85rem;
  color: var(--accent-2);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow-dot {
  display: inline-block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 0.6rem;
  box-shadow: 0 0 10px rgba(255, 106, 61, 0.8);
}

.section-title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.94;
  letter-spacing: 0.02em;
}

.section-title em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
}

/* ================================================
   BUTTONS
================================================ */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.2rem;
  padding: 0 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent) 0%, #ff8952 100%);
  color: #120e0a;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(255, 106, 61, 0.28);
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(255, 106, 61, 0.4), 0 0 60px rgba(255, 106, 61, 0.1);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-color: var(--border);
  box-shadow: none;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

/* ================================================
   REVEAL SYSTEM
================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.99);
  transition:
    opacity 0.85s cubic-bezier(0.2, 0.9, 0.2, 1) var(--delay, 0s),
    transform 0.85s cubic-bezier(0.2, 0.9, 0.2, 1) var(--delay, 0s);
}

.reveal[data-delay="1"] { --delay: 0.12s; }
.reveal[data-delay="2"] { --delay: 0.22s; }
.reveal[data-delay="3"] { --delay: 0.34s; }
.reveal[data-delay="4"] { --delay: 0.46s; }

.reveal[data-from="left"]   { transform: translateX(-52px) scale(0.99); }
.reveal[data-from="right"]  { transform: translateX(52px) scale(0.99); }
.reveal[data-from="bottom"] { transform: translateY(52px) scale(0.99); }

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ================================================
   INTRO (first screen — brand splash)
================================================ */
.intro {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 2rem 1.2rem 5rem;
}

.intro-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.intro-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.ib-1 {
  width: 70vw;
  height: 70vw;
  max-width: 800px;
  max-height: 800px;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 106, 61, 0.22) 0%, transparent 65%);
  animation: blobFloat1 14s ease-in-out infinite;
}

.ib-2 {
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 207, 111, 0.14) 0%, transparent 65%);
  animation: blobFloat2 17s ease-in-out infinite;
}

.ib-3 {
  width: 35vw;
  height: 35vw;
  max-width: 420px;
  max-height: 420px;
  top: 40%;
  left: -6%;
  background: radial-gradient(circle, rgba(255, 106, 61, 0.11) 0%, transparent 65%);
  animation: blobFloat3 12s ease-in-out infinite;
}

.intro-orbit {
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 50%;
}

.io-1 {
  width: min(90vw, 640px);
  height: min(90vw, 640px);
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(255, 255, 255, 0.08);
  animation: spinCCW 35s linear infinite;
}

.io-2 {
  width: min(62vw, 440px);
  height: min(62vw, 440px);
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 106, 61, 0.13);
  animation: spinCW 22s linear infinite;
}

.io-3 {
  width: min(40vw, 280px);
  height: min(40vw, 280px);
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 207, 111, 0.1);
  animation: spinCCW 14s linear infinite;
}

.intro-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 61, 0.2), transparent);
  left: 0;
  right: 0;
}

.il-1 {
  top: 35%;
  animation: linePulse 5s ease-in-out infinite;
}

.il-2 {
  bottom: 30%;
  animation: linePulse 5s ease-in-out 2s infinite;
}

.il-3 {
  top: 62%;
  width: 60%;
  left: 20%;
  right: auto;
  background: linear-gradient(90deg, transparent, rgba(255, 207, 111, 0.14), transparent);
  animation: linePulse 5s ease-in-out 3.5s infinite;
}

/* floating shapes on intro */
.is {
  position: absolute;
  pointer-events: none;
}

/* large unfilled circle — top left */
.is-circle-lg {
  width: min(18vw, 200px);
  height: min(18vw, 200px);
  top: 8%;
  left: 4%;
  border-radius: 50%;
  border: 1px solid rgba(255, 106, 61, 0.28);
  animation: floatA 10s ease-in-out infinite;
}

/* small filled circle — bottom right */
.is-circle-sm {
  width: min(9vw, 80px);
  height: min(9vw, 80px);
  bottom: 14%;
  right: 7%;
  border-radius: 50%;
  background: rgba(255, 106, 61, 0.18);
  filter: blur(3px);
  animation: floatC 8s ease-in-out infinite;
}

/* rotated square — top right */
.is-square {
  width: min(7vw, 64px);
  height: min(7vw, 64px);
  top: 12%;
  right: 9%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  animation: floatB 11s ease-in-out infinite;
}

/* diamond — bottom left */
.is-diamond {
  width: min(5vw, 46px);
  height: min(5vw, 46px);
  bottom: 18%;
  left: 8%;
  background: rgba(255, 207, 111, 0.25);
  transform: rotate(45deg);
  animation: floatD 13s ease-in-out infinite;
}

/* thin ring — mid left */
.is-ring-a {
  width: min(12vw, 110px);
  height: min(12vw, 110px);
  top: 44%;
  left: 3%;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 207, 111, 0.28);
  animation: spinCCW 18s linear infinite;
}

/* thin ring — mid right */
.is-ring-b {
  width: min(8vw, 70px);
  height: min(8vw, 70px);
  top: 55%;
  right: 4%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  animation: spinCW 12s linear infinite;
}

/* horizontal pill — top */
.is-pill-h {
  width: min(14vw, 130px);
  height: min(2.5vw, 22px);
  top: 6%;
  right: 22%;
  border-radius: 999px;
  border: 1px solid rgba(255, 106, 61, 0.24);
  animation: floatA 9s ease-in-out 1s infinite;
}

/* vertical pill — bottom */
.is-pill-v {
  width: min(2.5vw, 22px);
  height: min(14vw, 130px);
  bottom: 6%;
  left: 20%;
  border-radius: 999px;
  border: 1px solid rgba(255, 207, 111, 0.2);
  animation: floatB 12s ease-in-out 2s infinite;
}

/* cross lines — top right corner */
.is-cross-h,
.is-cross-v {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  top: 24%;
  right: 16%;
}

.is-cross-h {
  width: min(5vw, 48px);
  height: 1px;
  animation: linePulse 4s ease-in-out infinite;
}

.is-cross-v {
  width: 1px;
  height: min(5vw, 48px);
  margin-top: calc(min(-2.5vw, -24px));
  margin-left: calc(min(2.5vw, 24px) - 0.5px);
  animation: linePulse 4s ease-in-out 0.5s infinite;
}

/* tiny accent dots */
.is-dot-a,
.is-dot-b,
.is-dot-c {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(255, 106, 61, 0.9);
  animation: chipPulse 2.8s ease-in-out infinite;
}

.is-dot-a { top: 28%; left: 14%; animation-delay: 0s; }
.is-dot-b { top: 72%; right: 18%; animation-delay: 1s; }
.is-dot-c { top: 18%; left: 42%; animation-delay: 1.8s; }

/* ✦ symbols */
.is-scissors,
.is-scissors-b {
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  color: rgba(255, 106, 61, 0.22);
  animation: spinCW 20s linear infinite;
  line-height: 1;
}

.is-scissors   { top: 78%; left: 5%;  animation-direction: normal; }
.is-scissors-b { top: 10%; right: 3%; animation-direction: reverse; }

.intro-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 80%);
  opacity: 0.35;
}

.intro-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.intro-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  opacity: 0;
  animation: fadeUp 0.7s ease 1.4s forwards;
}

.intro-h1 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(5rem, 22vw, 14rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ih-word {
  display: block;
  opacity: 0;
  transform: translateY(60px) skewY(5deg);
  animation: wordSlide 0.85s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

.ih-word:nth-child(1) { animation-delay: 1.55s; }
.ih-word:nth-child(2) { animation-delay: 1.7s; }
.ih-word:nth-child(3) { animation-delay: 1.85s; }

.ih-accent {
  color: transparent;
  background: linear-gradient(92deg, var(--accent-2) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.intro-tagline {
  margin: 0;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-style: italic;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 0.7s ease 2.1s forwards;
}

.intro-cta {
  margin-top: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 2.3s forwards;
}

@keyframes wordSlide {
  from { opacity: 0; transform: translateY(60px) skewY(5deg); }
  to   { opacity: 1; transform: translateY(0)    skewY(0deg); }
}

/* ================================================
   HERO
================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 5.5rem;
  padding-bottom: 3rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  overflow-x: hidden;
  max-width: 100%;
}

.hero > .hero-copy,
.hero > .hero-visual,
.hero > .hero-bg {
  min-width: 0;
}

/* --- Hero background decorations --- */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  will-change: transform;
}

.blob-1 {
  width: 55vw;
  height: 55vw;
  max-width: 700px;
  max-height: 700px;
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(255, 106, 61, 0.22) 0%, transparent 70%);
  animation: blobFloat1 13s ease-in-out infinite;
}

.blob-2 {
  width: 40vw;
  height: 40vw;
  max-width: 520px;
  max-height: 520px;
  bottom: 10%;
  left: -8%;
  background: radial-gradient(circle, rgba(255, 207, 111, 0.14) 0%, transparent 70%);
  animation: blobFloat2 16s ease-in-out infinite;
}

.blob-3 {
  width: 30vw;
  height: 30vw;
  max-width: 360px;
  max-height: 360px;
  top: 50%;
  left: 42%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 106, 61, 0.07) 0%, transparent 70%);
  animation: blobFloat3 11s ease-in-out infinite;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.orbit-1 {
  width: 28rem;
  height: 28rem;
  top: 5%;
  right: -4rem;
  border: 1px dashed rgba(255, 255, 255, 0.09);
  animation: spinCCW 30s linear infinite;
}

.orbit-2 {
  width: 18rem;
  height: 18rem;
  top: 12%;
  right: 0;
  border: 1px solid rgba(255, 106, 61, 0.14);
  animation: spinCW 20s linear infinite;
}

.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(ellipse 70% 60% at 70% 40%, black 20%, transparent 75%);
  opacity: 0.4;
}

.shape {
  position: absolute;
  will-change: transform;
}

.shape-a {
  top: 8%;
  right: 6%;
  width: 7rem;
  height: 7rem;
  background: linear-gradient(135deg, rgba(255, 106, 61, 0.88), rgba(255, 207, 111, 0.18));
  border-radius: 40% 60% 61% 39% / 44% 35% 65% 56%;
  animation: floatA 9s ease-in-out infinite;
}

.shape-b {
  left: 2%;
  top: 52%;
  width: 5.5rem;
  height: 5.5rem;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  animation: floatB 11s ease-in-out infinite;
}

.shape-c {
  bottom: 18%;
  right: 20%;
  width: 6rem;
  height: 6rem;
  border: 1.5px solid rgba(255, 207, 111, 0.38);
  border-radius: 50%;
  animation: floatC 8s ease-in-out infinite;
}

.shape-d {
  top: 65%;
  right: 5%;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 207, 111, 0.32);
  transform: rotate(45deg);
  animation: floatD 14s ease-in-out infinite;
}

.hero-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 61, 0.22), transparent);
}

.hl-1 {
  width: 50%;
  top: 38%;
  left: -5%;
  transform: rotate(-6deg);
  animation: linePulse 5s ease-in-out infinite;
}

.hl-2 {
  width: 40%;
  bottom: 22%;
  right: -2%;
  transform: rotate(4deg);
  animation: linePulse 5s ease-in-out 1.8s infinite;
}

/* --- Hero copy --- */
.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 1rem;
}

.hero-h1 {
  margin: 0 0 1rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4.5rem, 18vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.015em;
  overflow: hidden;
}

.hh-row {
  display: block;
  opacity: 0;
  transform: translateY(55px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.hh-row:nth-child(1) { transition-delay: 0.08s; }
.hh-row:nth-child(2) { transition-delay: 0.2s; }
.hh-row:nth-child(3) { transition-delay: 0.32s; }

.hh-accent {
  color: transparent;
  background: linear-gradient(92deg, var(--accent-2) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy.is-visible .hh-row {
  opacity: 1;
  transform: none;
}

.hero-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 46ch;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease 0.44s, transform 0.75s ease 0.44s;
}

.hero-copy.is-visible .hero-sub {
  opacity: 1;
  transform: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease 0.56s, transform 0.75s ease 0.56s;
}

.hero-copy.is-visible .hero-actions {
  opacity: 1;
  transform: none;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease 0.68s, transform 0.75s ease 0.68s;
}

.hero-copy.is-visible .hero-pills {
  opacity: 1;
  transform: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  font-size: 0.82rem;
}

.pill strong { font-weight: 700; }
.pill span  { color: var(--muted); }

.pill-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(255, 106, 61, 0.85);
}

/* --- Hero visual --- */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hv-stack {
  position: relative;
  min-height: 30rem;
  max-width: 100%;
  overflow-x: hidden;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hc-main {
  inset: 0 0 5.8rem 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hc-float {
  width: 44%;
  right: 0;
  bottom: 0;
  aspect-ratio: 0.7;
  border: 2px solid rgba(255, 255, 255, 0.18);
}

.hc-overlay {
  position: absolute;
  inset: auto 0.9rem 0.9rem 0.9rem;
  padding: 1rem 1.2rem;
  border-radius: 1.4rem;
  background: rgba(5, 5, 4, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hc-tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.3rem;
}

.hc-overlay strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.25;
}

.hc-badge {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(5, 5, 4, 0.75);
  backdrop-filter: blur(12px);
  font-size: 0.76rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--accent-2);
}

.hv-chip {
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  font-size: 0.82rem;
  font-weight: 600;
  max-width: calc(100% - 0.25rem);
  box-sizing: border-box;
  white-space: normal;
  overflow-wrap: anywhere;
}

.hv-chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(255, 106, 61, 0.9);
  animation: chipPulse 2.2s ease-in-out infinite;
}

/* ================================================
   MARQUEE
================================================ */
.marquee-wrap {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.marquee-row {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: marqueeL 24s linear infinite;
}

.marquee-rtl {
  animation: marqueeR 20s linear infinite;
}

.marquee-track span {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.25rem, 3vw, 2.1rem);
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}

.marquee-track i {
  font-style: normal;
  color: var(--accent);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.marquee-row-rev .marquee-track span {
  color: rgba(255, 207, 111, 0.5);
  font-size: clamp(0.95rem, 2vw, 1.5rem);
}

/* ================================================
   FEATURES
================================================ */
.features {
  padding-block: 6rem 4rem;
}

.feat-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.feat-lead {
  color: var(--muted);
  line-height: 1.75;
  max-width: 50ch;
  font-size: 0.98rem;
}

.feat-grid {
  display: grid;
  gap: 1rem;
}

.feat-card {
  position: relative;
  overflow: hidden;
  padding: 1.9rem 1.7rem;
  border-radius: 1.8rem;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.025) 100%);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  transition:
    border-color 0.35s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feat-card:hover {
  border-color: rgba(255, 106, 61, 0.38);
  transform: translateY(-5px);
}

.feat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 0.6rem;
  opacity: 0.85;
}

.feat-icon {
  width: 28px;
  height: 28px;
  color: var(--accent-2);
  margin-bottom: 1rem;
}

.feat-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.3rem;
  line-height: 1.1;
  font-weight: 800;
}

.feat-card p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 0.93rem;
  margin: 0;
}

.feat-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 106, 61, 0.14) 0%,
    transparent 55%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.feat-card:hover .feat-glow {
  opacity: 1;
}

/* ================================================
   GALLERY
================================================ */
.gallery {
  padding-block: 4rem;
}

.gallery-head {
  margin-bottom: 2.5rem;
}

.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gc {
  position: relative;
  overflow: hidden;
  border-radius: 1.8rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s;
}

.gc:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.gc-media {
  overflow: hidden;
}

.gc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.gc:hover .gc-media img {
  transform: scale(1.06);
}

.gc-info {
  padding: 1.25rem 1.4rem;
}

.gc-info h3 {
  margin: 0.2rem 0 0;
  font-size: 1.15rem;
  line-height: 1.1;
  font-weight: 800;
}

.gc-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ================================================
   STATS BAND
================================================ */
.stats-band {
  padding-block: 0.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.022);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 106, 61, 0.04) 0%,
    rgba(255, 207, 111, 0.04) 50%,
    rgba(255, 106, 61, 0.04) 100%
  );
}

.stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding-block: 2rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: 1.5rem 1rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}

.stat-num-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 9vw, 4.8rem);
  line-height: 1;
  color: transparent;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
}

.stat-sfx {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  color: var(--muted);
}

.stat-item p {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-div {
  display: none;
}

/* ================================================
   CONTACT + HOURS
================================================ */
.contact {
  padding-block: 5.5rem;
}

.contact-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.blob-contact {
  width: 60vw;
  height: 60vw;
  max-width: 680px;
  max-height: 680px;
  top: -20%;
  left: -10%;
  border-radius: 50%;
  filter: blur(72px);
  background: radial-gradient(circle, rgba(255, 207, 111, 0.1) 0%, transparent 65%);
  animation: blobFloat2 15s ease-in-out infinite;
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

.contact-info .section-title {
  margin-bottom: 1rem;
}

.contact-lead {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.98rem;
  margin-bottom: 1.8rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hours-panel {
  padding: 1.9rem;
  border-radius: 1.8rem;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.025) 100%);
  backdrop-filter: blur(16px);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
  transition:
    background 0.25s,
    border-color 0.25s;
}

.hours-list li span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hours-list li strong {
  font-size: 0.92rem;
  font-weight: 700;
}

.hours-list li.today {
  background: rgba(255, 106, 61, 0.1);
  border-color: rgba(255, 106, 61, 0.3);
}

.hours-list li.today span,
.hours-list li.today strong {
  color: var(--text);
}

.closed-txt {
  color: rgba(255, 255, 255, 0.3) !important;
}

/* ================================================
   FOOTER
================================================ */
.footer {
  position: relative;
  background: #060605;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 100%, rgba(255, 106, 61, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 45% at 85% 0%, rgba(255, 207, 111, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

.footer-glow-line {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 106, 61, 0.55) 30%,
    rgba(255, 207, 111, 0.55) 55%,
    rgba(255, 106, 61, 0.35) 80%,
    transparent 100%
  );
  box-shadow: 0 0 22px rgba(255, 106, 61, 0.25);
}

.footer-inner {
  position: relative;
  z-index: 1;
  padding-block: 3.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  text-align: center;
}

/* --- top row --- */
.footer-top {
  display: grid;
  gap: 2.5rem;
  width: 100%;
  justify-items: center;
}

/* brand block */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-brand strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.1;
}

.footer-brand span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* nav column */
.footer-nav-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 0.85rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: center;
}

.footer-nav a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.2s, letter-spacing 0.25s;
}

.footer-nav a:hover {
  color: var(--text);
  letter-spacing: 0.04em;
}

/* contact column */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.2s;
  line-height: 1.4;
}

a.footer-contact-row:hover {
  color: var(--accent);
}

.footer-contact-row svg {
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.85;
}

.footer-hours-mini {
  margin-top: 0.3rem;
  font-size: 0.82rem;
}

/* divider */
.footer-divider {
  height: 1px;
  background: var(--border);
}

/* bottom bar */
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
  text-align: center;
  width: 100%;
}

.footer-copy,
.footer-made {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
  margin: 0;
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 480px) {
  .button {
    white-space: normal;
    max-width: 100%;
    text-align: center;
    padding-inline: 1.1rem;
  }

  .nav-logo strong {
    font-size: 0.88rem;
  }

  .nav-logo small {
    display: none;
  }

  .nav-cta {
    padding-inline: 1rem;
    flex-shrink: 0;
  }
}

@media (min-width: 768px) {
  .section         { padding-inline: 2.2rem; }
  .nav             { padding-inline: 2.2rem; gap: 1rem; }
  .nav-links       { display: flex; }

  .nav-logo small {
    display: block;
  }

  .hero            { padding-top: 6rem; }

  .feat-head {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .feat-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: 1.2rem;
    align-items: stretch;
  }

  .gc-col {
    gap: 1.2rem;
  }

  .gc-tall {
    height: 100%;
  }

  .gc-tall .gc-media {
    height: calc(100% - 5rem);
    min-height: 22rem;
  }

  .gc-tall .gc-media img,
  .gc-wide .gc-media img,
  .gc-portrait .gc-media img {
    height: 100%;
  }

  .gc-wide .gc-media    { height: 20rem; }
  .gc-portrait .gc-media { height: 22rem; }

  .stats-inner {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.2rem;
  }

  .stat-div {
    display: block;
    width: 1px;
    background: var(--border);
    align-self: stretch;
  }

  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: start;
  }

  .footer-top {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
    justify-items: start;
  }

  .footer-nav { align-items: flex-start; }
  .footer-contact { align-items: flex-start; }
  .footer-brand { text-align: left; }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
}

@media (min-width: 960px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    min-height: 100svh;
  }

  .hv-stack { min-height: 36rem; }
}

@media (min-width: 1200px) {
  .section { padding-inline: 3.5rem; }
  .nav     { padding-inline: 3.5rem; }

  .hero {
    gap: 4rem;
    min-height: 105svh;
  }

  .feat-grid  { gap: 1.6rem; }
  .gallery-grid { gap: 1.6rem; }
}

/* ================================================
   REDUCED MOTION
================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .hh-row,
  .hero-sub,
  .hero-actions,
  .hero-pills {
    opacity: 1;
    transform: none;
  }

  .loader { display: none; }
}

/* ================================================
   KEYFRAMES
================================================ */
@keyframes loaderReveal {
  0%   { opacity: 0; transform: translateY(30px) scaleY(0.82); -webkit-text-stroke-color: rgba(255, 106, 61, 0.08); }
  55%  { opacity: 1; -webkit-text-stroke-color: rgba(255, 106, 61, 0.75); }
  100% { opacity: 1; transform: translateY(0) scaleY(1); -webkit-text-stroke-color: rgba(255, 255, 255, 0.22); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-3%, 4%) scale(1.04); }
  66%       { transform: translate(3%, -3%) scale(0.97); }
}

@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(4%, -5%) scale(1.06); }
  70%       { transform: translate(-2%, 3%) scale(0.96); }
}

@keyframes blobFloat3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%       { transform: translate(-48%, -52%) scale(1.09); }
}

@keyframes spinCW  { to { transform: rotate(360deg); } }
@keyframes spinCCW { to { transform: rotate(-360deg); } }

@keyframes floatA {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%       { transform: translate(-10px, 14px) rotate(10deg); }
}

@keyframes floatB {
  0%, 100% { transform: translate(0, 0) rotate(25deg); }
  50%       { transform: translate(24px, -18px) rotate(38deg); }
}

@keyframes floatC {
  0%, 100% { transform: scale(0.9); opacity: 0.5; }
  50%       { transform: scale(1.18); opacity: 1; }
}

@keyframes floatD {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50%       { transform: rotate(66deg) translate(8px, -12px); }
}

@keyframes linePulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 0.85; }
}

@keyframes chipPulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 14px rgba(255, 106, 61, 0.9); }
  50%       { transform: scale(1.3); box-shadow: 0 0 22px rgba(255, 106, 61, 0.55); }
}

@keyframes marqueeL {
  to { transform: translateX(-50%); }
}

@keyframes marqueeR {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
