/* Atlas Media House — Premium Real Estate Media */
/* Design language: editorial serif + champagne gold on deep warm black */

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200;300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

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

:root {
  /* Depth — warm near-black, not cold */
  --black:         #0A0B0D;
  --dark:          #0F1114;
  --card:          #14171C;
  --card-hover:    #1A1E24;
  --surface:       #1E2228;
  --border:        rgba(255,255,255,0.06);
  --border-strong: rgba(255,255,255,0.10);
  --border-gold:   rgba(201,169,97,0.24);

  /* Champagne gold — primary luxury accent */
  --gold:          #C9A961;
  --gold-light:    #E0C88A;
  --gold-deep:     #8F7332;
  --gold-soft:     rgba(201,169,97,0.08);
  --gold-glow:     rgba(201,169,97,0.20);

  /* Retained chrome (tertiary — legacy class compatibility) */
  --chrome:        #C9A961;
  --chrome-light:  #E0C88A;
  --chrome-dim:    #8F7332;
  --chrome-glow:   rgba(201,169,97,0.18);
  --chrome-glow2:  rgba(201,169,97,0.08);

  /* Text — warm ivory spectrum */
  --white:         #F4EFE7;
  --text:          #C7BFAE;
  --muted:         #7B7465;
  --faint:         #4A4439;

  /* Radius kept minimal — sharper = more premium */
  --radius:        2px;
  --max:           1180px;

  /* Fonts */
  --font-display:  'Unbounded', 'Space Grotesk', sans-serif;
  --font-body:     'Inter', -apple-system, sans-serif;
  --font-mono:     'Space Grotesk', 'Inter', sans-serif;
  --font-head:     'Unbounded', 'Space Grotesk', sans-serif; /* legacy alias */
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

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

::selection { background: var(--gold-glow); color: var(--white); }

/* ─── NAV ─────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,11,13,0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.nav-logo img {
  height: 42px;
  width: auto;
  display: block;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-logo-text span { color: var(--gold); font-style: italic; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--white); }

/* ─── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 1rem 2.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.74rem;
  font-family: var(--font-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-align: center;
  line-height: 1.3;
}

.btn-primary {
  background: var(--gold);
  color: #15100A;
  font-weight: 700;
}

.btn-primary:hover {
  background: var(--gold-light);
  color: #15100A;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px -12px var(--gold-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-soft);
}

.btn-lg { padding: 1.1rem 2.5rem; font-size: 0.76rem; }
.btn-xl { padding: 1.2rem 2.75rem; font-size: 0.78rem; }

/* ─── LAYOUT ──────────────────────────────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 7rem 0; }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-label::after { display: none; }

.section-label.text-center { justify-content: center; }

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.75rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.03em;
  text-transform: none;
}

h1 em, h1 .italic {
  font-style: normal;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: -0.015em;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.025em;
}
h2 em, h2 .italic { font-style: normal; color: var(--gold-light); font-weight: 300; letter-spacing: -0.015em; }

h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

p { color: var(--text); line-height: 1.75; }

.text-gold    { color: var(--gold); }
.text-chrome  { color: var(--gold); }
.text-muted   { color: var(--muted); }
.text-center  { text-align: center; }
.text-white   { color: var(--white); }

/* Decorative rule */
.brand-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  margin: 2rem 0;
}
.brand-rule::before,
.brand-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-strong));
}
.brand-rule::after { background: linear-gradient(to left, transparent, var(--border-strong)); }

/* ─── HERO ────────────────────────────────────── */
.hero {
  padding: 9rem 0 7rem;
  background:
    linear-gradient(to bottom, rgba(10,11,13,0.55) 0%, rgba(10,11,13,0.72) 55%, rgba(10,11,13,0.95) 100%),
    url('images/hero-aerial.jpg') center 50% / cover no-repeat;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 20%, rgba(201,169,97,0.08), transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.hero-content { max-width: 860px; position: relative; z-index: 2; }

.hero h1 { margin-bottom: 1.75rem; }

.hero-sub {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 2.75rem;
  max-width: 580px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 4.5rem;
  display: flex;
  align-items: center;
  gap: 2.75rem;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.trust-item svg { color: var(--gold); flex-shrink: 0; }

.trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--gold);
}

