/* ============================================================
   Turnkey Interiors — Premium Design System
   Inspired by: Gensler, ZHA, March Branding, Linear, Vercel
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Outfit:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────── */
:root {
  --bg:          #FFFFFF;
  --bg-2:        #F7F4EF;
  --bg-3:        #EDE9E1;
  --bg-4:        #E2DDD3;
  --bg-5:        #141210;

  --gold:        #B8884A;
  --gold-2:      #CBA060;
  --gold-3:      #DEBB80;
  --gold-dim:    rgba(184,136,74,0.1);
  --gold-glow:   rgba(184,136,74,0.05);
  --gold-border: rgba(184,136,74,0.3);

  --text:        #1A1714;
  --text-2:      #6B6258;
  --text-3:      #A09488;
  --white:       #FFFFFF;

  --border:      rgba(0,0,0,0.08);
  --border-2:    rgba(0,0,0,0.04);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;
  --font-mono:    'Space Grotesk', monospace;

  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-2:      cubic-bezier(0.87, 0, 0.13, 1);
  --ease-3:      cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --max-w:       1300px;
  --px:          2rem;
  --sec-py:      8rem;

  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-2xl: 32px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Grain Texture Overlay ─────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 250px;
}

/* ── Custom Cursor ─────────────────────────────────────── */
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 38px; height: 38px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
  will-change: transform;
}
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-ring.hovered { width: 56px; height: 56px; background: var(--gold-dim); border-color: var(--gold-2); }
.cursor-ring.clicking { width: 28px; height: 28px; }
@media (hover: none) { .cursor-ring, .cursor-dot { display: none !important; } }

/* ── Preloader ─────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #141210;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
#preloader.done { opacity: 0; visibility: hidden; }

.preloader-logo {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--white);
  animation: preloaderReveal 1.2s var(--ease) forwards;
  opacity: 0;
}
.preloader-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  animation: preloaderReveal 1.2s var(--ease) 0.3s forwards;
  opacity: 0;
}
.preloader-bar-wrap {
  width: 200px;
  height: 1px;
  background: var(--border);
  overflow: hidden;
}
.preloader-bar {
  height: 100%;
  background: var(--gold);
  animation: preloaderBar 1.8s var(--ease-3) forwards;
  transform-origin: left;
  transform: scaleX(0);
}
@keyframes preloaderReveal {
  to { opacity: 1; }
}
@keyframes preloaderBar {
  0%   { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

/* ── Container & Layout ────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}
.section { padding: var(--sec-py) 0; }
.section-dark { background: var(--bg-2); }
.section-darker { background: var(--bg); }

/* ── Typography ────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
  border-radius: 2px;
}
.eyebrow-plain {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  color: var(--text);
}
.display-xl { font-size: clamp(3.5rem, 7.5vw, 7rem); letter-spacing: -0.02em; }
.display-lg { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.015em; }
.display-md { font-size: clamp(1.75rem, 3.5vw, 3rem); letter-spacing: -0.01em; }
.display-sm { font-size: clamp(1.35rem, 2.5vw, 2rem); }

.body-lg { font-size: 1.05rem; color: var(--text-2); line-height: 1.8; }
.body-md { font-size: 0.9rem;  color: var(--text-2); line-height: 1.75; }
.body-sm { font-size: 0.8rem;  color: var(--text-2); line-height: 1.7; }

.gold-accent { color: var(--gold); }
.gold-accent-italic { color: var(--gold); font-style: italic; }

/* Reveal helper */
.reveal-wrap { overflow: hidden; }
.reveal-inner { display: block; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.9rem 2.25rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: transform 0.28s var(--ease), box-shadow 0.28s ease, background 0.28s ease, color 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(184,136,74,0.25), 0 0 0 1.5px var(--gold);
}
.btn:active { transform: scale(0.97) translateY(1px) !important; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none !important; pointer-events: none; }

.btn-gold {
  background: linear-gradient(145deg, var(--gold-3) 0%, var(--gold) 40%, #a07235 100%);
  color: #080706;
  font-weight: 600;
  letter-spacing: 0.14em;
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 2px 0 rgba(0,0,0,0.18), 0 6px 22px rgba(184,136,74,0.28);
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.14) 0%, transparent 55%);
  border-radius: inherit;
  pointer-events: none;
}
.btn-gold:hover {
  background: linear-gradient(145deg, var(--gold-3) 0%, var(--gold-2) 50%, var(--gold) 100%);
  transform: translateY(-3px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 3px 0 rgba(0,0,0,0.14), 0 14px 36px rgba(184,136,74,0.42);
  color: #080706;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(0,0,0,0.14);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(184,136,74,0.14);
}
#hero .btn-outline {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.28);
}
#hero .btn-outline:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(184,136,74,0.1);
}

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  padding: 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0;
  box-shadow: none;
}
.btn-ghost:hover { color: var(--text); transform: none; }
.btn-ghost:hover svg { transform: translateX(4px); }
.btn-ghost svg { transition: transform 0.3s ease; }

