/* ═══════════════════════════════════════════════════════════════
   CantonTour.com — Premium Style Sheet
   Design Direction: Luxury Editorial × Urban Dark × Gold Authority
   Fonts: Cormorant SC (display) + Barlow Condensed (labels) + Barlow (body)
═══════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  /* Colors */
  --bg:           #080808;
  --bg-surface:   #0e0e0e;
  --bg-card:      #111111;
  --bg-card-hover:#161616;

  --gold:         #c9a84c;
  --gold-light:   #e0c27a;
  --gold-dim:     #9b7e37;
  --red-accent:   #9b2020;
  --red-subtle:   #6e1515;

  --text:         #f0ece4;
  --text-muted:   #888880;
  --text-faint:   #444440;
  --text-label:   #c9a84c;

  --border:       rgba(201, 168, 76, 0.18);
  --border-faint: rgba(255, 255, 255, 0.07);

  /* Typography */
  --font-display: 'Cormorant SC', 'Georgia', serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  /* Spacing */
  --max-w: 1280px;
  --section-pad: clamp(80px, 10vw, 140px);
  --gutter: clamp(20px, 5vw, 60px);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.4s;
}

/* ─── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ─── Selection ──────────────────────────────────────────────── */
::selection {
  background: var(--gold-dim);
  color: #000;
}

/* ─── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

/* ─── Typography Utilities ──────────────────────────────────── */
.section-label {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 64px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: var(--gold);
  color: #000;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.3);
}

.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 40px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.btn-ghost:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.25);
}

/* ─── Section Container ──────────────────────────────────────── */
.section-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ═══════════════════════════════════════════════════════════════
   HEADER / NAVIGATION
═══════════════════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--dur) var(--ease),
              backdrop-filter var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}

#site-header.scrolled {
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: opacity var(--dur);
}

.logo:hover { opacity: 0.8; }

.logo-canton { color: var(--text); }
.logo-tour   { color: var(--gold); }
.logo-dot    { color: var(--text-muted); font-size: 0.75em; }

.footer-logo { font-size: 26px; }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

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

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s, width 0.3s var(--ease);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile nav drawer */
.nav-mobile {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transform: translateY(-110%);
  transition: transform 0.5s var(--ease-out);
  z-index: 99;
}

.nav-mobile.open {
  transform: translateY(0);
}

.nav-mobile ul {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-mobile a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-condensed);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-faint);
  transition: color var(--dur), padding-left var(--dur) var(--ease);
}

.nav-mobile a:hover {
  color: var(--gold);
  padding-left: 12px;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scale(1.08);
  will-change: transform;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Overlays */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8, 0.3) 0%,
    rgba(8,8,8, 0.55) 50%,
    rgba(8,8,8, 0.88) 100%
  );
}

/* Grain texture */
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--gutter);
  max-width: 900px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(46px, 8vw, 100px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  color: rgba(240, 236, 228, 0.7);
  line-height: 1.8;
  margin-bottom: 44px;
}

.hero-sub strong {
  color: var(--gold-light);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  justify-content: center;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-label {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-arrow {
  color: var(--gold);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%       { transform: translateY(6px); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════
   TICKER / MARQUEE
═══════════════════════════════════════════════════════════════ */
.ticker-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 2;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: tickerScroll 28s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.ticker-track span {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0a0a0a;
  padding: 0 24px;
}

.ticker-sep {
  color: rgba(0,0,0,0.4) !important;
  padding: 0 4px !important;
  font-size: 8px !important;
}

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

/* ═══════════════════════════════════════════════════════════════
   KEY HIGHLIGHTS SECTION
═══════════════════════════════════════════════════════════════ */
#highlights {
  padding: var(--section-pad) 0;
  background: var(--bg);
  position: relative;
}

#highlights::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-faint);
  border: 1px solid var(--border-faint);
}

.highlight-card {
  position: relative;
  padding: 48px 40px 44px;
  background: var(--bg-card);
  transition: background var(--dur) var(--ease);
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  transition: width 0.5s var(--ease);
}

.highlight-card:hover {
  background: var(--bg-card-hover);
}

.highlight-card:hover::before {
  width: 100%;
}

/* Icon */
.hc-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 24px;
  transition: transform 0.4s var(--ease);
}

.highlight-card:hover .hc-icon {
  transform: scale(1.08) translateY(-2px);
}

.hc-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.hc-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Number watermark */
.hc-num {
  position: absolute;
  bottom: 20px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  color: rgba(201, 168, 76, 0.06);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s;
}

.highlight-card:hover .hc-num {
  color: rgba(201, 168, 76, 0.12);
}

/* ═══════════════════════════════════════════════════════════════
   SHOWCASE GRID
═══════════════════════════════════════════════════════════════ */
#showcase {
  padding: var(--section-pad) 0;
  background: var(--bg-surface);
  position: relative;
}

#showcase::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

#showcase .section-container {
  margin-bottom: 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 3px;
  background: #000;
  margin-top: 48px;
}

/* Large card — spans 2 columns */
.showcase-card.sc-large {
  grid-column: span 2;
}

/* Wide card — spans 2 columns in second row */
.showcase-card.sc-wide {
  grid-column: span 2;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  cursor: default;
}

