/* ============================================
   EQUINOX HOME INTERIOR — DESIGN SYSTEM
   Premium animated multi-page website
   ============================================ */

/* ---------- 1. RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  cursor: none;
}

img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ---------- 2. CUSTOM PROPERTIES ---------- */
:root {
  /* ★ WARM LUXURY PALETTE — 2026 Trending ★ */
  --bg-primary: #1a120c;          /* deep espresso */
  --bg-secondary: #251a12;        /* warm brown-black */
  --bg-tertiary: #2e2118;         /* lighter brown */
  --bg-cream: #faf6ee;             /* warm ivory */
  --bg-cream-dark: #f0e9da;        /* deeper cream */
  --bg-light: #ffffff;
  --bg-sage: #e8ede5;              /* sage tint */

  --text-primary: #faf6ee;         /* warm white */
  --text-secondary: #d9cdbb;       /* warm grey */
  --text-tertiary: #a09080;        /* tan */
  --text-dark: #1a120c;            /* deep espresso */
  --text-medium: #4a382c;          /* coffee */
  --text-muted: #7a6856;           /* warm muted */

  /* Terracotta — warm, inviting, distinctive */
  --accent: #c95d3a;
  --accent-light: #d97a5a;
  --accent-dark: #a84a2d;
  --accent-soft: rgba(201, 93, 58, 0.12);

  /* Champagne gold — secondary luxury accent */
  --gold: #c8a772;
  --gold-light: #d9bd8d;
  --gold-soft: rgba(200, 167, 114, 0.15);

  /* Sage green — calming accent */
  --sage: #5c7567;
  --sage-light: #7a9183;
  --sage-soft: rgba(92, 117, 103, 0.12);

  --border-light: rgba(250,246,238,0.1);
  --border-dark: rgba(26,18,12,0.1);
  --border-accent: rgba(201, 93, 58, 0.3);

  /* Typography */
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --container: 1280px;
  --container-wide: 1440px;
  --section-y: clamp(80px, 12vw, 160px);

  /* Easings */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows — warm-tinted for cohesion */
  --shadow-sm: 0 2px 8px rgba(26,18,12,0.08);
  --shadow-md: 0 8px 24px rgba(26,18,12,0.12);
  --shadow-lg: 0 24px 64px rgba(26,18,12,0.18);
  --shadow-gold: 0 12px 40px rgba(201, 93, 58, 0.3);
  --shadow-terra: 0 16px 50px rgba(201, 93, 58, 0.35);
}

/* ---------- 3. TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.display-1 { font-size: clamp(48px, 8vw, 120px); }
.display-2 { font-size: clamp(40px, 6vw, 88px); }
.heading-1 { font-size: clamp(32px, 4.5vw, 64px); }
.heading-2 { font-size: clamp(28px, 3.5vw, 48px); }
.heading-3 { font-size: clamp(22px, 2.5vw, 32px); }

.body-lg { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.7; color: var(--text-secondary); }
.body { font-size: 16px; line-height: 1.7; color: var(--text-secondary); }
.body-sm { font-size: 14px; line-height: 1.6; color: var(--text-tertiary); }

.text-accent { color: var(--accent); }
.text-dark { color: var(--text-dark); }
.text-medium { color: var(--text-medium); }
.text-italic { font-style: italic; font-family: var(--font-accent); }

/* ---------- 4. LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: var(--section-y) 0; }
.section-light { background: var(--bg-light); color: var(--text-dark); }
.section-cream { background: var(--bg-cream); color: var(--text-dark); }
.section-dark { background: var(--bg-primary); color: var(--text-primary); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.section-header .eyebrow {
  justify-content: center;
  margin-bottom: 24px;
}

.section-header h2 {
  margin-bottom: 20px;
}

/* ---------- 5. CUSTOM CURSOR ---------- */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out);
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.6);
  transition: transform 0.4s var(--ease-out), width 0.3s, height 0.3s, opacity 0.3s;
}

.cursor-ring.is-hover {
  width: 72px;
  height: 72px;
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--accent);
}

@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
}

/* ---------- 6. LOADER ---------- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  position: relative;
}

.loader-logo::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--accent);
  width: 0;
  animation: loaderLine 1.5s var(--ease-out) forwards;
}

.loader-bar {
  width: 240px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.loader-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--accent);
  transform: translateX(-100%);
  animation: loaderProgress 1.8s var(--ease-out) forwards;
}

@keyframes loaderLine {
  to { width: 100%; }
}

@keyframes loaderProgress {
  to { transform: translateX(0); }
}

/* ---------- 7. NAVIGATION (FLOATING PILL) ---------- */
.nav {
  position: fixed;
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 1180px;
  transition: top 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  pointer-events: none;
}

.nav.is-scrolled {
  top: 20px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 28px;
  background: rgba(26, 18, 12, 0.78);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(250, 246, 238, 0.12);
  border-radius: 999px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.06);
  pointer-events: auto;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.nav.is-scrolled .nav-inner {
  background: rgba(26, 18, 12, 0.95);
  box-shadow: 0 24px 70px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
  padding: 8px 8px 8px 24px;
}

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

.nav-logo-main {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.nav-logo-sub {
  font-size: 8px;
  letter-spacing: 0.3em;
  color: var(--text-tertiary);
  margin-top: 3px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  gap: 4px;
  align-items: center;
  list-style: none;
}

.nav-link {
  position: relative;
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  padding: 10px 18px;
  border-radius: 999px;
  transition: all 0.3s var(--ease-out);
  font-weight: 500;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(250, 246, 238, 0.06);
}

.nav-link.is-active {
  color: var(--accent-light);
  background: var(--accent-soft);
  position: relative;
}

.nav-link.is-active::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: all 0.3s var(--ease-out);
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-terra);
}

.nav-cta::before { display: none; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  margin: 0 auto;
  position: relative;
  transition: all 0.3s var(--ease-out);
}

.nav.is-light .nav-toggle span { background: var(--text-dark); }

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  transition: all 0.3s var(--ease-out);
}

.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }

.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); background: var(--text-primary); }
.nav-toggle.is-open span::after { top: 0; transform: rotate(-45deg); background: var(--text-primary); }

@media (max-width: 968px) {
  .nav { top: 56px; width: calc(100% - 24px); }
  .nav.is-scrolled { top: 12px; }
  .nav-inner { padding: 8px 8px 8px 20px; }
  .nav-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26, 18, 12, 0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
    border-radius: 0;
    padding: 32px;
  }
  .nav-menu.is-open { transform: translateX(0); }
  .nav-menu .nav-link { font-size: 22px; padding: 16px 24px; color: var(--text-primary); }
  .nav-toggle { display: block; }
  .nav-cta { font-size: 15px; padding: 14px 28px; margin: 16px 0 0 0; }
}

/* ---------- 8. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  cursor: none;
}

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

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.2);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

.btn-outline-dark {
  background: transparent;
  border-color: rgba(0,0,0,0.15);
  color: var(--text-dark);
}

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

.btn-ghost {
  padding: 0;
  background: transparent;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}

.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 1px;
  width: 100%;
  background: var(--accent);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.btn-ghost:hover::after { transform: scaleX(1); }

.btn-arrow {
  width: 16px;
  height: 16px;
  display: inline-block;
  transition: transform 0.4s var(--ease-out);
}

.btn:hover .btn-arrow { transform: translateX(6px); }

/* ---------- 9. HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  margin-bottom: 32px;
}

.hero-title {
  font-size: clamp(48px, 7vw, 104px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-title .accent-word {
  font-style: italic;
  font-family: var(--font-accent);
  color: var(--accent);
  font-weight: 400;
  display: inline-block;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
  padding: 32px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s linear;
}

.hero-visual.is-loaded img { transform: scale(1); }

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-visual-tag {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  padding: 16px 24px;
  border-radius: 4px;
  border: 1px solid var(--border-light);
  z-index: 2;
}

.hero-visual-tag span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.hero-visual-tag strong {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-primary);
  font-weight: 400;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.hero-scroll-text {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 12px;
  background: var(--text-primary);
  top: -12px;
  animation: scrollLine 2.4s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
  to { top: 48px; }
}

@media (max-width: 968px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { gap: 24px; }
  .hero-stat-value { font-size: 32px; }
}

/* ---------- 10. PAGE HEADER (sub-pages) ---------- */
.page-header {
  padding: 220px 0 100px;
  text-align: center;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, var(--accent-soft) 0%, transparent 60%);
}

