/* ════════════════════════════════════════════════════════════════
   DESIGN TOKENS
   ════════════════════════════════════════════════════════════════ */
:root {
  --bg: #080808;
  --surface: #111111;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f0f0ee;
  --muted: #666;
  --accent: #f1da94;
  /* motorsport gold — used sparingly */
  --header-h: 68px;
  --max-w: 1120px;
  --pad-x: clamp(1.5rem, 5vw, 5rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ════════════════════════════════════════════════════════════════
   RESET
   ════════════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ════════════════════════════════════════════════════════════════
   BASE
   Wheel is captured for frame-scrubbing; body scroll is disabled
   during the animation phase. JS re-enables it after transition.
   ════════════════════════════════════════════════════════════════ */
html,
body {
  height: 100%;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ════════════════════════════════════════════════════════════════
   ANIMATION STAGE
   position:fixed, no CSS filter, no transform, no opacity applied
   to this element → avoids creating a stacking context that would
   interfere with canvas compositing.
   ════════════════════════════════════════════════════════════════ */
#stage {
  position: fixed;
  inset: 0;
  overflow: hidden;
  cursor: default;
  user-select: none;
  z-index: 1;
}

/* ── Canvas ──────────────────────────────────────────────────── */
#canvas {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── Vignette ────────────────────────────────────────────────── */
/* Pure CSS gradient. No filter property → no extra compositing layer. */
#vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(ellipse at center,
      transparent 50%,
      rgba(0, 0, 0, 0.62) 100%);
}

/* ── Film grain ──────────────────────────────────────────────── */
/* SVG filter lives inside the data-URI, NOT on the DOM element,
   so no CSS compositing layer is created. */
#grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  z-index: 3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ════════════════════════════════════════════════════════════════
   INTRO TEXT OVERLAY  (#overlay-intro)
   Visible from frame 00 (opacity:1). JS fades it OUT as the
   animation progresses. No translateY — it stays anchored.
   ════════════════════════════════════════════════════════════════ */
#overlay-intro {
  position: fixed;
  top: clamp(88px, 18vh, 160px);
  left: 50%;
  transform: translateX(-50%);
  width: min(92vw, 900px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  pointer-events: none;
  z-index: 50;
  opacity: 1;
  transition: opacity 0.04s linear;
}

/* ════════════════════════════════════════════════════════════════
   END TEXT OVERLAY  (#overlay-end)
   Hidden at start (opacity:0). JS fades it IN near the last frame.
   CENTERED inside the green rectangle (central area above the car).
   No position animation — CTA appears in place with opacity fade only.
   ════════════════════════════════════════════════════════════════ */
#overlay-end {
  position: fixed;
  top: 36%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 900px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  pointer-events: none;
  z-index: 50;
  opacity: 0;
  transition: opacity 0.04s linear;
}

#overlay-scroll-label {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 1px 8px rgba(0, 0, 0, 0.6),
    0 0 12px rgba(255, 255, 255, 0.12),
    0 0 24px rgba(255, 255, 255, 0.08);
  margin-bottom: 0.75rem;
}

.overlay-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(13px, calc(1.1vw + 3px), 17px);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--accent);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
  margin-bottom: 0.8em;
}

.overlay-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 0.85em;
  opacity: 0.9;
}

#overlay-title {
  font-family: 'Teko', sans-serif;
  font-weight: 700;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(175deg, #ffffff 45%, rgba(200, 164, 106, 0.72) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 32px rgba(200, 164, 106, 0.15));
}

#overlay-sub2 {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(13px, calc(1.0vw + 3px), 16px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.9em;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.9),
    0 2px 10px rgba(0, 0, 0, 0.65);
}

#overlay-sub2::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(200, 164, 106, 0.45);
  margin: 0.9em auto 0;
}

/* ════════════════════════════════════════════════════════════════
   ENTER HINT (arrow down + circular progress)
   Inside overlay, directly below "Coaching & Consulting".
   Only visible when user scrolls down to enter (enterProgressAccum > 0).
   Progress is scroll-driven: scroll down fills, scroll up empties.
   ════════════════════════════════════════════════════════════════ */
