/* ===== ACSSD — Apartment Cleaning Services San Diego ===== */
:root {
  --ink: #1A1714;
  --ivory: #F7F3EC;
  --stone: #E8E1D4;
  --gold: #B0894F;
  --gold-deep: #8C6A38;
  --muted: #6A6458;

  --teal: #1A1714;
  --teal-deep: #1A1714;
  --teal-dark: #100E0C;
  --coral: #B0894F;
  --coral-deep: #8C6A38;
  --sand: #E8E1D4;
  --sand-soft: #F7F3EC;
  --cream: #F7F3EC;
  --line: rgba(26,23,20,.10);

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

  --shadow-sm: 0 2px 10px rgba(26,23,20,.06);
  --shadow-md: 0 14px 40px rgba(26,23,20,.12);
  --shadow-lg: 0 30px 70px rgba(26,23,20,.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(--gold); color: #fff; box-shadow: 0 8px 22px rgba(176,137,79,.32); }
.btn--coral:hover { background: var(--gold-deep); box-shadow: 0 12px 28px rgba(176,137,79,.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(247,243,236,.88); backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .35s ease, background .35s ease;
}
.header--scrolled { box-shadow: 0 6px 24px rgba(26,23,20,.10); background: rgba(247,243,236,.96); }
.header__inner { display: flex; align-items: center; gap: 1.25rem; padding: .55rem 0; transition: padding .3s ease; }
.header--scrolled .header__inner { padding: .3rem 0; }
.brand__mark img, .brand__name, .brand__sub { transition: all .35s ease; }
.header--scrolled .brand__mark img { width: 32px; height: 32px; }
.header--scrolled .brand__name { font-size: 1.18rem; }
.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: grid; grid-auto-flow: column; grid-template-rows: auto auto;
  align-items: center; justify-items: center;
  column-gap: 1.35rem; row-gap: .2rem;
}
.header__ctaitem { display: contents; }
.header__ctasub {
  align-self: start;
  font-family: var(--font-body); font-size: .68rem; font-weight: 500;
  color: var(--muted); white-space: nowrap; line-height: 1;
}
.header__cta .btn--sm { white-space: nowrap; }
.phone-link {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 700; font-size: 1.05rem; letter-spacing: -.005em;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.phone-link:hover { color: var(--gold-deep); }
.phone-link__num { display: inline-flex; align-items: center; gap: .45rem; }
.phone-link__icon { display: inline-flex; align-items: center; color: var(--gold-deep); }

.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: #100E0C; color: var(--cream); padding-top: clamp(2.5rem, 6vw, 4.5rem); }
.hero__bg { position: absolute; inset: 0; width: 100%; background-image: linear-gradient(105deg, rgba(16,14,12,.94) 0%, rgba(16,14,12,.72) 38%, rgba(16,14,12,.28) 68%, rgba(16,14,12,.18) 100%), url("assets/hero-apartment.webp"); background-size: cover; background-repeat: no-repeat; background-position: center; opacity: 1; }
.hero__inner { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 400px); gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; padding-top: clamp(1.5rem, 3vw, 3rem); padding-bottom: clamp(4rem, 8vw, 6.5rem); }

@media (max-width: 1150px) and (min-width: 981px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 360px); }
  .hero__formcard { max-width: none; }
}

.hero__left { max-width: 560px; }
.hero__content { margin-bottom: 0; }
.hero__title { font-size: clamp(2.7rem, 5.4vw, 4.6rem); line-height: .96; margin-bottom: 1.1rem; letter-spacing: -.03em; }
.hero__title span { display: block; color: var(--gold); font-style: italic; font-weight: 500; }
.hero__lede { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: rgba(247,243,236,.88); max-width: 40ch; 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(--gold); line-height: 1; }
.hero__pills { display: flex; flex-wrap: wrap; gap: .5rem .6rem; margin-bottom: 1.6rem; max-width: 34rem; }
.hero__pills li { display: inline-flex; align-items: center; gap: .4rem; background: rgba(255,255,255,.08); border: 1px solid rgba(176,137,79,.35); color: #fff; font-size: .78rem; font-weight: 600; letter-spacing: .04em; padding: .42rem .8rem; border-radius: 999px; backdrop-filter: blur(6px); }
.hero__pills li::before { content: "\2713"; color: var(--gold); font-weight: 800; font-size: .78rem; }

.hero__formcard { position: relative; align-self: center; width: 100%; background: rgba(16,14,12,.62); color: var(--ivory); border-radius: 22px; padding: 1.4rem 1.45rem 1.3rem; box-shadow: 0 30px 70px rgba(16,14,12,.45); backdrop-filter: blur(18px) saturate(1.2); border: 1px solid rgba(176,137,79,.38); }
.hero__formcard::after { display: none; }
.hero__formtitle { font-size: clamp(1.4rem, 2vw, 1.75rem); color: var(--ivory); margin-bottom: .15rem; }
.hero__formsub { font-size: .82rem; color: rgba(247,243,236,.68); margin-bottom: .85rem; }
.hero .leadform input, .hero .leadform select { background: rgba(247,243,236,.96); border-color: transparent; }
.hero .leadform__fine { color: rgba(247,243,236,.62); }
.hero .leadform__fine a { color: var(--gold); }
.hero .leadform__success { color: var(--ivory); }
.hero .leadform__success h3 { color: var(--ivory); }
.hero .leadform__success p { color: rgba(247,243,236,.75); }

.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(--gold); box-shadow: 0 0 0 3px rgba(176,137,79,.18); }
.leadform__row { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; }
.leadform__area {
  margin: 0 0 .2rem; font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  color: var(--gold); text-align: center;
}
.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 { display: none; }
.hero__wave svg { width: 100%; height: clamp(36px, 5vw, 70px); }

/* ===== Trust strip (premium social proof) ===== */
.trustbar { background: var(--ivory); border-bottom: 1px solid var(--line); }
.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: var(--gold); 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(176,137,79,.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__card .location__icon { display: 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(26,23,20,.22); transition: transform .2s ease; }
.location__icon svg { width: 24px; height: 24px; flex-shrink: 0; 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; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===== Coverage atlas (San Diego service-area map) ===== */
.atlas {
  --atlas-w: min(1440px, calc(100vw - 2.5rem));
  width: var(--atlas-w); margin-left: calc((100% - var(--atlas-w)) / 2);
  margin-top: clamp(3rem, 6vw, 4.5rem); padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}
.atlas__head { max-width: 680px; margin: 0 auto 2.25rem; text-align: center; }
.atlas__head h3 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin: .5rem 0 .6rem; }
.atlas__head p { color: var(--muted); }
.atlas__searchwrap { display: block; max-width: 420px; margin: 1.35rem auto .7rem; }
.atlas__searchwrap input {
  width: 100%; font-family: var(--font-body); font-size: .95rem;
  padding: .85rem 1.1rem; border: 1px solid var(--line); border-radius: 999px;
  background: #fff; color: var(--ink);
}
.atlas__searchwrap input:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.atlas__count { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; }
.atlas__layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: clamp(1.75rem, 3.5vw, 3rem); align-items: start; }