/* ─── PAIN ────────────────────────────────────── */
.pain-section {
  background: var(--dark);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  margin-top: 3.5rem;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.pain-card {
  background: transparent;
  padding: 2.75rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.pain-card:hover { background: rgba(255,255,255,0.015); }

.pain-card::before {
  content: '';
  display: block;
  width: 26px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

.pain-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  color: var(--white);
  line-height: 1.25;
}

.pain-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; }

/* ─── OFFER ───────────────────────────────────── */
.offer-card {
  background: linear-gradient(180deg, rgba(201,169,97,0.04), transparent 35%), var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  max-width: 680px;
  margin: 3rem auto 0;
  position: relative;
  text-align: left;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px;
  height: 64px;
  background: var(--gold);
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 1.5rem 0 0.5rem;
}

.offer-price .price {
  font-family: var(--font-display);
  font-size: 3.75rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}

.offer-price .original {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: line-through;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-list { list-style: none; margin: 2rem 0; }
.offer-list li {
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text);
}
.offer-list li:last-child { border-bottom: none; }

.offer-list li::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.addons {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.addons > p {
  font-family: var(--font-mono);
  font-size: 0.7rem !important;
  color: var(--muted) !important;
  margin-bottom: 1rem !important;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.addon-item {
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 1rem 1.15rem;
  font-size: 0.9rem;
  transition: all 0.25s;
}

.addon-item:hover { border-color: var(--gold); }

.addon-item strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.3rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}
.addon-item span {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ─── PROOF ───────────────────────────────────── */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.proof-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  filter: saturate(1.04);
  transition: filter 0.35s, transform 0.6s;
}
.proof-grid img:hover { filter: saturate(1.12); transform: scale(1.01); }

.founder-block {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}

.founder-photo img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 3/4;
  display: block;
}

.founder-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--gold);
  font-weight: 500;
  margin: 0.6rem 0 2rem;
}

.founder-quote {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--white);
  border-left: 2px solid var(--gold);
  padding-left: 1.75rem;
  margin: 0;
  font-weight: 300;
  letter-spacing: -0.005em;
}

@media (max-width: 768px) {
  .founder-block { grid-template-columns: 1fr; gap: 2rem; }
  .founder-photo img { aspect-ratio: 1/1; max-width: 280px; }
}

.photo-placeholder {
  aspect-ratio: 4/3;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--faint);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.testimonials {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2.25rem 2rem 2rem;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  font-family: Georgia, serif;
  font-size: 4.5rem;
  color: var(--gold);
  line-height: 1;
  font-style: italic;
  opacity: 0.4;
}

.testimonial blockquote {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.7;
  letter-spacing: -0.005em;
  position: relative;
  z-index: 1;
}

