/* ============================================
   Fresh Nest Cleaning — styles
   Mobile-first. No framework. System: cream bg,
   deep teal primary, warm coral accent.
============================================ */

:root {
  --cream: #FAF7F0;
  --cream-2: #F3EEE2;
  --ink: #122725;
  --ink-2: #3A4A46;
  --mute: #6B7B76;
  --line: #E6DFCF;
  --primary: #0E6E5E;
  --primary-ink: #084A3F;
  --primary-soft: #D8EDE6;
  --coral: #F26A4B;
  --coral-soft: #FCE1D9;
  --sun: #F5A25D;
  --white: #ffffff;
  --dark: #0B2A25;
  --shadow-sm: 0 1px 2px rgba(8, 40, 35, .06), 0 2px 6px rgba(8, 40, 35, .05);
  --shadow-md: 0 8px 24px rgba(8, 40, 35, .10);
  --shadow-lg: 0 20px 48px rgba(8, 40, 35, .18);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --container: 1160px;
  --pad: 20px;
  --bar-h: 68px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 6px;
}
ul { list-style: none; padding: 0; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--cream);
  padding: 10px 14px; border-radius: 0 0 8px 0; z-index: 1000;
}
.skip-link:focus { left: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ---------- Type scale (mobile → desktop) ---------- */
h1, h2, h3, h4 { font-family: inherit; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; color: var(--ink); }
h1 { font-size: clamp(2rem, 7vw, 3.6rem); line-height: 1.05; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.6rem, 4.4vw, 2.4rem); letter-spacing: -0.025em; }
h3 { font-size: 1.15rem; }
p  { color: var(--ink-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 7px 12px; border-radius: 999px;
}
.eyebrow--light { color: var(--cream); background: rgba(255,255,255,.12); }

.section { padding: clamp(56px, 8vw, 96px) 0; }
.section--cream { background: var(--cream-2); }
.section--dark {
  background: linear-gradient(155deg, #0B2A25, #0E6E5E 130%);
  color: var(--cream);
}
.section--dark h2, .section--dark h3 { color: var(--cream); }
.section--dark p { color: rgba(250, 247, 240, .85); }

.section__head { max-width: 640px; margin-bottom: 36px; }
.section__head p { margin-top: 10px; font-size: 1.05rem; }
.section__head--center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .12s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--primary); color: var(--cream); box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--primary-ink); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--sm { padding: 9px 14px; font-size: 14px; }
.btn--lg { padding: 15px 26px; font-size: 16px; }
.btn--block { display: flex; width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 240, .82);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--bar-h);
  gap: 16px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--primary); font-weight: 800; letter-spacing: -0.01em; }
.brand__mark { color: var(--primary); flex: none; }
.brand__name { font-size: 1.12rem; color: var(--ink); }
.brand__kind { font-weight: 500; color: var(--primary); }
.nav__links { display: none; gap: 26px; font-size: 15px; color: var(--ink-2); font-weight: 500; }
.nav__links a:hover { color: var(--primary); }
.nav__cta { display: none; align-items: center; gap: 14px; }
.nav__phone { color: var(--ink); font-weight: 600; font-size: 14px; }
.nav__phone:hover { color: var(--primary); }
.nav__burger {
  display: inline-flex; flex-direction: column; gap: 4px;
  width: 38px; height: 38px; align-items: center; justify-content: center;
  border-radius: 10px;
}
.nav__burger span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .15s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav__mobile {
  border-top: 1px solid var(--line);
  background: var(--cream);
  padding: 14px var(--pad) 20px;
  display: flex; flex-direction: column; gap: 14px;
  font-size: 17px; font-weight: 500;
}
.nav__mobile[hidden] { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(40px, 7vw, 80px) 0 clamp(60px, 9vw, 110px);
  overflow: hidden;
  background:
    radial-gradient(1200px 500px at -10% -10%, rgba(14, 110, 94, .12), transparent 60%),
    radial-gradient(900px 400px at 110% 10%, rgba(245, 162, 93, .16), transparent 60%),
    var(--cream);
}
.hero__inner { display: grid; gap: 44px; grid-template-columns: 1fr; align-items: center; }
.hero__copy { max-width: 640px; }
.hero h1 { margin-top: 16px; }
.hero__lede { margin-top: 20px; font-size: clamp(1rem, 2.2vw, 1.18rem); color: var(--ink-2); max-width: 560px; }
.hero__lede strong { color: var(--ink); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__proof {
  display: flex; flex-wrap: wrap; gap: 22px 28px;
  margin-top: 32px; font-size: 14px; color: var(--ink-2); font-weight: 500;
}
.hero__proof li { display: inline-flex; align-items: center; gap: 8px; }
.hero__proof .ic { width: 18px; height: 18px; color: var(--primary); flex: none; }

.hero__visual { position: relative; min-height: 340px; }
.hero__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.hero__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1040 / 720;
  object-fit: cover;
}
.hero__badge {
  position: absolute; left: -14px; bottom: 18px;
  background: var(--white); border-radius: 16px; padding: 12px 16px;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  font-size: 13px;
}
.hero__badge .ic { width: 26px; height: 26px; }
.hero__badge strong { display: block; font-size: 15px; color: var(--ink); }
.hero__badge span { color: var(--mute); }

