/* ═══════════════════════════════════════════════
   CULINARY STRATEGY — GLOBAL STYLESHEET
   Design language: Editorial luxury, warm dark
   Fonts: Cormorant Garamond (display) + DM Sans (body)
════════════════════════════════════════════════ */

/* ─── VARIABLES ─────────────────────────────── */
:root {
  /* Palette */
  --ink:         #0e0c09;
  --ink-soft:    #1c1814;
  --parchment:   #f5f0e8;
  --parchment-2: #ede6d8;
  --gold:        #c9a84c;
  --gold-light:  #dbbe7a;
  --gold-dim:    rgba(201,168,76,0.15);
  --cream:       #faf7f2;
  --mist:        rgba(14,12,9,0.06);
  --text-body:   #3a342a;
  --text-muted:  #7a6e60;
  --border:      rgba(201,168,76,0.2);
  --border-soft: rgba(14,12,9,0.1);
  --white:       #ffffff;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
  --space-2xl: 10rem;

  /* Layout */
  --max-width: 1280px;
  --gutter:    clamp(1.5rem, 5vw, 4rem);

  /* Animation */
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
}

/* ─── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul[role="list"] { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ─── TYPOGRAPHY ─────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(3.2rem, 7vw, 6rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.1rem; font-weight: 500; }
em { font-style: italic; }
p { max-width: 65ch; }

/* ─── LAYOUT HELPERS ─────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: var(--space-xl) 0; }

/* ─── BUTTONS ─────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background 0.25s var(--ease), transform 0.2s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--parchment);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--border-soft);
  color: var(--text-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: border-color 0.25s, color 0.25s;
  white-space: nowrap;
}
.btn-ghost-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-full { width: 100%; justify-content: center; }

/* ─── NAVIGATION ─────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.4s var(--ease), padding 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(14,12,9,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.9rem 0;
  box-shadow: 0 1px 0 var(--border);
}
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: auto;
  text-decoration: none;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--parchment);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-item {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.75);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-item:hover, .nav-item:focus-visible { color: var(--gold); background: rgba(201,168,76,0.06); }
.chevron { font-size: 0.65rem; transition: transform 0.2s; display: inline-block; }
.has-dropdown { position: relative; }
.has-dropdown:hover .chevron,
.has-dropdown:focus-within .chevron { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 280px;
  background: var(--ink-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s var(--ease), visibility 0.2s, transform 0.2s var(--ease);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  z-index: 200;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.dropdown-link:hover { background: rgba(201,168,76,0.08); }
.dropdown-icon { color: var(--gold); font-size: 0.7rem; flex-shrink: 0; margin-top: 2px; }
.dropdown-link strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--parchment);
  letter-spacing: 0.02em;
}
.dropdown-link em {
  display: block;
  font-size: 0.72rem;
  font-style: normal;
  color: var(--text-muted);
  margin-top: 1px;
}
.nav-cta {
  padding: 0.65rem 1.4rem;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: 0.5rem;
}
.mobile-menu-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--parchment);
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 1px;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 99;
  padding: 6rem var(--gutter) 3rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { list-style: none; }
.mobile-menu a, .mobile-menu .mobile-section-label {
  display: block;
  padding: 0.9rem 0;
  font-size: 1.2rem;
  color: var(--parchment);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu a:hover { color: var(--gold); padding-left: 0.5rem; }
.mobile-section-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 2rem;
  border-bottom: none;
}
.mobile-divider { height: 1rem; }
.mobile-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--ink) !important;
  padding: 0.85rem 2rem !important;
  border-radius: var(--radius-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem !important;
  border-bottom: none !important;
}

/* ─── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--ink);
  z-index: 0;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
  z-index: 1;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 65% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 100%, rgba(201,168,76,0.05) 0%, transparent 60%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  padding-bottom: 6rem;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  animation: fadeUp 0.8s var(--ease) both;
}
.eyebrow-line {
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-headline {
  color: var(--parchment);
  margin-bottom: 1.75rem;
  animation: fadeUp 0.8s 0.1s var(--ease) both;
}
.hero-headline em { color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(245,240,232,0.65);
  max-width: 52ch;
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeUp 0.8s 0.2s var(--ease) both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp 0.8s 0.3s var(--ease) both;
}
.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem; right: var(--gutter);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
  z-index: 10;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.5));
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ─── STATS BAND ─────────────────────────────── */
.stats-band {
  background: var(--ink-soft);
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2.5rem;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 0 2.5rem;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.stat-desc {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.5);
  line-height: 1.5;
  max-width: 20ch;
  margin: 0 auto;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── FRAMEWORK / SERVICES GRID ──────────────── */
.framework-section { background: var(--cream); }
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
  gap: 2rem;
}
.section-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.section-eyebrow-light { color: rgba(201,168,76,0.7); }
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 1rem;
  max-width: 55ch;
  margin-left: auto;
  margin-right: auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}
