/* ===== COASTAL MAIDS SAN DIEGO — Retro Premium Coastal ===== */
:root {
  --teal: #1A7A9A;
  --teal-deep: #0f5f79;
  --teal-dark: #0c4d62;
  --coral: #E8735A;
  --coral-deep: #d65c43;
  --sand: #F5E6C8;
  --sand-soft: #FBF4E6;
  --cream: #FAFAFA;
  --ink: #1C1A16;
  --muted: #6B6659;
  --line: rgba(28,26,22,.10);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  --shadow-sm: 0 2px 10px rgba(28,26,22,.06);
  --shadow-md: 0 14px 40px rgba(28,26,22,.12);
  --shadow-lg: 0 30px 70px rgba(15,95,121,.18);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.section--sand { background: var(--sand-soft); }
.section--teal { background: var(--teal); color: var(--cream); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--coral); color: #fff; padding: .6rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ===== Typography ===== */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; margin: 0; letter-spacing: -.01em; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; font-weight: 600; }
p { margin: 0 0 1rem; }

.eyebrow {
  display: inline-block; font-family: var(--font-body); font-weight: 700;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--coral-deep); margin-bottom: .85rem;
}
.eyebrow--light { color: var(--sand); }

.section-head { max-width: 760px; margin: 0 auto clamp(2rem, 4vw, 3.25rem); text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin-top: .6rem; }
.section-head--light p { color: rgba(255,255,255,.85); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 700; font-size: .95rem;
  padding: .85rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--sm { padding: .6rem 1.1rem; font-size: .85rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn--coral { background: var(--coral); color: #fff; box-shadow: 0 8px 22px rgba(232,115,90,.32); }
.btn--coral:hover { background: var(--coral-deep); box-shadow: 0 12px 28px rgba(232,115,90,.4); }
.btn--cream { background: var(--cream); color: var(--teal-deep); }
.btn--cream:hover { background: #fff; }
.btn--ghost-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.btn--ghost-light:hover { background: rgba(255,255,255,.22); }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,250,.88); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
.header--scrolled { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; gap: 1.25rem; padding: .45rem 0; }
.brand { display: flex; align-items: center; gap: .55rem; }
.brand__mark { display: grid; place-items: center; }
.brand__mark img { width: 36px; height: 36px; object-fit: contain; display: block; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--teal-deep); }
.brand__sub { font-family: var(--font-body); font-weight: 700; font-size: .58rem; letter-spacing: .24em; text-transform: uppercase; color: var(--coral-deep); margin-top: 2px; }
.brand__name--light { color: var(--cream); font-size: 1.7rem; }
.brand__sub--light { color: var(--sand); }

.nav { display: flex; gap: 1.25rem; margin-left: auto; }
.nav a { font-size: .88rem; font-weight: 600; color: var(--ink); position: relative; padding: .25rem 0; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--coral); transition: width .25s ease; }
.nav a:hover { color: var(--teal-deep); }
.nav a:hover::after { width: 100%; }

.header__cta { display: flex; align-items: center; gap: .85rem; }
.phone-link { display: flex; align-items: center; gap: .4rem; font-weight: 700; color: var(--teal-deep); font-size: .88rem; }
.phone-link:hover { color: var(--coral-deep); }
.phone-link__icon { font-size: 1.05rem; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; margin-left: auto; }
.menu-toggle span { width: 26px; height: 2.5px; background: var(--teal-deep); border-radius: 2px; transition: .3s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav { display: none; flex-direction: column; gap: .25rem; padding: 1rem 1.25rem 1.5rem; border-top: 1px solid var(--line); background: var(--cream); }
.mobile-nav a { padding: .7rem .25rem; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-nav a.btn { border: 2px solid transparent; margin-top: .75rem; }
.mobile-nav__phone { color: var(--teal-deep) !important; font-weight: 700 !important; }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 60%, var(--teal-dark) 100%); color: var(--cream); padding-top: clamp(2.5rem, 6vw, 4.5rem); }
.hero__bg { position: absolute; top: 0; right: 0; bottom: 0; width: 56%; background-image: url("assets/marina-real.webp"); background-size: cover; background-repeat: no-repeat; background-position: center top; opacity: 1;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.4) 10%, #000 28%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.4) 10%, #000 28%, #000 100%); }
.hero__inner { position: relative; display: grid; grid-template-columns: minmax(0, 440px) minmax(0, 370px) 1fr; gap: clamp(1.25rem, 2.5vw, 2rem); align-items: center; padding-top: clamp(1.5rem, 3vw, 3rem); padding-bottom: clamp(3rem, 6vw, 5rem); }

/* Tablet: stack content + form on left, Marina on right */
@media (max-width: 1150px) and (min-width: 981px) {
  .hero__inner { grid-template-columns: minmax(0, 400px) 1fr; }
  .hero__content { margin-bottom: 1.5rem; }
  .hero__formcard { grid-column: 1; grid-row: 2; max-width: 400px; }
  .hero__left { grid-column: 1; grid-row: 1; }
  .hero__bg { background-position: right -80px top -6px; }
}
.hero__left { max-width: 440px; }
.hero__content { margin-bottom: 0; }
.hero__title { font-size: clamp(2.6rem, 5vw, 4.2rem); line-height: 1; margin-bottom: 1rem; }
.hero__title span { display: block; color: var(--sand); font-style: italic; font-weight: 500; }
.hero__lede { font-size: clamp(1rem, 1.4vw, 1.15rem); color: rgba(255,255,255,.92); max-width: 38ch; margin-bottom: 1.5rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: .9rem; color: rgba(255,255,255,.9); }
.hero__trust li { display: flex; flex-direction: column; }
.hero__trust strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--sand); line-height: 1; }
.hero__mascot { display: flex; justify-content: center; align-items: flex-end; position: relative; }
.hero__mascot::before { content: ""; position: absolute; bottom: 6%; left: 50%; transform: translateX(-50%); width: 78%; height: 78%; background: radial-gradient(circle, rgba(245,230,200,.35) 0%, transparent 70%); border-radius: 50%; }
.hero__mascot img { position: relative; max-height: 560px; width: auto; filter: drop-shadow(0 24px 40px rgba(12,77,98,.45)); }
/* Hero benefit pills */
.hero__pills { display: flex; flex-wrap: wrap; gap: .5rem .6rem; margin-bottom: 1.6rem; max-width: 30rem; }
.hero__pills li { display: inline-flex; align-items: center; gap: .4rem; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); color: #fff; font-size: .82rem; font-weight: 600; padding: .42rem .8rem; border-radius: 999px; backdrop-filter: blur(4px); }
.hero__pills li::before { content: "\2713"; color: var(--sand); font-weight: 800; font-size: .78rem; }