.hero__stamp {
  position: absolute; right: -10px; top: 12px;
  background: var(--coral); color: #fff;
  border-radius: 999px; padding: 8px 16px;
  font-weight: 700; font-size: 13px;
  box-shadow: var(--shadow-md);
  transform: rotate(6deg);
}

/* ---------- Trust bar ---------- */
.trustbar {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.trustbar__inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 28px;
  color: var(--mute); font-size: 13px; letter-spacing: .04em;
}
.trustbar ul { display: flex; flex-wrap: wrap; gap: 10px 24px; font-weight: 600; color: var(--ink-2); }

/* ---------- Services ---------- */
.services__grid {
  display: grid; gap: 18px; grid-template-columns: 1fr;
}
.svc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .18s ease, border-color .15s;
  display: flex; flex-direction: column;
}
.svc:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: #d8cfb8; }
.svc__thumb {
  aspect-ratio: 600 / 420;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-soft), var(--cream-2));
}
.svc__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.svc:hover .svc__thumb img { transform: scale(1.04); }
.svc__body {
  padding: 22px 24px 24px;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.svc h3 { margin-top: 2px; font-size: 1.2rem; }
.svc__lede { color: var(--ink-2); font-size: .98rem; }
.svc ul { display: grid; gap: 6px; font-size: 14px; color: var(--ink-2); margin-top: 2px; }
.svc ul li { position: relative; padding-left: 20px; }
.svc ul li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 10px; height: 10px; border: 2px solid var(--primary); border-top: 0; border-right: 0;
  transform: rotate(-45deg); border-radius: 1px;
}
.svc__price { margin-top: auto; padding-top: 10px; color: var(--mute); font-size: 13px; }
.svc__price strong { color: var(--ink); font-size: 1.1rem; font-weight: 700; }

.svc--cta {
  background: linear-gradient(160deg, #0E6E5E, #14866f);
  color: var(--cream);
  padding: 30px 26px;
  justify-content: center;
  text-align: left;
  gap: 14px;
}
.svc--cta h3 { color: var(--cream); font-size: 1.3rem; }
.svc--cta p { color: rgba(250, 247, 240, .88); }
.svc--cta .btn { margin-top: 10px; background: var(--cream); color: var(--primary-ink); }
.svc--cta .btn:hover { background: #fff; }

/* ---------- Gallery ---------- */
.gallery__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
.gcell {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
}
.gcell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gcell:hover img { transform: scale(1.05); }
.gcell figcaption {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(18, 39, 37, .78);
  color: var(--cream);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ---------- Before / After ---------- */
.ba__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
.ba__pair {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}
.ba__imgs {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius);
  overflow: hidden;
}
.ba__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 10px;
}
.ba__img img { width: 100%; height: 100%; object-fit: cover; }
.ba__tag {
  position: absolute; left: 10px; top: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cream);
}
.ba__tag--before { background: rgba(18, 39, 37, .82); }
.ba__tag--after { background: var(--primary); }
.ba__pair figcaption {
  margin-top: 14px;
  padding: 0 4px;
  color: var(--ink-2);
  font-size: 14px;
}
.ba__pair figcaption strong { color: var(--ink); }