.atlas__mapframe {
  margin: 0; position: sticky; top: 96px;
  background: linear-gradient(180deg, #FBF8F2 0%, #F3EDE1 100%);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1rem 1rem .9rem; box-shadow: var(--shadow-sm);
}
.atlas__readout {
  font-family: var(--font-display); font-size: 1.15rem; color: var(--ink);
  text-align: center; padding: .1rem 0 .55rem; min-height: 1.9rem;
  border-bottom: 1px solid var(--line); margin-bottom: .6rem;
  transition: color .2s ease;
}
.atlas__readout.is-live { color: var(--gold-deep); }
.atlas__legend { font-size: .75rem; color: var(--muted); margin-top: .7rem; text-align: center; }
.atlas__svg { width: 100%; height: auto; display: block; }

.atlas__water { fill: #D6E2E0; }
.atlas__landbase { fill: #D8B77E; }
.atlas__watermark, .atlas__baymark {
  font-family: var(--font-body); font-weight: 700; fill: #A6BAB6;
  text-anchor: middle; pointer-events: none;
}
.atlas__watermark { font-size: 15px; letter-spacing: .42em; }
.atlas__baymark { font-size: 9px; letter-spacing: .26em; }

.atlas__cell {
  stroke: rgba(26,23,20,.35); stroke-width: .7; stroke-linejoin: round;
  transition: fill .18s ease;
}
.atlas__cell.r-la-jolla { fill: #EDD8B1; }
.atlas__cell.r-beach { fill: #DFC08D; }
.atlas__cell.r-point-loma { fill: #DCB77C; }
.atlas__cell.r-downtown { fill: #B4823E; }
.atlas__cell.r-upton { fill: #C4924C; }
.atlas__cell.r-mission-valley { fill: #C99C57; }
.atlas__cell.r-clairemont { fill: #D3A96A; }
.atlas__cell.r-utc { fill: #E9D2A8; }
.atlas__cell.r-carmel { fill: #E5CB9F; }
.atlas__cell.r-mira-mesa { fill: #D9B67F; }
.atlas__cell.r-east { fill: #BE8C48; }
.atlas__cell.r-southeast { fill: #AC7A39; }
.atlas__cell.r-south-bay { fill: #CB9E5B; }
.atlas__cell:hover, .atlas__cell.is-on { fill: var(--ink); }
.atlas__cell.is-dim { opacity: .2; }
.atlas__outline { fill: none; stroke: var(--ink); stroke-width: 1.9; stroke-linejoin: round; pointer-events: none; transition: stroke-width .2s ease; }
.atlas__outline.is-lit { stroke-width: 3.4; }
.atlas__coast path { fill: none; stroke: var(--ink); stroke-width: 2.6; stroke-linejoin: round; pointer-events: none; }
.atlas__label {
  font-family: var(--font-body); font-weight: 700; letter-spacing: .04em;
  fill: rgba(26,23,20,.78); text-anchor: middle; pointer-events: none;
  transition: fill .18s ease;
}
.atlas__label.is-on { fill: var(--ivory); }
.atlas__hq path { fill: #C6483C; stroke: #fff; stroke-width: 1.3; }
.atlas__hqhalo { fill: rgba(198,72,60,.18); }

.atlas__dir { max-height: 1120px; overflow: auto; padding-right: .5rem; }
.atlas__group { margin-bottom: 1.5rem; border-radius: 12px; transition: background .2s ease; }
.atlas__group.is-lit { background: rgba(176,137,79,.1); box-shadow: 0 0 0 .6rem rgba(176,137,79,.1); }
.atlas__group h3 {
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-size: .72rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep);
  margin: 0 0 .7rem;
}
.atlas__group h3 span {
  font-size: .66rem; letter-spacing: .04em; color: var(--muted);
  border: 1px solid var(--line); border-radius: 999px; padding: .05rem .45rem;
}
.atlas__chips { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: 0; padding: 0; }
.atlas__chip {
  display: inline-block; font-family: var(--font-body); font-size: .8rem; font-weight: 600;
  color: var(--ink); background: #fff;
  border: 1px solid rgba(176,137,79,.45); border-radius: 999px;
  padding: .35rem .75rem;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.atlas__chip:hover, .atlas__chip.is-on {
  background: var(--ink); color: var(--ivory); border-color: var(--ink);
  transform: translateY(-1px);
}
.atlas__empty { font-size: .9rem; color: var(--muted); }
@media (max-width: 900px) {
  .atlas { width: auto; margin-left: 0; }
  .atlas__layout { grid-template-columns: 1fr; }
  .atlas__mapframe { position: static; }
  .atlas__dir { max-height: none; }
}
.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(176,137,79,.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(26,23,20,.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; }

/* ===== Press / recognition ===== */
.press { background: #fff; padding: clamp(2.4rem, 5vw, 3.6rem) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.press .container { text-align: center; }
.press__trust {
  list-style: none; margin: 0 0 2.4rem; padding: 0;
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1.25rem 1.5rem;
  text-align: center;
}
.press__trust li { display: grid; justify-items: center; gap: .45rem; }
.press__trusticon {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1.5px solid rgba(176,137,79,.45); color: var(--gold-deep);
  display: grid; place-items: center; background: var(--ivory);
}
.press__trusticon svg { width: 22px; height: 22px; }
.press__trust strong { font-size: .92rem; color: var(--ink); line-height: 1.2; }
.press__trust span { font-size: .75rem; color: var(--muted); max-width: 18ch; }
.press__label { font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 1.35rem; }
.press__logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.35rem 2.75rem; margin-bottom: 2.15rem; }
.press__logo { color: #9a958a; opacity: .78; transition: opacity .25s ease, color .25s ease; white-space: nowrap; line-height: 1; }
.press__logo:hover { opacity: 1; color: var(--ink); }
.press__logo--forbes { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; letter-spacing: -.01em; }
.press__logo--usat { font-family: var(--font-body); font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em; }
.press__logo--usat b { font-weight: 400; }
.press__logo--ah { font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; letter-spacing: .04em; text-transform: uppercase; }
.press__logo--ah i { font-style: italic; font-weight: 600; text-transform: none; }
.press__logo--ut { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; }
.press__logo--ut b { font-style: normal; font-weight: 700; }
.press__logo--hgtv { font-family: var(--font-body); font-weight: 800; font-size: 1.5rem; letter-spacing: .02em; }
.press__awards { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem 2.5rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }
.award { display: flex; align-items: center; gap: .65rem; text-align: left; }
.award__badge { width: 58px; height: 58px; flex-shrink: 0; }
.award__badge svg { width: 100%; height: 100%; }
.award__txt strong { display: block; font-size: .92rem; color: var(--ink); line-height: 1.2; }
.award__txt span { display: block; font-size: .76rem; color: var(--muted); margin-top: 2px; }
@media (max-width: 900px) {
  .press__trust { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .press__trust { grid-template-columns: 1fr 1fr; }
}

/* ===== Trust seals ===== */
.seals { padding: clamp(2.5rem, 5vw, 3.5rem) 0; }
.seals__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.seal { text-align: center; }
.seal__badge { display: block; width: 84px; height: 84px; margin: 0 auto .85rem; filter: drop-shadow(0 8px 18px rgba(26,23,20,.12)); }
.seal__badge svg { width: 100%; height: 100%; }
.seal strong { display: block; font-size: 1.02rem; color: var(--teal-deep); margin-bottom: .2rem; }
.seal span { display: block; font-size: .85rem; color: var(--muted); }

/* ===== Before / after carousel ===== */
.ba__carousel { position: relative; max-width: 940px; margin: 0 auto; }
.ba__track { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.ba__slide { display: none; grid-template-columns: 1fr 1fr; }
.ba__slide.is-active { display: grid; animation: baFade .45s cubic-bezier(.22,1,.36,1); }
@keyframes baFade { from { opacity: 0; transform: scale(.985); } to { opacity: 1; transform: scale(1); } }
.ba__slide:has(.ba__pane--full) { grid-template-columns: 1fr; }
.ba__pane { position: relative; margin: 0; aspect-ratio: 4 / 3; overflow: hidden; }
.ba__pane--full { aspect-ratio: 16 / 9; }
.ba__pane:first-child { border-right: 3px solid var(--cream); }
.ba__pane--full:first-child { border-right: 0; }
.ba__pane img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba__tag { position: absolute; top: 1rem; left: 1rem; font-family: var(--font-body); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #fff; padding: .4rem .9rem; border-radius: 999px; box-shadow: var(--shadow-sm); }
.ba__tag--before { background: rgba(28,26,22,.7); backdrop-filter: blur(3px); }
.ba__tag--after { background: var(--coral); }
.ba__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 48px; height: 48px; border-radius: 50%; border: 0; background: var(--cream); color: var(--teal-deep); font-size: 1.8rem; line-height: 1; cursor: pointer; box-shadow: var(--shadow-md); display: grid; place-items: center; transition: background .2s ease, transform .2s ease; }
.ba__nav:hover { background: var(--teal); color: #fff; transform: translateY(-50%) scale(1.08); }
.ba__nav--prev { left: -16px; }
.ba__nav--next { right: -16px; }
.ba__dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.5rem; }
.ba__dot { width: 9px; height: 9px; border-radius: 50%; border: 0; background: var(--line); cursor: pointer; padding: 0; transition: background .2s ease, transform .2s ease; }
.ba__dot.is-active { background: var(--coral); transform: scale(1.3); }
.ba__cta { text-align: center; margin-top: 2rem; }

/* ===== 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(26,23,20,.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(176,137,79,.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(--gold); color: #fff; font-weight: 700; padding: .9rem 2.2rem;
  border-radius: 999px; box-shadow: 0 10px 30px rgba(176,137,79,.5); font-size: .95rem;
  border: 0; cursor: pointer; font-family: var(--font-body); text-decoration: none;
}

/* ===== Quote modal ===== */
.modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 1.25rem; }
.modal[hidden] { display: none; }
.modal__overlay { position: absolute; inset: 0; background: rgba(26,23,20,.55); backdrop-filter: blur(4px); animation: modalFade .25s ease; }
.modal__panel { position: relative; width: min(100%, 440px); max-height: 92vh; overflow-y: auto; background: var(--cream); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2rem); box-shadow: 0 40px 90px rgba(26,23,20,.4); animation: modalPop .3s cubic-bezier(.16,1,.3,1); }
.modal__close { position: absolute; top: .75rem; right: .9rem; width: 34px; height: 34px; border: 0; background: var(--sand-soft); color: var(--teal-deep); border-radius: 50%; font-size: 1.5rem; line-height: 1; cursor: pointer; transition: background .2s ease; }
.modal__close:hover { background: var(--sand); }
.modal__title { font-size: clamp(1.6rem, 4vw, 2rem); color: var(--teal-deep); margin-bottom: .15rem; }
.modal__title span { color: var(--coral); font-style: italic; }
.modal__sub { font-size: .88rem; color: var(--muted); margin-bottom: 1.1rem; }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalPop { from { opacity: 0; transform: translateY(20px) scale(.97); } to { opacity: 1; transform: none; } }
body.modal-open { overflow: hidden; }

/* ===== 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; }
  .seals__inner { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .areas__columns { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .hero__bg { width: 100%; background-position: center; opacity: 1; }
  .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; }
  .ba__carousel { padding: 0 .75rem; margin-top: 2rem; }
  .ba__track { overflow: visible; box-shadow: none; border-radius: 0; }
  .ba__slide.is-active { grid-template-columns: 1fr; row-gap: 1rem; }
  .ba__pane { aspect-ratio: 3 / 2; border-radius: var(--radius); box-shadow: var(--shadow-md); }
  .ba__pane:first-child { border-right: 0; border-bottom: 0; }
  .ba__nav { width: 40px; height: 40px; font-size: 1.4rem; top: calc(50% - .5rem); }
  .ba__nav--prev { left: 10px; }
  .ba__nav--next { right: 10px; }
  .ba__dots { margin-top: 2rem; }
  .ba__cta { margin-top: 2rem; }
  .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; }
}
/* ===== About page ===== */
.abouthero { position: relative; background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 60%, var(--teal-dark) 100%); color: var(--cream); padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(4rem, 9vw, 7rem); text-align: center; overflow: hidden; }
.abouthero__inner { position: relative; z-index: 1; max-width: 760px; }
.abouthero__title { font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.05; margin-bottom: 1rem; }
.abouthero__title span { color: var(--sand); font-style: italic; font-weight: 500; }
.abouthero__lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: rgba(255,255,255,.92); max-width: 60ch; margin: 0 auto; }

/* Meet the team intro */
.teamintro__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.teamintro__media { align-self: center; }
.teamintro__media img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); display: block; }
.teamintro__copy .eyebrow { margin-bottom: .5rem; }
.teamintro__copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin-bottom: 1rem; }
.teamintro__copy p { color: var(--muted); margin-bottom: 1.1rem; line-height: 1.75; }
.teamintro__copy strong { color: var(--ink); }

.founder__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.founder__media { position: relative; max-width: 420px; }
.founder__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); display: block; }
.founder__badge { position: absolute; left: -16px; bottom: -18px; background: var(--cream); border-radius: var(--radius-sm); padding: .85rem 1.25rem; box-shadow: var(--shadow-md); }
.founder__badge strong { display: block; font-family: var(--font-display); font-size: 1.2rem; color: var(--teal-deep); }
.founder__badge span { display: block; font-size: .78rem; font-weight: 600; color: var(--coral-deep); letter-spacing: .02em; }
.founder__copy > p { color: var(--muted); margin-bottom: 1.1rem; line-height: 1.7; }
.founder__copy strong { color: var(--ink); }
.founder__sig { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--teal-deep) !important; margin-top: 1.5rem; }

.values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
.value { text-align: center; }
.value__icon { display: grid; place-items: center; width: 60px; height: 60px; margin: 0 auto 1rem; border-radius: 16px; background: var(--sand); color: var(--teal-deep); }
.value__icon svg { width: 28px; height: 28px; }
.value h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; color: var(--teal-deep); margin-bottom: .4rem; }
.value p { color: var(--muted); font-size: .9rem; margin: 0; }

.team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; text-align: center; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card__photo { width: 150px; height: 150px; margin: 0 auto 1.25rem; border-radius: 50%; overflow: hidden; box-shadow: var(--shadow-md); border: 4px solid var(--cream); }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.4rem; color: var(--teal-deep); margin-bottom: .25rem; }
.team-card__role { display: block; font-family: var(--font-body); font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--coral-deep); margin-bottom: .85rem; }
.team-card p { color: var(--muted); font-size: .92rem; margin: 0; }

/* About hero CTA */
.abouthero__cta { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; margin-top: 1.75rem; }

/* Animated stats */
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat { padding: 1.25rem .5rem; }
.stat__num { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1; color: var(--teal-deep); }
.stat__label { display: block; margin-top: .5rem; font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--coral-deep); }

/* Mission strip */
.mission { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%); color: var(--cream); padding: clamp(2.75rem, 6vw, 4.5rem) 0; text-align: center; position: relative; overflow: hidden; }
.mission__inner { max-width: 880px; margin-inline: auto; position: relative; }
.mission__quote { position: absolute; top: -2.4rem; left: 50%; transform: translateX(-50%); font-family: var(--font-display); font-size: 6rem; line-height: 1; color: rgba(255,255,255,.18); }
.mission__text { font-family: var(--font-display); font-style: italic; font-size: clamp(1.4rem, 2.8vw, 2.1rem); line-height: 1.4; color: #fff; margin: 0; }

/* HQ slider */
.hq__slider { position: relative; max-width: 960px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--teal-dark); }
.hq__track { position: relative; aspect-ratio: 4 / 3; }
.hq__slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity .55s ease; }
.hq__slide.is-active { opacity: 1; }
.hq__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hq__slide figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 2.5rem 1.5rem 1.1rem; background: linear-gradient(to top, rgba(26,23,20,.85), transparent); color: #fff; font-size: .95rem; font-weight: 500; }
.hq__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; border: none; background: rgba(255,255,255,.9); color: var(--teal-deep); font-size: 1.6rem; line-height: 1; cursor: pointer; box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; transition: background .2s ease, transform .2s ease; }
.hq__nav:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.hq__nav--prev { left: 14px; }
.hq__nav--next { right: 14px; }
.hq__dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: .5rem; z-index: 2; }
.hq__dots button { width: 9px; height: 9px; padding: 0; border-radius: 50%; border: none; background: rgba(255,255,255,.5); cursor: pointer; transition: background .2s ease, width .2s ease; }
.hq__dots button.is-active { background: #fff; width: 22px; border-radius: 5px; }

@media (max-width: 980px) {
  .founder__grid { grid-template-columns: 1fr; }
  .founder__media { margin: 0 auto; }
  .teamintro__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .team__grid { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; }
}
@media (max-width: 600px) {
  .values__grid, .team__grid { grid-template-columns: 1fr; }
  .team__grid { max-width: 360px; margin-inline: auto; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .hq__nav { width: 38px; height: 38px; font-size: 1.3rem; }
}

/* ===== Smooth scroll reveal ===== */
.reveal { opacity: 0; transform: translate3d(0, 24px, 0); transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1); will-change: opacity, transform; }
.reveal--in { opacity: 1; transform: translate3d(0, 0, 0); }

@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; scroll-behavior: auto; } .reveal { opacity: 1 !important; transform: none !important; } }

/* ===== Services nav dropdown ===== */
.nav__item { position: relative; display: inline-block; }
.nav__toggle { display: inline-flex; align-items: center; gap: .3rem; cursor: pointer; }
.nav__caret { font-size: .7em; transition: transform .2s ease; }
.nav__item--has-dropdown:hover .nav__caret,
.nav__item--has-dropdown.is-open .nav__caret { transform: rotate(180deg); }
.nav__dropdown {
  position: absolute; top: calc(100% + 4px); left: 50%; transform: translateX(-50%) translateY(-6px);
  min-width: 260px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .55rem; margin: 0; list-style: none; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  z-index: 60;
}
.nav__dropdown::before { content: ""; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg); width: 12px; height: 12px; background: var(--cream); border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.nav__item--has-dropdown:hover .nav__dropdown,
.nav__item--has-dropdown:focus-within .nav__dropdown,
.nav__item--has-dropdown.is-open .nav__dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear 0s;
}
.nav__dropdown li { list-style: none; }
.nav__dropdown a { display: block; padding: .6rem .85rem; border-radius: 8px; font-size: .93rem; color: var(--teal-deep); text-decoration: none; font-weight: 600; transition: background .15s ease, color .15s ease; }
.nav__dropdown a:hover { background: var(--sand-soft); color: var(--coral-deep); }

/* Mobile nav sub-accordion */
.mobile-nav__group { display: flex; align-items: center; justify-content: space-between; gap: .5rem; width: 100%; padding: .75rem 0; background: none; border: 0; font: inherit; color: inherit; text-align: left; cursor: pointer; font-weight: 600; }
.mobile-nav__caret { transition: transform .2s ease; font-size: .8em; }
.mobile-nav__group[aria-expanded="true"] .mobile-nav__caret { transform: rotate(180deg); }
.mobile-nav__sub { display: flex; flex-direction: column; padding-left: 1rem; border-left: 2px solid var(--teal); margin: 0 0 .5rem; }
.mobile-nav__sublink { padding: .55rem 0; font-size: .95rem; color: var(--teal-deep); }

/* ===== SERVICE PAGES ===== */

/* Service hero */
.svc-hero { position: relative; min-height: 560px; padding: clamp(6rem, 14vh, 9rem) 0 clamp(3.5rem, 6vh, 5rem); overflow: hidden; color: #fff; display: flex; align-items: center; }
.svc-hero__media { position: absolute; inset: 0; z-index: 0; }
.svc-hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-hero__overlay { position: absolute; inset: 0; background: linear-gradient(115deg, rgba(26,23,20,.85) 0%, rgba(26,23,20,.55) 55%, rgba(26,23,20,.25) 100%); z-index: 1; }
.svc-hero__inner { position: relative; z-index: 2; max-width: 780px; }
.crumbs { display: flex; flex-wrap: wrap; gap: .4rem; font-size: .8rem; letter-spacing: .04em; margin-bottom: 1rem; color: rgba(255,255,255,.82); }
.crumbs a { color: #fff; text-decoration: none; opacity: .82; }
.crumbs a:hover { opacity: 1; text-decoration: underline; }
.crumbs [aria-current] { color: var(--sand); font-weight: 600; }
.svc-hero__title { font-family: var(--font-display); font-size: clamp(2.4rem, 5.4vw, 4.2rem); line-height: 1.05; margin: .35rem 0 1rem; color: #fff; font-weight: 600; }
.svc-hero__lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: rgba(255,255,255,.94); max-width: 62ch; margin: 0 0 1.75rem; line-height: 1.55; }
.svc-hero__cta { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.svc-hero__trust { display: flex; flex-wrap: wrap; gap: .55rem; font-size: .82rem; color: rgba(255,255,255,.9); letter-spacing: .04em; }
.svc-hero__trust span { display: inline-flex; align-items: center; }

/* When to Book */
.when-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; margin-top: 2rem; }
.when-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.2rem 1.25rem; display: flex; flex-direction: column; gap: .35rem; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.when-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--teal); }
.when-card strong { font-family: var(--font-display); color: var(--teal-deep); font-size: 1.15rem; font-weight: 700; }
.when-card span { color: var(--muted); font-size: .93rem; line-height: 1.55; }

/* Service how-it-works */
.svc-how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1rem; }
.svc-how__card { background: #fff; border-radius: var(--radius-sm); padding: 1.75rem 1.5rem 1.5rem; border: 1px solid var(--line); position: relative; }
.svc-how__num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--coral); line-height: 1; display: block; margin-bottom: .5rem; }
.svc-how__card h3 { color: var(--teal-deep); font-size: 1.25rem; margin: 0 0 .5rem; }
.svc-how__card p { color: var(--muted); font-size: .95rem; margin: 0; line-height: 1.6; }