.service-card:hover { background: var(--parchment-2); }
.service-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s var(--ease);
}
.service-card:hover .service-card-bg { transform: scale(1.03); }
.service-bg-1 { background: linear-gradient(135deg, #2a1f0e 0%, #1c1510 50%, #0e0c09 100%); }
.service-bg-2 { background: linear-gradient(135deg, #12180e 0%, #0e130a 50%, #080d06 100%); }
.service-bg-3 { background: linear-gradient(135deg, #150e1e 0%, #100a17 50%, #0a0810 100%); }
.service-bg-4 { background: linear-gradient(135deg, #1a0e0e 0%, #140a0a 50%, #0e0808 100%); }
/* decorative geometry on card images */
.service-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 30%, rgba(201,168,76,0.12) 0%, transparent 70%),
    linear-gradient(to bottom, transparent 50%, rgba(14,12,9,0.5) 100%);
}
.service-card-tag {
  position: absolute;
  bottom: 1rem; left: 1.25rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  z-index: 2;
}
.service-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.service-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}
.service-card-link {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.service-card-link:hover { gap: 0.7rem; }

/* ─── TOOLS TEASER ───────────────────────────── */
.tools-teaser {
  background: var(--ink);
  padding: var(--space-xl) 0;
}
.tools-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.tools-teaser-content .section-eyebrow { color: var(--gold); }
.tools-teaser-content h2 { color: var(--parchment); margin-bottom: 1rem; }
.tools-teaser-content h2 em { color: var(--gold); }
.tools-teaser-content p {
  color: rgba(245,240,232,0.6);
  margin-bottom: 2rem;
  font-size: 1rem;
}
.tools-teaser-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.tool-preview-card {
  background: var(--ink-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(245,240,232,0.7);
  transition: border-color 0.25s, background 0.25s;
}
.tool-preview-card:hover { border-color: var(--gold); background: rgba(201,168,76,0.04); }
.tool-icon { color: var(--gold); font-size: 1.1rem; }

/* ─── INSIGHTS ───────────────────────────────── */
.insights-section { background: var(--parchment); }
.insights-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.insight-card-featured {
  grid-row: 1 / 3;
}
.insight-card {
  background: var(--cream);
  transition: background 0.25s;
}
.insight-card:hover { background: var(--parchment-2); }
.insight-card-link { display: flex; flex-direction: column; height: 100%; text-decoration: none; }
.insight-card-image {
  height: 200px;
  background: linear-gradient(135deg, #1c1510, #0e0c09);
  position: relative;
  overflow: hidden;
}
.insight-card-featured .insight-card-image { height: 260px; }
.insight-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(201,168,76,0.1) 0%, transparent 70%),
              linear-gradient(to bottom, transparent 40%, rgba(14,12,9,0.6) 100%);
}
.insight-img-2 { background: linear-gradient(135deg, #0e1510, #080d09); }
.insight-img-3 { background: linear-gradient(135deg, #15100e, #0d0908); }
.insight-img-4 { background: linear-gradient(135deg, #100e15, #09080d); }
.insight-tag {
  position: absolute;
  bottom: 1rem; left: 1.25rem;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  z-index: 2;
}
.insight-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.insight-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.insight-card-featured .insight-card-body h3 { font-size: 1.55rem; }
.insight-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}
.insight-read-more {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-top: auto;
}

/* ─── WHO WE WORK WITH ───────────────────────── */
.who-section { background: var(--cream); padding: var(--space-lg) 0; }
.who-section .section-header { margin-bottom: 2.5rem; }
.who-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.who-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.25rem;
  border: 1px solid var(--border-soft);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--text-body);
  background: var(--parchment);
  transition: border-color 0.2s, color 0.2s;
}
.who-item:hover { border-color: var(--gold); color: var(--gold); }
.who-icon { color: var(--gold); font-size: 0.6rem; }
.who-geo {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  max-width: none;
}

/* ─── CONTACT ────────────────────────────────── */
.contact-section {
  background: var(--ink);
  padding: var(--space-xl) 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-content h2 { color: var(--parchment); }
.contact-content h2 em { color: var(--gold); }
.contact-content > p {
  color: rgba(245,240,232,0.6);
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}
.contact-options { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-option {
  display: flex;
  flex-direction: column;
  padding: 1.1rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.25s, background 0.25s;
  gap: 0.25rem;
}
.contact-option:hover { border-color: var(--gold); background: rgba(201,168,76,0.04); }
.contact-option-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--parchment);
}
.contact-option-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--ink-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: var(--parchment);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,240,232,0.25); }
.form-group select option { background: var(--ink-soft); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(245,240,232,0.3);
  max-width: none;
  margin-top: -0.25rem;
}
.form-success {
  text-align: center;
  padding: 2rem;
}
.success-icon {
  display: block;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.form-success p { color: var(--parchment); max-width: none; margin: 0; }

/* ─── FOOTER ─────────────────────────────────── */
.site-footer {
  background: var(--ink-soft);
  border-top: 1px solid var(--border);
  padding: var(--space-lg) 0 var(--space-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-brand > p {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.45);
  line-height: 1.6;
  max-width: 30ch;
  margin-bottom: 1.25rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.footer-social a {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: rgba(245,240,232,0.45);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.footer-enterprise {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.35);
  max-width: none;
  line-height: 1.7;
}
.footer-enterprise a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(201,168,76,0.3);
  text-underline-offset: 3px;
}
.footer-enterprise a:hover { text-decoration-color: var(--gold); }
.footer-nav h3 {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  font-weight: 400;
}
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.55);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-subscribe h3 {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  font-weight: 400;
}
.footer-subscribe > p {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.45);
  margin-bottom: 1rem;
  max-width: none;
}
.subscribe-form {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.subscribe-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: var(--parchment);
  outline: none;
}
.subscribe-form input::placeholder { color: rgba(245,240,232,0.25); }
.subscribe-form button {
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.subscribe-form button:hover { background: var(--gold-light); }
.subscribe-note {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.3);
  max-width: none;
}
.subscribe-note a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.3);
  max-width: none;
}
.footer-bottom nav {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom nav a {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.35);
  transition: color 0.2s;
}
.footer-bottom nav a:hover { color: var(--gold); }

/* ─── SECTION REUSABLE: FAQ (AEO) ────────────── */
.faq-section { background: var(--parchment); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-chevron {
  color: var(--gold);
  font-size: 1rem;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-answer-inner {
  padding: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ─── ANIMATIONS ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 0.8; transform: scaleY(1.15); }
}

/* Intersection observer reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .tools-teaser-inner { gap: 3rem; }
  .contact-inner { gap: 3rem; }
  .insights-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .insight-card-featured { grid-column: 1 / -1; grid-row: auto; }
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .tools-teaser-inner { grid-template-columns: 1fr; }
  .tools-teaser-cards { order: -1; }
  .contact-inner { grid-template-columns: 1fr; }
  .section-header-row { flex-direction: column; align-items: flex-start; }
  .stats-grid { flex-direction: column; gap: 2rem; }
  .stat-divider { display: none; }
  .stat-item { padding: 0; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-menu-toggle { display: flex; }
  .mobile-menu { display: block; }
  .hero-headline { font-size: clamp(2.6rem, 9vw, 4rem); }
  .hero-scroll-cue { display: none; }
  .insights-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  section { padding: var(--space-lg) 0; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; text-align: center; }
  .who-grid { gap: 0.5rem; }
  .who-item { font-size: 0.78rem; }
}