.enter-hint {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.enter-hint.is-active {
  display: flex;
  opacity: 1;
}


.enter-hint__icon {
  position: relative;
  width: 48px;
  height: 48px;
  animation: enter-hint-bounce 2.2s ease-in-out infinite;
}

@keyframes enter-hint-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.enter-hint__progress {
  width: 48px;
  height: 48px;
  display: block;
  transform: rotate(-90deg);
  /* start from top; fills clockwise as user scrolls down */
}

.enter-hint__track {
  stroke: rgba(255, 255, 255, 0.15);
}

.enter-hint__fill {
  stroke: var(--accent);
  transition: stroke-dashoffset 0.12s ease-out;
}

.enter-hint__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  color: #fff;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.5));
}

/* ════════════════════════════════════════════════════════════════
   SITE PAGE
   Fixed full-screen container, z-index above stage.
   Initially invisible and non-interactive.
   Has its own overflow-y:auto so it scrolls internally,
   independent of body overflow:hidden.
   .is-visible is added by JS after the stability threshold.
   ════════════════════════════════════════════════════════════════ */
#site {
  position: fixed;
  inset: 0;
  z-index: 200;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--bg);

  /* Hidden state */
  opacity: 0;
  transform: translateY(22px);
  pointer-events: none;
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
}

/* Visible state – added by JS */
#site.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ════════════════════════════════════════════════════════════════
   EXIT HINT (arrow + circular progress)
   Progress is scroll-driven: scroll up at top fills the circle,
   scroll down empties it. User can cancel anytime.
   ════════════════════════════════════════════════════════════════ */
.exit-hint {
  position: absolute;
  top: 50%;
  left: 38%;
  transform: translate(-50%, -50%);
  /* Offset left to avoid overlapping nav links */
  z-index: 15;
  display: flex;
  flex-direction: row;
  /* Horizontal style */
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.exit-hint.is-active {
  opacity: 1;
}

.exit-hint__icon {
  position: relative;
  width: 40px;
  height: 40px;
}

.exit-hint__progress {
  width: 40px;
  height: 40px;
  display: block;
  transform: rotate(-90deg);
}

.exit-hint__track {
  stroke: rgba(255, 255, 255, 0.18);
}

.exit-hint__fill {
  stroke: var(--accent);
  transition: stroke-dashoffset 0.12s ease-out;
}

.exit-hint__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  color: #fff;
}

.exit-hint__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════════════════
   HEADER
   sticky inside the #site overflow container.
   Uses a thin bottom border instead of a background blur
   (backdrop-filter avoided completely).
   ════════════════════════════════════════════════════════════════ */
#site-header {
  position: sticky;
  top: 0;
  padding: 60px;
  margin-bottom: 0px;
  z-index: 10;
  height: var(--header-h);
  background: rgba(8, 8, 8, 0.96);
  border-bottom: 1px solid var(--border);
  transform: translateY(0);
  transition: transform 0.35s ease;
}

#site-header.header-hidden {
  transform: translateY(-100%);
}

.header-inner {
  position: relative;
  /* Relative for exit-hint absolute centering */
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--pad-x) 0 clamp(1rem, 3vw, 1.5rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}

#site-header nav {
  display: flex;
  gap: clamp(4rem, 3vw, 4rem);
  align-items: center;
}

#site-header nav a {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

#site-header nav a:hover {
  color: var(--accent)
}

/* ════════════════════════════════════════════════════════════════
   SHARED SECTION PRIMITIVES
   ════════════════════════════════════════════════════════════════ */
.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem var(--pad-x);
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.section-inner--narrow {
  max-width: 680px;
}

