:root {
  --navy: #0b3a4a;
  --navy-2: #0f4c5c;
  --teal: #2a9d8f;
  --teal-2: #1f7a70;
  --sand: #f4efe6;
  --cream: #fbf8f3;
  --ink: #16323c;
  --muted: #5b6f76;
  --line: #d7e0e3;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(11, 58, 74, 0.12);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}
img { max-width: 100%; }
h1, h2, h3, .brand strong, .quote {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.03em;
}
h1, h2, h3 { line-height: 1.15; margin: 0 0 0.6rem; }
p { margin: 0 0 1rem; }
a { color: var(--teal-2); }
.container { width: min(1100px, calc(100% - 32px)); margin: 0 auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -40px; background: var(--navy); color: white;
  padding: 8px 12px; z-index: 20;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 58, 74, 0.08);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--navy); }
.brand-mark { width: 40px; height: 40px; }
.brand strong { display: block; font-size: 1.05rem; }
.brand small { display: block; color: var(--muted); font-size: 0.78rem; }

.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a { text-decoration: none; color: var(--ink); font-weight: 500; }
.nav-cta {
  background: var(--navy); color: white !important;
  padding: 10px 16px; border-radius: 999px;
}
.nav-toggle {
  display: none; background: none; border: 0; width: 42px; height: 42px;
  padding: 10px; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px;
}

.hero {
  position: relative; min-height: 78vh; display: grid; place-items: end start;
  color: white; overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,58,74,0.25) 0%, rgba(11,58,74,0.72) 100%),
    url("https://images.unsplash.com/photo-1587174486073-ae7bc2859d63?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}
.hero-content { position: relative; padding: 72px 0 64px; max-width: 760px; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.76rem;
  font-weight: 700; color: var(--teal); margin-bottom: 10px;
}
.eyebrow.light { color: #9ee4db; }
h1 { font-size: clamp(2.1rem, 5vw, 4rem); margin-bottom: 16px; }
.lead { font-size: 1.15rem; max-width: 58ch; color: rgba(255,255,255,0.92); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }
.hero-points {
  display: flex; flex-wrap: wrap; gap: 10px 18px; padding: 0; margin: 0; list-style: none;
  color: rgba(255,255,255,0.86); font-size: 0.95rem;
}
.hero-points li::before { content: "•"; color: var(--teal); margin-right: 8px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; border: 0; cursor: pointer; font: inherit; font-weight: 600;
  border-radius: 999px; padding: 13px 20px;
}
.btn-primary { background: var(--teal); color: white; }
.btn-primary:hover { background: var(--teal-2); }
.btn-ghost { background: rgba(255,255,255,0.12); color: white; border: 1px solid rgba(255,255,255,0.28); }
.btn-full { width: 100%; }
.text-btn { background: none; border: 0; color: var(--muted); cursor: pointer; font: inherit; }

.section { padding: 84px 0; }
.section-tint { background: #eef6f5; }
.section-dark { background: var(--navy); color: white; }
.section-head { max-width: 680px; margin-bottom: 36px; }
.section-head h2, .about-grid h2, .book-copy h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }

.card-grid { display: grid; gap: 20px; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.info-card {
  background: white; border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow);
}
.icon-pill {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: #e6f5f2; color: var(--navy); margin-bottom: 14px;
}
.icon-pill svg { width: 26px; height: 26px; }
.tick-list { margin: 0; padding: 0; list-style: none; }
.tick-list li { padding: 8px 0 8px 28px; position: relative; border-bottom: 1px solid var(--line); }
.tick-list li:last-child { border-bottom: 0; }
.tick-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.steps li {
  background: white; border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow);
}
.step-num {
  display: inline-grid; place-items: center; width: 36px; height: 36px;
  border-radius: 50%; background: var(--navy); color: white; font-weight: 700; margin-bottom: 12px;
}

.about-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 32px; align-items: center; }
.plain-facts { list-style: none; padding: 0; margin: 18px 0 0; }
.plain-facts li { padding: 8px 0; border-top: 1px solid var(--line); }
.quote-card {
  background: var(--navy); color: white; border-radius: 28px; padding: 36px;
  min-height: 240px; display: grid; align-content: center;
}
.quote { font-size: 1.8rem; margin-bottom: 16px; }
.quote-meta { color: #9ee4db; margin: 0; }

.book-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 36px; align-items: start; }
.phone-line {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 8px 0 14px;
  letter-spacing: 0.02em;
}
.direct-contact { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 18px; }
.section-dark .btn-ghost {
  color: white;
  border-color: rgba(255,255,255,0.35);
}
.fine-print { color: rgba(255,255,255,0.75); font-size: 0.92rem; }
.pickup-form {
  background: white; color: var(--ink); border-radius: 24px; padding: 24px;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 14px; }
.form-row label, .form-row legend { display: block; font-weight: 600; margin-bottom: 6px; }
.optional { font-weight: 400; color: var(--muted); }
.form-split { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
input, textarea, select {
  width: 100%; border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 12px; font: inherit; background: #fff;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--teal); border-color: transparent;
}
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 12px; }
.checks label { display: flex; gap: 8px; align-items: center; font-weight: 400; }
.checks input { width: auto; }
.form-note { margin: 10px 0 0; color: var(--muted); font-size: 0.9rem; }
.form-note.error { color: #9b2c2c; }
.form-note.ok { color: var(--teal-2); }

.site-footer { background: #072830; color: rgba(255,255,255,0.82); padding: 28px 0; }
.footer-wrap { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-small { max-width: 420px; font-size: 0.88rem; }

.modal {
  position: fixed; inset: 0; background: rgba(7, 20, 24, 0.55);
  display: grid; place-items: center; padding: 20px; z-index: 30;
}
.modal[hidden] { display: none; }
.modal-card {
  background: white; color: var(--ink); max-width: 440px; width: 100%;
  border-radius: 20px; padding: 28px; text-align: center;
}
.modal-actions { display: grid; gap: 10px; margin: 18px 0 10px; }
.modal-actions .btn-ghost { color: var(--navy); border-color: var(--line); background: var(--sand); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 72px;
    background: var(--cream); flex-direction: column; padding: 16px 20px 24px;
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .card-grid.two, .steps, .about-grid, .book-grid, .form-split, .checks {
    grid-template-columns: 1fr;
  }
  .hero { min-height: 88vh; }
}
