/* ==========================================================================
   Pawsobly The Best Grooming and Board — concept
   Naperville, IL

   Direction: "warm boutique salon". Ivory ground, deep navy-slate ink, brand
   gold accents — all three lifted from the client's own crest logo, which is a
   gold engraved wreath around a navy paw on near-white.

   Deliberately NOT the charcoal/safety-amber industrial look of the shared
   contractor template: this is a home salon in an affluent suburb, not a
   roofing company. Structure follows the template; the surface does not.

   Contrast rules obeyed (see the project's hard-won lessons):
     - gold is never a background for white text — gold CTAs take INK text
     - gold is never used for body copy, only large type, rules and icons
   ========================================================================== */

/* ---------------------------------------------------------------- Tokens */
:root {
  /* Ink — from the logo's navy paw (#333f4d), deepened for body contrast */
  --ink:        #212a36;
  --ink-2:      #46525f;
  --ink-3:      #6d7783;

  /* Ground */
  --cream:      #faf7f1;
  --cream-2:    #f3ecdf;
  --paper:      #ffffff;

  /* Brand gold — from the logo's wreath (#c8b26a / #776a1c range) */
  --gold:       #a8823a;
  --gold-mid:   #c9a961;
  --gold-soft:  #e4d3a6;
  --gold-wash:  #f7f0dd;

  /* Second accent — a muted dusty rose, added to give the "Difference" strip
     a touch of warmth and to answer "do you need more colors" with one
     considered addition rather than several. Kept off body copy and CTAs;
     gold stays the only action color. */
  --rose:       #a15b5f;
  --rose-soft:  #dcb9b7;
  --rose-wash:  #f5e9e6;

  --line:       #e6dcc8;
  --line-soft:  #f0e8d9;

  --ok:         #2f6b46;
  --err:        #a6321f;

  --font-display: "Poppins", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;

  --wrap: 1180px;
  --radius: 14px;
  --radius-sm: 9px;

  --shadow-sm: 0 1px 2px rgba(33, 42, 54, .06),
               0 2px 8px rgba(33, 42, 54, .05);
  --shadow-md: 0 2px 4px rgba(33, 42, 54, .05),
               0 12px 30px rgba(33, 42, 54, .09);
  --shadow-lg: 0 4px 8px rgba(33, 42, 54, .05),
               0 24px 60px rgba(33, 42, 54, .14);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ------------------------------------------------------------ Foundation */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.015em;
  margin: 0;
}

p { margin: 0; }

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: min(100% - 40px, var(--wrap));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 20px;
  z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip:focus { left: 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------- Utilities */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section { padding: 96px 0; }
.section-tint { background: var(--cream-2); }
.section-paper { background: var(--paper); }

.section-dark {
  background: var(--ink);
  color: #ece7dd;
}
.section-dark .eyebrow { color: var(--gold-soft); }
.section-dark h2 { color: var(--paper); }

.section-head { max-width: 660px; margin-bottom: 52px; }
.section-head-center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 43px);
}