/* Differentiators list */
.svc-diff__list { list-style: none; padding: 0; margin: 1.5rem auto 0; max-width: 780px; display: grid; gap: .8rem; }
.svc-diff__list li { display: flex; gap: .8rem; align-items: flex-start; background: var(--sand-soft); border-radius: var(--radius-sm); padding: 1rem 1.15rem; font-size: 1rem; color: var(--ink); line-height: 1.55; }
.svc-diff__list .check { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--teal); color: #fff; font-size: .75rem; font-weight: bold; }

/* Included list already exists, style groups */
.included__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1rem; }
.included__group { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.5rem 1.4rem; }
.included__group h3 { color: var(--teal-deep); font-size: 1.2rem; margin: 0 0 .8rem; }
.included__list { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.included__list li { display: flex; gap: .55rem; align-items: flex-start; font-size: .93rem; color: var(--ink); line-height: 1.5; }
.included__list .check { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--coral); color: #fff; font-size: .68rem; font-weight: bold; margin-top: 2px; }

/* Add-ons chips */
.addons-wrap { margin-top: 2rem; text-align: center; }
.addons-label { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--coral-deep); margin-bottom: .8rem; }
.addons { display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem; }
.chip { display: inline-flex; align-items: center; padding: .45rem .9rem; background: var(--cream); border: 1px solid var(--line); border-radius: 999px; font-size: .84rem; font-weight: 600; color: var(--teal-deep); }