.testimonial cite {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ─── SERVICES ────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0;
  margin-top: 3.5rem;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.service-card {
  background: transparent;
  padding: 2.75rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
  position: relative;
}

.service-card:hover { background: rgba(255,255,255,0.015); }

.service-card::before {
  content: attr(data-num);
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.28em;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover::after { width: 100%; }

/* Kill the emoji icon used in legacy markup */
.service-icon { display: none; }

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.service-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* ─── PRICING ─────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: start;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.75rem 2rem;
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.pricing-card.featured {
  border-color: var(--border-gold);
  background: linear-gradient(180deg, rgba(201,169,97,0.06), transparent 45%), var(--card);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #15100A;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 6px 16px;
  white-space: nowrap;
  border-radius: 1px;
}

.pricing-name {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  margin-bottom: 1rem;
  font-weight: 500;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-price span {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-desc {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.65;
}

.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li {
  padding: 0.7rem 0;
  font-size: 0.92rem;
  display: flex;
  gap: 0.9rem;
  align-items: center;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── URGENCY ─────────────────────────────────── */
.urgency-bar {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  padding: 2.5rem 2.25rem;
  text-align: center;
  margin-top: 3rem;
  position: relative;
}

.urgency-bar p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
}
.urgency-bar strong { color: var(--gold-light); font-weight: 500; }

/* ─── FAQ ─────────────────────────────────────── */
.faq-list {
  margin: 3.5rem auto 0;
  max-width: 780px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.85rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.faq-a {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ─── PORTFOLIO ───────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 4px;
  margin-top: 3rem;
}

.portfolio-item {
  aspect-ratio: 4/3;
  background: var(--card);
  overflow: hidden;
  position: relative;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  filter: saturate(1.04);
}

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

/* ─── BOOKING ─────────────────────────────────── */
.booking-embed {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 580px;
  display: block;
  margin-top: 2.5rem;
  overflow: hidden;
  width: 100%;
}

.booking-embed iframe {
  width: 100% !important;
  max-width: 100% !important;
}

@media (max-width: 768px) {
  .booking-embed { min-height: 650px; margin-top: 1.5rem; }
}

/* ─── FORMS ───────────────────────────────────── */
.contact-form { max-width: 580px; margin: 0 auto; }

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 0.9rem 1rem;
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: all 0.25s;
  border-radius: var(--radius);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--card);
  box-shadow: 0 0 0 3px var(--gold-soft);
}

.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: var(--dark); }

/* ─── CONSENT ─────────────────────────────────── */
.consent-block {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-top: 0.5rem;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.consent-row input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.consent-text { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }
.consent-text a { color: var(--gold); }
.consent-text strong { color: var(--text); }

/* ─── LEGAL ──────────────────────────────────── */
.legal-content { max-width: 780px; margin: 0 auto; }

.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.65rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.025em;
}

.legal-content h3 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  margin-top: 1.75rem;
  margin-bottom: 0.55rem;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 0.85rem;
}

.legal-content ul { padding-left: 1.5rem; }
.legal-content ul li { margin-bottom: 0.5rem; }

.legal-date {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ─── FOOTER ──────────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 5rem 0 0;
  margin-top: 3rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
}

.footer-brand .footer-logo,
.footer-brand .nav-logo img {
  height: 38px;
  width: auto;
  margin-bottom: 1.25rem;
  opacity: 0.95;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 260px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.75rem; }
.footer-col a {
  font-size: 0.9rem;
  color: var(--text);
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--max);
  margin: 3.5rem auto 0;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ─── STAT STRIP ──────────────────────────────── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 2rem auto;
  max-width: 640px;
}

.stat-item {
  padding: 1.85rem 1rem;
  text-align: center;
  border-right: 1px solid var(--border);
}

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

.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 300;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: block;
  line-height: 1;
  margin-bottom: 0.45rem;
  letter-spacing: -0.05em;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 500;
}

/* ─── RESPONSIVE ──────────────────────────────── */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  color: var(--white);
  font-size: 1.2rem;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius);
  cursor: pointer;
  line-height: 1;
}

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

@media (max-width: 768px) {
  body { overflow-x: hidden; }
  section { padding: 4.5rem 0; }

  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--black);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0;
    z-index: 200;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 1rem 1.5rem; font-size: 0.78rem; }
  .nav-links .btn { margin: 0.75rem 1.5rem; text-align: center; display: block; }
  nav { position: relative; }

  .hero { padding: 5.5rem 0 4.5rem; }
  .hero-cta-group { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .hero-cta-group .btn { width: 100%; }
  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
  }

  .offer-card { padding: 2rem 1.5rem; }
  .offer-price .price { font-size: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stat-strip { max-width: 100%; }
  .pain-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pricing-price { font-size: 2.5rem; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .hero-trust { grid-template-columns: 1fr 1fr; }
  .founder-block { grid-template-columns: 1fr; gap: 1.5rem; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}