.btn-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.28s ease;
  flex-shrink: 0;
  box-shadow: none;
}
.btn-arrow:hover { border-color: var(--gold); background: var(--gold-dim); transform: none; }

/* ── Navbar ────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  padding: 1.5rem 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-bottom-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  padding: 0.875rem 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--border);
}
#nav.scrolled .nav-logo-wordmark  { color: var(--text); }
#nav.scrolled .nav-logo-tag       { color: var(--gold); }
#nav.scrolled .nav-links a        { color: var(--text-2); }
#nav.scrolled .nav-links a:hover,
#nav.scrolled .nav-links a.active { color: var(--text); }
#nav.scrolled .nav-toggle span    { background: var(--text); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  line-height: 1;
}
.nav-logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}
.nav-logo-tag {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color 0.25s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links .nav-cta {
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  padding: 0.5rem 1.25rem;
  border-radius: var(--r-sm);
}
.nav-links .nav-cta:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #080706;
  font-weight: 600;
}
.nav-links .nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s ease;
}

/* ── Mobile Menu ───────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 799;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(24px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.05em;
  transition: color 0.25s ease;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 1.75rem; right: 2rem;
  background: none;
  border: none;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-3);
  text-transform: uppercase;
}

/* ── HERO ──────────────────────────────────────────────── */
#hero {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
  overflow: hidden;
  background: #0D0B09;
}

/* ── Hero Slideshow ────────────────────────────────────── */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  animation: kenBurns 10s ease-in-out forwards;
}

@keyframes kenBurns {
  0%   { transform: scale(1)    translateX(0px); }
  100% { transform: scale(1.07) translateX(-12px); }
}

/* Dark gradient — keeps text crisp over any image */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      105deg,
      rgba(8,7,6,0.75) 0%,
      rgba(8,7,6,0.42) 55%,
      rgba(8,7,6,0.65) 100%
    );
}

/* Slide dot nav */
.slide-dots {
  position: absolute;
  bottom: 7.5rem;
  left: var(--px);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.slide-dot {
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,0.25);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.35s ease, width 0.4s var(--ease);
  padding: 0;
}

.slide-dot.active {
  background: var(--gold);
  width: 36px;
}

.slide-dot:hover:not(.active) { background: rgba(255,255,255,0.5); }

/* Animated gold radial glow */
.hero-glow {
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(184,136,74,0.07) 0%, transparent 65%);
  top: -200px; right: -200px;
  pointer-events: none;
  z-index: 2;
  animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%       { transform: scale(1.15); opacity: 1; }
}

/* Architectural grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

/* Hero bottom gradient fade */
.hero-fade-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 260px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
  padding-top: 9rem;
  padding-bottom: 4rem;
}

.hero-left { max-width: 740px; }

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.75rem, 8.5vw, 7.5rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 2.25rem;
}
.hero-headline .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
}
.hero-headline .line-inner {
  display: block;
  transform: translateY(105%);
  opacity: 0;
}
.hero-headline .ital { font-style: italic; color: var(--gold); }

.hero-divider {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  margin-bottom: 1.75rem;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(184,136,74,0.6);
}

.hero-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.5rem;
  opacity: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
}

/* Right deco */
.hero-deco {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
  opacity: 0.45;
  user-select: none;
}
.hero-deco-num {
  font-family: var(--font-display);
  font-size: 9rem;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  opacity: 0.12;
  letter-spacing: -0.04em;
}
.hero-side-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* Stats bar */
.hero-stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  background: rgba(8,7,6,0.72);
  backdrop-filter: blur(16px);
  opacity: 0;
}
.hero-stat {
  padding: 1.75rem 2rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.3s ease;
}
.hero-stat:last-child { border-right: none; }
.hero-stat:hover { background: var(--bg-2); }
.hero-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.hero-stat:hover::before { width: 100%; }
.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
  text-shadow: 0 0 24px rgba(184,136,74,0.4);
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  z-index: 10;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.hero-scroll-text {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-3);
  writing-mode: vertical-rl;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%       { transform: translateY(8px); opacity: 1; }
}

/* ── Marquee Strip ──────────────────────────────────────── */
.marquee-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(90deg, #0d0b09 0%, #1a1410 30%, #1e1610 50%, #1a1410 70%, #0d0b09 100%);
  border-top: 1px solid rgba(184,136,74,0.25);
  border-bottom: 1px solid rgba(184,136,74,0.25);
  box-shadow: 0 0 40px rgba(184,136,74,0.08) inset;
}
/* fade masks on left and right edges */
.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, #0d0b09 0%, transparent 100%);
}
.marquee-section::after {
  right: 0;
  background: linear-gradient(270deg, #0d0b09 0%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 0;
  padding: 1rem 0;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  flex-shrink: 0;
  white-space: nowrap;
}
.marquee-item {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(203,160,96,0.6);
  transition: color 0.35s ease, text-shadow 0.35s ease, letter-spacing 0.35s ease;
  cursor: default;
}
.marquee-item:hover {
  color: #debb80;
  text-shadow: 0 0 18px rgba(222,187,128,0.7), 0 0 36px rgba(184,136,74,0.35);
  letter-spacing: 0.32em;
}
.marquee-sep {
  flex-shrink: 0;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: radial-gradient(circle, #debb80 0%, #b8884a 60%, transparent 100%);
  box-shadow: 0 0 8px 2px rgba(184,136,74,0.7), 0 0 18px rgba(222,187,128,0.4);
  animation: sepPulse 2.8s ease-in-out infinite;
}
@keyframes sepPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.4); box-shadow: 0 0 14px 4px rgba(184,136,74,0.9); }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Section Headers ────────────────────────────────────── */
.section-header { margin-bottom: 4rem; }
.section-header-center { text-align: center; }
.section-header-center .eyebrow { justify-content: center; }
.section-header-center .eyebrow::before { display: none; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}
.section-sub {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.8;
  max-width: 560px;
}
.section-header-center .section-sub { margin: 0 auto; }

