@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --navy: #12283f;
  --navy-2: #1b3b5a;
  --navy-deep: #0d1e30;
  --ink: #16202b;
  --gold: #E0A93B;
  --gold-dark: #c8912a;
  --green: #2f7d5b;
  --cream: #f7f4ee;
  --light: #fbfaf7;
  --white: #ffffff;
  --muted: #5f6b78;
  --border: #e4ded2;
  --shadow: 0 18px 50px rgba(18,40,63,0.12);
  --radius: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; line-height: 1.12; letter-spacing: -0.01em; }

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 16px;
  padding: 15px 30px; border-radius: 10px; cursor: pointer; border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--navy-deep); box-shadow: 0 10px 24px rgba(224,169,59,0.35); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-deep); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-block { width: 100%; padding: 17px; font-size: 17px; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 74px;
  background: var(--white); border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 11px; }
.nav-mark { height: 46px; width: auto; }
.nav-wordmark { font-family: 'Fraunces', serif; font-weight: 600; font-size: 15px; line-height: 1.02; color: var(--navy); }
.nav-wordmark b { display: block; font-weight: 700; letter-spacing: .01em; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { font-weight: 500; font-size: 15px; color: var(--ink); }
.nav-links a:hover { color: var(--gold-dark); }
.nav-phone { font-weight: 700; color: var(--navy); }
.nav-cta { background: var(--gold); color: var(--navy-deep) !important; padding: 10px 20px; border-radius: 9px; font-weight: 600; }
.nav-cta:hover { background: var(--gold-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { width: 26px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ── HERO ── */
.hero { position: relative; background: var(--navy-deep); color: var(--white); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(13,30,48,0.96) 0%, rgba(13,30,48,0.86) 46%, rgba(13,30,48,0.55) 100%),
    url('../images/hero-home.jpg') center/cover no-repeat;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; padding: 72px 0 84px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.hero h1 { font-size: 52px; font-weight: 600; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub { font-size: 19px; color: rgba(255,255,255,0.82); max-width: 520px; margin-bottom: 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; list-style: none; margin-top: 8px; }
.hero-trust li { display: flex; align-items: center; gap: 8px; font-size: 15px; color: rgba(255,255,255,0.9); }
.hero-trust li::before { content: "✓"; color: var(--gold); font-weight: 700; }

/* ── OFFER FORM CARD ── */
.offer-card { background: var(--white); color: var(--ink); border-radius: 18px; box-shadow: var(--shadow); padding: 30px; }
.offer-card h2 { font-size: 25px; color: var(--navy); margin-bottom: 6px; }
.offer-card .sub { font-size: 15px; color: var(--muted); margin-bottom: 20px; }
.form-row { margin-bottom: 14px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.offer-card label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.offer-card input, .offer-card textarea {
  width: 100%; padding: 13px 14px; font-family: 'Inter', sans-serif; font-size: 16px;
  border: 1.5px solid var(--border); border-radius: 9px; background: var(--light); color: var(--ink);
}
.offer-card input:focus, .offer-card textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.offer-card textarea { resize: vertical; min-height: 72px; }
.form-fine { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 12px; }
.form-msg { display: none; margin-top: 14px; padding: 13px 15px; border-radius: 9px; font-size: 15px; font-weight: 500; }
.form-msg.ok { display: block; background: #e8f4ee; color: var(--green); border: 1px solid #bfe0cd; }
.form-msg.err { display: block; background: #fdecec; color: #c0392b; border: 1px solid #f3c2c2; }

/* ── SECTIONS ── */
section.block { padding: 82px 0; }
section.block.cream { background: var(--cream); }
section.block.navy { background: var(--navy-deep); color: var(--white); }
.section-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dark); text-align: center; margin-bottom: 14px; }
.navy .section-eyebrow { color: var(--gold); }
.section-title { font-size: 38px; font-weight: 600; color: var(--navy); text-align: center; max-width: 760px; margin: 0 auto 16px; }
.navy .section-title { color: var(--white); }
.section-sub { font-size: 18px; color: var(--muted); text-align: center; max-width: 620px; margin: 0 auto 52px; }
.navy .section-sub { color: rgba(255,255,255,0.78); }

/* ── STEPS ── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.step { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 28px; text-align: center; }
.cream .step { background: var(--white); }
.step-num { width: 52px; height: 52px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--navy); color: var(--gold); font-family: 'Fraunces', serif; font-weight: 700; font-size: 22px; }
.step h3 { font-size: 21px; color: var(--navy); margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 15.5px; }

/* ── WHY / FEATURE GRID ── */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.why-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.navy .why-card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); }
.why-card .ic { width: 44px; height: 44px; border-radius: 10px; background: rgba(224,169,59,0.16); color: var(--gold-dark); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.navy .why-card .ic { color: var(--gold); }
.why-card h3 { font-size: 19px; color: var(--navy); margin-bottom: 8px; }
.navy .why-card h3 { color: var(--white); }
.why-card p { color: var(--muted); font-size: 15px; }
.navy .why-card p { color: rgba(255,255,255,0.75); }

/* ── SPLIT (compare) ── */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.compare-col { border-radius: var(--radius); padding: 30px; }
.compare-col.us { background: var(--navy); color: var(--white); box-shadow: var(--shadow); }
.compare-col.them { background: var(--white); border: 1px solid var(--border); }
.compare-col h3 { font-size: 21px; margin-bottom: 18px; }
.compare-col.us h3 { color: var(--gold); }
.compare-col.them h3 { color: var(--muted); }
.compare-col ul { list-style: none; }
.compare-col li { padding: 9px 0; padding-left: 30px; position: relative; font-size: 15.5px; border-bottom: 1px solid rgba(128,128,128,0.14); }
.compare-col li:last-child { border-bottom: none; }
.compare-col.us li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.compare-col.them li::before { content: "✕"; position: absolute; left: 0; color: #c0392b; font-weight: 700; }
.compare-col.us li { color: rgba(255,255,255,0.92); }
.compare-col.them li { color: var(--muted); }

/* ── SITUATIONS ── */
.sit-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.sit { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 22px; text-align: center; }
.cream .sit { background: var(--white); }
.sit .em { font-size: 26px; display: block; margin-bottom: 10px; }
.sit p { font-size: 15px; font-weight: 600; color: var(--navy); }

/* ── PROOF GALLERY ── */
.proof-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.proof-item { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4/3; box-shadow: var(--shadow); }
.proof-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.proof-item:hover img { transform: scale(1.05); }
.proof-item .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px 18px 14px; background: linear-gradient(transparent, rgba(13,30,48,0.85)); color: var(--white); font-weight: 600; font-size: 15px; }

/* ── STAT BAND ── */
.stat-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-band .num { font-family: 'Fraunces', serif; font-size: 44px; font-weight: 600; color: var(--gold); }
.stat-band .lab { font-size: 14px; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 40px 22px 0; font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 600; color: var(--navy); position: relative; }
.faq-q::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 26px; color: var(--gold-dark); font-weight: 400; }
.faq-item.open .faq-q::after { content: "–"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 0 22px; color: var(--muted); font-size: 16px; }
.faq-item.open .faq-a { max-height: 320px; }

/* ── CTA BAND ── */
.cta-band { background: var(--gold); text-align: center; padding: 70px 0; }
.cta-band h2 { font-size: 38px; color: var(--navy-deep); margin-bottom: 12px; }
.cta-band p { font-size: 19px; color: var(--navy); margin-bottom: 26px; }

/* ── PAGE HEADER ── */
.page-head { background: var(--navy-deep); color: var(--white); padding: 62px 0; text-align: center; }
.page-head h1 { font-size: 44px; font-weight: 600; margin-bottom: 12px; }
.page-head p { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 620px; margin: 0 auto; }

/* ── FOOTER ── */
footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 56px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.foot-brand { font-family: 'Fraunces', serif; font-weight: 700; font-size: 22px; color: var(--white); margin-bottom: 12px; }
.foot-brand .pin { color: var(--gold); }
.foot-logo { height: 92px; width: auto; margin-bottom: 16px; }
.foot-col h4 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.foot-col a { display: block; color: rgba(255,255,255,0.7); font-size: 15px; margin-bottom: 9px; }
.foot-col a:hover { color: var(--white); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.5); }
.foot-bottom .disc { max-width: 640px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 34px; padding: 48px 0 56px; }
  .hero h1 { font-size: 40px; }
  .steps, .why-grid, .compare, .sit-grid, .proof-grid, .stat-band, .foot-grid { grid-template-columns: 1fr; }
  .sit-grid { grid-template-columns: 1fr 1fr; }
  .stat-band { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .section-title, .page-head h1 { font-size: 30px; }
  .nav-links { position: fixed; top: 74px; left: 0; right: 0; background: var(--white); flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 0; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); display: none; }
  .nav-links.show { display: flex; }
  .nav-links li { width: 100%; padding: 4px 32px; }
  .nav-links .nav-cta { display: inline-block; margin: 8px 0; }
  .hamburger { display: flex; }
  .foot-bottom { flex-direction: column; }
}
@media (max-width: 520px) {
  .form-row.two { grid-template-columns: 1fr; }
  .sit-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 33px; }
}