.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-header .eyebrow {
  justify-content: center;
  margin-bottom: 24px;
}

.page-header h1 {
  font-size: clamp(48px, 7vw, 96px);
  margin-bottom: 24px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 32px;
}

.breadcrumb-sep {
  color: var(--accent);
}

/* ---------- 11. CATEGORY CARDS ---------- */
.categories {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
}

.cat-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  cursor: none;
  transition: transform 0.5s var(--ease-out);
}

.cat-card:nth-child(2) {
  transform: translateY(40px);
}

.cat-card:hover {
  transform: translateY(-8px);
}

.cat-card:nth-child(2):hover {
  transform: translateY(32px);
}

.cat-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

.cat-card:hover .cat-card-img {
  transform: scale(1.08);
}

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.cat-card-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 16px;
  align-self: flex-start;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s var(--ease-out);
}

.cat-card:hover .cat-card-tag {
  transform: translateY(0);
  opacity: 1;
}

.cat-card h3 {
  font-size: 32px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.cat-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

.cat-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  transform: translateY(8px);
  opacity: 0;
  transition: all 0.4s var(--ease-out) 0.1s;
}

.cat-card:hover .cat-card-link {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 968px) {
  .categories { grid-template-columns: 1fr; }
  .cat-card:nth-child(2) { transform: none; }
  .cat-card:nth-child(2):hover { transform: translateY(-8px); }
}

/* ---------- 12. MARQUEE ---------- */
.marquee {
  overflow: hidden;
  padding: 32px 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-style: italic;
  color: var(--text-primary);
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 32px;
}

.marquee-item::after {
  content: '✦';
  color: var(--accent);
  font-size: 0.6em;
  font-style: normal;
}

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

/* ---------- 13. PHILOSOPHY / IMAGE+TEXT ---------- */
.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.philosophy-visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}

.philosophy-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.philosophy-visual:hover img {
  transform: scale(1.05);
}

.philosophy-content h2 {
  margin-bottom: 32px;
}

.feature-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-item {
  display: flex;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-light);
  transition: all 0.4s var(--ease-out);
}

.section-light .feature-item,
.section-cream .feature-item {
  border-bottom-color: var(--border-dark);
}

.feature-item:last-child { border-bottom: none; padding-bottom: 0; }

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all 0.4s var(--ease-out);
}

.feature-item:hover .feature-icon {
  background: var(--accent);
  color: var(--bg-primary);
  transform: rotate(360deg);
}

.feature-icon svg { width: 20px; height: 20px; }

.feature-text h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: inherit;
}

.feature-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.section-light .feature-text p,
.section-cream .feature-text p { color: var(--text-medium); }

@media (max-width: 968px) {
  .philosophy { grid-template-columns: 1fr; gap: 48px; }
}

/* ---------- 14. SERVICES GRID ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-dark);
}

.service-card {
  padding: 64px 40px;
  border-right: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  position: relative;
  transition: all 0.5s var(--ease-out);
  overflow: hidden;
  cursor: none;
}

.service-card:nth-child(3n) { border-right: none; }

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--text-dark);
  transition: height 0.5s var(--ease-out);
  z-index: 0;
}

.service-card:hover::before {
  height: 100%;
}

.service-card > * {
  position: relative;
  z-index: 1;
  transition: color 0.5s var(--ease-out);
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-num,
.service-card:hover .service-link {
  color: var(--text-primary);
}

.service-card:hover .service-link {
  color: var(--accent);
}

.service-num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: block;
}

.service-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.service-card p {
  font-size: 15px;
  color: var(--text-medium);
  margin-bottom: 32px;
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  font-weight: 500;
}

.service-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.4s var(--ease-out);
}

.service-card:hover .service-link svg {
  transform: translateX(6px);
}

@media (max-width: 968px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; }
}

/* ---------- 15. TESTIMONIALS ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial {
  padding: 48px 36px;
  background: var(--bg-light);
  border-radius: 4px;
  position: relative;
  transition: all 0.5s var(--ease-out);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.testimonial:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  color: var(--accent);
}

.testimonial-stars svg { width: 18px; height: 18px; }

.testimonial-quote {
  font-family: var(--font-accent);
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 968px) {
  .testimonials { grid-template-columns: 1fr; }
}

/* ---------- 16. CTA / NEWSLETTER ---------- */
.cta-block {
  text-align: center;
  padding: 80px 40px;
  background: var(--bg-secondary);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, var(--accent-soft) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(201, 169, 110, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.cta-block > * { position: relative; z-index: 1; }

.cta-block h2 {
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-block p {
  max-width: 540px;
  margin: 0 auto 40px;
  color: var(--text-secondary);
}

.newsletter-form {
  display: flex;
  max-width: 540px;
  margin: 0 auto;
  background: var(--bg-tertiary);
  border-radius: 999px;
  padding: 6px;
  border: 1px solid var(--border-light);
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 24px;
  color: var(--text-primary);
  font-size: 15px;
  outline: none;
}

.newsletter-input::placeholder { color: var(--text-tertiary); }

.newsletter-btn {
  padding: 14px 32px;
  background: var(--accent);
  color: var(--bg-primary);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
}

.newsletter-btn:hover {
  background: var(--accent-light);
  transform: translateX(2px);
}

/* ---------- 17. CONTACT FORM ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}

.contact-info h2 { margin-bottom: 24px; }
.contact-info p { margin-bottom: 48px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.contact-detail-icon svg { width: 18px; height: 18px; }

.contact-detail h5 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 6px;
  font-weight: 500;
}

.contact-detail p {
  font-size: 16px;
  color: inherit;
  margin: 0;
  line-height: 1.5;
}

.contact-form {
  background: var(--bg-light);
  padding: 56px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

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

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-medium);
  margin-bottom: 10px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-dark);
  font-size: 16px;
  color: var(--text-dark);
  transition: border-color 0.3s ease;
  outline: none;
}

.form-control:focus {
  border-bottom-color: var(--accent);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a96e' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  appearance: none;
}

.form-submit {
  padding: 16px 40px;
  background: var(--text-dark);
  color: var(--text-primary);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: none;
}

.form-submit:hover:not(:disabled) {
  background: var(--accent);
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.form-submit:disabled {
  cursor: wait;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.form-note {
  font-size: 12px;
  color: var(--text-medium);
  display: inline-flex;
  align-items: center;
  margin: 0;
  letter-spacing: 0.02em;
}

.form-note svg { color: #25D366; }

.form-note strong { color: var(--text-dark); font-weight: 600; }

@media (max-width: 540px) {
  .form-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 968px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px; }
}

/* ---------- 18. STATS SECTION ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-card {
  text-align: center;
  padding: 48px 24px;
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  background: var(--bg-light);
  transition: all 0.5s var(--ease-out);
}

.section-dark .stat-card {
  background: var(--bg-secondary);
  border-color: var(--border-light);
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 16px 48px rgba(201, 169, 110, 0.15);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.stat-label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-medium);
}

.section-dark .stat-label { color: var(--text-tertiary); }

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- 19. VALUES GRID (About) ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  padding: 48px 32px;
  background: var(--bg-light);
  border-radius: 4px;
  border-top: 3px solid transparent;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.value-card:hover {
  border-top-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
  transition: all 0.5s var(--ease-out);
}

.value-card:hover .value-icon {
  background: var(--accent);
  color: var(--bg-primary);
  transform: rotate(15deg) scale(1.05);
}

.value-icon svg { width: 28px; height: 28px; }

.value-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.value-card p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.6;
}

@media (max-width: 968px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ---------- 20. TEAM GRID ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3/4;
  cursor: none;
}

.team-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
  filter: grayscale(20%);
}

.team-card:hover .team-card-img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--text-primary);
}

.team-card h4 {
  font-size: 22px;
  margin-bottom: 4px;
}

.team-role {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}

.team-card:hover .team-bio { max-height: 100px; }

@media (max-width: 968px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* Leadership duo layout (Founder + MD) */
.team-grid.is-duo {
  grid-template-columns: 1fr 1fr;
  max-width: 920px;
  margin: 0 auto;
  gap: 32px;
}

.team-grid.is-duo .team-card {
  aspect-ratio: 4/5;
}

.team-grid.is-duo .team-card-overlay {
  background:
    linear-gradient(to top,
      rgba(10,8,6,0.98) 0%,
      rgba(10,8,6,0.98) 70%,
      rgba(10,8,6,0.85) 88%,
      rgba(10,8,6,0.3) 96%,
      transparent 100%);
  padding: 22px 26px 24px;
  height: 38%;
  top: auto;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.team-grid.is-duo .team-card h4 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.05;
  color: #ffffff;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.team-grid.is-duo .team-role {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.team-grid.is-duo .team-role::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--accent);
}

.team-grid.is-duo .team-bio {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.55;
  max-height: 200px;
  overflow: visible;
  color: rgba(255, 252, 245, 0.82);
  padding-top: 10px;
  border-top: 1px solid rgba(255, 252, 245, 0.12);
}

/* Photos — pin the face area to top so the bottom overlay never crops it */
.team-grid.is-duo .team-card-img {
  object-position: center 22%;
}

/* Per-card photo framing (each photo has its subject in different position) */
.team-grid.is-duo .team-card[data-photo="founder"] .team-card-img {
  object-position: 50% 24%;
}

.team-grid.is-duo .team-card[data-photo="md"] .team-card-img {
  object-position: 75% 35%;
}

.team-grid.is-duo .team-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 999px;
  z-index: 3;
  box-shadow:
    0 6px 20px rgba(201, 93, 58, 0.45),
    inset 0 1px 0 rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.18);
}

/* Years badge — sits inside the dark panel above the name */
.team-grid.is-duo .team-years {
  position: static;
  background: rgba(201, 93, 58, 0.18);
  border: 1px solid rgba(217, 191, 141, 0.4);
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 999px;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  z-index: 2;
}

.team-grid.is-duo .team-years::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 8px var(--gold);
}