/* Gold separator */
.sep {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  margin: 1.25rem 0;
  border-radius: 2px;
}
.sep-center { margin: 1.25rem auto; }

/* ── About ──────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.about-visual {
  position: sticky;
  top: 8rem;
}
.about-img-frame {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease);
}
.about-img-frame:hover .about-img { transform: scale(1.03); }

.about-img-placeholder {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 40%, rgba(184,136,74,0.06) 0%, transparent 70%),
    var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-placeholder-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}
.about-placeholder-text {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.08;
  letter-spacing: -0.05em;
  user-select: none;
  position: relative;
  z-index: 1;
}

.about-badge {
  position: absolute;
  bottom: 1.75rem;
  right: -2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #080706;
  padding: 1.25rem 1.5rem;
  border-radius: var(--r-lg);
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.about-badge-value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
}
.about-badge-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.about-text { padding-top: 0.5rem; }
.about-pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.4;
  margin: 2rem 0;
  padding-left: 1.75rem;
  border-left: 2px solid var(--gold);
}
.about-body p {
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.85;
  margin-bottom: 0.875rem;
}
.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}
.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: all 0.3s ease;
}
.about-pill:hover { border-color: var(--gold-border); color: var(--gold); }
.about-pill-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* ── Stats Row ──────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--bg-5);
  border-top: none;
  border-bottom: none;
}
.stats-row-item {
  padding: 3.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  transition: background 0.35s ease;
}
.stats-row-item::after {
  content: '';
  position: absolute;
  top: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: left 0.4s var(--ease), right 0.4s var(--ease);
}
.stats-row-item:hover { background: rgba(255,255,255,0.04); }
.stats-row-item:hover::after { left: 0; right: 0; }
.stats-row-item:last-child { border-right: none; }
.stats-row-value {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 32px rgba(184,136,74,0.45);
}
.stats-row-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ── Why Choose Us ──────────────────────────────────────── */
.why-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 5rem;
  align-items: start;
}
.why-sticky { position: sticky; top: 8rem; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.why-card {
  background: var(--bg);
  padding: 2rem;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}
.why-card:hover { background: var(--bg-2); box-shadow: 0 4px 30px rgba(0,0,0,0.07); }
.why-card-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.13;
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
  transition: opacity 0.3s ease;
}
.why-card:hover .why-card-num { opacity: 0.22; }
.why-card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
}
.why-card-desc {
  font-size: 0.8rem;
  color: var(--text-2);
  line-height: 1.7;
}
.why-card-corner {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 6px; height: 6px;
  border-right: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.why-card:hover .why-card-corner { opacity: 1; }

/* ── Services ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
}
.service-card {
  background: var(--bg);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover { background: var(--bg-2) !important; box-shadow: 0 8px 40px rgba(0,0,0,0.08); }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover { background: var(--bg-3); }
.service-card:hover::before { opacity: 1; }

.service-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.1;
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
  transition: opacity 0.35s ease;
  user-select: none;
}
.service-card:hover .service-num { opacity: 0.18; }

.service-icon {
  width: 44px; height: 44px;
  color: var(--gold);
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.service-desc {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--text-2);
}
.service-feature-item::before {
  content: '';
  width: 4px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.service-link {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  transition: gap 0.3s ease;
}
.service-card:hover .service-link { gap: 0.75rem; }

/* Full list box */
.services-list-box {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 3rem;
  margin-top: 1.5px;
}
.services-list-title {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.services-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.services-list-item {
  padding: 0.875rem 1rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-2);
  transition: color 0.25s ease, background 0.25s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.services-list-item::before {
  content: '';
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}
.services-list-item:hover { color: var(--text); background: var(--bg-3); }
.services-list-item:nth-child(4n) { border-right: none; }

/* ── Process ────────────────────────────────────────────── */
/* ── Process Section Override ───────────────────────────── */
#process {
  background: #0E0C0A;
}
#process .section-title { color: #F5EEE6; }
#process .section-sub   { color: rgba(245,238,230,0.55); }
#process .eyebrow-plain { color: var(--gold); }
#process .sep           { background: linear-gradient(90deg, var(--gold), var(--gold-2)); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.07);
  border-bottom: none;
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
  overflow: hidden;
}