/* Two-column split (label left / body right) */
.section-inner--split {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

/* Eyebrow label (small caps, accent colour) */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* Large display title (Teko) */
.display-title {
  font-family: 'Teko', sans-serif;
  font-weight: 700;
  font-size: clamp(3.5rem, 8vw, 8rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--text);
}

/* Section title (Teko, slightly smaller) */
.section-title {
  font-family: 'Teko', sans-serif;
  font-weight: 700;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--text);
}

/* ── CTA Button ─────────────────────────────────────────────── */
.btn-cta {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0.75rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--text);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-cta:hover {
  background: var(--accent);
  color: var(--bg);
}

/* ════════════════════════════════════════════════════════════════
   HERO SECTION (#home)
   ════════════════════════════════════════════════════════════════ */
.section--hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: flex-start;
  padding: var(--header-h) var(--pad-x) 0 clamp(1rem, 3vw, 1.5rem);
  background: none;
}

@media (min-width: 1024px) {
  .section--hero {
    min-height: 110vh;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url('./img/5.JPEG');
  background-size: cover;
  background-position: center 62%;
  background-repeat: no-repeat;
  filter: contrast(1.1) saturate(1.1) brightness(1.02);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Darken heavily on the left, but leave the bottom right fully transparent/less dense */
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.96) 0%, rgba(8, 8, 8, 0.5) 45%, transparent 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.4) 0%, transparent 40%, rgba(8, 8, 8, 0.05) 100%);
}

@media (min-width: 1024px) {
  .hero-bg {
    background-position: 50% 67%;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: left;
  margin-left: 60px;
  padding-left: 0;
  max-width: 600px;
}

@media (max-width: 1024px) {
  .hero-inner {
    max-width: 500px;
  }
}

@media (max-width: 767px) {
  .section--hero {
    min-height: 100vh;
  }

  .hero-bg {
    background-position: center 62%;
  }

  .hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    /* Aggressive gradient for mobile legibility over center-crop */
    background: linear-gradient(to right, rgba(8, 8, 8, 0.95) 0%, rgba(8, 8, 8, 0.6) 65%, rgba(8, 8, 8, 0.2) 100%);
  }
}

.hero-tag {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  margin-left: 5px;
}

.hero-title {
  font-family: 'Teko', sans-serif;
  font-weight: 700;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 300;
  color: #e0e0e0;
  line-height: 1.6;
  max-width: 44ch;
  margin-bottom: 30px;
  margin-top: 0;
}

.btn-cta--hero {
  background: #ffffff;
  color: #000000;
  margin-top: 0;
}

.btn-cta--hero:hover {
  background: #d4a253;
  color: #ffffff;
}

.br-desktop {
  display: none;
}

@media (min-width: 768px) {
  .br-desktop {
    display: inline;
  }
}

/* ════════════════════════════════════════════════════════════════
   SERVICES SECTION (#services)
   ════════════════════════════════════════════════════════════════ */
.section--services {
  background: #000000;
  padding: 8rem var(--pad-x);
  min-height: auto;
}

.section-inner--services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  text-align: center;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.service-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: #aaaaaa;
}

