@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600&display=swap');

:root {
  --black: #111110;
  --mid: #333331;
  --muted: #555553;
  --light: #999997;
  --border: #E2E2DE;
  --bg: #FAFAF8;
  --bg2: #F2F2EE;
  --font: 'Outfit', system-ui, sans-serif;
  --max: 900px;
  --pad: 48px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--black); background: var(--bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin-bottom: 1em; line-height: 1.75; }
p:last-child { margin-bottom: 0; }

/* NAV */
.nav { position: sticky; top: 0; z-index: 100; background: var(--bg); padding: 12px var(--pad); display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); }
.nav-logo img { height: 64px; width: auto; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { font-size: 13px; font-weight: 300; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--black); }
.nav-book { font-weight: 500 !important; color: var(--black) !important; border-bottom: 1px solid var(--black); padding-bottom: 1px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 22px; height: 1px; background: var(--black); display: block; }
.mobile-menu { display: none; position: fixed; top: 89px; left: 0; right: 0; background: var(--bg); border-bottom: 3px solid #25D366; padding: 16px 20px; z-index: 99; flex-direction: column; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 15px; font-weight: 300; color: var(--muted); padding: 12px 0; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { font-weight: 500; color: var(--black); border-bottom: none; }

/* BUTTONS */
.btn { display: inline-block; padding: 12px 24px; font-size: 13px; font-weight: 500; font-family: var(--font); cursor: pointer; transition: all 0.2s; border: none; text-align: center; line-height: 1; }
.btn-black { background: var(--black); color: var(--bg); }
.btn-black:hover { background: #2A2A28; color: var(--bg); border-bottom: 3px solid #25D366; }
.btn-green { background: #25D366; color: white; }
.btn-green:hover { background: #1ebe5d; color: white; }
.btn-outline { background: transparent; color: var(--black); border: 1px solid var(--black); border-bottom: 3px solid var(--black); }
.btn-outline:hover { background: var(--black); color: var(--bg); }
.btn-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

/* LAYOUT */
.wrap { max-width: var(--max); margin: 0 auto; }
.section { padding: 48px var(--pad); border-bottom: 1px solid var(--border); }
.section-warm { padding: 48px var(--pad); border-bottom: 1px solid var(--border); background: var(--bg2); }

/* TYPE */
.eyebrow { font-size: 10px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--light); margin-bottom: 12px; }
h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 200; line-height: 1.0; letter-spacing: -2px; color: var(--black); margin-bottom: 24px; }
h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 200; line-height: 1.1; letter-spacing: -1px; color: var(--black); margin-bottom: 16px; }
h3 { font-size: 17px; font-weight: 500; color: var(--black); margin-bottom: 8px; }
.lead { font-size: 17px; font-weight: 300; color: var(--mid); line-height: 1.8; }
.body { font-size: 15px; font-weight: 300; color: var(--mid); line-height: 1.85; }
.small { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.75; }

/* FOLD */
.fold { padding: 72px var(--pad) 64px; border-bottom: 1px solid var(--border); max-width: 100%; }
.fold-inner { max-width: 860px; margin: 0 auto; }
.fold-eyebrow { font-size: 11px; font-weight: 400; letter-spacing: 3px; text-transform: uppercase; color: var(--light); margin-bottom: 24px; }
.fold-sub { font-size: 16px; font-weight: 300; color: var(--mid); max-width: 600px; line-height: 1.85; padding-top: 32px; border-top: 1px solid var(--border); margin-top: 4px; }

/* TRUST BAR */
.trust { display: grid; grid-template-columns: repeat(4,1fr); border-bottom: 1px solid var(--border); }
.trust-item { padding: 22px 20px; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: none; }
.trust-label { font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--light); margin-bottom: 6px; }
.trust-value { font-size: 13px; font-weight: 400; color: var(--black); line-height: 1.4; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); border-bottom: 1px solid var(--border); }
.svc { padding: 40px 32px; border-right: 1px solid var(--border); }
.svc:last-child { border-right: none; }
.svc-num { font-size: 11px; font-weight: 500; letter-spacing: 2px; color: var(--light); margin-bottom: 16px; }
.svc-title { font-size: 18px; font-weight: 500; color: var(--black); margin-bottom: 10px; }
.svc-desc { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.8; margin-bottom: 18px; }
.svc-list { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 6px; }
.svc-list li { font-size: 13px; font-weight: 300; color: var(--mid); display: flex; gap: 8px; }
.svc-list li::before { content: '—'; color: var(--light); flex-shrink: 0; }
.svc-price { font-size: 40px; font-weight: 200; color: var(--black); letter-spacing: -1.5px; line-height: 1; margin-bottom: 4px; }
.svc-note { font-size: 12px; font-weight: 300; color: var(--light); margin-bottom: 20px; }
.svc-link { font-size: 13px; font-weight: 500; color: var(--black); border-bottom: 1px solid var(--black); padding-bottom: 1px; }

/* HOW IT WORKS */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
.step { background: var(--bg); padding: 36px 28px; }
.step-num { font-size: 40px; font-weight: 200; color: var(--border); letter-spacing: -2px; line-height: 1; margin-bottom: 16px; }
.step-title { font-size: 16px; font-weight: 500; color: var(--black); margin-bottom: 8px; }
.step-desc { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.75; }