/* Row 2 */
.process-row-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: none;
  border-radius: 0 0 var(--r-2xl) var(--r-2xl);
  overflow: hidden;
}

/* Connector row between grid 1 and grid 2 */
.process-grid + .process-row-2 {
  position: relative;
}
.process-grid + .process-row-2::before {
  content: '';
  position: absolute;
  top: 0; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.12) 20%,
    rgba(255,255,255,0.12) 80%,
    transparent 100%);
}

.process-card {
  background: #121008;
  padding: 2.25rem 1.75rem 2.5rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.4s ease, transform 0.4s var(--ease);
}
.process-card:hover {
  background: #1A1510;
  transform: translateY(-2px);
  z-index: 1;
}

/* Top color bar */
.process-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--phase-color, var(--gold));
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 0.55s var(--ease), box-shadow 0.55s ease;
}
.process-card:hover::before {
  transform: scaleX(1);
  box-shadow: 0 0 14px var(--phase-glow, rgba(184,136,74,0.5));
}

/* Ghost number watermark */
.process-card-num-bg {
  position: absolute;
  top: -0.75rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 700;
  color: var(--phase-color, var(--gold));
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.4s ease;
}
.process-card:hover .process-card-num-bg { opacity: 0.1; }

/* Icon badge */
.process-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--phase-dim, rgba(184,136,74,0.1));
  border: 1px solid var(--phase-color, var(--gold));
  border-opacity: 0.25;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--phase-color, var(--gold));
  transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s var(--ease), border-color 0.4s ease;
  box-shadow: 0 0 0 0 var(--phase-glow, transparent);
}
.process-card-icon svg {
  width: 21px;
  height: 21px;
  stroke: var(--phase-color, var(--gold));
  transition: stroke 0.3s ease;
}
.process-card:hover .process-card-icon {
  background: var(--phase-dim, rgba(184,136,74,0.18));
  box-shadow: 0 0 22px var(--phase-glow, rgba(184,136,74,0.3));
  transform: scale(1.1) rotate(-3deg);
}

/* Phase label */
.process-card-num {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--phase-color, var(--gold));
  opacity: 0.75;
  margin-bottom: 0.45rem;
  transition: opacity 0.3s ease;
}
.process-card:hover .process-card-num { opacity: 1; }

.process-card-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(245,238,230,0.85);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}
.process-card:hover .process-card-title { color: #fff; }

.process-card-desc {
  font-size: 0.8rem;
  color: rgba(245,238,230,0.38);
  line-height: 1.8;
  transition: color 0.3s ease;
}
.process-card:hover .process-card-desc { color: rgba(245,238,230,0.62); }

/* ── Projects ───────────────────────────────────────────── */
#projects { background: #0A0907; }
#projects .section-title { color: #F5EEE6; }
#projects .section-sub   { color: rgba(245,238,230,0.5); }
#projects .eyebrow-plain { color: var(--gold); }
#projects .sep           { background: linear-gradient(90deg, var(--gold), var(--gold-2)); }

/* ── Featured strip ── */
.proj-featured {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  background: #121008;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-2xl);
  overflow: hidden;
  margin-bottom: 1.5px;
}

.pf-photo-wrap {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.pf-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s var(--ease), filter 0.5s ease, opacity 0.22s ease;
  filter: brightness(0.88);
}
.proj-featured:hover .pf-photo { transform: scale(1.03); filter: brightness(1); }

.pf-photo-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, #121008 100%),
              linear-gradient(0deg, rgba(0,0,0,0.35) 0%, transparent 40%);
  pointer-events: none;
}

/* thumbnail strip */
.pf-thumbs {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}
.pf-thumb {
  width: 48px;
  height: 36px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.15);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.pf-thumb:hover, .pf-thumb.active {
  opacity: 1;
  border-color: var(--gold);
  transform: scale(1.08);
}

/* photo count badge */
.pf-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,238,230,0.7);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.22rem 0.6rem;
  border-radius: 100px;
  z-index: 2;
}

/* featured info panel */
.pf-info {
  padding: 2.8rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.pf-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 0.6rem;
}
.pf-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: rgba(245,238,230,0.92);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.pf-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.pf-meta-item {
  font-size: 0.72rem;
  color: rgba(245,238,230,0.45);
}
.pf-meta-item strong {
  color: rgba(245,238,230,0.82);
  font-weight: 500;
  display: block;
  font-size: 0.82rem;
}
.pf-meta-sep {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.1);
}
.pf-desc {
  font-size: 0.82rem;
  color: rgba(245,238,230,0.48);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.pf-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.8rem;
}
.pf-service-pill {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(184,136,74,0.7);
  border: 1px solid rgba(184,136,74,0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.pf-gallery-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,136,74,0.08);
  border: 1px solid rgba(184,136,74,0.3);
  padding: 0.7rem 1.4rem;
  border-radius: 100px;
  cursor: pointer;
  width: fit-content;
  transition: all 0.3s ease;
}
.pf-gallery-btn:hover {
  background: rgba(184,136,74,0.16);
  border-color: rgba(184,136,74,0.55);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,136,74,0.12);
}