@media (max-width: 1024px) {
  .section-inner--services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .section-inner--services {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ════════════════════════════════════════════════════════════════
   ACHIEVEMENTS SECTION (#achievements)
   ════════════════════════════════════════════════════════════════ */
.section--achievements {
  position: relative;
  padding: 8rem var(--pad-x);
  min-height: 50vh;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.achievements-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url('./img/logo/bg-section-service.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.achievements-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.4) 0%, rgba(8, 8, 8, 0.85) 100%);
}

.section-inner--achievements {
  position: relative;
  z-index: 1;
  text-align: center;
}

.achievements-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.achievement-list {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.achievement-list p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-style: italic;
  font-weight: 500;
  color: #f0f0ee;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* ════════════════════════════════════════════════════════════════
   ABOUT SECTION (#about)
   ════════════════════════════════════════════════════════════════ */
.section--about {
  background: var(--bg);
  border-top: 2px solid var(--border);
  padding-top: 0;
  min-height: auto;
  display: block;
  align-items: stretch;
}

.about-hero {
  height: 260px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero::before {
  display: none;
}

.about-hero-bg-text {
  position: absolute;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(130px, 26vw, 280px);
  color: rgba(201, 168, 76, 0.15);
  letter-spacing: -4px;
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
  top: 50%;
  transform: translateY(-50%);
}

.about-hero-content {
  position: relative;
  text-align: center;
}

.about-hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  letter-spacing: 6px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.8;
}

.about-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 9vw, 96px);
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 0.9;
  color: var(--text);
}

.about-hero-title span {
  color: var(--accent);
}

.section-inner--about {
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--pad-x) 4rem;
}

.about-section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.about-section-header:first-of-type {
  margin-top: 2rem;
}

.about-section-header::before,
.about-section-header::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.about-section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 6px;
  color: #f5d97a;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.about-timeline {
  position: relative;
}

.about-timeline::before {
  display: none;
}

.tl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0 40px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.tl-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.tl-year {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: #f8e088;
  text-align: center;
  padding-top: 2px;
  line-height: 1.3;
  margin-bottom: 8px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(248, 224, 136, 0.4);
}

.tl-body {
  text-align: center;
}

.tl-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.tl-subtitle {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
  line-height: 1.6;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.tl-badge {
  display: block;
  margin: 8px auto 0;
  text-align: center;
  padding: 4px 12px;
  background: rgba(201, 168, 76, 0.2);
  border: 2px solid rgba(241, 218, 148, 0.6);
  border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: #f5d97a;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.tl-sabbatical .tl-year {
  opacity: 0.5;
}

.tl-sabbatical .tl-title {
  opacity: 0.4;
  font-weight: 400;
}


@media (max-width: 600px) {
  .tl-title {
    font-size: 15px;
  }
}

/* ════════════════════════════════════════════════════════════════
   GALLERY CAROUSEL (inside About)
   ════════════════════════════════════════════════════════════════ */
.about-gallery {
  margin-top: 5rem;
  margin-left: calc(50% - 36vw);
  margin-right: calc(50% - 36vw);
  width: 72vw;
  padding: 5rem var(--pad-x);
  border-top: 2px solid var(--border);
  box-sizing: border-box;
}

.about-gallery .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.about-gallery .section-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #c9a84c;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(11px, 2.2vw, 16px);
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.about-gallery .section-header .eyebrow::before,
.about-gallery .section-header .eyebrow::after {
  content: '';
  width: clamp(30px, 4vw, 60px);
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a84c);
}
.about-gallery .section-header .eyebrow::after {
  background: linear-gradient(90deg, #c9a84c, transparent);
}

.about-gallery .section-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 6.5vw, 80px);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}

.about-gallery .section-header h2 span {
  color: #c9a84c;
}

.about-gallery .carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
}

.about-gallery .carousel-track-container {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.about-gallery .carousel-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

.about-gallery .slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16/8;
  overflow: hidden;
  cursor: pointer;
}

.about-gallery .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
  filter: brightness(0.9);
}

.about-gallery .slide:hover img {
  transform: scale(1.04);
}

.about-gallery .slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #c9a84c 30%, #f5d78e 50%, #c9a84c 70%, transparent 100%);
  z-index: 10;
  opacity: 0;
  transition: opacity 0.4s;
}

.about-gallery .slide.active::before { opacity: 1; }

.about-gallery .counter {
  position: absolute;
  top: 36px; right: 36px;
  z-index: 10;
  font-family: 'Barlow Condensed', sans-serif;
  display: flex;
  align-items: baseline;
  gap: 4px;
  pointer-events: none;
}

.about-gallery .counter-current {
  font-size: 52px;
  font-weight: 800;
  color: #c9a84c;
  line-height: 1;
}

.about-gallery .counter-sep {
  font-size: 22px;
  color: rgba(255,255,255,0.3);
}

.about-gallery .counter-total {
  font-size: 22px;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
}