.team-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 50% 30%, rgba(201,93,58,0.22) 0%, transparent 50%),
    linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 32px;
  gap: 16px;
  position: relative;
}

.team-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.7;
  color: var(--accent);
}

.team-placeholder strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  font-weight: 400;
  text-transform: none;
}

.team-placeholder small {
  font-size: 10px;
  color: var(--text-tertiary);
  letter-spacing: 0.15em;
  display: block;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .team-grid.is-duo { grid-template-columns: 1fr; }
}

/* ---------- 21. PROCESS TIMELINE ---------- */
.process {
  position: relative;
}

.process-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border-light);
  transform: translateX(-50%);
}

.section-light .process-line,
.section-cream .process-line { background: var(--border-dark); }

.process-step {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
}

.process-step:last-child { margin-bottom: 0; }

.process-step:nth-child(even) .process-content {
  grid-column: 3;
  text-align: left;
}

.process-step:nth-child(even) .process-visual {
  grid-column: 1;
  grid-row: 1;
}

.process-step:nth-child(odd) .process-content { text-align: right; }

.process-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--accent);
  position: relative;
  z-index: 1;
  transition: all 0.4s var(--ease-out);
}

.process-step:hover .process-num {
  background: var(--accent);
  color: var(--bg-primary);
  transform: scale(1.1);
}

.process-visual {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}

.process-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.process-step:hover .process-visual img {
  transform: scale(1.05);
}

.process-content h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.section-dark .process-content h3 { color: var(--text-primary); }

.process-content p {
  color: var(--text-medium);
  line-height: 1.7;
}

.section-dark .process-content p { color: var(--text-secondary); }

@media (max-width: 768px) {
  .process-line { left: 32px; }
  .process-step { grid-template-columns: auto 1fr; gap: 24px; }
  .process-step .process-num { grid-column: 1; grid-row: 1; }
  .process-step .process-content,
  .process-step:nth-child(even) .process-content { grid-column: 2; grid-row: 1; text-align: left; }
  .process-step .process-visual { grid-column: 2; grid-row: 2; }
  .process-step:nth-child(even) .process-visual { grid-column: 2; grid-row: 2; }
}

/* ---------- 22. INSTAGRAM REELS ---------- */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.reel-card {
  background: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  cursor: none;
}

.reel-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.reel-visual {
  position: relative;
  aspect-ratio: 9/14;
  overflow: hidden;
}

.reel-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.reel-card:hover .reel-visual img {
  transform: scale(1.08);
}

.reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s var(--ease-out);
  z-index: 2;
}

.reel-card:hover .reel-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.reel-play::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--accent);
  margin-left: 4px;
}

.reel-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  color: var(--text-primary);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.reel-info {
  padding: 24px;
}

.reel-info h4 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.reel-info p {
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: 16px;
}

.reel-stats {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-dark);
}

.reel-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

.reel-stat svg { width: 14px; height: 14px; color: var(--accent); }

@media (max-width: 968px) {
  .reels-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .reels-grid { grid-template-columns: 1fr; }
}

/* ---------- 23. COMPARE TABLE ---------- */
.compare-table-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-light);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.compare-table thead th {
  padding: 40px 24px 32px;
  text-align: center;
  background: var(--bg-cream);
  border-bottom: 1px solid var(--border-dark);
  vertical-align: bottom;
}

.compare-table thead th:first-child {
  text-align: left;
  background: var(--bg-light);
}

.compare-plan-name {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: block;
  font-weight: 500;
}

.compare-plan-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 16px;
}

.compare-plan-tag.popular {
  background: var(--accent);
  color: var(--bg-primary);
}

.compare-plan-price {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--text-dark);
  line-height: 1;
}

.compare-plan-price span {
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-muted);
  margin-left: 4px;
}

.compare-plan-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

.compare-table tbody th {
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-dark);
  width: 30%;
}

.compare-table tbody td {
  padding: 20px 24px;
  text-align: center;
  color: var(--text-medium);
  border-bottom: 1px solid var(--border-dark);
  border-left: 1px solid var(--border-dark);
  transition: background 0.3s ease;
}

.compare-table tbody tr:hover td {
  background: var(--bg-cream);
}

.compare-table tbody tr:hover th {
  background: var(--bg-cream);
}

.compare-table .col-popular {
  background: linear-gradient(to bottom, rgba(201,169,110,0.06) 0%, rgba(201,169,110,0.02) 100%);
  position: relative;
}

.compare-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.compare-x {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.compare-table tfoot td {
  padding: 32px 24px;
  text-align: center;
  border-left: 1px solid var(--border-dark);
  background: var(--bg-cream);
}

.compare-table tfoot td:first-child {
  border-left: none;
  background: var(--bg-light);
}

.compare-cta {
  display: inline-flex;
  padding: 14px 32px;
  background: var(--text-dark);
  color: var(--text-primary);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.4s var(--ease-out);
}

.compare-cta:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.compare-cta.is-primary {
  background: var(--accent);
  color: var(--bg-primary);
}

.compare-cta.is-primary:hover {
  background: var(--accent-light);
}

.compare-toggle {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
  padding: 6px;
  background: var(--bg-cream-dark);
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.compare-toggle::-webkit-scrollbar { display: none; }

.toggle-btn {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-medium);
  letter-spacing: 0.03em;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: none;
}

.toggle-btn:hover:not(.is-active) {
  color: var(--text-dark);
  background: rgba(0, 0, 0, 0.04);
}

.toggle-btn.is-active {
  background: var(--text-dark);
  color: var(--text-primary);
  box-shadow: 0 4px 12px rgba(26, 18, 12, 0.2);
}

@media (max-width: 640px) {
  .compare-toggle { justify-content: flex-start; }
  .toggle-btn { padding: 9px 16px; font-size: 12px; }
}

@media (max-width: 968px) {
  .compare-table {
    font-size: 13px;
  }
  .compare-table thead th,
  .compare-table tbody td,
  .compare-table tbody th {
    padding: 16px 12px;
  }
  .compare-plan-name { font-size: 18px; }
  .compare-plan-price { font-size: 24px; }
}

/* Property scope cards */
.prop-card {
  cursor: none;
}

.prop-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent) !important;
  box-shadow: 0 16px 40px rgba(201, 93, 58, 0.18);
}