/* ── Sub-project grid ── */
.proj-sub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-2xl);
  overflow: hidden;
  margin-bottom: 2rem;
}
.psub-card {
  background: #121008;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: background 0.35s ease;
}
.psub-card:hover { background: #1a1610; }

.psub-photo-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.psub-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(15%) brightness(0.85);
  transition: transform 0.7s var(--ease), filter 0.5s ease;
  display: block;
}
.psub-card:hover .psub-photo { transform: scale(1.06); filter: grayscale(0%) brightness(1); }

.psub-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, transparent 55%);
  pointer-events: none;
}
.psub-cat {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

.psub-body {
  padding: 1.25rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.psub-meta {
  font-family: var(--font-mono);
  font-size: 0.52rem;
  color: rgba(245,238,230,0.3);
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}
.psub-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(245,238,230,0.88);
  letter-spacing: -0.01em;
  margin-bottom: 0.55rem;
  transition: color 0.3s ease;
}
.psub-card:hover .psub-name { color: #fff; }

.psub-desc {
  font-size: 0.74rem;
  color: rgba(245,238,230,0.38);
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}
.psub-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(184,136,74,0.6);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.25s ease, gap 0.25s ease;
  width: fit-content;
}
.psub-card:hover .psub-btn { color: var(--gold); gap: 0.65rem; }
.psub-btn svg { stroke: currentColor; transition: transform 0.25s ease; }
.psub-card:hover .psub-btn svg { transform: translateX(2px); }

/* ── Lightbox ── */
.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4,3,2,0.97);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.lb-overlay.lb-open { opacity: 1; pointer-events: all; }

.lb-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
  z-index: 2;
}
.lb-close:hover { background: rgba(255,255,255,0.14); color: #fff; }
.lb-close svg { width: 18px; height: 18px; }

.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
  z-index: 2;
}
.lb-arrow:hover { background: rgba(184,136,74,0.18); border-color: rgba(184,136,74,0.35); color: var(--gold); }
.lb-arrow svg { width: 20px; height: 20px; }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }

.lb-stage {
  position: relative;
  max-width: min(90vw, 1200px);
  width: 100%;
  flex-shrink: 0;
}
.lb-img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
  border-radius: 6px;
}
.lb-caption {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,238,230,0.45);
  margin-top: 0.85rem;
}
.lb-thumbs {
  display: flex;
  gap: 0.45rem;
  margin-top: 1.25rem;
  max-width: min(90vw, 1200px);
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(184,136,74,0.25) transparent;
}
.lb-thumb {
  width: 64px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.1);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.lb-thumb:hover, .lb-thumb.active { opacity: 1; border-color: var(--gold); }
.lb-counter {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: rgba(245,238,230,0.3);
  margin-top: 0.6rem;
  text-align: center;
}

/* Invest CTA bar */
.invest-bar {
  margin-top: 1.5px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-top: 0;
  border-radius: 0 0 var(--r-2xl) var(--r-2xl);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.invest-bar-text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  max-width: 560px;
  line-height: 1.4;
}
.invest-bar-text strong { color: var(--gold); font-style: normal; font-weight: 400; }

/* ── Governance ─────────────────────────────────────────── */
.gov-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.gov-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 2.5rem;
}
.gov-item {
  background: var(--bg);
  padding: 1.125rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: color 0.25s ease, background 0.25s ease;
}
.gov-item:hover { color: var(--text); background: var(--bg-4); }
.gov-item:nth-child(2n) { border-right: none; }
.gov-item::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.gov-visual {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 3rem;
  position: sticky;
  top: 8rem;
}
.gov-big {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.gov-big-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.gov-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.gov-mini-item {}
.gov-mini-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.gov-mini-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ── Team ───────────────────────────────────────────────── */
/* ── Team Section ───────────────────────────────────────── */
#team {
  background: #0E0C0A;
}
#team .section-title { color: #F5EEE6; }
#team .section-sub   { color: rgba(245,238,230,0.5); }
#team .eyebrow-plain { color: var(--gold); }
#team .sep           { background: linear-gradient(90deg, var(--gold), var(--gold-2)); }

@keyframes shimmerSweep {
  0%   { transform: translateX(-100%) skewX(-20deg); }
  100% { transform: translateX(300%) skewX(-20deg); }
}
@keyframes idxPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,136,74,0); }
  50%       { box-shadow: 0 0 0 5px rgba(184,136,74,0.14); }
}
@keyframes cardLift {
  from { transform: translateY(0); }
  to   { transform: translateY(-4px); }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-2xl);
  overflow: hidden;
}

.team-card {
  display: flex;
  flex-direction: column;
  background: #121008;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease, transform 0.45s var(--ease), box-shadow 0.45s ease;
}
.team-card:hover {
  background: #191410;
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(184,136,74,0.15);
  z-index: 2;
}