/* Pricing table */
.svc-pricing__inner { max-width: 780px; margin-inline: auto; text-align: center; }
.pricing-table { width: 100%; margin: 1.5rem 0 1.25rem; border-collapse: separate; border-spacing: 0; background: var(--cream); border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); }
.pricing-table th { background: var(--teal-deep); color: #fff; font-family: var(--font-body); font-weight: 700; padding: .9rem 1.25rem; text-align: left; letter-spacing: .04em; font-size: .82rem; text-transform: uppercase; }
.pricing-table th:last-child { text-align: right; }
.pricing-table td { padding: .95rem 1.25rem; font-size: 1rem; color: var(--ink); border-top: 1px solid var(--line); }
.pricing-table tbody tr:first-child td { border-top: 0; }
.pricing-table__price { text-align: right; color: var(--coral-deep); font-weight: 700; font-family: var(--font-display); font-size: 1.15rem; }
.pricing-note { font-size: .82rem; color: var(--muted); margin: 0 0 1.5rem; font-style: italic; }

/* Service reviews */
.svc-reviews__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 1.5rem; }
.svc-review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.5rem 1.5rem 1.25rem; }
.svc-review__stars { color: #f0b429; letter-spacing: 2px; margin-bottom: .6rem; }
.svc-review p { color: var(--ink); font-size: 1.02rem; line-height: 1.6; margin: 0 0 .8rem; font-style: italic; }
.svc-review__name { display: block; font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--coral-deep); }

/* Local SEO paragraph */
.svc-local__inner { max-width: 780px; margin-inline: auto; text-align: center; }
.svc-local__inner p { color: var(--muted); font-size: 1rem; line-height: 1.75; margin: 1rem 0 0; }

/* Cross-sell card */
.svc-cross__card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; transition: transform .25s ease, box-shadow .25s ease; }
.svc-cross__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.svc-cross__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-cross__body { padding: 2.25rem clamp(1.5rem, 3vw, 2.75rem); display: flex; flex-direction: column; justify-content: center; }
.svc-cross__body h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--teal-deep); margin: .35rem 0 .8rem; }
.svc-cross__body p { color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.svc-cross__link { color: var(--coral-deep); font-weight: 700; letter-spacing: .02em; }

/* Mobile */
@media (max-width: 900px) {
  .svc-how__grid, .included__grid { grid-template-columns: 1fr 1fr; }
  .svc-reviews__grid { grid-template-columns: 1fr; }
  .svc-cross__card { grid-template-columns: 1fr; }
  .svc-cross__media { aspect-ratio: 16/9; }
}
@media (max-width: 600px) {
  .svc-hero { min-height: 480px; }
  .svc-how__grid, .included__grid { grid-template-columns: 1fr; }
  .svc-hero__cta { flex-direction: column; align-items: stretch; }
  .svc-hero__cta .btn { width: 100%; text-align: center; }
}

/* ===== Service page hero (uses homepage .hero layout with the service image on the right, mirroring the Marina fade) ===== */
.svc-page-hero .hero__bg {
  background-image: var(--svc-hero-image);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.svc-page-hero .crumbs {
  display: flex; flex-wrap: wrap; gap: .4rem; font-size: .82rem; letter-spacing: .04em;
  margin-bottom: 1rem; color: rgba(255,255,255,.82);
}
.svc-page-hero .crumbs a { color: #fff; text-decoration: none; opacity: .82; }
.svc-page-hero .crumbs a:hover { opacity: 1; text-decoration: underline; }
.svc-page-hero .crumbs [aria-current] { color: var(--sand); font-weight: 600; }

/* Service intro block (below hero) */
.svc-intro__inner { max-width: 900px; margin-inline: auto; text-align: center; }
.svc-intro__inner h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin: .5rem 0 1.25rem; }
.svc-intro__inner p { color: var(--muted); line-height: 1.75; font-size: 1.05rem; margin: 0 auto 1.25rem; max-width: 78ch; }
.svc-intro__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.25rem; }
.svc-intro__stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.1rem 1rem; }
.svc-intro__stat strong { display: block; font-family: var(--font-display); font-size: 1.8rem; color: var(--teal-deep); font-weight: 700; margin-bottom: .2rem; }
.svc-intro__stat span { display: block; font-size: .82rem; color: var(--muted); line-height: 1.35; }

@media (max-width: 900px) {
  .svc-intro__stats { grid-template-columns: 1fr 1fr; }
}

/* ===== Service page: on-site + finished-work photo blocks ===== */
.svc-photo__inner {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
  max-width: 1200px; margin-inline: auto;
}
.svc-photo--reverse .svc-photo__inner { grid-template-columns: 1fr 1.1fr; }
.svc-photo--reverse .svc-photo__media { order: 2; }
.svc-photo__media img {
  width: 100%; height: auto; aspect-ratio: 4 / 3;
  object-fit: cover; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); display: block;
}
.svc-photo__copy .eyebrow { margin-bottom: .55rem; }
.svc-photo__copy h2 {
  font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--teal-deep); margin: 0 0 1rem; line-height: 1.15;
}
.svc-photo__copy p { color: var(--muted); line-height: 1.75; margin: 0 0 1.5rem; font-size: 1.02rem; }

@media (max-width: 900px) {
  .svc-photo__inner, .svc-photo--reverse .svc-photo__inner { grid-template-columns: 1fr; }
  .svc-photo--reverse .svc-photo__media { order: 0; }
}

/* ===== Smooth FAQ accordion animation ===== */
.faq__item {
  transition: background-color .25s ease;
}
.faq__item > p, .faq__item > * :where(p, ul, ol) {
  /* content sits within details */
}
.faq__item summary {
  cursor: pointer; list-style: none; position: relative;
  transition: color .2s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%); font-family: var(--font-display);
  font-size: 1.6rem; color: var(--teal); font-weight: 400;
  transition: transform .3s cubic-bezier(.22,1,.36,1), color .2s ease;
  line-height: 1;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); color: var(--coral); }
.faq__item[open] summary { color: var(--teal-deep); }
.faq__item > p {
  animation: faq-slide-down .4s cubic-bezier(.22,1,.36,1);
  overflow: hidden;
}
@keyframes faq-slide-down {
  from { opacity: 0; transform: translateY(-6px); max-height: 0; }
  to   { opacity: 1; transform: translateY(0); max-height: 500px; }
}

/* ===== Scallop shell section divider ===== */
.scallop-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; padding: 2rem 0; opacity: .55;
}
.scallop-divider::before, .scallop-divider::after {
  content: ""; flex: 0 1 80px; height: 1px;
  background: linear-gradient(to right, transparent, var(--teal), transparent);
}
.scallop-divider svg { color: var(--teal); flex-shrink: 0; }

/* ===== Smooth image loading with blur-up placeholder ===== */
/* Each image can have its parent set a background-image (base64 placeholder). Image starts opacity 0 and fades in when loaded. */
.smooth-img {
  position: relative;
  background-color: var(--sand-soft);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.smooth-img img {
  opacity: 0;
  transition: opacity .55s cubic-bezier(.22,1,.36,1);
  will-change: opacity;
}
.smooth-img img.is-loaded,
.smooth-img.is-loaded img { opacity: 1; }

/* Skeleton shimmer for map iframe and slider */
.skeleton-shimmer {
  position: relative; overflow: hidden;
  background: var(--sand-soft);
}
.skeleton-shimmer::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,.55) 50%,
    transparent 100%);
  transform: translateX(-100%);
  animation: shimmer 1.6s cubic-bezier(.4,0,.2,1) infinite;
}
.skeleton-shimmer.is-loaded::before { display: none; }
@keyframes shimmer {
  100% { transform: translateX(100%); }
}