/* Hero quote form card — sits in center, Marina clear on right */
.hero__formcard { position: relative; align-self: center; width: 100%; background: rgba(250,250,250,.97); color: var(--ink); border-radius: var(--radius); padding: 1.25rem 1.35rem; box-shadow: 0 30px 70px rgba(12,77,98,.35), 0 0 0 1px rgba(255,255,255,.4); backdrop-filter: blur(8px); }
.hero__formcard::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius); border: 2px solid var(--coral); opacity: .25; pointer-events: none; }
.hero__formtitle { font-size: clamp(1.35rem, 2vw, 1.65rem); color: var(--teal-deep); margin-bottom: .15rem; }
.hero__formsub { font-size: .82rem; color: var(--muted); margin-bottom: .85rem; }

.leadform { display: grid; gap: .55rem; }
.leadform input, .leadform select { font-family: var(--font-body); font-size: .9rem; padding: .62rem .8rem; border: 1.5px solid var(--line); border-radius: 9px; background: #fff; color: var(--ink); width: 100%; transition: border-color .2s ease, box-shadow .2s ease; }
.leadform select { color: var(--ink); }
.leadform input:focus, .leadform select:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26,122,154,.15); }
.leadform__row { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; }
.leadform__fine { font-size: .68rem; color: var(--muted); line-height: 1.45; margin: .25rem 0 0; text-align: center; }
.leadform__fine a { color: var(--coral-deep); font-weight: 600; }
.leadform__consent { display: flex; align-items: flex-start; gap: .55rem; margin-top: .9rem; font-size: .76rem; color: var(--muted); line-height: 1.5; cursor: pointer; }
.leadform__consent input { width: auto; margin-top: 3px; flex-shrink: 0; }
.leadform__success { text-align: center; padding: 1.5rem .5rem; }
.leadform__check { display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 1rem; background: var(--teal); color: #fff; border-radius: 50%; font-size: 1.8rem; }
.leadform__success h3 { font-size: 1.6rem; color: var(--teal-deep); margin-bottom: .35rem; }
.leadform__success p { color: var(--muted); margin: 0; font-size: .95rem; }
.hero__wave { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; }
.hero__wave svg { width: 100%; height: clamp(36px, 5vw, 70px); }

/* ===== Trust strip (premium social proof) ===== */
.trustbar { background: var(--sand); border-bottom: 1px solid rgba(28,26,22,.06); }
.trustbar__inner { display: flex; align-items: center; justify-content: center; gap: clamp(1.5rem, 4vw, 3.5rem); padding: 1.15rem 0; flex-wrap: wrap; }
.trustbar__rating, .trustbar__guarantee { display: flex; align-items: center; gap: .7rem; }
.trustbar__stars { color: #f0a500; font-size: 1.15rem; letter-spacing: 2px; }
.trustbar__ratingtext { display: flex; flex-direction: column; line-height: 1.2; }
.trustbar__ratingtext strong { font-size: .92rem; color: var(--teal-deep); font-weight: 700; }
.trustbar__ratingtext span { font-size: .76rem; color: var(--muted); margin-top: 1px; }
.trustbar__divider { width: 1px; height: 34px; background: rgba(28,26,22,.14); }
.trustbar__platforms { display: flex; align-items: center; gap: .45rem; font-size: .82rem; color: var(--muted); }
.trustbar__platforms strong { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--teal-deep); }
.trustbar__sep { color: var(--coral); }
.trustbar__seal { display: grid; place-items: center; width: 30px; height: 30px; background: var(--teal); color: #fff; border-radius: 50%; font-size: .95rem; font-weight: 700; flex-shrink: 0; }

/* ===== Serving band (premium) ===== */
.serving { background: var(--cream); padding: clamp(2rem, 4vw, 3rem) 0; border-bottom: 1px solid var(--line); }
.serving__inner { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.serving__head { max-width: 280px; }
.serving__title { font-size: clamp(1.4rem, 2.2vw, 1.85rem); color: var(--teal-deep); line-height: 1.15; margin-top: .35rem; }
.serving__chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.serving__chips span, .serving__more { display: inline-flex; align-items: center; font-size: .88rem; font-weight: 600; padding: .5rem 1rem; border-radius: 999px; transition: all .2s ease; }
.serving__chips span { background: var(--sand-soft); color: var(--teal-deep); border: 1px solid rgba(26,122,154,.18); }
.serving__chips span:hover { background: var(--sand); }
.serving__more { background: var(--teal); color: #fff; }
.serving__more:hover { background: var(--teal-deep); }

/* ===== Intro ===== */
.intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.intro__copy h2 { margin-bottom: 1rem; }
.intro__copy > p { color: var(--muted); margin-bottom: 1.5rem; }
.checklist { display: grid; gap: .7rem; margin-bottom: 1.75rem; }
.checklist li { position: relative; padding-left: 2rem; font-weight: 500; }
.checklist li::before { content: "\2713"; position: absolute; left: 0; top: 0; width: 1.4rem; height: 1.4rem; background: var(--teal); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: .8rem; font-weight: 700; }
.intro__media { position: relative; }
.intro__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.intro__badge { position: absolute; bottom: -22px; left: -22px; background: var(--coral); color: #fff; border-radius: var(--radius-sm); padding: 1rem 1.25rem; box-shadow: var(--shadow-md); display: flex; flex-direction: column; max-width: 180px; }
.intro__badge-num { font-family: var(--font-display); font-size: 2.3rem; font-weight: 700; line-height: 1; }
.intro__badge-label { font-size: .82rem; line-height: 1.3; }

/* ===== Why choose us ===== */
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
.why__item { text-align: center; padding: 0 .5rem; }
.why__icon { display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 1.1rem; border-radius: 18px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: var(--sand); }
.why__icon svg { width: 28px; height: 28px; }
.why__item h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.why__item p { color: rgba(255,255,255,.82); font-size: .9rem; margin: 0; }

/* ===== Services (photo cards) ===== */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem 2rem; }
.service-card { position: relative; text-align: center; transition: transform .25s ease; }
.service-card:hover { transform: translateY(-6px); }
.service-card__media { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 1.4rem; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .5s ease; }
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card h3 { font-size: 1.35rem; margin-bottom: .6rem; color: var(--teal-deep); position: relative; display: inline-block; padding-bottom: .5rem; }
.service-card h3::after { content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 46px; height: 2px; background: var(--coral); }
.service-card p { color: var(--muted); font-size: .95rem; margin: 0; max-width: 34ch; margin-inline: auto; }
.service-card__tag { position: absolute; top: .9rem; right: .9rem; z-index: 2; background: var(--coral); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .35rem .8rem; border-radius: 999px; box-shadow: var(--shadow-sm); }
.services__addon { text-align: center; margin-top: 2.5rem; color: var(--muted); font-size: .95rem; }

/* ===== How it works (photo cards) ===== */
.how__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.how__card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.how__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.how__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.how__media img { width: 100%; height: 100%; object-fit: cover; }
.how__num { position: absolute; left: 1rem; bottom: 1rem; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--coral); color: #fff; font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; line-height: 1; box-shadow: var(--shadow-md); }
.how__body { padding: 1.9rem 1.5rem 1.75rem; }
.how__body h3 { margin-bottom: .55rem; color: var(--teal-deep); }
.how__body p { color: var(--muted); margin: 0; font-size: .95rem; }
.how__body strong { color: var(--ink); }
.how__cta { text-align: center; margin-top: 2.5rem; }

/* ===== Location + map ===== */
.location__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: stretch; }
.location__cards { display: grid; gap: 1rem; align-content: start; }
.location__card { display: flex; align-items: center; gap: 1rem; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.1rem 1.25rem; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
a.location__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--teal); }
.location__icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; flex-shrink: 0; background: linear-gradient(145deg, var(--teal) 0%, var(--teal-deep) 100%); color: #fff; border-radius: 14px; box-shadow: 0 6px 16px rgba(15,95,121,.22); transition: transform .2s ease; }
.location__icon svg { width: 24px; height: 24px; display: block; stroke: #fff; }
a.location__card:hover .location__icon { transform: scale(1.06); }
.location__card strong { display: block; font-size: .95rem; color: var(--teal-deep); }
.location__card span { display: block; font-size: .88rem; color: var(--muted); margin-top: 2px; }
.location__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); min-height: 340px; border: 1px solid var(--line); }
.location__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
.location__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2.25rem; }
.location__zips { margin: 2.75rem auto 0; text-align: center; }
.location__zips h3 { font-family: var(--font-body); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 1.1rem; }
.location__ziplist { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; }
.location__ziplist span { font-size: .82rem; font-weight: 600; color: var(--muted); background: var(--sand-soft); border: 1px solid rgba(26,122,154,.15); border-radius: 8px; padding: .35rem .7rem; }
.btn--outline { background: transparent; color: var(--teal-deep); border-color: var(--teal); }
.btn--outline:hover { background: var(--teal); color: #fff; }

/* ===== Final CTA band ===== */
.finalcta { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%); color: var(--cream); overflow: hidden; }
.finalcta__inner { display: grid; grid-template-columns: minmax(0, 520px) 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: end; }
.finalcta__copy { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.finalcta__copy h2 { color: #fff; font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: .6rem; }
.finalcta__copy > p { color: rgba(255,255,255,.9); margin-bottom: 1.5rem; max-width: 46ch; }
.finalcta .leadform input, .finalcta .leadform select { background: rgba(255,255,255,.96); }
.finalcta .leadform__success { background: rgba(255,255,255,.97); border-radius: var(--radius); margin-bottom: 2rem; }
.finalcta__team { align-self: end; display: flex; justify-content: center; }
.finalcta__team img { max-height: 420px; width: auto; filter: drop-shadow(0 20px 40px rgba(12,77,98,.4)); }

/* ===== Guarantee banner ===== */
.guarantee { background: var(--coral); color: #fff; padding: clamp(2.5rem, 5vw, 3.75rem) 0; }
.guarantee__inner { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.guarantee__seal { flex-shrink: 0; }
.guarantee__copy { flex: 1; min-width: 260px; }
.guarantee__copy h2 { color: #fff; margin-bottom: .5rem; }
.guarantee__copy p { color: rgba(255,255,255,.92); margin: 0; max-width: 60ch; }

/* ===== Reviews ===== */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; margin: 0; box-shadow: var(--shadow-sm); }
.review-card__stars { color: #f0a500; font-size: 1.05rem; letter-spacing: 2px; margin-bottom: .9rem; }
.review-card blockquote { margin: 0 0 1.1rem; font-family: var(--font-display); font-size: 1.25rem; line-height: 1.4; color: var(--ink); font-style: italic; }
.review-card figcaption { font-size: .9rem; color: var(--muted); }
.review-card figcaption strong { color: var(--teal-deep); }
.reviews__stat { text-align: center; margin-top: 2.5rem; display: flex; align-items: center; justify-content: center; gap: .8rem; flex-wrap: wrap; color: var(--muted); }
.reviews__big { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--coral-deep); }

/* ===== About ===== */
.about__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.about__copy > p { color: var(--muted); margin-bottom: 1.75rem; }
.about__features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; }
.about__feature h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; color: var(--teal-deep); margin-bottom: .35rem; }
.about__feature p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ===== Service areas ===== */
.areas__columns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.areas__columns ul { display: grid; gap: .55rem; }
.areas__columns li { padding-left: 1.4rem; position: relative; color: rgba(255,255,255,.92); font-size: .95rem; }
.areas__columns li::before { content: "\25C6"; position: absolute; left: 0; color: var(--sand); font-size: .7rem; top: .25rem; }
.areas__zips { margin-top: 2.5rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-sm); padding: 1rem 1.5rem; }
.areas__zips summary { cursor: pointer; font-weight: 700; color: var(--sand); }
.areas__zips p { margin: 1rem 0 0; font-size: .88rem; color: rgba(255,255,255,.8); line-height: 1.9; }

/* ===== FAQ ===== */
.faq__list { max-width: 820px; margin: 0 auto; display: grid; gap: 1rem; }
.faq__item { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0 1.5rem; transition: box-shadow .2s ease; }
.faq__item[open] { box-shadow: var(--shadow-sm); border-color: var(--teal); }
.faq__item summary { cursor: pointer; font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--teal-deep); padding: 1.25rem 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.6rem; color: var(--coral); font-family: var(--font-body); transition: transform .25s ease; line-height: 1; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--muted); padding-bottom: 1.4rem; margin: 0; }
.faq__item a { color: var(--coral-deep); font-weight: 600; }