.about-gallery .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  padding: 0;
  background: rgba(10,10,10,0.85);
  border: 1px solid rgba(201,168,76,0.3);
  color: #c9a84c;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: all 0.25s ease;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.about-gallery .nav-btn:hover {
  background: #c9a84c;
  color: #0a0a0a;
  border-color: #c9a84c;
}

.about-gallery .nav-btn svg {
  width: 22px; height: 22px;
  stroke-width: 2.5;
}

.about-gallery .nav-prev { left: -30px; }
.about-gallery .nav-next { right: -30px; }

.about-gallery .thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 6px 4px;
}

.about-gallery .thumbnails::-webkit-scrollbar { display: none; }

.about-gallery .thumb {
  flex-shrink: 0;
  width: 100px;
  height: 64px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 2px solid transparent;
  border-radius: 2px;
  transition: border-color 0.3s, opacity 0.3s;
  opacity: 0.45;
}

.about-gallery .thumb.active {
  border-color: #c9a84c;
  opacity: 1;
}

.about-gallery .thumb:hover { opacity: 0.75; }
.about-gallery .thumb.active:hover { opacity: 1; }

.about-gallery .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
  transition: transform 0.3s;
}

.about-gallery .thumb:hover img { transform: scale(1.08); }

.about-gallery .progress-bar {
  height: 3px;
  background: rgba(255,255,255,0.08);
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.about-gallery .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #c9a84c, #f5d78e);
  transition: width 0.1s linear;
}

.about-gallery .dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.about-gallery .dot {
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.about-gallery .dot.active {
  background: #c9a84c;
  width: 24px;
  border-radius: 3px;
}

@media (max-width: 640px) {
  .about-gallery .thumbnails { display: none; }
  .about-gallery .dots { display: flex; }
  .about-gallery .nav-prev { left: 8px; }
  .about-gallery .nav-next { right: 8px; }
}

/* ════════════════════════════════════════════════════════════════
   VIDEO SECTION (inside #about)
   ════════════════════════════════════════════════════════════════ */
.about-video-section {
  margin-top: 4rem;
  width: 100%;
}

.about-video-section .section-header {
  text-align: center;
  margin-bottom: 52px;
}

.about-video-section .section-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #c9a84c;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.about-video-section .section-header .eyebrow::before,
.about-video-section .section-header .eyebrow::after {
  content: '';
  width: 36px;
  height: 1px;
  background: #c9a84c;
}

.about-video-section .section-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fff;
  line-height: 1;
}

.about-video-section .section-header h2 span {
  color: #c9a84c;
}

.vid-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.vid-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c9a84c 20%, #f5d78e 50%, #c9a84c 80%, transparent);
  z-index: 5;
}

.vid-corner {
  position: absolute;
  width: 28px; height: 28px;
  z-index: 10;
  pointer-events: none;
}
.vid-corner-tl { top: -8px; left: -8px; border-top: 2px solid #c9a84c; border-left: 2px solid #c9a84c; }
.vid-corner-tr { top: -8px; right: -8px; border-top: 2px solid #c9a84c; border-right: 2px solid #c9a84c; }
.vid-corner-bl { bottom: -8px; left: -8px; border-bottom: 2px solid #c9a84c; border-left: 2px solid #c9a84c; }
.vid-corner-br { bottom: -8px; right: -8px; border-bottom: 2px solid #c9a84c; border-right: 2px solid #c9a84c; }

.vid-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
  cursor: pointer;
}

.vid-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.vid-container:hover video { transform: scale(1.015); }

.vid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.5) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: opacity 0.5s ease;
}

.vid-container.playing .vid-overlay {
  opacity: 0;
  pointer-events: none;
}

.vid-play-btn {
  position: relative;
  width: 84px; height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.vid-play-btn:hover { transform: scale(1.1); }

.vid-play-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.3);
  animation: vid-spin 8s linear infinite;
}

@keyframes vid-spin { to { transform: rotate(360deg); } }

.vid-play-circle {
  width: 72px; height: 72px;
  background: rgba(201,168,76,0.15);
  border: 1.5px solid #c9a84c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: background 0.3s;
  position: relative;
  z-index: 1;
}