/* Before/After slider cross-fade */
.ba__slide { transition: opacity .35s cubic-bezier(.22,1,.36,1); }
.ba__slide:not(.is-active) { opacity: 0; pointer-events: none; }
.ba__slide.is-active { opacity: 1; }

/* ===== 404 page ===== */
.notfound {
  min-height: 82vh;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: clamp(4rem, 10vh, 6rem) 0;
}
.notfound__bg { position: absolute; inset: 0; z-index: 0; }
.notfound__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.notfound__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(115deg,
    rgba(26,23,20,.90) 0%,
    rgba(26,23,20,.62) 42%,
    rgba(26,23,20,.15) 100%);
}
.notfound__inner {
  position: relative; z-index: 2;
  max-width: 720px;
  color: #fff;
}
.notfound__code {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(5rem, 12vw, 9rem); line-height: 1;
  color: var(--sand); margin: 0;
}
.notfound__title {
  font-family: var(--font-display); font-size: clamp(2rem, 4.2vw, 3.2rem);
  color: #fff; margin: .5rem 0 1rem; line-height: 1.1;
}
.notfound__lede {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.94); max-width: 55ch; margin: 0 0 2rem; line-height: 1.6;
}
.notfound__cta { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 2rem; }
.notfound__links {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  font-size: .92rem;
}
.notfound__links a {
  color: rgba(255,255,255,.88); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.35);
  padding-bottom: 2px; transition: color .2s ease, border-color .2s ease;
}
.notfound__links a:hover { color: var(--sand); border-bottom-color: var(--sand); }

/* ===== Coastal Maid Care manifesto block on service pages ===== */
.care {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-dark) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.care::before {
  content: ""; position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(176,137,79,.15) 0%, transparent 70%);
  pointer-events: none;
}
.care__inner {
  max-width: 900px; margin-inline: auto; text-align: center;
  position: relative;
}
.care__eyebrow {
  display: inline-block;
  font-size: .78rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--sand);
  margin-bottom: 1rem;
}
.care__title {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.35;
  color: #fff; margin: 0 auto 1.5rem; max-width: 30ch;
}
.care__lede {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: rgba(255,255,255,.9); max-width: 60ch;
  margin: 0 auto 2rem; line-height: 1.75;
}
.care__values {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 2.5rem; text-align: left;
}
.care__value {
  padding: 1.5rem 0 0;
  border-top: 2px solid var(--sand);
}
.care__value strong {
  display: block; font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--sand); margin-bottom: .4rem;
}
.care__value span {
  display: block; font-size: .93rem;
  color: rgba(255,255,255,.85); line-height: 1.6;
}

/* Homepage service card: make title an obvious link */
.service-card__title-link {
  color: var(--teal-deep); text-decoration: none;
  display: inline-flex; align-items: center; gap: .35rem;
  transition: color .2s ease, gap .2s ease;
  border-bottom: 2px solid transparent;
}
.service-card__title-link::after {
  content: "\2192"; font-size: .8em;
  opacity: 0; transform: translateX(-4px);
  transition: opacity .25s ease, transform .25s ease;
}
.service-card:hover .service-card__title-link,
.service-card__title-link:hover {
  color: var(--coral-deep);
  border-bottom-color: var(--coral);
}
.service-card:hover .service-card__title-link::after,
.service-card__title-link:hover::after {
  opacity: 1; transform: translateX(0);
}

/* Responsive care values */
@media (max-width: 900px) {
  .care__values { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .care__values { grid-template-columns: 1fr; }
  .notfound__cta { flex-direction: column; align-items: stretch; }
  .notfound__cta .btn { width: 100%; text-align: center; }
}

/* ==========================================================================
   LOCATION PAGES
   ========================================================================== */

/* Hero reuses the service page hero treatment */
.loc-page-hero .hero__bg {
  background-image: var(--svc-hero-image);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.loc-page-hero .crumbs {
  display: flex; flex-wrap: wrap; gap: .4rem; font-size: .82rem; letter-spacing: .04em;
  margin-bottom: 1rem; color: rgba(255,255,255,.82);
}
.loc-page-hero .crumbs a { color: #fff; text-decoration: none; opacity: .82; }
.loc-page-hero .crumbs a:hover { opacity: 1; text-decoration: underline; }
.loc-page-hero .crumbs [aria-current] { color: var(--sand); font-weight: 600; }

/* ---- Services offered grid ---- */
.loc-services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.loc-service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.loc-service-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
  border-color: rgba(176,137,79,.28);
}
.loc-service-card h3 { font-family: var(--font-display); font-size: 1.4rem; margin: 0 0 .6rem; }
.loc-service-card h3 a {
  color: var(--teal-deep); text-decoration: none;
  display: inline-flex; align-items: baseline; gap: .4rem;
}
.loc-service-card h3 a:hover { color: var(--coral); }
.loc-service-card__arrow {
  display: inline-block; font-size: .95rem;
  transform: translateX(-4px); opacity: 0;
  transition: transform .28s ease, opacity .28s ease;
}
.loc-service-card:hover .loc-service-card__arrow { transform: translateX(0); opacity: 1; }
.loc-service-card p { color: var(--muted); font-size: .96rem; line-height: 1.65; margin: 0; }

/* ---- Local detail, two column editorial ---- */
.loc-detail__inner {
  display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: start;
}
.loc-detail__head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1.12;
  margin: .5rem 0 0; text-wrap: balance;
}
.loc-detail__body p {
  color: var(--ink); line-height: 1.85; font-size: 1.06rem; margin: 0 0 1.35rem;
}
.loc-detail__body p:first-child::first-line { font-weight: 500; }
.loc-detail__body p:last-child { margin-bottom: 0; color: var(--muted); }

/* ---- Neighborhood chips ---- */
.loc-hoods__grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem;
  max-width: 950px; margin-inline: auto;
}
.loc-hoods__chip {
  font-size: .9rem; font-weight: 600; color: var(--teal-deep);
  background: var(--sand-soft); border: 1px solid rgba(176,137,79,.16);
  border-radius: 999px; padding: .5rem 1rem;
  transition: background .22s ease, border-color .22s ease;
}
.loc-hoods__chip:hover { background: #fff; border-color: rgba(176,137,79,.34); }

/* ---- Cleaning Services Near Me: the geo citation block ---- */
.loc-nearme__inner { max-width: 920px; margin-inline: auto; text-align: center; }
.loc-nearme__inner h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin: .5rem 0 1.5rem;
  text-wrap: balance;
}
.loc-nearme__lede {
  color: var(--ink); font-size: 1.08rem; line-height: 1.9;
  text-align: left; max-width: 76ch; margin: 0 auto;
}
/* Outbound citation links: visible as links, not loud */
.loc-nearme__lede a {
  color: var(--teal); font-weight: 600; text-decoration: none;
  border-bottom: 1px solid rgba(176,137,79,.38);
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.loc-nearme__lede a:hover {
  color: var(--teal-deep); border-bottom-color: var(--teal-deep);
  background: rgba(176,137,79,.06);
}
.loc-nearme__lede a:focus-visible {
  outline: 2px solid var(--teal); outline-offset: 2px; border-radius: 3px;
}
.loc-nearme__zipblock {
  margin-top: clamp(2rem, 4vw, 3rem); padding-top: clamp(1.75rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(176,137,79,.18);
}
.loc-nearme__zipblock h3 {
  font-family: var(--font-body); font-size: .82rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; color: var(--muted);
  margin: 0 0 1.1rem;
}
.loc-nearme__zips { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; }
.loc-nearme__zips span {
  font-size: .9rem; font-weight: 700; color: var(--teal-deep);
  background: #fff; border: 1px solid rgba(176,137,79,.2);
  border-radius: 8px; padding: .45rem .85rem;
  font-variant-numeric: tabular-nums;
}
.loc-nearme__cta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .85rem;
  margin-top: clamp(2rem, 4vw, 2.75rem);
}

@media (max-width: 1024px) {
  .loc-services__grid { grid-template-columns: repeat(2, 1fr); }
  .loc-detail__inner { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 720px) {
  .loc-services__grid { grid-template-columns: 1fr; }
  .loc-nearme__lede { font-size: 1rem; line-height: 1.85; }
  .loc-nearme__cta { flex-direction: column; align-items: stretch; }
  .loc-nearme__cta .btn { width: 100%; text-align: center; }
  .loc-hoods__chip { font-size: .84rem; padding: .42rem .8rem; }
}

/* ---- Location page city reviews (4-up with client portraits) ---- */
.loc-reviews__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.loc-review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.35rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: .85rem;
  transition: transform .28s ease, box-shadow .28s ease;
}
.loc-review:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.loc-review__top { display: flex; align-items: center; gap: .8rem; }
.loc-review__avatar {
  width: 54px; height: 54px; border-radius: 50%; object-fit: cover;
  flex: 0 0 54px; border: 2px solid var(--sand);
}
.loc-review__meta { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.loc-review__name { font-weight: 700; font-size: .95rem; color: var(--ink); }
.loc-review__city {
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--teal);
}
.loc-review__stars { color: var(--coral); font-size: .95rem; letter-spacing: .1em; }
.loc-review p {
  color: var(--muted); font-size: .93rem; line-height: 1.7; margin: 0;
}
.loc-reviews__foot {
  display: flex; align-items: baseline; justify-content: center;
  gap: .6rem; margin-top: clamp(1.75rem, 3vw, 2.5rem); flex-wrap: wrap;
}
.loc-reviews__foot strong {
  font-family: var(--font-display); font-size: 2rem; color: var(--teal-deep);
}
.loc-reviews__foot span { color: var(--muted); font-size: .95rem; }

@media (max-width: 1100px) { .loc-reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) {
  .loc-reviews__grid { grid-template-columns: 1fr; }
  .loc-reviews__foot { text-align: center; justify-content: center; }
}

/* ---- Lead form: every field required, show state after a submit attempt ---- */
.leadform--validated input:invalid,
.leadform--validated select:invalid {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232, 115, 90, .16);
}
.leadform input:focus-visible,
.leadform select:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
}