/* ===== Local SEO + pricing ===== */
.localseo__inner { max-width: 920px; margin-inline: auto; }
.pricing { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.pricing__table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); font-size: .95rem; }
.pricing__table th, .pricing__table td { padding: .9rem 1rem; text-align: left; }
.pricing__table thead th { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%); color: #fff; font-family: var(--font-body); font-weight: 700; font-size: .82rem; letter-spacing: .02em; }
.pricing__table tbody tr:nth-child(even) { background: var(--sand-soft); }
.pricing__table tbody td { border-top: 1px solid var(--line); color: var(--ink); }
.pricing__table tbody td:first-child { font-weight: 700; color: var(--teal-deep); }
.pricing__note { text-align: center; font-size: .85rem; color: var(--muted); margin: 1rem 0 0; }
.pricing__note a { color: var(--coral-deep); font-weight: 600; }
.localseo__copy h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); color: var(--teal-deep); margin: 1.75rem 0 .6rem; }
.localseo__copy h3:first-child { margin-top: 0; }
.localseo__copy p { color: var(--muted); margin: 0 0 1rem; line-height: 1.7; }
.localseo__copy a { color: var(--coral-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.localseo__copy a:hover { color: var(--coral); }

/* ===== Quote / Contact ===== */
.quote__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.quote__copy > p { color: var(--muted); margin-bottom: 1.75rem; }
.quote__contact { display: grid; gap: .85rem; }
.quote__contact li { display: flex; align-items: center; gap: .85rem; font-weight: 500; }
.quote__cicon { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(145deg, var(--teal) 0%, var(--teal-deep) 100%); color: #fff; border-radius: 12px; flex-shrink: 0; box-shadow: 0 5px 14px rgba(15,95,121,.2); }
.quote__cicon svg { width: 20px; height: 20px; display: block; }
.quote__contact a:hover { color: var(--coral-deep); }
.quote__form { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.25rem); box-shadow: var(--shadow-md); }
.field { display: flex; flex-direction: column; margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-size: .82rem; font-weight: 700; color: var(--ink); margin-bottom: .35rem; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: .95rem; padding: .75rem .85rem;
  border: 1.5px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink); width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26,122,154,.15); }