/* ---------- 24. FAQ ---------- */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-dark);
  padding: 28px 0;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
}

.faq-item:hover .faq-q {
  color: var(--accent);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s var(--ease-out);
  font-size: 16px;
}

.faq-item.is-open .faq-toggle {
  background: var(--accent);
  color: var(--bg-primary);
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}

.faq-item.is-open .faq-a {
  max-height: 400px;
}

.faq-a p {
  padding-top: 20px;
  color: var(--text-medium);
  font-size: 16px;
  line-height: 1.7;
}

/* ---------- 25. FOOTER ---------- */
.footer {
  background: var(--bg-primary);
  color: var(--text-secondary);
  padding: 120px 0 40px;
  position: relative;
  overflow: hidden;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 64px;
  margin-bottom: 80px;
}

.footer-logo-main {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.footer-logo-sub {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 32px;
}

.footer-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-tertiary);
  margin-bottom: 32px;
  max-width: 340px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  transition: all 0.4s var(--ease-out);
}

.footer-social:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--bg-primary);
  transform: translateY(-3px);
}

.footer-social svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-tertiary);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-tertiary);
}

.footer-bottom a {
  color: var(--accent);
}

@media (max-width: 968px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- 26. SCROLL ANIMATIONS ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="left"] { transform: translateX(-60px); }
[data-reveal="left"].is-revealed { transform: translateX(0); }

[data-reveal="right"] { transform: translateX(60px); }
[data-reveal="right"].is-revealed { transform: translateX(0); }

[data-reveal="scale"] { transform: scale(0.92); }
[data-reveal="scale"].is-revealed { transform: scale(1); }

[data-reveal-delay="100"] { transition-delay: 100ms; }
[data-reveal-delay="200"] { transition-delay: 200ms; }
[data-reveal-delay="300"] { transition-delay: 300ms; }
[data-reveal-delay="400"] { transition-delay: 400ms; }
[data-reveal-delay="500"] { transition-delay: 500ms; }

/* Text split animation */
[data-split-text] .split-line {
  overflow: hidden;
  display: block;
}

[data-split-text] .split-line span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.2s var(--ease-out);
}

[data-split-text].is-revealed .split-line span {
  transform: translateY(0);
}

[data-split-text].is-revealed .split-line:nth-child(2) span { transition-delay: 100ms; }
[data-split-text].is-revealed .split-line:nth-child(3) span { transition-delay: 200ms; }
[data-split-text].is-revealed .split-line:nth-child(4) span { transition-delay: 300ms; }

/* Counter animation */
[data-counter] {
  display: inline-block;
}

/* Parallax hint */
[data-parallax] {
  will-change: transform;
}

/* ---------- 27. UTILITIES ---------- */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 4px; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mb-0 { margin-bottom: 0; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.text-center { text-align: center; }

.glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--accent-soft);
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}

/* ---------- 28. PORTFOLIO GALLERY ---------- */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 64px;
}

.filter-btn {
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-medium);
  background: transparent;
  border: 1px solid var(--border-dark);
  transition: all 0.3s var(--ease-out);
  cursor: none;
}

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

.filter-btn.is-active {
  background: var(--text-dark);
  border-color: var(--text-dark);
  color: var(--text-primary);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: none;
  background: var(--bg-cream-dark);
  aspect-ratio: 4/5;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item.is-wide {
  grid-column: span 2;
  aspect-ratio: 8/5;
}

.gallery-item.is-tall {
  grid-row: span 2;
  aspect-ratio: 4/10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.2) 40%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--text-primary);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-category {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 14px;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease-out) 0.05s;
}

.gallery-item:hover .gallery-category { transform: translateY(0); }

.gallery-title {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 6px;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease-out) 0.1s;
}

.gallery-item:hover .gallery-title { transform: translateY(0); }

.gallery-location {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease-out) 0.15s;
}

.gallery-item:hover .gallery-location { transform: translateY(0); }

.gallery-zoom {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.4s var(--ease-out);
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: scale(1);
}

.gallery-zoom svg { width: 18px; height: 18px; }

@media (max-width: 968px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .gallery-item.is-wide { grid-column: span 2; aspect-ratio: 8/5; }
  .gallery-item.is-tall { grid-row: span 1; aspect-ratio: 4/5; }
}

@media (max-width: 540px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery-item.is-wide { grid-column: span 1; aspect-ratio: 4/3; }
}

/* Image placeholder pattern */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(201,169,110,0.08),
      rgba(201,169,110,0.08) 12px,
      rgba(201,169,110,0.15) 12px,
      rgba(201,169,110,0.15) 24px
    );
  color: var(--accent-dark);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
  gap: 12px;
}

.gallery-placeholder svg { width: 32px; height: 32px; opacity: 0.5; }

/* ---------- 29. LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.96);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
  padding: 60px 20px;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  transform: scale(0.95);
  transition: transform 0.4s var(--ease-out);
}

.lightbox.is-open .lightbox-content {
  transform: scale(1);
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}

.lightbox-caption {
  text-align: center;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 18px;
}

.lightbox-caption span {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: all 0.3s var(--ease-out);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-primary);
}

.lightbox-close {
  top: 24px;
  right: 24px;
}

.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

.lightbox-counter {
  position: absolute;
  top: 32px;
  left: 32px;
  color: var(--text-tertiary);
  font-family: var(--font-display);
  font-size: 14px;
}

.lightbox-counter span {
  color: var(--accent);
  font-size: 18px;
}

@media (max-width: 768px) {
  .lightbox-prev, .lightbox-next, .lightbox-close { width: 44px; height: 44px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}

/* ---------- 30. PROJECT META BAR ---------- */
.project-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--bg-cream);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 64px;
}

.project-meta-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border-dark);
}

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

.project-meta-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.project-meta-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-medium);
}

@media (max-width: 768px) {
  .project-meta { grid-template-columns: repeat(2, 1fr); }
  .project-meta-item:nth-child(2) { border-right: none; }
  .project-meta-item:nth-child(1), .project-meta-item:nth-child(2) {
    border-bottom: 1px solid var(--border-dark);
  }
}

/* ============================================
   ★ MODERN CINEMATIC ANIMATIONS LAYER ★
   ============================================ */

/* ---------- INTRO REVEAL ---------- */
.intro-reveal {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: transform 1.4s cubic-bezier(0.86, 0, 0.07, 1) 1.8s;
}
.intro-reveal.is-done { transform: translateY(-100%); }

.intro-mask {
  font-family: var(--font-display);
  font-size: clamp(80px, 16vw, 220px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  overflow: hidden;
  display: flex;
  gap: 0.05em;
}
.intro-mask span {
  display: inline-block;
  transform: translateY(110%);
  animation: introUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.intro-mask span:nth-child(1) { animation-delay: 0.1s; }
.intro-mask span:nth-child(2) { animation-delay: 0.2s; }
.intro-mask span:nth-child(3) { animation-delay: 0.3s; color: var(--accent); font-style: italic; }
.intro-mask span:nth-child(4) { animation-delay: 0.4s; }
.intro-mask span:nth-child(5) { animation-delay: 0.5s; }
.intro-mask span:nth-child(6) { animation-delay: 0.6s; }
.intro-mask span:nth-child(7) { animation-delay: 0.7s; }
@keyframes introUp {
  to { transform: translateY(0); }
}

/* ---------- CINEMATIC HERO ---------- */
.hero-mega {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 180px 0 100px;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero-mega-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-mega-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 169, 110, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(201, 169, 110, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.hero-mega-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 2;
}

.hero-mega-inner {
  position: relative;
  z-index: 3;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.hero-meta-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 12px #4ade80;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-mega-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 14vw, 240px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--text-primary);
  margin-bottom: 64px;
}

.hero-mega-title .line {
  display: block;
  overflow: hidden;
}

.hero-mega-title .word {
  display: inline-block;
  transform: translateY(110%) rotate(8deg);
  opacity: 0;
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.4s ease;
  transform-origin: bottom left;
}

.is-loaded .hero-mega-title .word {
  transform: translateY(0) rotate(0);
  opacity: 1;
}

.hero-mega-title .word:nth-child(1) { transition-delay: 0.2s; }
.hero-mega-title .word:nth-child(2) { transition-delay: 0.3s; }
.hero-mega-title .word:nth-child(3) { transition-delay: 0.4s; }
.hero-mega-title .word:nth-child(4) { transition-delay: 0.5s; }
.hero-mega-title .word:nth-child(5) { transition-delay: 0.6s; }

.hero-mega-title .italic {
  font-style: italic;
  font-family: var(--font-accent);
  color: var(--accent);
  font-weight: 400;
}

.hero-mega-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 64px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease 1s, transform 1s var(--ease-out) 1s;
}
.is-loaded .hero-mega-bottom {
  opacity: 1;
  transform: translateY(0);
}

.hero-mega-desc {
  max-width: 480px;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--text-secondary);
}

.hero-mega-cta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-mega {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 24px 48px;
  background: var(--accent);
  color: var(--bg-primary);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-mega::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--text-primary);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
  z-index: 0;
}