/* ABOUT SPLIT */
.about-split { display: grid; grid-template-columns: 380px 1fr; border-bottom: 1px solid var(--border); }
.about-img { overflow: hidden; background: var(--bg2); border-right: 1px solid var(--border); position: relative; min-height: 480px; }
.about-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; position: absolute; top: 0; left: 0; }
.about-cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 20px; background: rgba(250,250,248,0.95); border-top: 1px solid var(--border); }
.about-cap strong { font-size: 14px; font-weight: 500; color: var(--black); display: block; }
.about-cap span { font-size: 12px; font-weight: 300; color: var(--muted); }
.about-text { padding: 56px var(--pad); display: flex; flex-direction: column; justify-content: center; }
.about-name { font-size: 44px; font-weight: 200; color: var(--black); letter-spacing: -1.5px; line-height: 1; margin-bottom: 6px; }
.about-role { font-size: 13px; font-weight: 300; color: var(--muted); margin-bottom: 28px; }
.creds { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 8px; }
.cred { font-size: 13px; font-weight: 300; color: var(--mid); display: flex; gap: 10px; }
.cred::before { content: '→'; color: var(--light); flex-shrink: 0; }

/* PAGE HERO */
.hero { padding: 64px var(--pad); border-bottom: 1px solid var(--border); }
.hero-inner { max-width: 860px; margin: 0 auto; }
.hero h1 { max-width: 760px; }
.hero .lead { max-width: 600px; margin-top: 12px; }

/* COVERAGE */
.coverage { background: var(--black); padding: 28px var(--pad); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.coverage-title { font-size: 14px; font-weight: 500; color: white; margin-bottom: 4px; }
.coverage-sub { font-size: 12px; font-weight: 300; color: #555; }
.pills { display: flex; flex-wrap: wrap; gap: 6px; }
.pill { border: 1px solid #2A2A28; color: #666; font-size: 12px; font-weight: 300; padding: 4px 12px; }

/* CTA SECTION */
.cta-block { padding: 72px var(--pad); text-align: center; border-bottom: 1px solid var(--border); }
.cta-block h2 { max-width: 520px; margin: 0 auto 12px; }
.cta-block .lead { max-width: 400px; margin: 0 auto 32px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; padding: 20px 0; background: none; border: none; cursor: pointer; font-family: var(--font); font-size: 16px; font-weight: 400; color: var(--black); display: flex; justify-content: space-between; align-items: center; gap: 16px; line-height: 1.4; }
.faq-icon { font-size: 20px; font-weight: 200; color: var(--light); flex-shrink: 0; transition: transform 0.2s; }
.faq-a { display: none; padding-bottom: 20px; font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.85; max-width: 700px; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--black); }

/* FOOTER */
footer { padding: 48px var(--pad); border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; max-width: 1100px; margin: 0 auto 32px; }
.footer-tag { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.75; margin-top: 14px; }
.footer-h { font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--light); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; font-weight: 300; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--black); }
.footer-contact { display: flex; flex-direction: column; gap: 7px; }
.footer-contact a { font-size: 13px; font-weight: 300; color: var(--muted); transition: color 0.2s; }
.footer-contact a:hover { color: var(--black); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 20px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-copy { font-size: 11px; font-weight: 300; color: var(--light); }

/* ROWS */
.row-list { display: flex; flex-direction: column; gap: 8px; }
.row-item { display: flex; gap: 10px; font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.6; }
.row-item::before { content: '→'; color: var(--light); flex-shrink: 0; }

/* GRID UTILS */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
.gcell { background: var(--bg); padding: 28px; }
.gcell-warm { background: var(--bg2); padding: 28px; }
.price-lg { font-size: 52px; font-weight: 200; color: var(--black); letter-spacing: -2px; line-height: 1; margin: 8px 0 4px; }

/* COOKIE BANNER */
#cookie-banner { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--black); border-top: 1px solid #222; padding: 16px var(--pad); flex-direction: row; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
#cookie-banner p { font-size: 13px; font-weight: 300; color: #888; line-height: 1.6; max-width: 680px; margin: 0; }
#cookie-banner a { color: var(--bg); border-bottom: 1px solid #444; }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btns button { font-family: var(--font); font-size: 13px; font-weight: 500; padding: 9px 18px; cursor: pointer; border: none; }
.cookie-accept { background: var(--bg); color: var(--black); }
.cookie-decline { background: transparent; color: #666; border: 1px solid #333 !important; }

/* MOBILE */
@media (max-width: 768px) {
  .nav-logo img { height: 48px; }
  .nav-links { display: none !important; }
  .hamburger { display: flex; }
  .trust { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-top: 1px solid var(--border); }
  .services-grid { grid-template-columns: 1fr; }
  .svc { border-right: none !important; }
  .steps { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-img { min-height: 340px; border-right: none; border-bottom: 1px solid var(--border); }
  .about-text { padding: 36px 20px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .coverage { flex-direction: column; align-items: flex-start; }
}