/* ---------- Why ---------- */
.why__inner { display: grid; gap: 48px; grid-template-columns: 1fr; }
.why__copy { max-width: 520px; }
.why__copy p { margin-top: 12px; font-size: 1.05rem; }
.why__grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.why__grid li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: grid; gap: 6px;
  box-shadow: var(--shadow-sm);
}
.why__grid .ic { width: 26px; height: 26px; color: var(--primary); }
.why__grid strong { font-size: 1.02rem; color: var(--ink); }
.why__grid span { color: var(--ink-2); font-size: 14px; line-height: 1.55; }

/* ---------- Team ---------- */
.team__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
.member {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.member:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.member img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--cream-2);
}
.member figcaption {
  padding: 16px 18px 20px;
  display: grid; gap: 4px;
}
.member figcaption strong { color: var(--ink); font-size: 1.05rem; }
.member figcaption span { color: var(--primary); font-size: 13px; font-weight: 600; letter-spacing: .02em; }
.member figcaption small { color: var(--mute); font-size: 13px; }

/* ---------- How ---------- */
.how__steps {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
  counter-reset: step;
}
.how__steps li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.how__num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
  margin-bottom: 14px;
}
.how__steps h3 { margin-bottom: 6px; }
.how__steps p { font-size: .98rem; }

