:root {
  --aqua: #7ebdc4;
  --aqua-2: #5aa3ac;
  --aqua-dark: #2f6d75;
  --sun: #f0d35c;
  --ink: #1b3338;
  --cream: #f6f3ec;
  --white: #fff;
  --muted: #5a7176;
  --line: #d5e6e8;
  --max: 1120px;
  --header-h: 72px;
  --radius: 16px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(var(--max), calc(100% - 28px)); margin-inline: auto; }

.site-header {
  background: var(--aqua);
  color: white;
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  min-height: var(--header-h);
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0;
}
.brand { text-decoration: none; flex: 1; text-align: left; }
.brand-kicker {
  display: block; font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 800;
}
.brand-name { font-size: 1.15rem; font-weight: 800; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; border: 0; font-family: inherit; font-weight: 800;
  border-radius: 999px; padding: 12px 18px; line-height: 1; cursor: pointer;
}
.btn-call { background: var(--sun); color: var(--ink); min-height: 44px; }
.btn-dark { background: var(--aqua-dark); color: white; }
.btn-ghost { background: transparent; color: white; border: 2px solid rgba(255,255,255,.7); }
.btn-lg { min-height: 52px; width: 100%; }

.menu-toggle {
  width: 44px; height: 44px; border: 0; border-radius: 12px;
  background: var(--aqua-dark); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
}
.menu-toggle span { width: 18px; height: 2px; background: white; display: block; }
.nav-desk { display: none; }
.nav-panel { display: none; background: var(--aqua-dark); }
.nav-panel.open { display: block; }
.nav-panel a {
  display: block; color: white; text-decoration: none;
  padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,.08); font-weight: 700;
}

.hero {
  position: relative; color: white; min-height: min(88vh, 720px);
  display: flex; align-items: flex-end; overflow: hidden; background: var(--aqua-dark);
}
.hero-bg, .hero-bg picture, .hero-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.hero-bg img { object-fit: cover; object-position: center 20%; }
.hero-shade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(47,109,117,.15) 0%, rgba(47,109,117,.45) 45%, rgba(47,109,117,.88) 100%);
}
.hero-copy { position: relative; z-index: 1; padding: 24px 0 32px; }
.hero h1 {
  font-size: clamp(1.8rem, 7vw, 2.8rem); line-height: 1.08; margin: 0 0 10px;
}
.hero .lede { margin: 0 0 16px; color: #e8f6f7; }
.hero-ctas { display: grid; gap: 10px; }

.band {
  background: var(--aqua); color: white; text-align: center;
  padding: 22px 16px; font-size: 1.15rem; font-weight: 700;
}
.band em { font-style: italic; color: var(--sun); }

.section { padding: 32px 0; }
.section h2 { margin: 0 0 8px; font-size: 1.5rem; color: var(--aqua-dark); }
.muted { color: var(--muted); }

.card-grid { display: grid; gap: 14px; }
.card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 10px 24px rgba(47,109,117,.1);
}
.card-media { aspect-ratio: 16/9; background: var(--aqua); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 16px; }
.card h3 { margin: 0 0 8px; }

.how { display: grid; gap: 10px; padding: 0; margin: 16px 0 0; counter-reset: s; }
.how li {
  list-style: none; background: white; border-radius: 14px;
  padding: 14px 14px 14px 58px; position: relative;
}
.how li::before {
  counter-increment: s; content: counter(s);
  position: absolute; left: 12px; top: 12px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--aqua-dark); color: var(--sun);
  display: grid; place-items: center; font-weight: 800;
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.chip {
  background: #dff3f5; color: var(--aqua-dark); border-radius: 999px;
  padding: 8px 12px; font-weight: 700; font-size: 14px;
}

.cta-box {
  background: var(--aqua-dark); color: white; border-radius: 20px;
  padding: 28px 20px; text-align: center;
}
.faq details { background: white; border-radius: 12px; padding: 12px 14px; margin-bottom: 8px; }
.faq summary { font-weight: 800; cursor: pointer; }

.site-footer {
  background: var(--aqua-dark); color: #d5eef1; padding: 28px 0 96px; font-size: 14px;
}
.site-footer a { color: var(--sun); }
.foot-grid { display: grid; gap: 18px; }
.sticky-call {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(47,109,117,.95);
}

@media (min-width: 880px) {
  .menu-toggle { display: none; }
  .nav-panel { display: none !important; }
  .brand { text-align: center; }
  .header-inner {
    display: grid; grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .nav-desk {
    display: flex; gap: 14px; justify-content: center; grid-column: 1 / -1; order: 3;
    padding-bottom: 8px;
  }
  .nav-desk a { color: white; text-decoration: none; font-weight: 700; font-size: 14px; }
  .hero { min-height: min(72vh, 640px); align-items: center; }
  .hero-shade {
    background: linear-gradient(90deg, rgba(47,109,117,.82) 0%, rgba(47,109,117,.4) 50%, rgba(47,109,117,.12) 100%);
  }
  .hero-bg img { object-position: 70% center; }
  .hero-copy { max-width: 560px; padding: 64px 0; }
  .hero-ctas { grid-template-columns: auto auto; width: max-content; }
  .btn-lg { width: auto; }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .how { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .sticky-call { display: none; }
  .site-footer { padding-bottom: 36px; }
}