.vid-play-btn:hover .vid-play-circle { background: rgba(201,168,76,0.3); }

.vid-play-icon {
  width: 0; height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #c9a84c;
  margin-left: 4px;
}

.vid-play-glow {
  position: absolute;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.25) 0%, transparent 70%);
  animation: vid-pulse 2.5s ease-in-out infinite;
}

@keyframes vid-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.6); opacity: 0; }
}

.vid-overlay-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.vid-badge {
  position: absolute;
  top: 20px; left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  padding: 6px 14px;
  backdrop-filter: blur(6px);
  z-index: 4;
}

.vid-badge-dot {
  width: 6px; height: 6px;
  background: #c9a84c;
  border-radius: 50%;
  animation: vid-blink 1.4s ease-in-out infinite;
}

@keyframes vid-blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.vid-badge-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
}

.vid-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 4;
  opacity: 1;
  transition: opacity 0.3s;
}

.vid-bar-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.vid-bar-btn:hover { transform: scale(1.15); }
.vid-bar-btn svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}

.vid-progress-track {
  flex: 1;
  height: 3px;
  background: rgba(201,168,76,0.25);
  cursor: pointer;
  position: relative;
  border-radius: 2px;
}

.vid-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #c9a84c, #f5d78e);
  border-radius: 2px;
  width: 0%;
  transition: width 0.2s linear;
  pointer-events: none;
}

.vid-progress-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px;
  background: #c9a84c;
  border-radius: 50%;
  left: 0%;
  pointer-events: none;
  transition: left 0.2s linear;
  opacity: 0;
}

.vid-progress-track:hover .vid-progress-thumb { opacity: 1; }

.vid-bar-time {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  white-space: nowrap;
  min-width: 72px;
  text-align: right;
}

.vid-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px 4px 0;
  text-align: center;
}

.vid-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.vid-desc {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 21px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════════
   CONTACT SECTION (#contact)
   ════════════════════════════════════════════════════════════════ */
.section--contact {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 6rem var(--pad-x);
  justify-content: center;
}

.section--contact .contact-section {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section--contact .contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #c9a84c;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section--contact .contact-eyebrow::before,
.section--contact .contact-eyebrow::after {
  content: '';
  width: 36px;
  height: 1px;
  background: #c9a84c;
}

.section--contact .contact-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(52px, 7vw, 86px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 16px;
}

.section--contact .contact-title span { color: #c9a84c; }

.section--contact .contact-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 56px;
  max-width: 480px;
}

.section--contact .contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section--contact .contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.section--contact .contact-field {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s, border-color 0.3s;
}

.section--contact .contact-field:focus-within {
  background: rgba(201,168,76,0.04);
  border-color: rgba(201,168,76,0.35);
  z-index: 1;
}

.section--contact .contact-field--full { margin-bottom: 12px; }

.section--contact .contact-field label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 18px 20px 0;
  transition: color 0.3s;
  text-align: left;
}

.section--contact .contact-field:focus-within label { color: #c9a84c; }

.section--contact .contact-field input,
.section--contact .contact-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 400;
  padding: 6px 20px 16px;
  outline: none;
  appearance: none;
  text-align: left;
}

.section--contact .contact-phone-wrap {
  display: flex;
  gap: 0;
  align-items: stretch;
}

.section--contact .contact-phone-code {
  flex-shrink: 0;
  width: auto;
  min-width: 88px;
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 400;
  padding: 6px 12px 16px 20px;
  outline: none;
  cursor: pointer;
  border-right: 1px solid rgba(255,255,255,0.08);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.5)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 28px;
}

.section--contact .contact-phone-code option {
  background: #1a1a1a;
  color: #fff;
}

.section--contact .contact-field--phone .contact-phone-wrap input {
  flex: 1;
  padding-left: 12px;
  border: none;
}

.section--contact .contact-field input::placeholder,
.section--contact .contact-field textarea::placeholder {
  color: rgba(255,255,255,0.18);
}

.section--contact .contact-field textarea {
  resize: none;
  height: 130px;
}

.section--contact .contact-field::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, #c9a84c, #f5d78e);
  transition: width 0.4s ease;
  z-index: 2;
}