/* ---------- Pricing — Matrix ---------- */
.matrix {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.matrix__head { margin-bottom: 16px; }
.matrix__head h3 { font-size: 1.3rem; }
.matrix__head span { display: block; margin-top: 6px; color: var(--mute); font-size: 14px; }
.matrix__scroll { overflow-x: auto; margin: 0 -6px; }
.matrix__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 480px;
  font-size: 15px;
}
.matrix__table th, .matrix__table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.matrix__table thead th {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
  background: var(--cream-2);
  border-bottom: 2px solid var(--line);
}
.matrix__table thead th:first-child { text-align: left; border-top-left-radius: 10px; }
.matrix__table thead th:last-child { border-top-right-radius: 10px; }
.matrix__table tbody th {
  text-align: left;
  font-weight: 600;
  color: var(--ink);
  background: var(--cream);
}
.matrix__table tbody td {
  color: var(--ink);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.matrix__table tbody tr:hover td { background: rgba(14, 110, 94, .05); }
.matrix__row--pop td, .matrix__row--pop th {
  background: rgba(245, 162, 93, .08) !important;
}
.matrix__row--pop th::after {
  content: " · most booked";
  font-weight: 500;
  color: var(--coral);
  font-size: 12px;
}

/* ---------- Pricing — Service tiers ---------- */
.tiers { margin-top: 36px; }
.tiers__head { font-size: 1.3rem; }
.tiers__sub { margin-top: 6px; margin-bottom: 18px; color: var(--mute); font-size: 14px; }
.tiers__grid {
  display: grid; gap: 16px; grid-template-columns: 1fr;
}
.tier {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.tier h4 { font-size: 1.1rem; color: var(--ink); }
.tier__blurb { color: var(--ink-2); font-size: 14.5px; }
.tier__price { margin-top: 6px; color: var(--mute); font-size: 14px; }
.tier__price strong { color: var(--ink); font-size: 1.8rem; font-weight: 800; letter-spacing: -0.02em; margin: 0 4px; }
.tier__tag { color: var(--primary); font-size: 12.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.tier--featured {
  background: linear-gradient(180deg, #fff, #f5fbf8);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.tier--featured .tier__price strong { color: var(--primary-ink); }
.tier__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--coral); color: #fff;
  padding: 5px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .02em;
}

/* ---------- Pricing — Add-ons ---------- */
.addons { margin-top: 36px; }
.addons__head { font-size: 1.3rem; }
.addons__sub { margin-top: 6px; margin-bottom: 18px; color: var(--mute); font-size: 14px; }
.addons__grid {
  display: grid; gap: 10px;
  grid-template-columns: 1fr;
}
.addons__grid li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  font-size: 14.5px;
}
.addons__name { color: var(--ink); font-weight: 500; }
.addons__price {
  color: var(--primary-ink);
  background: var(--primary-soft);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

/* ---------- Pricing — Recurring discount ---------- */
.recurring {
  margin-top: 36px;
  background: linear-gradient(145deg, #0E6E5E, #14866f);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
.recurring .eyebrow { color: var(--cream); background: rgba(255,255,255,.14); }
.recurring h3 { color: var(--cream); font-size: 1.35rem; margin-top: 12px; }
.recurring p { color: rgba(250, 247, 240, .86); margin-top: 6px; font-size: 14.5px; }
.recurring__tiers {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}
.recurring__tiers li {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 18px 12px;
  text-align: center;
  display: grid; gap: 2px;
}
.recurring__tiers strong { color: var(--cream); font-size: 1.7rem; font-weight: 800; letter-spacing: -0.02em; }
.recurring__tiers span { color: rgba(250, 247, 240, .78); font-size: 12.5px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }

.pricing__foot { text-align: center; color: var(--mute); margin-top: 30px; }
.pricing__foot a { color: var(--primary); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Reviews ---------- */
.reviews__grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.review {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: grid; gap: 14px;
  box-shadow: var(--shadow-sm);
}
.review__stars { color: var(--sun); letter-spacing: 2px; font-size: 18px; }
.review blockquote { font-size: 1.02rem; color: var(--ink); line-height: 1.6; }
.review figcaption { font-size: 14px; color: var(--ink-2); display: flex; align-items: center; gap: 12px; }
.review figcaption > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.review figcaption strong { color: var(--ink); }
.review__avatar {
  width: 44px; height: 44px; flex: none;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream);
  border: 2px solid var(--cream-2);
  box-shadow: var(--shadow-sm);
}

/* ---------- Area ---------- */
.area__inner { display: grid; gap: 32px; grid-template-columns: 1fr; }
.area__copy p { margin-top: 10px; }
.area__tags { display: flex; flex-wrap: wrap; gap: 10px; }
.area__tags li {
  background: var(--white); border: 1px solid var(--line);
  padding: 10px 16px; border-radius: 999px;
  font-size: 14px; font-weight: 500; color: var(--ink-2);
}

/* ---------- FAQ ---------- */
.faq__inner { display: grid; gap: 28px; grid-template-columns: 1fr; }
.faq__list { display: grid; gap: 12px; }
.faq__list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 8px;
  transition: box-shadow .18s;
}
.faq__list details[open] { box-shadow: var(--shadow-sm); border-color: #d8cfb8; }
.faq__list summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 14px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-weight: 600; font-size: 1rem; color: var(--ink);
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__ico {
  width: 22px; height: 22px; flex: none;
  position: relative;
}
.faq__ico::before, .faq__ico::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  background: var(--primary);
  transition: transform .2s;
}
.faq__ico::before { width: 12px; height: 2px; }
.faq__ico::after { width: 2px; height: 12px; }
details[open] .faq__ico::after { transform: rotate(90deg); }
.faq__list p { padding: 0 14px 18px; color: var(--ink-2); font-size: .97rem; }

/* ---------- Book form ---------- */
.book__inner { display: grid; gap: 36px; grid-template-columns: 1fr; }
.book__copy h2 { margin-top: 14px; }
.book__copy p { margin-top: 14px; font-size: 1.05rem; }
.book__proof { margin-top: 22px; display: grid; gap: 10px; font-size: 15px; color: rgba(250,247,240,.92); }
.book__proof span { color: var(--sun); font-weight: 700; margin-right: 8px; }

.book__form {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: grid; gap: 14px;
  box-shadow: var(--shadow-lg);
}
.field { display: grid; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 16px;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 110, 94, .18);
  outline: none;
}
.field textarea { resize: vertical; min-height: 88px; }
.field--row { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
.field--row > div { display: grid; gap: 6px; }
.hint { color: var(--mute); font-weight: 400; }
.book__micro { text-align: center; font-size: 13px; color: var(--mute); }
.book__success {
  background: var(--primary-soft); color: var(--primary-ink);
  padding: 14px 16px; border-radius: 12px;
  text-align: center; font-size: 14.5px;
}

/* ---------- Footer ---------- */
.footer {
  background: #0B2A25;
  color: rgba(250,247,240,.82);
  padding-top: 52px;
}
.footer__inner {
  display: grid; gap: 36px; grid-template-columns: 1fr;
  padding-bottom: 36px;
}
.footer__col h4 { color: var(--cream); font-size: 14px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.footer__col ul { display: grid; gap: 8px; font-size: 14.5px; }
.footer__col a:hover { color: var(--cream); }
.footer__col--brand .brand__name { color: var(--cream); }
.footer__col--brand .brand__kind { color: var(--sun); }
.footer__col--brand .brand { color: var(--sun); }
.footer__col--brand p { color: rgba(250,247,240,.72); font-size: 14px; margin-top: 12px; max-width: 320px; }
.footer__phone { color: var(--cream); font-weight: 600; }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  font-size: 13px;
  color: rgba(250,247,240,.6);
}
.footer__barIn { display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; }
.footer__demo a { color: var(--sun); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Sticky mobile CTA ---------- */
.stickyCta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; padding: 10px 14px;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 16px rgba(8, 40, 35, .12);
  font-weight: 600; font-size: 14px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
}
.stickyCta__call {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary-ink); font-weight: 700;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1.5px solid var(--primary);
}
.stickyCta__call svg { color: var(--primary); }
.stickyCta__text { flex: 1; text-align: center; color: var(--ink-2); font-size: 13px; }

/* =================================================
   Breakpoints
================================================= */
@media (min-width: 640px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .how__steps { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .gcell { aspect-ratio: auto; }
  .gcell--tall { grid-row: span 2; }
  .gcell--wide { grid-column: span 2; }
  .ba__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: repeat(4, 1fr); }
  .tiers__grid { grid-template-columns: repeat(3, 1fr); }
  .addons__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1.4fr 1fr 1.2fr 1fr; }
}

@media (min-width: 900px) {
  :root { --pad: 28px; }
  .nav__links { display: inline-flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
  .nav__mobile { display: none !important; }

  .hero__inner { grid-template-columns: 1.08fr 1fr; }
  .hero__visual { min-height: 460px; }
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .why__inner { grid-template-columns: 1fr 1.6fr; align-items: start; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .how__steps { grid-template-columns: repeat(4, 1fr); }
  .gallery__grid { grid-auto-rows: 240px; }
  .ba__grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .area__inner { grid-template-columns: 1fr 1.4fr; align-items: center; }
  .faq__inner { grid-template-columns: 1fr 1.6fr; }
  .addons__grid { grid-template-columns: repeat(4, 1fr); }
  .recurring { grid-template-columns: 1.2fr 1fr; align-items: center; }
  .recurring__tiers { grid-template-columns: repeat(3, 1fr); }
  .reviews__grid { grid-template-columns: repeat(4, 1fr); }
  .book__inner { grid-template-columns: 1.05fr 1fr; align-items: center; }
  .stickyCta { display: none; }
}

@media (min-width: 1100px) {
  h2 { font-size: 2.6rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto; }
}

/* ---------- Image-missing fallback (before Antigravity generation) ---------- */
.img-missing {
  background:
    linear-gradient(135deg, rgba(14,110,94,.10), rgba(242,106,75,.10) 60%, rgba(14,110,94,.06)),
    repeating-linear-gradient(45deg, rgba(14,110,94,.04) 0 12px, transparent 12px 24px);
  position: relative;
}
.img-missing::after {
  content: "photo";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font: 500 .72rem/1 var(--font-sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(14,110,94,.55);
  pointer-events: none;
}