.btn-mega:hover::before { transform: translateY(0); }
.btn-mega:hover { color: var(--bg-primary); }
.btn-mega > * { position: relative; z-index: 1; }

.btn-mega-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-primary);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease-out);
}

.btn-mega:hover .btn-mega-arrow { transform: rotate(-45deg); background: var(--accent); color: var(--bg-primary); }

/* Floating image card in hero */
.hero-float {
  position: absolute;
  width: 280px;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  z-index: 4;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  animation: floatIn 1.4s var(--ease-out) 1.4s forwards, floatY 6s ease-in-out 2s infinite;
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(60px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero-float-1 {
  top: 18%;
  right: 8%;
  transform: rotate(4deg);
}

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

.hero-float-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

@media (max-width: 968px) {
  .hero-float { display: none; }
  .hero-mega-bottom { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ---------- IMAGE MARQUEE (PORTFOLIO STRIP) ---------- */
.image-marquee {
  padding: 60px 0;
  background: var(--bg-primary);
  overflow: hidden;
  position: relative;
}

.image-marquee-track {
  display: flex;
  gap: 24px;
  animation: imgMarquee 60s linear infinite;
  width: max-content;
}

.image-marquee:hover .image-marquee-track {
  animation-play-state: paused;
}

.image-marquee-item {
  flex-shrink: 0;
  width: 380px;
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  transition: transform 0.5s var(--ease-out);
}

.image-marquee-item:hover {
  transform: scale(1.04);
}

.image-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

.image-marquee-item:hover img {
  transform: scale(1.08);
}

.image-marquee-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.image-marquee-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

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

/* ---------- BIG SECTION HEADING ---------- */
.mega-heading {
  font-family: var(--font-display);
  font-size: clamp(60px, 11vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-weight: 400;
  margin-bottom: 64px;
}

.mega-heading .italic {
  font-style: italic;
  font-family: var(--font-accent);
  color: var(--accent);
}

.mega-heading .line {
  display: block;
  overflow: hidden;
}

.mega-heading .line span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-heading.is-revealed .line span { transform: translateY(0); }
.mega-heading.is-revealed .line:nth-child(2) span { transition-delay: 0.1s; }
.mega-heading.is-revealed .line:nth-child(3) span { transition-delay: 0.2s; }

/* ---------- STICKY SCROLL STORY ---------- */
.story-scroll {
  position: relative;
  padding: 120px 0;
}

.story-scroll-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.story-sticky {
  position: sticky;
  top: 120px;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
}

.story-sticky img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.story-sticky img.is-active { opacity: 1; }

.story-blocks {
  display: flex;
  flex-direction: column;
  gap: 200px;
  padding-bottom: 200px;
}

.story-block {
  padding-top: 80px;
}

.story-block-num {
  font-family: var(--font-display);
  font-size: 240px;
  line-height: 0.8;
  color: var(--accent-soft);
  margin-bottom: 0;
  position: relative;
  top: -40px;
  font-weight: 500;
}

.story-block h3 {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.story-block p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 440px;
}

@media (max-width: 968px) {
  .story-scroll-inner { grid-template-columns: 1fr; }
  .story-sticky { position: relative; top: 0; aspect-ratio: 4/3; margin-bottom: 32px; }
  .story-blocks { gap: 80px; padding-bottom: 0; }
  .story-block-num { font-size: 140px; }
}

/* ---------- BENTO SERVICES GRID ---------- */
.bento {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  min-height: 720px;
}

.bento-item {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all 0.5s var(--ease-out);
  cursor: none;
}

.bento-item:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
}

.bento-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(201,169,110,0.15) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.bento-item:hover::after { opacity: 1; }

.bento-item-1 { grid-column: 1; grid-row: 1 / 3; }
.bento-item-2 { grid-column: 2; grid-row: 1; }
.bento-item-3 { grid-column: 3; grid-row: 1; }
.bento-item-4 { grid-column: 2; grid-row: 2; }
.bento-item-5 { grid-column: 3; grid-row: 2; }

.bento-num {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
}

.bento-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 32px);
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.bento-item-1 .bento-title { font-size: clamp(36px, 4vw, 56px); }

.bento-desc {
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.bento-img {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 70%;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.6s var(--ease-out);
}

.bento-item:hover .bento-img {
  opacity: 0.9;
  transform: scale(1.1);
}

.bento-item-1 .bento-img {
  bottom: 40px;
  right: 40px;
  width: 60%;
  height: 60%;
  aspect-ratio: auto;
  border-radius: 8px;
}

.bento-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.bento-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.4s var(--ease-out);
}

.bento-item:hover .bento-link svg {
  transform: translateX(6px);
}

@media (max-width: 968px) {
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }
  .bento-item-1 { grid-column: 1 / 3; grid-row: auto; }
  .bento-item-2, .bento-item-3, .bento-item-4, .bento-item-5 {
    grid-column: auto; grid-row: auto;
  }
  .bento-item { min-height: 240px; }
}

@media (max-width: 540px) {
  .bento { grid-template-columns: 1fr; }
  .bento-item-1 { grid-column: auto; }
}

/* ---------- 3D TILT CARDS ---------- */
.tilt-card {
  transition: transform 0.3s var(--ease-out);
  transform-style: preserve-3d;
  will-change: transform;
}

/* ---------- BIG STATS BAR ---------- */
.big-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 80px 0;
  gap: 0;
}

.big-stat {
  padding: 0 40px;
  border-right: 1px solid var(--border-light);
}

.big-stat:last-child { border-right: none; }

.big-stat-num {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 120px);
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-weight: 400;
}

.big-stat-num .italic {
  color: var(--accent);
  font-style: italic;
  font-family: var(--font-accent);
}

.big-stat-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

@media (max-width: 768px) {
  .big-stats { grid-template-columns: repeat(2, 1fr); gap: 32px; padding: 48px 0; }
  .big-stat { border-right: none; padding: 0 16px; }
}

/* ---------- AWARDS / TRUST BAR ---------- */
.trust-bar {
  padding: 48px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-primary);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.trust-list {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-secondary);
  font-style: italic;
  letter-spacing: -0.01em;
}

/* ---------- HOVER REVEAL PROJECT LIST ---------- */
.project-list {
  display: flex;
  flex-direction: column;
}

.project-link {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--border-light);
  color: var(--text-primary);
  transition: padding-left 0.4s var(--ease-out);
  overflow: hidden;
}

.project-link:last-child { border-bottom: 1px solid var(--border-light); }

.project-link:hover { padding-left: 48px; }

.project-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 1px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.project-link:hover::before { opacity: 1; }

.project-link-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  transition: color 0.4s ease;
}

.project-link:hover .project-link-title {
  color: var(--accent);
  font-style: italic;
}

.project-link-meta {
  display: flex;
  gap: 32px;
  align-items: center;
}

.project-link-meta span {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.project-link-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-out);
}

.project-link:hover .project-link-arrow {
  background: var(--accent);
  color: var(--bg-primary);
  transform: rotate(-45deg) scale(1.1);
}

/* Hover preview image */
.project-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.4s var(--ease-out);
  z-index: 50;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.project-preview.is-visible {
  opacity: 1;
  transform: scale(1);
}

.project-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .project-preview { display: none; }
  .project-link { padding: 24px 0; }
  .project-link:hover { padding-left: 0; }
  .project-link-meta { display: none; }
}