.section--contact .contact-field:focus-within::after { width: 100%; }

.section--contact .contact-btn-submit {
  width: 100%;
  background: #c9a84c;
  border: none;
  color: #0a0a0a;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  padding: 20px;
  cursor: pointer;
  margin-top: 12px;
  position: relative;
  overflow: hidden;
  transition: letter-spacing 0.3s;
}

.section--contact .contact-btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #f5d78e;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.section--contact .contact-btn-submit:hover::before { transform: scaleX(1); }
.section--contact .contact-btn-submit:hover { letter-spacing: 7px; }
.section--contact .contact-btn-submit span { position: relative; z-index: 1; }

.section--contact .contact-divider {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 56px 0 48px;
}

.section--contact .contact-divider::before,
.section--contact .contact-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.07);
}

.section--contact .contact-divider-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.section--contact .contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.section--contact .contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.section--contact .contact-item-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  background: rgba(201,168,76,0.03);
  color: #c9a84c;
}

.section--contact .contact-item:hover .contact-item-icon {
  border-color: #c9a84c;
  background: rgba(201,168,76,0.1);
}

.section--contact .contact-item-icon svg {
  width: 18px; height: 18px;
  stroke: #c9a84c;
  fill: none;
  stroke-width: 1.7;
}

.section--contact .contact-item-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.section--contact .contact-item-value {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s;
}