/* shimmer sweep */
.team-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,0.04) 50%, transparent 65%);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
}
.team-card:hover::after {
  opacity: 1;
  animation: shimmerSweep 0.65s var(--ease) forwards;
}

/* ── Photo (top) ── */
.team-card-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #0a0806;
  flex-shrink: 0;
}
.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(20%) brightness(0.88);
  transition: transform 0.75s var(--ease), filter 0.5s ease;
  display: block;
}
.team-card:hover .team-card-photo img {
  transform: scale(1.07);
  filter: grayscale(0%) brightness(1.03);
}

/* bottom gradient on photo */
.team-card-photo-grad {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 55%;
  background: linear-gradient(0deg, #121008 0%, transparent 100%);
  pointer-events: none;
  transition: height 0.4s ease;
}
.team-card:hover .team-card-photo-grad { height: 45%; }

/* name overlay on photo — always visible */
.team-card-photo-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1.25rem 0.9rem;
  z-index: 1;
}
.team-card-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: rgba(245,238,230,0.92);
  letter-spacing: -0.01em;
  line-height: 1.15;
  transition: color 0.3s ease, transform 0.4s var(--ease);
  transform: translateY(2px);
}
.team-card:hover .team-card-name {
  color: #fff;
  transform: translateY(0);
}
.team-card-role {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.2rem;
  opacity: 0.85;
  transform: translateY(2px);
  transition: opacity 0.3s ease, transform 0.4s var(--ease);
  transition-delay: 0.04s;
}
.team-card:hover .team-card-role {
  opacity: 1;
  transform: translateY(0);
}

/* index badge */
.team-card-idx {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(184,136,74,0.75);
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(184,136,74,0.22);
  padding: 0.22rem 0.5rem;
  border-radius: 100px;
  z-index: 2;
  animation: idxPulse 3.5s ease-in-out infinite;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.team-card:hover .team-card-idx {
  color: var(--gold-3);
  border-color: rgba(184,136,74,0.5);
  animation: none;
}

/* ── Details (bottom) ── */
.team-card-body {
  padding: 1.1rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

/* watermark in body */
.team-card-watermark {
  position: absolute;
  bottom: -1.5rem;
  right: 0.5rem;
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.03;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.5s ease, transform 0.5s var(--ease);
  transform: translateY(6px);
}
.team-card:hover .team-card-watermark {
  opacity: 0.07;
  transform: translateY(0);
}

.team-card-sep {
  height: 1px;
  width: 28px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 0.85rem;
  transition: width 0.55s var(--ease);
}
.team-card:hover .team-card-sep { width: 52px; }

.team-card-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  margin-bottom: 0.9rem;
}
.team-card-contact {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  color: rgba(245,238,230,0.32);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.3s var(--ease);
  transform: translateX(-3px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.team-card:hover .team-card-contact:nth-child(1) {
  color: rgba(245,238,230,0.65);
  transform: translateX(0);
  transition-delay: 0.06s;
}
.team-card:hover .team-card-contact:nth-child(2) {
  color: rgba(245,238,230,0.65);
  transform: translateX(0);
  transition-delay: 0.12s;
}
.team-card-contact:hover { color: rgba(245,238,230,0.92) !important; }
.team-card-contact svg {
  width: 11px; height: 11px;
  stroke: var(--gold);
  flex-shrink: 0;
}

.team-card-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(184,136,74,0.5);
  text-decoration: none;
  border: 1px solid rgba(184,136,74,0.15);
  padding: 0.32rem 0.8rem;
  border-radius: 100px;
  width: fit-content;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.35s ease;
}
.team-card:hover .team-card-linkedin {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.18s;
}
.team-card-linkedin:hover {
  color: var(--gold) !important;
  border-color: rgba(184,136,74,0.45);
  background: rgba(184,136,74,0.07);
  transform: translateY(-2px) !important;
  transition-delay: 0s !important;
}

/* ── Contact ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 0; }
.contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:first-child { border-top: 1px solid var(--border); }
.contact-icon-wrap {
  width: 44px; height: 44px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.contact-item:hover .contact-icon-wrap { border-color: var(--gold-border); background: var(--gold-dim); }
.contact-icon-wrap svg { width: 16px; height: 16px; color: var(--gold); }
.contact-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.35rem;
}
.contact-value {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
}
.contact-value a { transition: color 0.25s ease; }
.contact-value a:hover { color: var(--gold); }

/* Form */
.contact-form-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 3rem;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.form-sub {
  font-size: 0.82rem;
  color: var(--text-2);
  margin-bottom: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.5rem;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-3); }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold-border);
  background: rgba(184,136,74,0.03);
  box-shadow: 0 0 0 3px rgba(184,136,74,0.08);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23666' viewBox='0 0 24 24' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }
.form-submit { width: 100%; justify-content: center; padding: 1rem 2rem; }

/* ── WhatsApp ───────────────────────────────────────────── */
.wa-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 700;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.wa-btn:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.5);
}
.wa-btn svg { width: 28px; height: 28px; fill: white; }

