/* ============================================================
   Aquatic Pool Services — styles  (sky + ocean blue)
   ============================================================ */
:root {
  --sky:        #38bdf8;
  --sky-light:  #7dd3fc;
  --sky-pale:   #e0f2fe;
  --ocean:      #0284c7;
  --ocean-deep: #075985;
  --ocean-dark: #0c4a6e;
  --abyss:      #082f49;
  --navy:       #0b2a3f;
  --ink:        #102a3a;
  --muted:      #50708a;
  --line:       #cfe6f3;
  --foam:       #f1f9fe;
  --foam-2:     #e2f3fb;
  --white:      #ffffff;
  --radius:     18px;
  --radius-sm:  11px;
  --shadow:     0 12px 32px -14px rgba(8,47,73,.28);
  --shadow-lg:  0 28px 64px -22px rgba(8,47,73,.45);
  --maxw:       1160px;
  --ease:       cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Sora", system-ui, sans-serif;
  line-height: 1.12;
  color: var(--navy);
  margin: 0 0 .5em;
  letter-spacing: -.02em;
}
p { margin: 0 0 1rem; }
a { color: var(--ocean); text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 116px) 0; }

.eyebrow {
  text-transform: uppercase; letter-spacing: .18em; font-size: .76rem;
  font-weight: 600; color: var(--sky); margin: 0 0 .9rem;
}
.eyebrow-dark { color: var(--ocean-deep); }

.section-head { max-width: 660px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 700; }
.section-lead { color: var(--muted); font-size: 1.08rem; margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: "Sora", sans-serif; font-weight: 600; font-size: .98rem; line-height: 1;
  padding: .85em 1.5em; border-radius: 999px; border: 2px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap;
}
.btn .ico { width: 1.15em; height: 1.15em; fill: currentColor; }
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-deep) 100%);
  color: #fff; box-shadow: 0 14px 28px -10px rgba(2,132,199,.7);
}
.btn-primary:hover { box-shadow: 0 20px 38px -10px rgba(2,132,199,.85); }

.btn-ghost { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.6); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.24); }

.btn-outline { background: #fff; color: var(--ocean-deep); border-color: var(--ocean); }
.btn-outline:hover { background: var(--foam-2); }

.btn-call { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.5); font-size: .9rem; padding: .62em 1.05em; backdrop-filter: blur(6px); }
.btn-call:hover { background: rgba(255,255,255,.22); }
.scrolled .btn-call { background: var(--navy); border-color: var(--navy); color: #fff; }
.scrolled .btn-call:hover { background: var(--ocean-dark); border-color: var(--ocean-dark); }

.btn-text-now {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-deep) 100%); color: #fff;
  font-size: .9rem; padding: .62em 1.15em; box-shadow: 0 10px 22px -10px rgba(2,132,199,.8);
}
.btn-text-now:hover { box-shadow: 0 16px 28px -10px rgba(2,132,199,.9); }