.section--contact .contact-item:hover .contact-item-value { color: #c9a84c; }

.section--contact .contact-instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.section--contact .contact-instagram-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.section--contact .contact-instagram-btn:hover::before { opacity: 1; }
.section--contact .contact-instagram-btn:hover { border-color: transparent; }

.section--contact .contact-instagram-btn svg,
.section--contact .contact-instagram-btn span { position: relative; z-index: 1; }

.section--contact .contact-instagram-btn svg {
  width: 20px; height: 20px;
  stroke: rgba(255,255,255,0.5);
  fill: none;
  stroke-width: 1.7;
  transition: stroke 0.3s;
}

.section--contact .contact-instagram-btn:hover svg { stroke: #fff; }

.section--contact .contact-instagram-btn span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.section--contact .contact-instagram-btn:hover span { color: #fff; }

.section--contact .contact-footer-copy {
  margin-top: 48px;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 2px;
}

@media (max-width: 560px) {
  .section--contact .contact-form-row { grid-template-columns: 1fr; }
  .section--contact .contact-info { gap: 28px; }
  .section--contact .contact-phone-code { min-width: 80px; }
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
#site-footer {
  padding: 2rem var(--pad-x);
  border-top: 1px solid var(--border);
  text-align: center;
}

#site-footer p {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ════════════════════════════════════════════════════════════════
   MOBILE (max-width: 768px)
   Hamburguer + dropdown + hero adjustments. Desktop unchanged.
   ════════════════════════════════════════════════════════════════ */
.hamburger-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.mobile-nav {
  display: none;
}

@media (max-width: 768px) {
  /* Mobile: redireciona direto para #site, sem animação de intro */
  #stage,
  #overlay-intro,
  #overlay-end {
    display: none !important;
  }

  #site {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }

  #site-header nav {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .hamburger-btn:hover {
    color: var(--accent);
    border-color: var(--accent);
  }

  .mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(8, 8, 8, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    z-index: 20;
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .mobile-nav a {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    padding: 1rem var(--pad-x);
    transition: color 0.2s;
  }

  .mobile-nav a:hover {
    color: var(--accent);
  }

  .header-logo {
    height: 70px;
  }

  .section--hero {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-bg {
    background-image: url('./img/logo/916-hero.png');
    background-position: center center;
  }

  .hero-inner {
    margin-left: 0;
    padding: 0 1.5rem;
    max-width: 100%;
  }

  .hero-tag {
    font-size: 13px;
    letter-spacing: 0.15em;
  }

  .hero-title {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  /* ── Photo Gallery (carousel) mobile ── */
  .about-gallery {
    width: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
    margin-top: 60px;
  }

  .about-gallery .section-header {
    padding: 0 1rem;
    margin-bottom: 1.5rem;
  }

  .about-gallery .section-header .eyebrow {
    font-size: 11px;
    letter-spacing: 0.3em;
  }

  .about-gallery .section-header h2 {
    font-size: clamp(24px, 8vw, 36px);
    letter-spacing: 0.08em;
  }

  .about-gallery .carousel-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .about-gallery .carousel-track-container {
    width: 100%;
    overflow: hidden;
  }

  .about-gallery .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    padding: 0;
  }

  .about-gallery .nav-prev {
    left: 10px;
  }

  .about-gallery .nav-next {
    right: 10px;
  }

  .about-gallery .nav-btn svg {
    width: 18px;
    height: 18px;
  }

  .about-gallery .thumbnails {
    display: none;
  }

  .about-gallery .dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 0 1rem;
  }

  .about-gallery .dot {
    width: 6px;
    height: 6px;
  }

  .about-gallery .dot.active {
    width: 18px;
    border-radius: 3px;
  }

  .about-gallery .counter {
    top: 12px;
    right: 12px;
  }

  .about-gallery .counter-current {
    font-size: 28px;
  }

  .about-gallery .counter-sep,
  .about-gallery .counter-total {
    font-size: 14px;
  }

  /* ── Las Vegas '97 (video) mobile ── */
  .about-video-section .vid-badge {
    display: none;
  }

  .about-video-section {
    width: 100%;
    max-width: 100%;
    padding: 0 0 0.5rem;
  }

  .about-video-section .section-header {
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .about-video-section .section-header .eyebrow {
    font-size: 12px;
    letter-spacing: 0.25em;
  }

  .about-video-section .section-header h2 {
    font-size: clamp(28px, 10vw, 44px);
    letter-spacing: 2px;
  }

  .about-video-section .vid-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .about-video-section .vid-container {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }

  .about-video-section .vid-corner {
    width: 16px;
    height: 16px;
  }

  .about-video-section .vid-corner-tl {
    top: -4px;
    left: -4px;
    border-top-width: 1.5px;
    border-left-width: 1.5px;
  }

  .about-video-section .vid-corner-tr {
    top: -4px;
    right: -4px;
    border-top-width: 1.5px;
    border-right-width: 1.5px;
  }

  .about-video-section .vid-corner-bl {
    bottom: -4px;
    left: -4px;
    border-bottom-width: 1.5px;
    border-left-width: 1.5px;
  }

  .about-video-section .vid-corner-br {
    bottom: -4px;
    right: -4px;
    border-bottom-width: 1.5px;
    border-right-width: 1.5px;
  }

  .about-video-section .vid-bar {
    padding: 12px 16px;
    gap: 12px;
    min-height: 44px;
  }

  .about-video-section .vid-bar-btn {
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-video-section .vid-bar-btn svg {
    width: 20px;
    height: 20px;
  }

  .about-video-section .vid-progress-track {
    min-height: 24px;
    padding: 8px 0;
  }

  .about-video-section .vid-bar-time {
    font-size: 11px;
    min-width: 64px;
  }

  .about-video-section .vid-meta {
    padding: 16px 1rem 0;
  }

  .about-video-section .vid-title {
    font-size: 18px;
  }

  .about-video-section .vid-desc {
    font-size: 14px;
  }

  /* Reduz espaçamento entre vídeo e contato (era ~192px) */
  .section-inner--about {
    padding-bottom: 1rem;
  }

  .section--contact {
    padding-top: 2rem;
  }

  .about-section-header {
    justify-content: center;
  }

  .about-section-label {
    white-space: normal;
    text-align: center;
  }
}