.section-intro {
  margin-top: 18px;
  font-size: 18px;
  color: var(--ink-2);
}
.section-dark .section-intro { color: #c3bcb0; }

/* A short gold rule that draws itself in when the heading arrives. */
.rule {
  width: 62px;
  height: 3px;
  background: var(--gold-mid);
  border-radius: 2px;
  margin-bottom: 22px;
}
.section-head-center .rule { margin-inline: auto; }

/* --------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: .01em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease),
              border-color .18s var(--ease), box-shadow .18s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: #16202b; box-shadow: var(--shadow-md); }

/* Gold button — INK text. White on gold fails contrast; this is deliberate. */
.btn-accent {
  background: var(--gold-mid);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-accent:hover { background: #d8ba75; box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--gold-mid); background: var(--gold-wash); }

.btn-onink {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255, 255, 255, .34);
}
.btn-onink:hover { border-color: var(--gold-soft); background: rgba(255, 255, 255, .08); }

.btn-lg { padding: 17px 32px; font-size: 16px; }
.btn-block { width: 100%; }

/* ----------------------------------------------------------- Utility bar */
.utilitybar {
  background: var(--ink);
  color: #cfc9bf;
  font-size: 13.5px;
  letter-spacing: .01em;
}
.utilitybar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 42px;
  padding-block: 7px;
}
.utilitybar-facts {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.utilitybar-facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.utilitybar svg { width: 15px; height: 15px; flex: none; color: var(--gold-soft); }
.utilitybar a {
  color: var(--paper);
  text-decoration: none;
  font-weight: 650;
}
.utilitybar a:hover { color: var(--gold-soft); }
.utilitybar-phone { display: inline-flex; align-items: center; gap: 8px; }
.utilitybar-phone a { white-space: nowrap; }

/* On a narrow screen the two facts squeeze the phone number onto two lines.
   Both are stated again further down the page (hours in the FAQ and footer,
   location in the service-area section), so the bar keeps only the number. */
@media (max-width: 759px) {
  .utilitybar-facts { display: none; }
  .utilitybar .wrap { justify-content: center; }
}

/* ---------------------------------------------------------------- Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 241, .88);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(33, 42, 54, .07);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: auto;
}
.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--paper);
  flex: none;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.14; }
.brand-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.brand-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav { display: none; align-items: center; gap: 28px; }
.nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 550;
  color: var(--ink-2);
  padding: 6px 0;
  position: relative;
  transition: color .18s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold-mid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }

.header-cta { display: none; }

.nav-toggle {
  margin-left: auto;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  padding: 0 11px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .22s var(--ease), opacity .22s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 118px 0 0;
  background: var(--cream);
  z-index: 99;
  padding: 28px 20px 40px;
  overflow-y: auto;
  border-top: 1px solid var(--line);
}
.mobile-nav a {
  display: block;
  padding: 17px 4px;
  border-bottom: 1px solid var(--line-soft);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}
.mobile-nav .btn { margin-top: 26px; }

/* ------------------------------------------------------------------ Hero */
.hero {
  position: relative;
  padding: 68px 0 84px;
  background:
    radial-gradient(1100px 520px at 82% -8%, var(--gold-wash) 0%, transparent 62%),
    var(--cream);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 44px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 17px 8px 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  text-decoration: none;
}
.hero-badge:hover { border-color: var(--gold-mid); }
.stars {
  display: inline-flex;
  gap: 1px;
  color: var(--gold-mid);
}
.stars svg { width: 15px; height: 15px; }
.reviews-rating-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  color: var(--ink-2);
}
.hero-badge strong { color: var(--ink); font-weight: 700; }

.hero h1 {
  font-size: clamp(37px, 6vw, 62px);
  letter-spacing: -.028em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  margin-top: 22px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 30em;
}

.hero-perks {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
}
.hero-perks li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 15.5px;
  color: var(--ink-2);
}
.hero-perks svg {
  width: 19px; height: 19px;
  flex: none;
  margin-top: 2px;
  color: var(--gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}

.hero-phone {
  margin-top: 14px;
  font-size: 14.5px;
  color: var(--ink-3);
}
.hero-phone a { color: inherit; text-decoration: none; }
.hero-phone a:hover { text-decoration: underline; }

.hero-media { position: relative; }
.hero-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--paper);
  aspect-ratio: 1 / 1;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.hero-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: rgba(33, 42, 54, .82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #f2ede4;
  border-radius: var(--radius-sm);
  padding: 11px 15px;
  font-size: 13.5px;
  line-height: 1.45;
}

/* ---------------------------------------------------------- Proof strip */
.proofstrip {
  background: var(--ink);
  color: #ded8cd;
  padding: 40px 0;
}
.proofstrip-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
.proof-num {
  font-family: var(--font-display);
  font-size: clamp(27px, 3.4vw, 37px);
  font-weight: 700;
  color: var(--paper);
  line-height: 1.05;
  display: block;
}
.proof-label {
  font-size: 13.5px;
  color: #b0a99d;
  margin-top: 7px;
  line-height: 1.4;
}

/* ---------------------------------------------------------- Difference
   Two things Justina asked to be unmissable: appointments are always
   one-on-one, and boarding is 24/7 care in her home. Each card gets its own
   accent — gold for the existing brand color, rose for the second color. */
.difference {
  padding: 64px 0;
}
.difference-grid {
  display: grid;
  gap: 20px;
}
.diff-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
}
.diff-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.diff-icon svg { width: 27px; height: 27px; }
.diff-card.is-gold .diff-icon {
  background: var(--gold-wash);
  border: 1px solid var(--gold-soft);
  color: var(--gold);
}
.diff-card.is-rose .diff-icon {
  background: var(--rose-wash);
  border: 1px solid var(--rose-soft);
  color: var(--rose);
}
.diff-card h3 { font-size: 22px; margin-bottom: 11px; }
.diff-card p { color: var(--ink-2); font-size: 15.5px; }