.btn-white { background: #fff; color: var(--ocean-deep); }
.btn-white:hover { background: var(--foam); }

.btn-lg { font-size: 1.05rem; padding: 1em 1.8em; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50; padding: 14px 0;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(255,255,255,.93); backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px -16px rgba(8,47,73,.5); padding: 8px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.brand { display: inline-flex; align-items: center; gap: .55em; }
.brand-mark { width: 26px; height: 33px; }
.brand-mark path { fill: var(--sky); }
.brand-mark .brand-mark-shine { fill: none; stroke: rgba(255,255,255,.9); stroke-width: 2; stroke-linecap: round; }
.scrolled .brand-mark path { fill: var(--ocean); }
.brand-text {
  font-family: "Sora", sans-serif; font-weight: 600; font-size: 1.18rem; color: #fff;
  display: flex; flex-direction: column; line-height: 1; letter-spacing: -.01em;
}
.brand-text strong { font-weight: 800; font-size: .66em; letter-spacing: .02em; opacity: .92; }
.scrolled .brand-text { color: var(--navy); }

.nav { display: flex; gap: 30px; }
.nav a { color: #fff; font-weight: 500; font-size: .98rem; position: relative; padding: 4px 0; opacity: .94; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--sky); transition: width .25s var(--ease); }
.nav a:hover::after { width: 100%; }
.scrolled .nav a { color: var(--navy); }

.header-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; border-radius: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .25s var(--ease); }
.scrolled .nav-toggle span { background: var(--navy); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-media {
  position: absolute; inset: 0;
  background: url("images/hero.jpg") center 42% / cover no-repeat;
  transform: scale(1.06); animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,47,73,.58) 0%, rgba(8,47,73,.16) 32%, rgba(8,47,73,.30) 62%, rgba(8,47,73,.78) 100%),
    linear-gradient(95deg, rgba(7,89,133,.60) 0%, rgba(7,89,133,0) 64%);
}
.hero-content { position: relative; z-index: 2; max-width: 740px; padding-top: 96px; padding-bottom: 96px; }
.hero .eyebrow { color: var(--sky-light); }
.hero h1 { color: #fff; font-size: clamp(2.5rem, 6.6vw, 4.7rem); font-weight: 800; margin-bottom: .35em; text-shadow: 0 2px 30px rgba(0,0,0,.28); }
.hero h1 span { color: var(--sky-light); }
.hero h1 .h1-kicker { display: block; font-size: clamp(.95rem, 2vw, 1.2rem); font-weight: 600; letter-spacing: .01em; color: #d4eefb; margin-bottom: .55em; text-shadow: 0 1px 12px rgba(0,0,0,.3); }
.hero-sub { font-size: clamp(1.05rem, 2.2vw, 1.27rem); max-width: 610px; color: rgba(255,255,255,.93); margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.6); border-radius: 14px; z-index: 2; }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; background: #fff; border-radius: 2px; animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(12px); } 100% { opacity: 0; } }

/* ---------- Stats strip ---------- */
.stats { background: linear-gradient(120deg, var(--ocean-deep) 0%, var(--ocean-dark) 55%, var(--abyss) 100%); color: #fff; padding: clamp(40px, 5vw, 58px) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat { padding: 6px; }
.stat-num { display: block; font-family: "Sora", sans-serif; font-weight: 800; font-size: clamp(2.1rem, 4.5vw, 3rem); line-height: 1; color: #fff; }
.stat-num.stat-word { color: var(--sky-light); }
.stat-label { display: block; margin-top: 10px; color: rgba(255,255,255,.78); font-size: .92rem; letter-spacing: .02em; }
.stat + .stat, .stats-grid .stat:not(:first-child) { position: relative; }
@media (min-width: 721px) { .stats-grid .stat:not(:last-child)::after { content: ""; position: absolute; right: -12px; top: 12%; height: 76%; width: 1px; background: rgba(255,255,255,.16); } }

/* ---------- Services ---------- */
.services { background: linear-gradient(180deg, var(--foam) 0%, #fff 100%); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-ico { width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 20px; background: linear-gradient(135deg, var(--sky-pale), #c7e9fa); }
.card-ico svg { width: 30px; height: 30px; fill: none; stroke: var(--ocean-deep); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card-ico svg .chk { stroke: var(--sky); }
.card h3 { font-size: 1.22rem; font-weight: 600; }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ---------- Emergency callout ---------- */
.emergency { background: linear-gradient(115deg, var(--ocean) 0%, var(--ocean-deep) 55%, var(--ocean-dark) 100%); color: #fff; padding: clamp(36px, 5vw, 52px) 0; }
.emergency-inner { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.emergency-icon { flex: none; width: 64px; height: 64px; border-radius: 16px; background: rgba(255,255,255,.18); display: grid; place-items: center; }
.emergency-icon svg { width: 34px; height: 34px; fill: #fff; }
.emergency-text { flex: 1 1 320px; }
.emergency-text h2 { color: #fff; font-size: clamp(1.4rem, 2.8vw, 1.95rem); margin-bottom: .3em; }
.emergency-text p { color: rgba(255,255,255,.92); margin: 0; max-width: 540px; }
.emergency-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Our Story ---------- */
.story { background: #fff; }
.story-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 5vw, 76px); align-items: center; }
.story-media { position: relative; }
.story-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; max-height: 540px; }
.story-media::after { content: ""; position: absolute; inset: auto auto -20px -20px; width: 58%; height: 58%; border-radius: var(--radius); background: linear-gradient(135deg, var(--sky), var(--ocean-deep)); z-index: -1; }
.story-badge {
  position: absolute; right: -14px; bottom: -22px; background: #fff; border-radius: 16px;
  box-shadow: var(--shadow-lg); padding: 16px 22px; display: flex; align-items: center; gap: 12px; max-width: 230px;
}
.story-badge strong { font-family: "Sora", sans-serif; font-size: 2rem; font-weight: 800; color: var(--ocean); line-height: 1; }
.story-badge span { font-size: .82rem; color: var(--muted); line-height: 1.25; }
.story-text h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.story-text p { color: #355068; }
.story-text strong { color: var(--navy); }
.story-text .btn { margin-top: 12px; }

/* ---------- Gallery ---------- */
.gallery { background: linear-gradient(180deg, #fff 0%, var(--foam) 100%); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
.shot { padding: 0; border: 0; background: none; cursor: pointer; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow); position: relative; }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,47,73,.4), transparent 55%); opacity: 0; transition: opacity .3s; }
.shot:hover img { transform: scale(1.07); }
.shot:hover::after { opacity: 1; }
.shot:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; }

/* ---------- Meet the Team ---------- */
.team { background: linear-gradient(180deg, var(--foam) 0%, #fff 100%); }
.team-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px 26px; }
.team-card { width: 200px; text-align: center; }
.team-photo {
  width: 176px; height: 176px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center;
  font-family: "Sora", sans-serif; font-weight: 700; font-size: 2.7rem; color: #fff;
  background: linear-gradient(135deg, var(--sky) 0%, var(--ocean-deep) 100%); box-shadow: var(--shadow);
  border: 4px solid #fff;
}
.team-card h3 { font-size: 1.15rem; margin-bottom: .12em; }
.team-role { color: var(--muted); font-size: .9rem; margin: 0; line-height: 1.4; }
.team-note { text-align: center; color: var(--muted); margin: 38px 0 0; font-size: .95rem; }

.team-photo { overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-img { background: none; }

/* ---------- Reviews ---------- */
.reviews { background: #fff; }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
.review { margin: 0; background: var(--foam); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 12px; }
.review-stars { color: #b26a00; letter-spacing: 2px; font-size: 1.05rem; }
.review blockquote { margin: 0; font-size: 1.04rem; line-height: 1.6; color: var(--ink); }
.review figcaption { color: var(--ocean-deep); font-weight: 600; font-size: .9rem; font-family: "Sora", sans-serif; margin-top: auto; }

/* ---------- Service area ---------- */
.area { background: #fff; }
.area-list { list-style: none; padding: 0; margin: 0 auto; max-width: 760px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.area-list li { background: var(--foam-2); color: var(--ocean-dark); font-weight: 600; font-family: "Sora", sans-serif; padding: .6em 1.25em; border-radius: 999px; font-size: .98rem; border: 1px solid var(--line); }
.area-note { text-align: center; color: var(--muted); margin-top: 28px; }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(160deg, var(--ocean-deep) 0%, var(--ocean-dark) 55%, var(--abyss) 120%); color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.contact .eyebrow { color: var(--sky-light); }
.contact-info h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); }
.contact-lead { color: rgba(255,255,255,.84); font-size: 1.08rem; max-width: 470px; }
.contact-actions { display: flex; flex-direction: column; gap: 12px; max-width: 420px; margin: 28px 0; }
.contact-meta { display: grid; gap: 13px; margin: 8px 0 0; }
.contact-meta div { display: flex; gap: 14px; align-items: baseline; }
.contact-meta dt { color: var(--sky-light); font-weight: 600; min-width: 72px; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.contact-meta dd { margin: 0; color: #fff; font-weight: 500; }
.contact-meta a { color: #fff; border-bottom: 1px solid rgba(255,255,255,.3); }
.contact-meta a:hover { border-color: #fff; }

.quote-form { background: #fff; border-radius: var(--radius); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-lg); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .86rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field .req { color: #c0392b; font-weight: 700; }
.field .opt { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea { width: 100%; padding: .8em .95em; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font: inherit; color: var(--ink); background: var(--foam); transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(56,189,248,.22); background: #fff; }
.field textarea { resize: vertical; }
.form-note { font-size: .82rem; color: var(--muted); text-align: center; margin: 12px 0 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--abyss); color: rgba(255,255,255,.76); padding: 56px 0 24px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 32px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand .brand-text { color: #fff; }
.footer-brand .brand-mark path { fill: var(--sky); }
.footer-brand p { margin-top: 14px; max-width: 340px; font-size: .95rem; }
.footer-col h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.footer-col a, .footer-col span { display: block; color: rgba(255,255,255,.76); margin-bottom: 8px; font-size: .95rem; }
.footer-col a:hover { color: var(--sky); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; font-size: .85rem; flex-wrap: wrap; gap: 10px; }
.to-top { color: rgba(255,255,255,.76); }
.to-top:hover { color: var(--sky); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(5,25,40,.93); display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; animation: fadeIn .25s var(--ease) forwards; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lb-close { position: absolute; top: 18px; right: 24px; font-size: 2.4rem; line-height: 1; color: #fff; background: none; border: 0; cursor: pointer; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2.6rem; color: #fff; background: rgba(255,255,255,.12); border: 0; cursor: pointer; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; transition: background .2s; }
.lb-nav:hover { background: rgba(255,255,255,.25); }
.lb-prev { left: 18px; } .lb-next { right: 18px; }
@keyframes fadeIn { to { opacity: 1; } }

/* ---------- Floating Text-Now (desktop) ---------- */
.fab-text {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-deep) 100%); color: #fff;
  font-family: "Sora", sans-serif; font-weight: 600; font-size: .98rem;
  padding: 14px 20px; border-radius: 999px; box-shadow: 0 16px 34px -10px rgba(2,132,199,.75);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.fab-text svg { width: 20px; height: 20px; fill: currentColor; }
.fab-text:hover { transform: translateY(-3px); box-shadow: 0 22px 42px -10px rgba(2,132,199,.9); }
.fab-text.fab-hidden { opacity: 0; visibility: hidden; transform: translateY(24px); pointer-events: none; }

/* ---------- Sticky mobile contact bar ---------- */
.mobile-bar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 65; box-shadow: 0 -6px 20px -8px rgba(0,0,0,.4); }
.mobile-bar-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 15px calc(15px + env(safe-area-inset-bottom)); color: #fff; font-family: "Sora", sans-serif; font-weight: 700; font-size: 1.02rem; }
.mobile-bar-btn svg { width: 1.2em; height: 1.2em; fill: currentColor; }
.mobile-bar-btn.call { background: var(--ocean-dark); }
.mobile-bar-btn.text { background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-deep) 100%); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }

/* ---------- Accessibility ---------- */
.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: #fff; color: var(--navy); padding: 10px 16px; border-radius: 0 0 8px 0; font-weight: 600; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 2px; }
.btn:focus-visible { outline-offset: 4px; }

/* ---------- Audit polish: hero line, rating, FAQ, form status, link contrast ---------- */
.hero-contact-line { margin: 16px 0 0; color: rgba(255,255,255,.92); font-size: 1.02rem; font-weight: 500; text-shadow: 0 1px 10px rgba(0,0,0,.3); }
.hero-contact-line a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.reviews-rating { margin: 0 0 .6rem; font-family: "Sora", sans-serif; font-weight: 600; color: var(--navy); font-size: 1.05rem; }
.reviews-rating .rr-stars { color: #b26a00; letter-spacing: 2px; }
.reviews-rating strong { color: var(--ocean-deep); }

.area-note a, .faq-item p a { color: var(--ocean-deep); text-decoration: underline; text-underline-offset: 2px; }

.form-status { margin: 14px 0 0; padding: 14px 16px; border-radius: var(--radius-sm); background: var(--foam-2); border: 1px solid var(--line); color: var(--ink); font-size: .92rem; line-height: 1.55; }
.form-status[hidden] { display: none; }
.form-status a { color: var(--ocean-deep); font-weight: 600; text-decoration: underline; }
.form-status strong { color: var(--navy); }

.faq { background: #fff; }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--foam); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0 20px; }
.faq-item summary { cursor: pointer; list-style: none; padding: 18px 0; font-family: "Sora", sans-serif; font-weight: 600; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.6rem; color: var(--ocean); line-height: 1; flex: none; transition: transform .25s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0 0 18px; color: #355068; line-height: 1.6; }
.faq-item summary:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; border-radius: 6px; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; }
  .story-media { max-width: 560px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
/* Engage the hamburger drawer before the header runs out of room (tablets/large phones) */
@media (max-width: 900px) {
  .nav {
    position: fixed; inset: 0 0 auto 0; top: 0; flex-direction: column; gap: 0;
    background: #fff; padding: 84px 24px 28px; box-shadow: var(--shadow-lg);
    transform: translateY(-110%); align-items: stretch;
    visibility: hidden; transition: transform .35s var(--ease), visibility 0s .35s;
  }
  .nav.open { transform: translateY(0); visibility: visible; transition: transform .35s var(--ease), visibility 0s 0s; }
  .nav a { color: var(--navy); padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
  .nav a::after { display: none; }
  .nav-toggle { display: flex; }
  .header-cta .btn-call { display: none; }
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 18px; }
  .cards { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding-top: 110px; }
  .hero-actions .btn { flex: 1; }
  .story-badge { right: 12px; bottom: 12px; max-width: 200px; padding: 12px 16px; }
  .story-media::after { inset: auto auto -12px -12px; }
  .fab-text { display: none; }
  .mobile-bar { display: flex; }
  body { padding-bottom: calc(58px + env(safe-area-inset-bottom)); }
  .lb-nav { width: 44px; height: 44px; font-size: 2rem; }
}
@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .header-cta .btn-text-now span { display: none; }
  .btn-text-now { padding: .7em .9em; }
}
/* Short landscape phones: let the hero grow instead of clipping the CTAs */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { min-height: auto; }
  .hero-content { padding-top: 96px; padding-bottom: 44px; }
  .scroll-cue { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media { animation: none; transform: none; }
  .scroll-cue span { animation: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
