/* ── LOCAL FONTS ── */
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/merriweather-v33-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/merriweather-v33-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/merriweather-v33-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-600.woff2') format('woff2');
}

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

:root {
  --gold: #C9A96E;
  --gold-dark: #A8853F;
  --gold-light: #E2C99A;
  --black: #0a0a0a;
  --surface: #111111;
  --surface-2: #1a1a1a;
  --border: rgba(201, 169, 110, 0.2);
  --border-subtle: rgba(255,255,255,0.08);
  --text: #F0EDE8;
  --text-muted: #9A9488;
  --text-subtle: #5C5850;
  --font-serif: 'Merriweather', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --max: 1140px;
  --r: 4px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.125rem; font-weight: 700; }
p { color: var(--text-muted); font-size: 1rem; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

/* ── LAYOUT ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }
.section--dark { background: var(--black); }
.section--surface { background: var(--surface); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0.875rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.5rem;
}
.nav-logo svg { height: 36px; width: auto; }
.nav-wordmark {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--r);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--r);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover { background: var(--gold-light); color: var(--black); }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
}
.btn-ghost:hover { border-color: var(--border); color: var(--text); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 78px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('../img/hero-lions.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.25) saturate(0.6);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.3) 0%,
    rgba(10,10,10,0.1) 40%,
    rgba(10,10,10,0.7) 80%,
    rgba(10,10,10,1) 100%
  );
}
.hero > .container {
  position: relative;
  z-index: 2;
}
.hero-content {
  max-width: 780px;
  padding: 8rem 0 6rem;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  margin-bottom: 1.5rem;
  color: #F5F0E8;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-nowrap { white-space: nowrap; }
@media (max-width: 900px) {
  .hero-nowrap { white-space: normal; }
}
.hero-sub {
  font-size: 1.125rem;
  color: rgba(240,237,232,0.7);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── DIVIDER ── */
.gold-line {
  width: 48px; height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

/* ── SECTION HEADER ── */
.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ── PROBLEM ── */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.problem-points { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.5rem; }
.problem-point {
  display: flex; gap: 1rem; align-items: flex-start;
}
.point-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
}
.point-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.point-title { font-weight: 600; color: var(--text); font-size: 0.9375rem; margin-bottom: 0.25rem; }
.point-text { font-size: 0.875rem; color: var(--text-muted); }

/* ── QUOTE ── */
.quote-block {
  border-left: 2px solid var(--gold);
  padding: 1.25rem 1.75rem;
  background: var(--surface-2);
  border-radius: 0 var(--r) var(--r) 0;
  margin-top: 2.5rem;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}

/* ── FUTURE ── */
.future-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 3rem;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
}
.future-card {
  background: var(--surface);
  padding: 2rem;
}
.future-card-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.future-card h3 { margin-bottom: 0.75rem; font-size: 1rem; }
.future-card p { font-size: 0.875rem; }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3rem;
  background: var(--border-subtle);
}
.service-item {
  background: var(--black);
  padding: 2rem 1.75rem;
  border: 1px solid transparent;
  transition: border-color 0.2s;
}
.service-item:hover { border-color: var(--border); }
.service-num {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-subtle);
  margin-bottom: 1rem;
}
.service-item h3 { margin-bottom: 0.5rem; font-size: 1rem; }
.service-item p { font-size: 0.875rem; }

/* ── AUDIENCES ── */
.audience-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.audience-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r);
  padding: 2rem;
  transition: border-color 0.3s;
}
.audience-card:hover { border-color: var(--border); }
.audience-card--featured { border-color: var(--border); }
.audience-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
  padding: 0.25rem 0.625rem;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 1rem;
}
.audience-card h3 { margin-bottom: 0.75rem; font-size: 1rem; }
.audience-card p { font-size: 0.875rem; margin-bottom: 1.5rem; }
.audience-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  display: flex; align-items: center; gap: 0.375rem;
}
.audience-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ── METHOD ── */
.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.method-steps::before {
  content: '';
  position: absolute;
  top: 20px; left: 60px; right: 60px;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.method-step { padding: 0 1.5rem; position: relative; z-index: 1; }
.method-step:first-child { padding-left: 0; }
.step-num {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.method-step h3 { font-size: 0.9375rem; margin-bottom: 0.5rem; }
.method-step p { font-size: 0.8125rem; }

/* ── AUDIT CTA ── */
.audit-section {
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.audit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.audit-checklist {
  display: flex; flex-direction: column; gap: 0.75rem;
  margin-top: 1.75rem;
}
.audit-check {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.875rem; color: var(--text-muted);
}
.audit-check svg {
  flex-shrink: 0; width: 14px; height: 14px;
  stroke: var(--gold); fill: none; stroke-width: 2;
}
.audit-price {
  font-size: 0.8125rem;
  color: var(--text-subtle);
  margin-top: 1rem;
}
.audit-price strong { color: var(--text-muted); }
.audit-right { display: flex; flex-direction: column; justify-content: center; }
.audit-right h2 { margin-bottom: 1.25rem; }
.audit-right p { margin-bottom: 2rem; }

/* ── TRUST ── */
.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.trust-text h2 { margin-bottom: 1.25rem; }
.trust-text p { margin-bottom: 1.25rem; }
.trust-highlight {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem 1.75rem;
}
.trust-highlight-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.trust-highlight p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }
.trust-visual {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r);
  padding: 2.5rem;
}
.trust-stat { margin-bottom: 2rem; }
.trust-stat:last-child { margin-bottom: 0; }
.trust-stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.trust-stat-label { font-size: 0.8125rem; color: var(--text-muted); }
.trust-divider { height: 1px; background: var(--border-subtle); margin: 1.5rem 0; }

/* ── FINAL CTA ── */
.final-cta {
  text-align: center;
  padding: 8rem 0;
}
.final-cta h2 { max-width: 640px; margin: 0 auto 1.25rem; }
.final-cta p { max-width: 520px; margin: 0 auto 2.5rem; }
.final-cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border-subtle);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.8125rem; color: var(--text-subtle); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.8125rem; color: var(--text-subtle); }
.footer-links a:hover { color: var(--text-muted); }

/* ── BURGER ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text-muted);
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 78px; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: var(--black);
  border-top: 1px solid var(--border-subtle);
  padding: 2rem;
  overflow-y: auto;
}
.mobile-menu.is-open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; }
.mobile-menu ul li { border-bottom: 1px solid var(--border-subtle); }
.mobile-menu ul li a {
  display: block;
  padding: 1.125rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.mobile-menu ul li a:hover { color: var(--text); }
.mobile-menu ul li:last-child {
  border-bottom: none;
  display: flex;
  justify-content: center;
  padding: 2rem 0 0.5rem;
}
.mobile-cta {
  display: inline-flex !important;
  background: var(--gold);
  color: var(--black) !important;
  padding: 0.875rem 2.5rem !important;
  border-radius: var(--r);
  font-size: 0.9375rem !important;
  font-weight: 600 !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .problem-grid,
  .audience-cards,
  .method-steps,
  .audit-inner,
  .trust-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .future-cards,
  .services-grid { grid-template-columns: 1fr; }
  .method-steps::before { display: none; }
  .method-step { padding: 0; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .section { padding: 4rem 0; }
  h1, h2 { overflow-wrap: break-word; }
  .final-cta h2 { padding: 0 1.5rem; }
}