.sc-large { aspect-ratio: 16/9; }
.sc-wide  { aspect-ratio: 16/7; }

.sc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  will-change: transform;
}

.showcase-card:hover .sc-img {
  transform: scale(1.06);
}

/* Overlay */
.sc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.3) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 30px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.showcase-card:hover .sc-overlay {
  opacity: 1;
}

/* Persistent tag (always visible) */
.sc-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(8,8,8,0.75);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 5px 10px;
  backdrop-filter: blur(4px);
}

.sc-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
  transform: translateY(10px);
  transition: transform 0.4s var(--ease);
}

.showcase-card:hover .sc-title {
  transform: translateY(0);
}

.sc-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(240,236,228,0.75);
  line-height: 1.6;
  transform: translateY(10px);
  transition: transform 0.5s var(--ease);
  max-width: 380px;
}

.showcase-card:hover .sc-desc {
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   EXPERIENCE POSITIONING SECTION
═══════════════════════════════════════════════════════════════ */
#experience {
  padding: var(--section-pad) 0;
  background: var(--bg);
  position: relative;
}

#experience::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.exp-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.exp-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  position: sticky;
  top: 120px;
}

.exp-headline em {
  font-style: italic;
  color: var(--gold);
}

.exp-right {
  padding-top: 52px;
}

.exp-para {
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 300;
  color: rgba(240, 236, 228, 0.7);
  line-height: 1.85;
  margin-bottom: 28px;
}

.exp-para:first-child {
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--text);
  font-weight: 300;
}

/* Stats */
.exp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 52px;
  background: var(--border-faint);
  border: 1px solid var(--border-faint);
}

.stat-item {
  background: var(--bg-card);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background var(--dur);
}

.stat-item:hover { background: var(--bg-card-hover); }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════
   VISION / LAUNCH SECTION
═══════════════════════════════════════════════════════════════ */
#vision {
  position: relative;
  padding: var(--section-pad) 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.vision-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vision-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.vision-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,8,8,0.96) 0%,
    rgba(8,8,8,0.8) 50%,
    rgba(8,8,8,0.92) 100%
  );
}

.vision-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}

.vision-pill {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 8px 20px;
  margin-bottom: 36px;
}

.vision-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 28px;
}

.vision-headline em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.vision-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 300;
  color: rgba(240, 236, 228, 0.6);
  line-height: 1.8;
  margin-bottom: 56px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Vision pillars */
.vision-pillars {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
  border: 1px solid var(--border);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.vp-item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  text-align: left;
  transition: background var(--dur);
}

.vp-item:last-child { border-right: none; }

.vp-item:hover {
  background: rgba(201,168,76,0.05);
}

.vp-icon {
  color: var(--gold);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.vp-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.vp-text strong {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.vp-text span {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
#site-footer {
  background: #050505;
  border-top: 1px solid var(--border-faint);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px var(--gutter) 64px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-brand {}

.footer-tagline {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.6;
}

.footer-venture {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 12px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.footer-nav a {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--dur), padding-left var(--dur) var(--ease);
}

.footer-nav a:hover {
  color: var(--gold);
  padding-left: 8px;
}

.footer-follow {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: color var(--dur),
              border-color var(--dur),
              background var(--dur),
              transform var(--dur) var(--ease);
}

.social-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-2px);
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid var(--border-faint);
}

.footer-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-copy,
.footer-venture-inline {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}

/* ═══════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}

.reveal-up.is-visible,
.reveal-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* Hero section — force animated on load */
#hero .hero-content .reveal-up {
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

/* ─── Utility ────────────────────────────────────────────────── */
.br-desktop { display: block; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .exp-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .exp-headline {
    position: static;
  }

  .exp-right {
    padding-top: 0;
  }

  .exp-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .showcase-grid {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-card.sc-large,
  .showcase-card.sc-wide {
    grid-column: span 2;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .vision-pillars {
    flex-direction: column;
    border: none;
    gap: 2px;
  }

  .vp-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .vp-item:last-child { border-bottom: none; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-toggle { display: flex; }

  .hero-headline { font-size: clamp(38px, 10vw, 58px); }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .highlight-card {
    padding: 36px 28px 32px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .showcase-card.sc-large,
  .showcase-card.sc-wide,
  .showcase-card {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }

  .sc-overlay {
    opacity: 1;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.8) 0%,
      rgba(0,0,0,0.1) 55%,
      transparent 100%
    );
  }

  .sc-title, .sc-desc {
    transform: translateY(0) !important;
  }

  .exp-stats {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand { grid-column: span 1; }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .vision-pillars {
    border: none;
    flex-direction: column;
  }

  .br-desktop { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤480px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  :root {
    --gutter: 20px;
    --section-pad: 72px;
  }

  .hero-eyebrow { font-size: 10px; }
  .hero-sub { font-size: 14px; }

  .highlight-card { padding: 28px 20px; }

  .stat-item { padding: 22px 16px; }

  .footer-inner { padding-top: 52px; }
}

/* ═══════════════════════════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .reveal-up,
  .reveal-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-bg { transform: none; }
  .ticker-track { animation-play-state: paused; }
  .scroll-arrow { animation: none; }

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