.field textarea { resize: vertical; }
.quote__formnote { margin: 1rem 0 0; font-size: .9rem; font-weight: 600; color: var(--teal-deep); text-align: center; min-height: 1.2em; }

/* ===== Footer ===== */
.footer { background: var(--teal-dark); color: rgba(255,255,255,.85); padding: clamp(3rem, 6vw, 4.5rem) 0 0; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer__brand p { margin-top: 1rem; font-size: .92rem; line-height: 1.6; color: rgba(255,255,255,.75); max-width: 38ch; }
.footer__col h3 { font-family: var(--font-body); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sand); margin-bottom: 1rem; }
.footer__col ul { display: grid; gap: .6rem; }
.footer__col a:hover { color: #fff; }
.footer__col li { font-size: .92rem; line-height: 1.5; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .75rem; margin-top: 3rem; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; color: rgba(255,255,255,.6); }
.footer__bottom p { margin: 0; }

/* ===== Sticky mobile CTA ===== */
.sticky-cta {
  display: none; position: fixed; bottom: 1rem; left: 50%; transform: translateX(-50%);
  z-index: 90; background: var(--coral); color: #fff; font-weight: 700; padding: .9rem 2rem;
  border-radius: 999px; box-shadow: 0 10px 30px rgba(232,115,90,.5); font-size: .95rem;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .nav, .header__cta { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .mobile-nav[hidden] { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero__left { max-width: 520px; margin-inline: auto; width: 100%; }
  .hero__content { text-align: center; }
  .hero__lede { margin-inline: auto; }
  .hero__pills, .hero__trust { justify-content: center; }
  .hero__formcard { justify-self: center; margin-right: 0; width: 100%; max-width: 480px; }
  .intro__grid, .about__grid, .quote__grid { grid-template-columns: 1fr; }
  .about__media, .intro__media { max-width: 540px; margin-inline: auto; }
  .services__grid, .reviews__grid, .how__steps { grid-template-columns: 1fr 1fr; }
  .why__grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .areas__columns { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .hero__bg { width: 100%; background-position: 70% 12%; -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.25) 55%, transparent 80%); mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.25) 55%, transparent 80%); opacity: .5; }
  .trustbar__divider { display: none; }
  .trustbar__inner { gap: 1.25rem 1.75rem; }
  .serving__inner { grid-template-columns: 1fr; gap: 1.25rem; }
  .serving__head { max-width: none; }
  .how__steps { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .location__grid { grid-template-columns: 1fr; }
  .location__map { min-height: 300px; }
  .finalcta__inner { grid-template-columns: 1fr; align-items: center; }
  .finalcta__copy { padding-bottom: 1.5rem; }
  .finalcta__team { order: 2; padding-bottom: 0; }
  .finalcta__team img { max-height: 300px; }
}
@media (max-width: 600px) {
  .services__grid, .reviews__grid, .how__steps, .areas__columns, .about__features, .field-row, .footer__inner { grid-template-columns: 1fr; }
  .intro__badge { left: 12px; bottom: -16px; }
  .guarantee__inner { flex-direction: column; text-align: center; }
  .sticky-cta { display: block; }
  .footer__bottom { flex-direction: column; }
  .trustbar__inner { flex-direction: column; gap: .9rem; }
  .hero__pills { justify-content: center; }
  .leadform__row { grid-template-columns: 1fr; }
  .location__cta { flex-direction: column; }
  .location__cta .btn { width: 100%; }
  .pricing__table { font-size: .82rem; }
  .pricing__table th, .pricing__table td { padding: .6rem .55rem; }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; scroll-behavior: auto; } }