/* ── Footer ─────────────────────────────────────────────── */
footer {
  background: var(--bg-5);
  border-top: none;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.75fr 1fr 1fr 1.2fr;
  gap: 4rem;
  padding: 5rem 0 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.footer-brand-sub {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 240px;
}
.footer-social { display: flex; gap: 0.625rem; }
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s ease;
}
.footer-social a:hover { border-color: var(--gold-border); color: var(--gold); background: var(--gold-dim); }
.footer-social svg { width: 14px; height: 14px; fill: currentColor; }

.footer-col-head {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.footer-links a:hover { color: var(--white); padding-left: 3px; }

.footer-contact-items { display: flex; flex-direction: column; gap: 0.875rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.footer-contact-item svg {
  width: 13px; height: 13px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ── Reveal Animations (JS controlled) ─────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
[data-reveal="fade-left"]  { transform: translateX(-28px); }
[data-reveal="fade-right"] { transform: translateX(28px); }
[data-reveal="fade-left"].revealed,
[data-reveal="fade-right"].revealed { transform: none; }
[data-reveal="scale"] { transform: scale(0.96); }
[data-reveal="scale"].revealed { transform: none; }

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }

/* ── Breadcrumb Navigation (legacy — unused) ─────────────── */
.breadcrumb-separator {
  width: 1px; height: 12px;
  background: var(--border);
  opacity: 0.5;
}

/* ── Tab Bar Component ───────────────────────────────────── */
.tab-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  margin-top: 2rem;
}
.tab-bar::-webkit-scrollbar { display: none; }

.tab-item {
  padding: 0.6rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 100px;
  white-space: nowrap;
  transition: color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
  position: relative;
}
.tab-item::after { display: none; }
.tab-item:hover {
  color: var(--text);
  background: rgba(255,255,255,0.7);
}
.tab-item.active {
  color: #080706;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(184,136,74,0.38), 0 1px 0 rgba(255,255,255,0.15) inset;
}
.tab-item.active:hover { color: #080706; }

.tab-content {
  display: none;
  padding: 2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin-top: 1rem;
  animation: tabFadeIn 0.28s ease;
}
.tab-content.active { display: block; }
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

/* ── Section Breadcrumb — full pill-nav ──────────────────── */
.section-breadcrumb {
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  z-index: 799;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.625rem var(--px);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.section-breadcrumb.bc-entering {
  animation: bcSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes bcSlideIn {
  0%   { opacity: 0; transform: translateY(-100%); }
  100% { opacity: 1; transform: translateY(0); }
}

.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07), inset 0 1px 0 rgba(255,255,255,0.8);
  position: relative;
  overflow: hidden;
}

/* Sliding gold indicator — moved by JS */
.breadcrumb-indicator {
  position: absolute;
  top: 0.3rem;
  left: 0;
  height: calc(100% - 0.6rem);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 60%, var(--gold-3) 100%);
  border-radius: 100px;
  box-shadow: 0 3px 14px rgba(184,136,74,0.45), inset 0 1px 0 rgba(255,255,255,0.22);
  transition: left 0.42s cubic-bezier(0.16,1,0.3,1),
              width 0.42s cubic-bezier(0.16,1,0.3,1),
              opacity 0.28s ease;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  will-change: left, width;
}

.breadcrumb-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  line-height: 1;
  transition: color 0.25s ease;
  display: inline-block;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.breadcrumb-link:hover { color: var(--text); }
.breadcrumb-link.current {
  color: #080706;
  font-weight: 600;
}

.breadcrumb-sep-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  animation: bcDotPulse 2.8s ease-in-out infinite;
}
.breadcrumb-sep-dot:nth-child(3)  { animation-delay: 0.4s; }
.breadcrumb-sep-dot:nth-child(5)  { animation-delay: 0.8s; }
.breadcrumb-sep-dot:nth-child(7)  { animation-delay: 1.2s; }
.breadcrumb-sep-dot:nth-child(9)  { animation-delay: 1.6s; }
@keyframes bcDotPulse {
  0%, 100% { transform: scale(1);   opacity: 0.35; background: var(--border); }
  50%       { transform: scale(1.6); opacity: 1;    background: var(--gold-border); }
}

/* ── Responsive: Tab Bar & Breadcrumb ───────────────────── */
@media (max-width: 768px) {
  .tab-item { padding: 0.5rem 1rem; font-size: 0.62rem; }
  .section-breadcrumb { padding: 0.5rem 1rem; top: 48px; }
  .breadcrumb-link { padding: 0.5rem 1rem; font-size: 0.65rem; letter-spacing: 0.1em; }
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1200px) {
  :root { --sec-py: 6rem; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .why-layout { grid-template-columns: 260px 1fr; gap: 3rem; }
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-list-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 3rem; }
  .process-grid, .process-row-2 { grid-template-columns: repeat(2, 1fr); }
  .gov-grid { grid-template-columns: 1fr; }
  .gov-visual { position: static; }
  .hero-content { grid-template-columns: 1fr; }
  .proj-featured { grid-template-columns: 1fr; }
  .pf-info { padding: 2rem; }
  .proj-sub-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .hero-deco { display: none; }
}