/* ==========================================================================
   WHY COASTAL MAID CAROUSEL
   ========================================================================== */
.wcm__carousel { position: relative; }
.wcm__viewport { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.wcm__track { display: flex; transition: transform .6s cubic-bezier(.22,.61,.36,1); }
.wcm__slide {
  position: relative; flex: 0 0 100%; min-width: 100%;
  aspect-ratio: 16 / 8; background: var(--sand-soft);
}
.wcm__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.wcm__card {
  position: absolute; left: clamp(1.25rem, 4%, 3.5rem); top: 50%;
  transform: translateY(-50%);
  width: min(420px, 46%);
  background: rgba(255,255,255,.94);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.4vw, 2.25rem);
  box-shadow: 0 24px 60px rgba(26,23,20,.24);
}
.wcm__eyebrow {
  display: block; font-size: .7rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--coral); margin-bottom: .7rem;
}
.wcm__title {
  font-family: var(--font-display); font-size: clamp(1.5rem, 2.3vw, 2.1rem);
  line-height: 1.14; color: var(--teal-deep); margin: 0 0 .85rem; text-wrap: balance;
}
.wcm__body {
  color: var(--ink); font-size: .96rem; line-height: 1.68; margin: 0 0 1.35rem;
}
.wcm__cta { display: inline-flex; }

/* Credential chips on the Locally Owned slide */
.wcm__badges {
  list-style: none; margin: 0 0 1.25rem; padding: 0;
  display: flex; flex-wrap: wrap; gap: .4rem;
}
.wcm__badge {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .01em;
  color: var(--teal-deep); background: var(--sand-soft);
  border: 1px solid rgba(176,137,79,.18);
  border-radius: 999px; padding: .3rem .6rem .3rem .5rem;
}
.wcm__badge svg { width: 14px; height: 14px; flex: 0 0 14px; color: var(--coral); }
@media (max-width: 560px) {
  .wcm__badge { font-size: .67rem; }
  .wcm__badge svg { width: 12px; height: 12px; flex-basis: 12px; }
}

.wcm__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.92); color: var(--teal-deep);
  font-size: 1.5rem; line-height: 1; display: grid; place-items: center;
  box-shadow: var(--shadow-sm); transition: background .2s ease, transform .2s ease;
}
.wcm__nav:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.wcm__nav:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
.wcm__nav--prev { left: -10px; }
.wcm__nav--next { right: -10px; }

.wcm__dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.5rem; }
.wcm__dot {
  width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0; cursor: pointer;
  background: rgba(176,137,79,.26); transition: background .2s ease, transform .2s ease;
}
.wcm__dot:hover { background: rgba(176,137,79,.5); }
.wcm__dot.is-active { background: var(--coral); transform: scale(1.35); }
.wcm__dot:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

@media (max-width: 1080px) {
  .wcm__slide { aspect-ratio: 4 / 5; }
  .wcm__img { object-position: 72% center; }
  .wcm__card {
    width: auto; left: 1rem; right: 1rem; top: auto; bottom: 1rem; transform: none;
  }
  .wcm__nav--prev { left: 8px; }
  .wcm__nav--next { right: 8px; }
}

/* Below 820px the overlay card would swallow the photo, so stack instead:
   image on top at a fixed ratio, card in normal flow underneath. */
@media (max-width: 820px) {
  .wcm__viewport { box-shadow: none; border-radius: 0; overflow: hidden; }
  .wcm__slide {
    aspect-ratio: auto; display: flex; flex-direction: column;
    background: transparent; align-self: stretch;
  }
  .wcm__img {
    position: relative; inset: auto; width: 100%; height: auto;
    aspect-ratio: 4 / 3; border-radius: var(--radius);
    object-position: 68% center;
    box-shadow: var(--shadow-md);
  }
  .wcm__card {
    position: relative; inset: auto; transform: none; width: auto;
    margin: -2.25rem 0.9rem 0; background: #fff;
    -webkit-backdrop-filter: none; backdrop-filter: none;
    border: 1px solid var(--line);
    box-shadow: 0 14px 34px rgba(26,23,20,.14);
  }
  .wcm__track { align-items: stretch; }
  .wcm__nav { top: calc((100vw - 2rem) * 0.375); }
  .wcm__nav--prev { left: 4px; }
  .wcm__nav--next { right: 4px; }
}
@media (max-width: 560px) {
  .wcm__body { font-size: .9rem; line-height: 1.62; }
  .wcm__nav { width: 38px; height: 38px; font-size: 1.25rem; }
}
@media (prefers-reduced-motion: reduce) {
  .wcm__track { transition: none; }
}

/* ==========================================================================
   LOCATIONS INDEX + CAREERS
   ========================================================================== */
.locidx-hero {
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff; padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 8vw, 6.5rem);
}
.locidx-hero__inner { max-width: 900px; }
.locidx-hero .crumbs {
  display: flex; flex-wrap: wrap; gap: .4rem; font-size: .82rem;
  letter-spacing: .04em; margin-bottom: 1rem; color: rgba(255,255,255,.8);
}
.locidx-hero .crumbs a { color: #fff; text-decoration: none; opacity: .82; }
.locidx-hero .crumbs a:hover { opacity: 1; text-decoration: underline; }
.locidx-hero .crumbs [aria-current] { color: var(--sand); font-weight: 600; }
.locidx-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem); line-height: 1.06;
  margin: .5rem 0 1.1rem; color: #fff; text-wrap: balance;
}
.locidx-hero__lede {
  font-size: 1.08rem; line-height: 1.75; color: rgba(255,255,255,.9); max-width: 68ch;
}
.locidx-hero__stats {
  display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3.5rem);
  margin: clamp(2rem, 4vw, 2.75rem) 0;
}
.locidx-hero__stats div { display: flex; flex-direction: column; }
.locidx-hero__stats strong {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1; color: var(--sand);
}
.locidx-hero__stats span {
  font-size: .78rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.78); margin-top: .4rem;
}
.locidx-hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; }

.locidx__search { max-width: 620px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.locidx__searchlabel {
  display: block; font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .7rem;
}
.locidx__input {
  width: 100%; padding: .95rem 1.15rem; font-family: var(--font-body); font-size: 1rem;
  color: var(--ink); background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
}
.locidx__input:focus-visible { outline: 2px solid var(--teal); outline-offset: 1px; }
.locidx__empty { margin-top: 1rem; font-size: .95rem; color: var(--muted); }
.locidx__empty a { color: var(--teal); font-weight: 600; }

.locidx__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1rem;
}
.locidx__card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 1.15rem 1.25rem;
  display: flex; flex-direction: column; gap: .3rem; text-decoration: none;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.locidx__card--live {
  border-left: 3px solid var(--teal);
  padding-left: calc(1.25rem - 2px);
}
.locidx__card--live:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-md);
  border-color: rgba(176,137,79,.32); border-left-color: var(--coral);
}
.locidx__city { font-family: var(--font-display); font-size: 1.28rem; color: var(--teal-deep); }
.locidx__meta { font-size: .82rem; color: var(--muted); }
.locidx__card--live .locidx__meta { color: var(--teal); font-weight: 600; }
.locidx__arrow {
  position: absolute; right: 1.1rem; top: 1.15rem; color: var(--coral);
  opacity: 0; transform: translateX(-4px); transition: opacity .24s ease, transform .24s ease;
}
.locidx__card--live:hover .locidx__arrow { opacity: 1; transform: translateX(0); }