/* -------------------------------------------------------------- Services */
.services {
  display: grid;
  gap: 22px;
}

.service {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease),
              border-color .22s var(--ease);
  display: flex;
  flex-direction: column;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-soft);
}

.service-icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  background: var(--gold-wash);
  border: 1px solid var(--gold-soft);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--gold);
}
.service-icon svg { width: 25px; height: 25px; }

.service h3 { font-size: 22px; margin-bottom: 11px; }
.service p { color: var(--ink-2); font-size: 15.5px; }

.service-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.service-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-mid);
}

.service-foot {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.service-price {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.service-foot a {
  font-size: 14px;
  font-weight: 650;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
}
.service-foot a:hover { text-decoration: underline; }

/* ------------------------------------------------------------- How it works */
.steps {
  display: grid;
  gap: 26px;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 26px;
  border-top: 2px solid rgba(255, 255, 255, .16);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold-soft);
  display: block;
  margin-bottom: 12px;
}
.step h3 { font-size: 21px; color: var(--paper); margin-bottom: 10px; }
.step p { color: #bdb6aa; font-size: 15.5px; }

/* --------------------------------------------------------------- Gallery */
.gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-2);
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery figure:hover img { transform: scale(1.045); }

.gallery-note {
  margin-top: 24px;
  font-size: 14.5px;
  color: var(--ink-3);
  text-align: center;
}
.gallery-note .ig-logo {
  vertical-align: -4px;
  margin-right: 4px;
}

/* --------------------------------------------------------------- Reviews */
.reviews {
  display: grid;
  gap: 22px;
}
.review {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.review .stars { margin-bottom: 15px; }
.review blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 1.62;
  color: var(--ink);
  flex: 1;
}
.review blockquote::before { content: "\201C"; }
.review blockquote::after { content: "\201D"; }
.review-meta {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 14px;
  color: var(--ink-3);
}
.review-meta strong { color: var(--ink); font-weight: 650; }

.reviews-foot {
  margin-top: 38px;
  text-align: center;
}

.rating-summary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 40px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.google-logo {
  width: 22px;
  height: 22px;
}
.rating-number {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
}
.rating-summary .stars svg { width: 19px; height: 19px; }
.rating-caption { font-size: 14.5px; color: var(--ink-3); }

/* ----------------------------------------------------------------- About
   No photo of Justina exists yet (see the email's pending-items list), so
   this is a single centered column rather than the usual photo/text split.
   Swap .about-solo for the old two-column layout once a photo is in. */
.about-solo {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}
.about-solo .rule { margin-inline: auto; }

/* This heading sits outside .section-head, so it needs the display scale
   applying directly or it falls back to the browser's default h2 size. */
.about-body h2 {
  font-size: clamp(30px, 4vw, 43px);
  margin-bottom: 20px;
}
.about-body p + p { margin-top: 17px; }
.about-body p { color: var(--ink-2); font-size: 17px; }

.signature {
  margin-top: 26px;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
}

/* ----------------------------------------------------------- Service area */
.area-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}
.area-towns {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-towns li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 19px;
  font-size: 14.5px;
  font-weight: 550;
}
.area-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  min-height: 300px;
  background: var(--cream-2);
}
.area-map iframe { width: 100%; height: 100%; min-height: 300px; border: 0; display: block; }

/* ------------------------------------------------------------------- FAQ */
.faq { display: grid; gap: 12px; max-width: 820px; margin-inline: auto; }
.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .18s var(--ease);
}
.faq details[open] { border-color: var(--gold-soft); }
.faq summary {
  cursor: pointer;
  padding: 20px 54px 20px 22px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  position: relative;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 24px; top: 27px;
  width: 9px; height: 9px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform .22s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 31px; }
.faq-body { padding: 0 22px 22px; color: var(--ink-2); font-size: 15.5px; }
.faq-body p + p { margin-top: 12px; }