/* ---------- MAGNETIC LARGE CTA ---------- */
.cta-mega {
  position: relative;
  padding: 160px 0;
  text-align: center;
  background: var(--bg-primary);
  overflow: hidden;
}

.cta-mega::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--accent-soft);
  filter: blur(120px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.cta-mega-inner {
  position: relative;
  z-index: 1;
}

.cta-mega-eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.cta-mega-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 160px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 56px;
  color: var(--text-primary);
}

.cta-mega-title .italic {
  font-style: italic;
  color: var(--accent);
  font-family: var(--font-accent);
}

/* ---------- CURSOR TRAIL DOTS ---------- */
.cursor-trail {
  position: fixed;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.8;
  transition: opacity 0.6s ease;
}

/* ---------- SCRAMBLE TEXT EFFECT ---------- */
[data-scramble] {
  font-family: var(--font-display);
  display: inline-block;
}

/* ---------- ASYMMETRIC GALLERY (HOME) ---------- */
.asym-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px;
  gap: 16px;
}

.asym-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: none;
  background: var(--bg-cream-dark);
}

.asym-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.asym-item:hover img { transform: scale(1.08); }

.asym-item-a { grid-column: 1 / 6; grid-row: 1 / 5; }
.asym-item-b { grid-column: 6 / 10; grid-row: 1 / 4; }
.asym-item-c { grid-column: 10 / 13; grid-row: 1 / 4; }
.asym-item-d { grid-column: 6 / 9; grid-row: 4 / 7; }
.asym-item-e { grid-column: 9 / 13; grid-row: 4 / 7; }
.asym-item-f { grid-column: 1 / 6; grid-row: 5 / 8; }

.asym-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: white;
}

.asym-item:hover .asym-overlay { opacity: 1; }

.asym-overlay h4 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 4px;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease-out);
}

.asym-item:hover .asym-overlay h4 { transform: translateY(0); }

.asym-overlay span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  transform: translateY(20px);
  transition: transform 0.4s var(--ease-out) 0.05s;
  display: inline-block;
}

.asym-item:hover .asym-overlay span { transform: translateY(0); }

@media (max-width: 768px) {
  .asym-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .asym-item-a, .asym-item-b, .asym-item-c, .asym-item-d, .asym-item-e, .asym-item-f {
    grid-column: auto;
    grid-row: auto;
  }
  .asym-item-a { grid-column: 1 / 3; }
}

/* ============================================
   ★ PROJECT REEL — 3D Fanned Card Deck ★
   ============================================ */
.reel-section {
  padding: 140px 0;
  background: var(--bg-secondary);
  overflow: hidden;
  position: relative;
}

.reel-section::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  z-index: 0;
  pointer-events: none;
}

.reel-section::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92, 117, 103, 0.08) 0%, transparent 70%);
  bottom: -200px;
  left: -100px;
  z-index: 0;
  pointer-events: none;
}

.reel-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.reel-content h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.reel-content h2 .italic {
  font-style: italic;
  font-family: var(--font-accent);
  color: var(--accent);
}

.reel-content p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.reel-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  margin-top: 32px;
}

.reel-meta-pos {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
  font-style: italic;
  min-width: 80px;
}

.reel-meta-pos span {
  font-size: 18px;
  color: var(--text-tertiary);
  font-style: normal;
  margin-left: 4px;
}

.reel-meta-info {
  flex: 1;
}

.reel-meta-cat {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 6px;
  font-weight: 600;
}

.reel-meta-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 4px;
}

.reel-meta-loc {
  font-size: 13px;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.reel-meta-loc svg { width: 12px; height: 12px; color: var(--accent); }

.reel-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.reel-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(250,246,238,0.04);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease-out);
}

.reel-feature:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--text-primary);
  transform: translateX(4px);
}

.reel-feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--accent);
}

/* The 3D Stage */
.reel-stage {
  position: relative;
  height: 580px;
  perspective: 1800px;
  perspective-origin: 50% 50%;
}

.reel-track {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.reel-stage::before {
  content: '';
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.5) 0%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
  animation: deckShadow 4s ease-in-out infinite;
}

@keyframes deckShadow {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.5; }
  50%      { transform: translateX(-50%) scale(1.15); opacity: 0.7; }
}

.reel-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360px;
  height: 480px;
  margin-left: -180px;
  margin-top: -240px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.1);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease;
  transform-style: preserve-3d;
  cursor: none;
  border: 1px solid rgba(250,246,238,0.08);
}

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

.reel-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 35%, transparent 65%, rgba(0,0,0,0.4) 100%),
    linear-gradient(to top, rgba(26,18,12,0.85) 0%, transparent 50%);
  pointer-events: none;
}

.reel-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  color: var(--text-primary);
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.6s var(--ease-out);
}

.reel-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent);
  color: var(--bg-primary);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

.reel-card-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bg-primary);
}

.reel-card h4 {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* Card positions */
.reel-card[data-state="active"] {
  transform: translate3d(0, 0, 0) rotate(0);
  z-index: 5;
  opacity: 1;
}
.reel-card[data-state="next"] {
  transform: translate3d(50px, -25px, -100px) rotate(-4deg);
  z-index: 4;
  opacity: 0.9;
}
.reel-card[data-state="next2"] {
  transform: translate3d(100px, -50px, -200px) rotate(-8deg);
  z-index: 3;
  opacity: 0.65;
}
.reel-card[data-state="next3"] {
  transform: translate3d(150px, -75px, -300px) rotate(-12deg);
  z-index: 2;
  opacity: 0.4;
}
.reel-card[data-state="hidden"] {
  transform: translate3d(-400px, 200px, 100px) rotate(-25deg);
  z-index: 1;
  opacity: 0;
}

/* The numbered ring around stage */
.reel-orbit {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 6;
}

.reel-orbit-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(250,246,238,0.2);
  transition: all 0.4s var(--ease-out);
}

.reel-orbit-dot.is-active {
  background: var(--accent);
  width: 28px;
  border-radius: 999px;
  box-shadow: 0 0 12px var(--accent);
}

/* Decorative corner labels */
.reel-corner {
  position: absolute;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
}

.reel-corner-line {
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.reel-corner-tl { top: 0; left: 0; }
.reel-corner-br { bottom: 0; right: 0; flex-direction: row-reverse; }

@media (max-width: 968px) {
  .reel-grid { grid-template-columns: 1fr; gap: 48px; }
  .reel-stage { height: 480px; }
  .reel-card { width: 280px; height: 380px; margin-left: -140px; margin-top: -190px; }
  .reel-features { grid-template-columns: 1fr; }
}

/* Legacy 3D cube — kept for reference but hidden */
.room3d-section {
  display: none;
  padding: 120px 0;
  background: var(--bg-secondary);
  overflow: hidden;
  position: relative;
}

.room3d-section::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  z-index: 0;
}

.room3d-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.room3d-stage {
  perspective: 1600px;
  perspective-origin: 50% 35%;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.room3d-cube {
  width: 360px;
  height: 360px;
  position: relative;
  transform-style: preserve-3d;
  animation: cubeRotate 20s ease-in-out infinite;
  filter: drop-shadow(0 50px 60px rgba(0,0,0,0.5));
}

.room3d-stage::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 50px;
  background: radial-gradient(ellipse at center, rgba(201, 93, 58, 0.4) 0%, transparent 60%);
  filter: blur(20px);
  border-radius: 50%;
  animation: shadowPulse 4s ease-in-out infinite;
}

@keyframes shadowPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.5; }
  50% { transform: translateX(-50%) scale(1.2); opacity: 0.8; }
}

.room3d-section:hover .room3d-cube {
  animation-duration: 8s;
}

.cube-face {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(250,246,238,0.2);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.cube-face::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.3) 100%);
  z-index: 2;
  pointer-events: none;
}

.cube-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cube-face-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,12,0.85) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--text-primary);
}

.cube-face-overlay span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 8px;
}

.cube-face-overlay h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
}

.cube-front  { transform: translateZ(180px); }
.cube-back   { transform: translateZ(-180px) rotateY(180deg); }
.cube-right  { transform: translateX(180px) rotateY(90deg); }
.cube-left   { transform: translateX(-180px) rotateY(-90deg); }
.cube-top    { transform: translateY(-180px) rotateX(90deg); }
.cube-bottom { transform: translateY(180px) rotateX(-90deg); }