.locidx__groups { display: flex; flex-direction: column; gap: clamp(1.75rem, 3vw, 2.5rem); }
.locidx__group { border-top: 1px solid var(--line); padding-top: 1.4rem; }
.locidx__grouptitle {
  font-family: var(--font-body); font-size: .8rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; color: var(--teal-deep);
  margin: 0 0 1rem; display: flex; align-items: center; gap: .6rem;
}
.locidx__grouptitle span {
  font-size: .72rem; font-weight: 700; color: var(--muted);
  background: var(--sand-soft); border-radius: 999px; padding: .15rem .55rem;
}
.locidx__chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.locidx__chip {
  font-size: .86rem; font-weight: 500; color: var(--ink);
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: .4rem .85rem;
}
.locidx__chip.is-hit { border-color: var(--coral); background: #fff6f3; font-weight: 700; }
.locidx__card.is-hit { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(176,137,79,.14); }

/* ---- San Diego coverage map ---- */
.sdmap__frame {
  max-width: 780px; margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1rem, 2.5vw, 1.75rem);
  box-shadow: var(--shadow-md);
}
.sdmap__svg { width: 100%; height: auto; display: block; }
.sdmap__county { fill: #FCF7EC; stroke: #DFD4BC; stroke-width: 2.5; }
.sdmap__city { stroke: #fff; stroke-width: 1.4; transition: fill .22s ease; }
.sdmap__city--live { fill: var(--teal); }
.sdmap__city--served { fill: #E8D6B0; }
.sdmap__city--other { fill: #EFE8DA; }
.sdmap__link { cursor: pointer; }
.sdmap__link:hover .sdmap__city--live,
.sdmap__link:focus-visible .sdmap__city--live { fill: var(--coral); }
.sdmap__link:focus-visible { outline: 2px solid var(--teal-deep); outline-offset: 2px; }
.sdmap__label {
  font-family: var(--font-body); font-size: 22px; font-weight: 700;
  text-anchor: middle; pointer-events: none;
}
.sdmap__label--live { fill: #fff; }
.sdmap__label--served { fill: #8A8474; }
.sdmap__label--lead {
  fill: var(--teal-deep); paint-order: stroke; stroke: #fff; stroke-width: 4px;
}
.sdmap__label--lg { font-size: 30px; }
.sdmap__leader { stroke: var(--teal); stroke-width: 1.4; }
.sdmap__pin circle { fill: var(--coral); stroke: #fff; stroke-width: 1.5; }
.sdmap__pin text {
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  fill: var(--muted); text-anchor: middle;
  paint-order: stroke; stroke: #fff; stroke-width: 4px;
}
.sdmap__legend {
  list-style: none; margin: 1.5rem auto 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 1.75rem;
  font-size: .87rem; color: var(--muted);
}
.sdmap__legend li { display: inline-flex; align-items: center; gap: .5rem; }
.sdmap__key {
  width: 14px; height: 14px; border-radius: 3px; flex: 0 0 14px;
  border: 1px solid rgba(0,0,0,.06);
}
.sdmap__key--live { background: var(--teal); }
.sdmap__key--served { background: #E8D6B0; }
.sdmap__key--pin { background: var(--coral); border-radius: 50%; width: 11px; height: 11px; flex-basis: 11px; }
.sdmap__note {
  max-width: 700px; margin: 1rem auto 0; text-align: center;
  font-size: .84rem; line-height: 1.65; color: var(--muted);
}
.sdmap__note a { color: var(--teal); }

@media (max-width: 640px) {
  .sdmap__frame { padding: .75rem; }
  .sdmap__label { font-size: 30px; }
  .sdmap__label--lg { font-size: 38px; }
  .sdmap__pin text { font-size: 20px; }
  .sdmap__pin circle { r: 7; }
  .sdmap__legend { flex-direction: column; align-items: flex-start; }
}

/* ---- Careers ---- */
.apply-hero { position: relative; overflow: hidden; background: var(--teal-dark); }
.apply-hero__media { position: absolute; inset: 0; }
.apply-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.apply-hero__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(26,23,20,.94) 0%, rgba(26,23,20,.72) 42%, rgba(26,23,20,.15) 72%);
}
.apply-hero__inner { position: relative; padding: clamp(3rem, 7vw, 6rem) 0; }
.apply-hero__card { max-width: 620px; color: #fff; }
.apply-hero__card .crumbs {
  display: flex; flex-wrap: wrap; gap: .4rem; font-size: .82rem;
  margin-bottom: 1rem; color: rgba(255,255,255,.8);
}
.apply-hero__card .crumbs a { color: #fff; text-decoration: none; opacity: .82; }
.apply-hero__card .crumbs [aria-current] { color: var(--sand); font-weight: 600; }
.apply-hero__card .eyebrow { color: var(--sand); }
.apply-hero__card h1 {
  font-size: clamp(2.1rem, 5vw, 3.5rem); line-height: 1.06;
  margin: .5rem 0 1.1rem; color: #fff; text-wrap: balance;
}
.apply-hero__card p { font-size: 1.06rem; line-height: 1.75; color: rgba(255,255,255,.9); }
.apply-hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin: 1.75rem 0 1.5rem; }
.apply-hero__pills { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; }
.apply-hero__pills li {
  font-size: .82rem; font-weight: 600; color: #fff;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px; padding: .4rem .85rem;
}

.apply__perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.apply__perk {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; box-shadow: var(--shadow-sm);
}
.apply__perk h3 {
  font-family: var(--font-display); font-size: 1.3rem;
  color: var(--teal-deep); margin: 0 0 .6rem;
}
.apply__perk p { color: var(--muted); font-size: .95rem; line-height: 1.68; margin: 0; }

.apply__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.apply__step { border-top: 2px solid var(--sand); padding-top: 1.1rem; }
.apply__num {
  font-family: var(--font-display); font-style: italic; font-size: 1.3rem;
  color: var(--coral); display: block; margin-bottom: .5rem;
}
.apply__step h3 { font-size: 1.05rem; color: var(--teal-deep); margin: 0 0 .5rem; }
.apply__step p { color: var(--muted); font-size: .93rem; line-height: 1.65; margin: 0; }

.apply-form__inner {
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: start;
}
.apply-form__copy h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin: .5rem 0 1rem; }
.apply-form__copy p { color: var(--muted); line-height: 1.75; margin: 0 0 1rem; }
.apply-form__note { font-size: .92rem; border-left: 2px solid var(--coral); padding-left: 1rem; }
.apply-form__card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem); box-shadow: var(--shadow-md);
}

@media (max-width: 1024px) {
  .apply__perks { grid-template-columns: repeat(2, 1fr); }
  .apply__steps { grid-template-columns: repeat(2, 1fr); }
  .apply-form__inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .apply__perks, .apply__steps { grid-template-columns: 1fr; }
  .locidx-hero__cta, .apply-hero__cta { flex-direction: column; align-items: stretch; }
  .locidx-hero__cta .btn, .apply-hero__cta .btn { width: 100%; text-align: center; }
  .apply-hero__media img { object-position: 62% center; }
}

/* ==========================================================================
   BOOKING PAGE
   ========================================================================== */
.bookpg-hero {
  position: relative; overflow: hidden; color: #fff;
  background: #100E0C;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
}
.bookpg-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(16,14,12,.92) 0%, rgba(16,14,12,.72) 42%, rgba(16,14,12,.35) 100%),
    url("assets/hero-apartment.webp") center / cover no-repeat;
  pointer-events: none;
}
.bookpg-hero__inner { position: relative; z-index: 1; }
.bookpg-hero__inner {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 480px);
  gap: clamp(2rem, 5vw, 4rem); align-items: start;
}
.bookpg-hero .crumbs {
  display: flex; flex-wrap: wrap; gap: .4rem; font-size: .82rem;
  margin-bottom: 1rem; color: rgba(255,255,255,.8);
}
.bookpg-hero .crumbs a { color: #fff; text-decoration: none; opacity: .82; }
.bookpg-hero .crumbs a:hover { opacity: 1; text-decoration: underline; }
.bookpg-hero .crumbs [aria-current] { color: var(--sand); font-weight: 600; }
.bookpg-hero__copy h1 {
  font-size: clamp(2rem, 4.4vw, 3.3rem); line-height: 1.07;
  margin: .5rem 0 1.1rem; color: #fff; text-wrap: balance;
}
.bookpg-hero__lede {
  font-size: 1.06rem; line-height: 1.75; color: rgba(255,255,255,.9);
  max-width: 52ch; margin: 0 0 1.5rem;
}
.bookpg-hero__phone {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: 1.05rem; font-weight: 700; color: #fff; text-decoration: none;
  border-bottom: 2px solid var(--sand); padding-bottom: .2rem;
}
.bookpg-hero__phone:hover { color: var(--sand); }
.bookpg-hero__trust {
  list-style: none; margin: 2.25rem 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem;
}
.bookpg-hero__trust li {
  border-left: 2px solid rgba(232,225,212,.5); padding-left: .85rem;
}
.bookpg-hero__trust strong {
  display: block; font-size: .93rem; color: var(--sand); margin-bottom: .2rem;
}
.bookpg-hero__trust span { font-size: .85rem; line-height: 1.55; color: rgba(255,255,255,.75); }
.bookpg-hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ---- social proof, fills the column beside the tall form ---- */
.bookpg-hero__proof {
  margin-top: clamp(1.75rem, 3.5vw, 2.75rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(255,255,255,.2);
  max-width: 52ch;
}
.bookpg-hero__rating { display: flex; flex-wrap: wrap; align-items: baseline; gap: .55rem; }
.bookpg-hero__stars { color: var(--sand); letter-spacing: .1em; font-size: 1.05rem; }
.bookpg-hero__rating strong { font-size: 1rem; color: #fff; }
.bookpg-hero__rating span:last-child { font-size: .87rem; color: rgba(255,255,255,.7); }
.bookpg-hero__quote { margin: 1.1rem 0 0; padding: 0; }
.bookpg-hero__quote p {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.1rem, 1.7vw, 1.32rem); line-height: 1.5;
  color: var(--sand); margin: 0 0 .65rem;
}
.bookpg-hero__quote cite {
  font-family: var(--font-body); font-style: normal;
  font-size: .82rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.68);
}

/* ---- form card ---- */
.bookpg-hero__card {
  background: var(--ivory); color: var(--ink);
  border-radius: 22px;
  border: 1px solid rgba(176,137,79,.28);
  box-shadow: 0 28px 70px rgba(16,14,12,.38);
  padding: clamp(1.75rem, 3.2vw, 2.5rem);
}
.bookpg-form__title {
  font-size: clamp(1.7rem, 2.6vw, 2.15rem); color: var(--ink); margin: 0 0 .35rem;
}
.leadform--book textarea { min-height: 64px; }
.bookpg-form__sub { font-size: .89rem; color: var(--muted); line-height: 1.6; margin: 0 0 1.35rem; }
.leadform__set { border: 0; margin: 0 0 1.15rem; padding: 0; display: grid; gap: .6rem; }
.leadform__set legend {
  font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
  color: var(--teal); padding: 0; margin-bottom: .55rem;
}
.leadform__row { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.leadform--book textarea {
  width: 100%; font-family: var(--font-body); font-size: .95rem; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .8rem .95rem; resize: vertical; min-height: 84px;
}
.leadform--book textarea:focus-visible { outline: 2px solid var(--teal); outline-offset: 1px; }
.leadform__success .btn { margin-top: 1rem; }

/* ---- steps ---- */
.bookpg__steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem;
}
.bookpg__step { display: grid; gap: .85rem; }
.bookpg__stepnum {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--teal); color: #fff; font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600;
}
.bookpg__step h3 { font-size: 1.06rem; color: var(--teal-deep); margin: 0 0 .45rem; }
.bookpg__step p { font-size: .93rem; line-height: 1.68; color: var(--muted); margin: 0; }

@media (max-width: 1024px) {
  .bookpg-hero__inner { grid-template-columns: 1fr; }
  .bookpg-hero__card { max-width: 560px; }
  .bookpg__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .bookpg-hero__trust { grid-template-columns: 1fr; gap: .9rem; }
  .bookpg__steps { grid-template-columns: 1fr; }
  .leadform__row { grid-template-columns: 1fr; }
  .bookpg-hero__cta { flex-direction: column; align-items: stretch; }
  .bookpg-hero__cta .btn { width: 100%; text-align: center; }
}

/* ==========================================================================
   FOOTER (rebuilt: one column per intent, brand trust block, quiet legal row)
   ========================================================================== */
.footer {
  background: var(--teal-deep);
  color: rgba(255,255,255,.82);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.75rem;
  font-size: .93rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.75rem, 3.5vw, 3.5rem);
  align-items: start;
}