/* -------------------------------------------------------------- CTA band */
.ctaband {
  background:
    radial-gradient(760px 340px at 20% 0%, #33404f 0%, transparent 70%),
    var(--ink);
  color: var(--paper);
  padding: 80px 0;
  text-align: center;
}
.ctaband h2 { font-size: clamp(29px, 4vw, 42px); margin-bottom: 18px; }
.ctaband p { color: #beb7ab; font-size: 18px; max-width: 46ch; margin-inline: auto; }
.ctaband-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  justify-content: center;
  margin-top: 34px;
}

/* ------------------------------------------------------------- Book panel
   No form — Justina works by call/text, not a web form, so this is just a
   call to action in a card. See the email's pending-items list re: the
   Web3Forms form this used to be. */
.booking-wrap {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 40px 34px;
  text-align: center;
}
.booking-head { margin-bottom: 26px; }
.booking-head h2 { font-size: 25px; margin-bottom: 8px; }
.booking-head p { font-size: 14.5px; color: var(--ink-2); }

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  justify-content: center;
}

.booking-note {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--ink-3);
  text-align: center;
  line-height: 1.5;
}

/* ---------------------------------------------------------------- Footer */
.site-footer {
  background: var(--ink);
  color: #a9a296;
  padding: 62px 0 0;
  font-size: 15px;
}
.footer-grid {
  display: grid;
  gap: 38px;
  padding-bottom: 44px;
}
.site-footer h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 17px;
}
.site-footer a { color: #d6d0c5; text-decoration: none; }
.site-footer a:hover { color: var(--paper); text-decoration: underline; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }

.footer-brand img {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--paper);
  margin-bottom: 16px;
}
.footer-brand p { max-width: 34ch; line-height: 1.6; }

.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  color: #cfc9bf;
  transition: border-color .18s var(--ease), color .18s var(--ease);
}
.footer-social a:hover { border-color: var(--gold-mid); color: var(--gold-soft); }
.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 22px 0 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 13.5px;
  color: #8f887d;
}