@keyframes cubeRotate {
  0%   { transform: rotateX(-18deg) rotateY(0deg) rotateZ(0deg); }
  25%  { transform: rotateX(-12deg) rotateY(90deg) rotateZ(2deg); }
  50%  { transform: rotateX(-18deg) rotateY(180deg) rotateZ(0deg); }
  75%  { transform: rotateX(-12deg) rotateY(270deg) rotateZ(-2deg); }
  100% { transform: rotateX(-18deg) rotateY(360deg) rotateZ(0deg); }
}

.room3d-content h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.room3d-content h2 .italic {
  font-style: italic;
  color: var(--accent);
  font-family: var(--font-accent);
}

.room3d-content p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.room3d-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.room3d-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(250,246,238,0.04);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease-out);
}

.room3d-feature:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--text-primary);
}

.room3d-feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 968px) {
  .room3d-grid { grid-template-columns: 1fr; gap: 48px; }
  .room3d-stage { height: 440px; }
  .room3d-cube { width: 260px; height: 260px; }
  .cube-face { width: 260px; height: 260px; }
  .cube-front { transform: translateZ(130px); }
  .cube-back { transform: translateZ(-130px) rotateY(180deg); }
  .cube-right { transform: translateX(130px) rotateY(90deg); }
  .cube-left { transform: translateX(-130px) rotateY(-90deg); }
  .cube-top { transform: translateY(-130px) rotateX(90deg); }
  .cube-bottom { transform: translateY(130px) rotateX(-90deg); }
  .room3d-features { grid-template-columns: 1fr; }
}

/* ============================================
   ★ CINEMATIC BEFORE / AFTER REVEAL ★
   ============================================ */
.ba-showcase {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.ba-stack {
  position: relative;
  aspect-ratio: 16/10;
}

.ba-card {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  box-shadow: 0 40px 80px rgba(26,18,12,0.35);
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  transition: opacity 0.6s ease, transform 0.7s var(--ease-out);
  pointer-events: none;
}

.ba-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  z-index: 3;
}

.ba-card.is-next {
  opacity: 0.5;
  transform: translateY(20px) scale(0.97);
  z-index: 2;
  pointer-events: none;
}

.ba-card.is-prev {
  opacity: 0;
  transform: translateY(-30px) scale(1.02);
  z-index: 1;
  pointer-events: none;
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before-img {
  filter: saturate(0.45) brightness(0.78) contrast(0.95);
  transition: filter 0.6s ease;
}

.ba-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,18,12,0.3) 0%, rgba(26,18,12,0) 50%);
  z-index: 1;
  pointer-events: none;
}

.ba-after-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.ba-after-wrap .ba-img {
  width: 200%;
  filter: saturate(1.1) contrast(1.05);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(to bottom,
    transparent 0%,
    var(--accent) 12%,
    var(--accent-light) 50%,
    var(--accent) 88%,
    transparent 100%);
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 0 20px var(--accent), 0 0 40px rgba(201, 93, 58, 0.4);
}

.ba-handle-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 50%, var(--accent-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  box-shadow:
    0 0 0 8px rgba(201, 93, 58, 0.15),
    0 0 0 16px rgba(201, 93, 58, 0.08),
    0 16px 40px rgba(0,0,0,0.4),
    inset 0 2px 4px rgba(255,255,255,0.25);
  font-size: 22px;
  font-weight: bold;
  animation: handleBreathe 3s ease-in-out infinite;
}

@keyframes handleBreathe {
  0%, 100% { box-shadow: 0 0 0 8px rgba(201,93,58,0.15), 0 0 0 16px rgba(201,93,58,0.08), 0 16px 40px rgba(0,0,0,0.4), inset 0 2px 4px rgba(255,255,255,0.25); }
  50% { box-shadow: 0 0 0 14px rgba(201,93,58,0.2), 0 0 0 28px rgba(201,93,58,0.05), 0 16px 40px rgba(0,0,0,0.4), inset 0 2px 4px rgba(255,255,255,0.25); }
}

.ba-handle-dot svg { width: 26px; height: 26px; }

.ba-label {
  position: absolute;
  top: 32px;
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  z-index: 3;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ba-label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.ba-before {
  left: 32px;
  background: rgba(26,18,12,0.7);
  color: var(--text-primary);
  border: 1px solid rgba(250,246,238,0.15);
}
.ba-before::before { background: #ff5e5e; }

.ba-after {
  right: 32px;
  background: var(--accent);
  color: var(--text-primary);
  border: 1px solid var(--accent-light);
  box-shadow: 0 8px 24px rgba(201,93,58,0.4);
}
.ba-after::before { background: #4ade80; box-shadow: 0 0 8px #4ade80; }

.ba-meta {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  pointer-events: none;
}

.ba-meta-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 32px);
  color: var(--text-primary);
  margin-bottom: 6px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.ba-meta-sub {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.7);
}

.ba-meta-spec {
  text-align: right;
  background: rgba(26,18,12,0.6);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid rgba(250,246,238,0.1);
}

.ba-meta-spec strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--accent-light);
  margin-bottom: 2px;
}

.ba-meta-spec span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* Drag me hint */
.ba-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 60px));
  background: rgba(26,18,12,0.92);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 5;
  pointer-events: none;
  white-space: nowrap;
  animation: hintBounce 2s ease-in-out infinite;
  border: 1px solid var(--accent);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  opacity: 1;
  transition: opacity 0.4s ease;
}

.ba-card.is-touched .ba-hint { opacity: 0; }

@keyframes hintBounce {
  0%, 100% { transform: translate(-50%, calc(-50% + 60px)); }
  50% { transform: translate(-50%, calc(-50% + 70px)); }
}

/* Controls + carousel dots */
.ba-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.ba-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--text-dark);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-sm);
}

.ba-arrow:hover {
  background: var(--accent);
  color: var(--text-primary);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-terra);
}

.ba-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ba-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bg-cream-dark);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ba-dot.is-active {
  background: var(--accent);
  width: 28px;
  border-radius: 999px;
}

@media (max-width: 768px) {
  .ba-meta-spec { display: none; }
  .ba-meta { left: 20px; right: 20px; bottom: 20px; }
  .ba-label { top: 20px; padding: 6px 12px; font-size: 10px; }
  .ba-before { left: 20px; } .ba-after { right: 20px; }
  .ba-handle-dot { width: 56px; height: 56px; }
}

/* ============================================
   ★ MATERIALS SHOWCASE ★
   ============================================ */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.material-card {
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: none;
  background: var(--bg-cream-dark);
  transition: transform 0.5s var(--ease-out);
}

.material-card:hover {
  transform: translateY(-8px);
}

.material-swatch {
  width: 100%;
  height: 70%;
  display: block;
}

.material-info {
  padding: 16px;
  background: var(--bg-light);
  height: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.material-info h5 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.material-info span {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 968px) {
  .materials-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 540px) {
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   ★ AWARDS BAR / CERTIFICATIONS ★
   ============================================ */
.awards-bar {
  padding: 64px 0;
  background: var(--bg-cream-dark);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  align-items: center;
}

.award-item {
  text-align: center;
  padding: 24px 16px;
  transition: all 0.4s var(--ease-out);
}

.award-item:hover {
  transform: translateY(-6px);
}

.award-badge {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.award-badge svg { width: 28px; height: 28px; }

.award-name {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.award-year {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   ★ UPCOMING PROJECTS / ROADMAP ★
   ============================================ */
.roadmap {
  position: relative;
  padding: 60px 0;
}

.roadmap-line {
  position: absolute;
  top: 80px;
  bottom: 80px;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--accent) 20%, var(--accent) 80%, transparent);
  transform: translateX(-50%);
  z-index: 0;
}

.roadmap-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  z-index: 1;
}

.roadmap-item:nth-child(even) .roadmap-content {
  grid-column: 3;
  text-align: left;
}

.roadmap-item:nth-child(even) .roadmap-visual {
  grid-column: 1;
  grid-row: 1;
}

.roadmap-item:nth-child(odd) .roadmap-content {
  text-align: right;
}

.roadmap-marker {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 3px solid var(--accent);
  position: relative;
  z-index: 2;
}

.roadmap-marker::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0.5;
  animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.5); opacity: 0; }
}