/* ---- brand block ---- */
.footer__logo { display: block; text-decoration: none; }
/* The sub-line is inline in the header lockup; in the footer it stacks under the
   wordmark so the brand block reads as a proper logo rather than one long line. */
.footer__brand .brand__name--light { color: #fff; display: block; }
.footer__brand .brand__sub--light { color: var(--sand); display: block; margin-top: .15rem; }
.footer__tagline {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.12rem; color: var(--sand);
  margin: .85rem 0 .6rem; line-height: 1.3;
}
.footer__blurb {
  margin: 0 0 1.35rem; line-height: 1.7;
  color: rgba(255,255,255,.72); font-size: .89rem; max-width: 40ch;
}
.footer__badges { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.footer__badges li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.9);
}
.footer__badges svg { width: 16px; height: 16px; flex: 0 0 16px; color: var(--sand); }

/* ---- link columns ---- */
.footer__col h3 {
  font-family: var(--font-body);
  font-size: .74rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--sand);
  margin: 0 0 1.1rem; padding-bottom: .5rem;
  border-bottom: 2px solid rgba(232,225,212,.28);
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer__col a { color: rgba(255,255,255,.8); text-decoration: none; transition: color .18s ease; }
.footer__col a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer__col a:focus-visible { outline: 2px solid var(--sand); outline-offset: 3px; border-radius: 2px; }
.footer__col--contact li { line-height: 1.6; color: rgba(255,255,255,.72); }
.footer__phone { font-weight: 700; color: #fff !important; }
/* Make it read as a link, since it opens the Google Business Profile */
.footer__address {
  display: inline-block;
  text-decoration: underline; text-decoration-color: rgba(255,255,255,.28);
  text-underline-offset: 3px;
}
.footer__address:hover { text-decoration-color: #fff; }
.footer__book {
  margin-top: 1.35rem; display: inline-flex; justify-content: center;
  font-size: .85rem; letter-spacing: .04em;
}

/* ---- mid band ---- */
.footer__mid {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.25rem;
  margin-top: clamp(2.25rem, 4vw, 3rem); padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.16);
}
.footer__findcta {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; text-decoration: none;
  border: 1px solid rgba(255,255,255,.4); border-radius: 999px;
  padding: .75rem 1.35rem; transition: background .2s ease, border-color .2s ease;
}
.footer__findcta:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.footer__findcta svg { width: 17px; height: 17px; color: var(--sand); }
.footer__values { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer__values li {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .85rem; color: rgba(255,255,255,.78);
}
.footer__values svg { width: 16px; height: 16px; color: var(--coral); }

/* ---- legal row ---- */
.footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .75rem 1.5rem;
  margin-top: 1.5rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .8rem; color: rgba(255,255,255,.58);
}
.footer__bottom p { margin: 0; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer__legal a { color: rgba(255,255,255,.58); text-decoration: none; }
.footer__legal a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 1080px) {
  .footer__inner { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 780px) {
  .footer__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .footer__inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer__mid { flex-direction: column; align-items: flex-start; }
  .footer__findcta { width: 100%; justify-content: center; }
  .footer__values { gap: .65rem; flex-direction: column; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   MOBILE NAV DRAWER: bottom breathing room
   The last item used to sit flush against the viewport edge, partly hidden
   under the sticky "Get a Free Quote" bar, so it was easy to miss and awkward
   to tap. Cap the drawer to the visible viewport, let it scroll, and reserve
   room at the bottom for the sticky CTA plus the iOS home indicator.
   ========================================================================== */
@media (max-width: 980px) {
  .mobile-nav {
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-bottom: calc(6rem + env(safe-area-inset-bottom, 0px));
  }
  .mobile-nav > :last-child { margin-bottom: 0; }
  /* Long location list inside the drawer should not create a nested scroller */
  .mobile-nav__sub { max-height: none; overflow: visible; }
}

.mobile-nav__sublink--all {
  font-weight: 700; color: var(--teal-deep);
  border-bottom: 1px solid var(--line); margin-bottom: .2rem;
}

/* All Service Areas entry at the top of the Locations dropdown */
.nav__dropdown--all {
  font-weight: 700 !important;
  color: var(--teal-deep) !important;
  border-bottom: 1px solid var(--line);
  margin-bottom: .25rem;
}

.section-head h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: .75rem; }
.section-head .btn { margin: .85rem .45rem 0 0; }
.header .phone-link { white-space: nowrap; }
a.sticky-cta { text-align: center; }

/* ===== Why ACSSD carousel ===== */
.wcm__carousel { position: relative; }
.wcm__viewport { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.wcm__track { display: flex; transition: transform .6s cubic-bezier(.22,.61,.36,1); }
.wcm__slide {
  position: relative; flex: 0 0 100%; min-width: 100%;
  aspect-ratio: 16 / 8; background: var(--stone);
}
.wcm__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.wcm__card {
  position: absolute; left: clamp(1.25rem, 4%, 3.5rem); top: 50%;
  transform: translateY(-50%);
  width: min(420px, 46%);
  background: rgba(255,255,255,.95);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.4vw, 2.25rem);
  box-shadow: 0 24px 60px rgba(26,23,20,.22);
  text-align: left;
}
.wcm__eyebrow {
  display: block; font-size: .7rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .7rem;
}
.wcm__title {
  font-family: var(--font-display); font-size: clamp(1.5rem, 2.3vw, 2.1rem);
  line-height: 1.14; color: var(--ink); margin: 0 0 .85rem; text-wrap: balance;
}
.wcm__body {
  color: var(--ink); font-size: .96rem; line-height: 1.68; margin: 0 0 1.35rem;
}
.wcm__cta { display: inline-flex; }
.wcm__badges {
  list-style: none; margin: 0 0 1.25rem; padding: 0;
  display: flex; flex-wrap: wrap; gap: .4rem;
}
.wcm__badge {
  display: inline-flex; align-items: center;
  font-size: .72rem; font-weight: 700;
  color: var(--ink); background: var(--ivory);
  border: 1px solid rgba(176,137,79,.28);
  border-radius: 999px; padding: .3rem .7rem;
}
.wcm__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.92); color: var(--ink);
  font-size: 1.5rem; line-height: 1; display: grid; place-items: center;
  box-shadow: var(--shadow-sm); transition: background .2s ease, transform .2s ease;
}
.wcm__nav:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.wcm__nav:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.wcm__nav--prev { left: -10px; }
.wcm__nav--next { right: -10px; }
.wcm__dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.5rem; }
.wcm__dot {
  width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0; cursor: pointer;
  background: rgba(26,23,20,.18); transition: background .2s ease, transform .2s ease;
}
.wcm__dot.is-active { background: var(--gold); transform: scale(1.35); }
.wcm__dot:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
@media (max-width: 1080px) {
  .wcm__slide { aspect-ratio: 4 / 5; }
  .wcm__img { object-position: 72% center; }
  .wcm__card { width: auto; left: 1rem; right: 1rem; top: auto; bottom: 1rem; transform: none; }
  .wcm__nav--prev { left: 8px; }
  .wcm__nav--next { right: 8px; }
}
@media (max-width: 820px) {
  .wcm__viewport { box-shadow: none; border-radius: 0; overflow: hidden; }
  .wcm__slide { aspect-ratio: auto; display: flex; flex-direction: column; background: transparent; }
  .wcm__img {
    position: relative; inset: auto; width: 100%; height: auto;
    aspect-ratio: 4 / 3; border-radius: var(--radius);
    object-position: 68% center; box-shadow: var(--shadow-md);
  }
  .wcm__card {
    position: relative; inset: auto; transform: none; width: auto;
    margin: -2.25rem 0.9rem 0; background: #fff;
    -webkit-backdrop-filter: none; backdrop-filter: none;
    border: 1px solid var(--line);
    box-shadow: 0 14px 34px rgba(26,23,20,.12);
  }
  .wcm__nav { top: calc((100vw - 2rem) * 0.375); }
  .wcm__nav--prev { left: 4px; }
  .wcm__nav--next { right: 4px; }
}
@media (prefers-reduced-motion: reduce) {
  .wcm__track { transition: none; }
}