/* -------------------------------------------------------------- Call bar */
.callbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  transform: translateY(100%);
  transition: transform .28s var(--ease);
  box-shadow: 0 -6px 22px rgba(33, 42, 54, .12);
}
.callbar.is-visible { transform: translateY(0); }
.callbar a {
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 650;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.callbar a.primary { background: var(--gold-mid); }
.callbar svg { width: 18px; height: 18px; }

/* Reserve the call bar's height at the foot of the page so it never sits on
   top of the last of the footer. The bar itself only exists below 1040px. */
@media (max-width: 1039px) {
  body { padding-bottom: 54px; }
}

/* ---------------------------------------------------------------- Motion */
.js-anim .rule { transform: scaleX(0); transform-origin: left; }
.js-anim .rule.is-in {
  transform: scaleX(1);
  transition: transform .6s var(--ease);
}
.section-head-center .rule, .about-solo .rule { transform-origin: center; }

.js-anim [data-stagger] > * {
  opacity: 0;
  transform: translateY(18px);
}
.js-anim [data-stagger].is-in > * {
  opacity: 1;
  transform: none;
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.js-anim [data-stagger].is-in > *:nth-child(2) { transition-delay: .07s; }
.js-anim [data-stagger].is-in > *:nth-child(3) { transition-delay: .14s; }
.js-anim [data-stagger].is-in > *:nth-child(4) { transition-delay: .21s; }
.js-anim [data-stagger].is-in > *:nth-child(5) { transition-delay: .28s; }
.js-anim [data-stagger].is-in > *:nth-child(6) { transition-delay: .35s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .btn:hover { transform: none; }
  .service:hover { transform: none; }
}

/* ------------------------------------------------------------ Breakpoints */
@media (min-width: 620px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .proofstrip-grid { grid-template-columns: repeat(4, 1fr); }
  .difference-grid { grid-template-columns: repeat(2, 1fr); }
  .callbar { grid-template-columns: repeat(2, minmax(0, 260px)); justify-content: center; }
}

@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2.2fr 1fr 1fr 1.4fr; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .section { padding: 108px 0; }
}

@media (min-width: 1040px) {
  .nav { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
  .callbar { display: none; }
  /* Four services, deliberately 2x2 rather than 3+1 — each card carries a
     real description and a list, so they need the width. */
  .services { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: repeat(3, 1fr); }
  .hero { padding: 84px 0 100px; }
}

@media print {
  .site-header, .callbar, .nav-toggle, .booking-wrap { display: none !important; }
  body { background: #fff; }
}

/* ==========================================================================
   Multipage additions (2026-09-22): services dropdown, inner-page hero,
   breadcrumbs, prose pages, and the Google-style review cards.
   ========================================================================== */

/* ---------------------------------------------------- Services dropdown */
.nav-dd { position: relative; }
.nav-dd-link { display: inline-flex; align-items: center; gap: 5px; }
.nav-dd-link .chev { transition: transform .2s var(--ease); }
.nav-dd:hover .chev, .nav-dd:focus-within .chev, .nav-dd-link[aria-expanded="true"] .chev { transform: rotate(180deg); }
.nav a.is-current, .nav a[aria-current="page"] { color: var(--ink); }
.nav a[aria-current="page"]::after, .nav a.is-current::after { transform: scaleX(1); }
.nav-menu {
  list-style: none; margin: 0; padding: 8px;
  position: absolute; top: 100%; left: -14px; min-width: 270px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .16s var(--ease), transform .16s var(--ease), visibility .16s;
  z-index: 120;
}
.nav-dd:hover .nav-menu, .nav-dd:focus-within .nav-menu, .nav-dd.is-open .nav-menu {
  opacity: 1; visibility: visible; transform: none;
}
.nav-menu a { display: block; padding: 10px 14px; border-radius: var(--radius-sm); }
.nav-menu a::after { display: none; }
.nav-menu a:hover, .nav-menu a[aria-current="page"] { background: var(--gold-wash); }
.nav-menu strong { display: block; font-weight: 600; color: var(--ink); }
.nav-menu span { display: block; font-size: 13px; font-weight: 450; color: var(--ink-3); margin-top: 1px; }

.mobile-nav summary {
  list-style: none; cursor: pointer; padding: 17px 4px;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary::after { content: "+"; font-weight: 400; color: var(--gold); }
.mobile-nav details[open] summary::after { content: "\2212"; }
.mobile-nav a.sub { font-family: var(--font-body); font-size: 18px; font-weight: 550; padding: 13px 4px 13px 20px; color: var(--ink-2); }

/* ----------------------------------------------------------- Page hero */
.crumbs { padding: 18px 0 0; }
.crumbs ol { list-style: none; margin: 0 auto; padding: 0; width: min(100% - 40px, var(--wrap)); display: flex; flex-wrap: wrap; gap: 6px; font-size: 13.5px; color: var(--ink-3); }
.crumbs li + li::before { content: "/"; margin-right: 6px; color: var(--line); }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--ink); text-decoration: underline; }
.page-hero { padding: 44px 0 56px; }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em;
  font-size: clamp(32px, 5vw, 52px); line-height: 1.08; max-width: 820px;
}
.page-lead { margin-top: 18px; max-width: 680px; font-size: 18.5px; color: var(--ink-2); }
.page-hero .hero-actions { margin-top: 28px; }
.more-link { margin-top: 32px; text-align: center; font-weight: 600; }
.more-link a:not(.btn) { color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.service h3 a { text-decoration: none; }
.service h3 a:hover { text-decoration: underline; }
.about-body .more-link { text-align: left; }

/* --------------------------------------------------------------- Prose */
.prose { max-width: 700px; }
.prose-narrow { margin-inline: auto; }
.prose h2 { font-family: var(--font-display); font-size: 26px; letter-spacing: -.01em; margin: 38px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-2); font-size: 17px; }
.prose p + p { margin-top: 14px; }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.checklist li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink-2); font-size: 16.5px; }
.checklist svg { width: 19px; height: 19px; flex: none; margin-top: 3px; color: var(--ok); }
.checklist a { color: var(--ink); font-weight: 600; }
.prose-grid { display: grid; gap: 40px; }
.side-card {
  align-self: start; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm);
  display: grid; gap: 12px;
}
.side-card h3 { font-family: var(--font-display); font-size: 21px; }
.side-card p { color: var(--ink-2); font-size: 15.5px; }
.side-facts { list-style: none; margin: 6px 0 0; padding: 14px 0 0; border-top: 1px solid var(--line-soft); display: grid; gap: 8px; font-size: 14.5px; color: var(--ink-2); }
.side-facts li { display: flex; gap: 9px; align-items: center; }
.side-facts svg { width: 16px; height: 16px; color: var(--gold); flex: none; }
.hours { border-collapse: collapse; width: 100%; max-width: 460px; margin-bottom: 14px; }
.hours th, .hours td { text-align: left; padding: 11px 0; border-bottom: 1px solid var(--line-soft); font-size: 16px; }
.hours th { font-weight: 600; color: var(--ink); padding-right: 16px; }
.hours td { color: var(--ink-2); }
.area-map-wide { margin-top: 44px; min-height: 340px; }
.area-towns a { text-decoration: none; }
.area-towns a:hover { text-decoration: underline; }