@media (max-width: 768px) {
  :root { --sec-py: 4.5rem; --px: 1.25rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: 0; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .why-layout { grid-template-columns: 1fr; }
  .why-sticky { position: static; }
  .why-grid { grid-template-columns: 1fr; }
  .proj-featured { grid-template-columns: 1fr; }
  .pf-photo-wrap { min-height: 300px; }
  .proj-sub-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card-body { padding: 1rem 1.25rem; }
  .team-card-name { font-size: 1.2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .invest-bar { flex-direction: column; align-items: flex-start; }
  .services-list-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-headline { font-size: clamp(3rem, 10vw, 5rem); }
  .process-grid, .process-row-2 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .gov-list { grid-template-columns: 1fr; }
  .gov-item:nth-child(2n) { border-right: 0; }
  .services-list-grid { grid-template-columns: 1fr; }
  .services-list-item:nth-child(4n) { border-right: none; }
}

/* ── Scroll Progress Bar ────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 9002;
  pointer-events: none;
}
.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2), var(--gold-3));
  transform-origin: left;
  transform: scaleX(0);
  will-change: transform;
}

/* ── Sep line draw on reveal ─────────────────────────────── */
[data-reveal] .sep {
  transform-origin: left;
  transform: scaleX(0) !important;
  transition: transform 0.8s var(--ease) 0.25s !important;
}
[data-reveal].revealed .sep {
  transform: scaleX(1) !important;
}
[data-reveal] .sep.sep-center { transform-origin: center; }

/* ── Eyebrow line draw on reveal ─────────────────────────── */
[data-reveal] .eyebrow::before {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease) 0.1s;
}
[data-reveal].revealed .eyebrow::before { transform: scaleX(1); }

/* ── Section title reveal — slide up, no blur ────────────── */
[data-reveal] .section-title {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s var(--ease) 0.2s, transform 0.75s var(--ease) 0.2s;
}
[data-reveal].revealed .section-title {
  opacity: 1;
  transform: none;
}

/* ── Hero floating line particles ────────────────────────── */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to top, transparent, rgba(184,136,74,0.45), transparent);
  opacity: 0;
  animation: particleRise var(--dur, 9s) ease-in-out var(--del, 0s) infinite;
}
.hero-particle:nth-child(1) { left:  11%; height: 100px; --dur: 10s; --del:  0s; }
.hero-particle:nth-child(2) { left:  34%; height:  70px; --dur:  8s; --del: 3.2s; }
.hero-particle:nth-child(3) { left:  67%; height: 120px; --dur: 12s; --del:  6s; }
.hero-particle:nth-child(4) { right: 11%; height:  80px; --dur:  9s; --del: 1.6s; }
@keyframes particleRise {
  0%   { opacity: 0;    transform: translateY(0); }
  12%  { opacity: 0.55; }
  88%  { opacity: 0.45; }
  100% { opacity: 0;    transform: translateY(-320px); }
}

/* ── About badge float ───────────────────────────────────── */
.about-badge { animation: badgeFloat 4s ease-in-out infinite; }
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

/* ── WhatsApp button idle pulse ──────────────────────────── */
.wa-btn { animation: waPulse 3.5s ease-in-out infinite; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,0.55), 0 0 0 8px rgba(37,211,102,0.08); }
}

/* ── Mobile menu link stagger ────────────────────────────── */
.mobile-menu.open a {
  animation: mobileItemIn 0.55s var(--ease) both;
}
.mobile-menu.open a:nth-child(2) { animation-delay: 0.06s; }
.mobile-menu.open a:nth-child(3) { animation-delay: 0.12s; }
.mobile-menu.open a:nth-child(4) { animation-delay: 0.18s; }
.mobile-menu.open a:nth-child(5) { animation-delay: 0.24s; }
.mobile-menu.open a:nth-child(6) { animation-delay: 0.30s; }
.mobile-menu.open a:nth-child(7) { animation-delay: 0.36s; }
@keyframes mobileItemIn {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: none; }
}

/* ── Counter glow on finish ──────────────────────────────── */
@keyframes countGlow {
  0%   { text-shadow: none; }
  40%  { text-shadow: 0 0 20px rgba(184,136,74,0.7), 0 0 40px rgba(184,136,74,0.35); }
  100% { text-shadow: none; }
}
.count-glow { animation: countGlow 1s ease-out forwards; }

/* ── Additional stagger delays ───────────────────────────── */
[data-delay="7"]  { transition-delay: 0.7s; }
[data-delay="8"]  { transition-delay: 0.8s; }
[data-delay="9"]  { transition-delay: 0.9s; }
[data-delay="10"] { transition-delay: 1.0s; }

/* ── prefers-reduced-motion ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; }
  .hero-headline .line-inner { transform: none !important; opacity: 1 !important; }
  .hero-eyebrow, .hero-divider, .hero-body, .hero-actions, .hero-stats {
    opacity: 1 !important; transform: none !important;
  }
}

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