.roadmap-date {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 12px;
  font-weight: 600;
}

.roadmap-content h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.roadmap-content p {
  color: var(--text-medium);
  line-height: 1.6;
}

.roadmap-visual {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
}

.roadmap-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.roadmap-item:hover .roadmap-visual img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .roadmap-line { left: 20px; }
  .roadmap-item { grid-template-columns: auto 1fr; gap: 24px; margin-bottom: 48px; }
  .roadmap-item .roadmap-marker { grid-column: 1; grid-row: 1; }
  .roadmap-item .roadmap-content,
  .roadmap-item:nth-child(even) .roadmap-content { grid-column: 2; grid-row: 1; text-align: left; }
  .roadmap-item .roadmap-visual,
  .roadmap-item:nth-child(even) .roadmap-visual { grid-column: 2; grid-row: 2; margin-top: 16px; }
}

/* ============================================
   ★ LOCATION / SERVICE AREA ★
   ============================================ */
.location-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-light);
  box-shadow: var(--shadow-lg);
}

.location-info {
  padding: 64px 48px;
}

.location-info h3 {
  font-family: var(--font-display);
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.location-info > p {
  color: var(--text-medium);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.service-areas {
  margin-top: 32px;
}

.service-areas h5 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 600;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tag {
  padding: 8px 16px;
  background: var(--bg-cream);
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.area-tag:hover {
  background: var(--accent);
  color: var(--bg-light);
  border-color: var(--accent);
}

.location-map {
  position: relative;
  background: var(--bg-cream-dark);
  min-height: 400px;
  overflow: hidden;
}

.map-frame {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .location-card { grid-template-columns: 1fr; }
  .location-info { padding: 40px 28px; }
  .location-map { min-height: 320px; }
}

/* ============================================
   ★ FAQ STYLING UPDATE FOR DARK ★
   ============================================ */
.section-dark .faq-item {
  border-bottom-color: var(--border-light);
}
.section-dark .faq-q { color: var(--text-primary); }
.section-dark .faq-a p { color: var(--text-secondary); }

/* ============================================
   ★ ANNOUNCEMENT BANNER ★
   ============================================ */
.banner-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, var(--accent-dark) 0%, var(--accent) 50%, var(--accent-dark) 100%);
  color: var(--text-primary);
  padding: 10px 0;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.5s var(--ease-out);
}

.banner-strip.is-hidden {
  transform: translateY(-100%);
}

.banner-strip-track {
  display: flex;
  gap: 64px;
  animation: bannerMarquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.banner-strip:hover .banner-strip-track {
  animation-play-state: paused;
}

.banner-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.banner-strip-item::before {
  content: '★';
  color: var(--bg-primary);
  font-size: 10px;
}

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

/* ============================================
   ★ VIDEO SHOWCASE — Cinematic Background Reel ★
   ============================================ */
.video-showcase {
  position: relative;
  padding: 0;
  background: var(--bg-primary);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(1.05);
  filter: brightness(0.6) saturate(1.1);
  transition: opacity 1.2s var(--ease-out);
}

.video-bg video.is-inactive {
  opacity: 0;
}

.video-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26,18,12,0.5) 0%, rgba(26,18,12,0.15) 30%, rgba(26,18,12,0.5) 70%, rgba(26,18,12,0.8) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(26,18,12,0.6) 100%);
  z-index: 1;
}

.video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--bg-primary) 0%, transparent 15%, transparent 85%, var(--bg-primary) 100%);
  z-index: 1;
}

.video-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 32px;
  max-width: 1200px;
}

.video-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 22px;
  background: rgba(201, 93, 58, 0.15);
  border: 1px solid var(--accent);
  border-radius: 999px;
  margin-bottom: 32px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 600;
  backdrop-filter: blur(10px);
  animation: chipFadeIn 1s var(--ease-out);
}

.video-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: dotPulse 1.6s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.6; }
}

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

.video-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 32px;
  font-weight: 400;
}

.video-title .italic {
  font-style: italic;
  font-family: var(--font-accent);
  color: var(--accent-light);
}

.video-desc {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.video-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(250, 246, 238, 0.12);
}

.video-stat {
  text-align: center;
}

.video-stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 8px;
}

.video-stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

/* Video controls (toggle + indicator) */
.video-controls {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
}

.video-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(250, 246, 238, 0.1);
  border: 1px solid rgba(250, 246, 238, 0.25);
  backdrop-filter: blur(12px);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: all 0.3s var(--ease-out);
}

.video-toggle:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.08);
}

.video-toggle svg { width: 18px; height: 18px; }

.video-toggle .icon-pause { display: block; }
.video-toggle .icon-play { display: none; }
.video-toggle.is-paused .icon-pause { display: none; }
.video-toggle.is-paused .icon-play { display: block; }

.video-indicator {
  display: flex;
  gap: 8px;
}

.video-indicator span {
  width: 32px;
  height: 2px;
  background: rgba(250, 246, 238, 0.25);
  border-radius: 2px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.video-indicator span.is-active {
  background: var(--accent);
  width: 56px;
}

.video-indicator span.is-active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-light);
  animation: indicatorFill 8s linear;
  transform-origin: left;
}

@keyframes indicatorFill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Floating corner labels */
.video-corner {
  position: absolute;
  z-index: 3;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}

.video-corner-tl { top: 32px; left: 32px; }
.video-corner-tr { top: 32px; right: 32px; }
.video-corner-bl { bottom: 32px; left: 32px; }

.video-corner-line {
  width: 32px;
  height: 1px;
  background: var(--accent);
}

@media (max-width: 768px) {
  .video-content { padding: 80px 24px; }
  .video-stats { gap: 32px; padding-top: 24px; margin-top: 32px; }
  .video-corner-tr, .video-corner-tl, .video-corner-bl { font-size: 9px; top: 16px; left: 16px; }
  .video-corner-tr { right: 16px; left: auto; }
  .video-corner-bl { bottom: 16px; top: auto; }
  .video-controls { bottom: 16px; right: 16px; }
  .video-toggle { width: 44px; height: 44px; }
}

/* ---------- 31. PRINT ---------- */
@media print {
  .nav, .footer, .cursor-dot, .cursor-ring, .loader { display: none; }
}

/* ---------- 22b. REELS HOVER + LIGHTBOX ---------- */

/* Button reset for .reel-card (now a <button>) — scoped to instagram grid */
.reels-grid .reel-card {
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  border: 0;
  padding: 0;
  display: block;
  background: var(--bg-light);
  cursor: none;
}

/* Visual container background for poster letterboxing */
.reel-visual {
  background: #000;
}

/* Inline preview video */
.reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  z-index: 1;
}

.reel-card:hover .reel-video,
.reel-card.is-playing .reel-video {
  opacity: 1;
}

/* "Full mode" enlarged preview on hover - higher specificity override */
.reels-grid .reel-card:hover {
  transform: translateY(-12px) scale(1.04);
}

/* Hide static play icon once video preview is showing */
.reels-grid .reel-card:hover .reel-play {
  opacity: 0;
}

/* Duration pill */
.reel-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-primary);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
  z-index: 2;
}

/* Lightbox overlay */
.reel-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s;
  padding: 24px;
}

.reel-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

body.lightbox-open {
  overflow: hidden;
}

/* Close button */
.reel-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: background 0.25s;
  z-index: 1;
}

.reel-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* Stage layout */
.reel-lightbox-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  max-width: 1100px;
  width: 100%;
  align-items: center;
}

.reel-lightbox-video {
  width: 100%;
  max-height: 85vh;
  aspect-ratio: 9/16;
  object-fit: contain;
  background: #000;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.reel-lightbox-info {
  color: #fff;
  display: flex;
  flex-direction: column;
}

.reel-lightbox-title {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.reel-lightbox-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}

.reel-lightbox-link {
  align-self: flex-start;
}

/* Responsive */
@media (max-width: 900px) {
  .reel-lightbox-stage {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .reel-lightbox-video {
    max-height: 70vh;
  }
  .reel-lightbox-info {
    text-align: center;
  }
  .reel-lightbox-link {
    align-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reel-video {
    transition: none;
  }
  .reel-lightbox {
    transition: none;
  }
}