/* ------------------------------------- Google-style review cards */
.gstars { display: inline-flex; gap: 1px; color: #fbbc04; }
.gstars svg { width: 18px; height: 18px; }
.greviews { display: grid; gap: 18px; }
.gcard {
  background: #fff; border: 1px solid #dadce0; border-radius: 12px;
  padding: 20px 22px; display: flex; flex-direction: column; gap: 12px;
  font-family: "Inter", Roboto, Arial, sans-serif;
}
.gcard[hidden] { display: none; }
.gcard-head { display: flex; align-items: center; gap: 12px; }
.gcard-head .google-logo { margin-left: auto; width: 20px; height: 20px; flex: none; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none; color: #fff;
  display: grid; place-items: center; font-weight: 600; font-size: 18px;
}
.gcard-who { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.gcard-who strong { font-size: 15px; font-weight: 600; color: #202124; }
.gcard-who span { font-size: 12.5px; color: #70757a; }
.gcard-text { font-size: 15px; line-height: 1.6; color: #3c4043; }
.gcard-more { font-size: 14px; color: #1a0dab; text-decoration: none; font-weight: 500; }
.gcard-more:hover { text-decoration: underline; }

.gsummary {
  display: grid; gap: 22px; align-items: center; background: #fff;
  border: 1px solid #dadce0; border-radius: 12px; padding: 24px 28px; margin-bottom: 26px;
  font-family: "Inter", Roboto, Arial, sans-serif;
}
.gsummary.is-compact { display: inline-flex; gap: 18px; padding: 16px 24px; margin-bottom: 26px; }
.gsummary-score { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.gsummary-num { font-size: 56px; line-height: 1; font-weight: 500; color: #202124; letter-spacing: -.02em; }
.gsummary.is-compact .gsummary-num { font-size: 38px; }
.gsummary .gstars svg { width: 20px; height: 20px; }
.gsummary-count { font-size: 14px; color: #70757a; }
.gsummary-bars { display: grid; gap: 6px; width: 100%; max-width: 420px; }
.gbar { display: grid; grid-template-columns: 12px 1fr; gap: 10px; align-items: center; font-size: 13px; color: #70757a; }
.gbar-track { height: 8px; background: #e8eaed; border-radius: 4px; overflow: hidden; display: block; }
.gbar-fill { display: block; height: 100%; background: #fbbc04; border-radius: 4px; }
.gsummary-brand { display: flex; align-items: center; gap: 8px; font-size: 15px; color: #5f6368; font-weight: 500; }
.gsummary-brand .google-logo { width: 24px; height: 24px; }
.gsummary.is-compact .gsummary-brand { display: none; }
.review-note { font-size: 14px; color: var(--ink-3); margin-bottom: 20px; }
.topics { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.topic { font-size: 13.5px; padding: 6px 12px; border: 1px solid #dadce0; border-radius: 16px; background: #fff; color: #3c4043; }
.topic b { color: #70757a; font-weight: 600; margin-left: 4px; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.chip {
  font: 500 14px "Inter", Arial, sans-serif; padding: 8px 16px; border-radius: 18px; cursor: pointer;
  border: 1px solid #dadce0; background: #fff; color: #3c4043;
}
.chip:hover { background: #f1f3f4; }
.chip.is-on { background: #e8f0fe; border-color: #d2e3fc; color: #1967d2; }
.filters { display: none; }
.js .filters { display: flex; }

@media (min-width: 620px) {
  .greviews { grid-template-columns: repeat(2, 1fr); }
  .gsummary:not(.is-compact) { grid-template-columns: auto 1fr auto; gap: 40px; }
}
@media (min-width: 900px) {
  .prose-grid { grid-template-columns: 1fr 340px; gap: 64px; }
  .greviews:not(.is-list) { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1039px) { .nav-menu { display: none; } }
