/* =============================================================
   HOP TO IT — style.css
   Palette: warm oat / sage / taupe / terracotta
============================================================= */

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; background: none; border: none; }

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --bg:          #EDE6D6;   /* warm oat — page background */
  --bg-alt:      #E8DED9;   /* soft blush-cream — alt sections */
  --text:        #3E352E;   /* deep cool brown */
  --text-mid:    #6B5F56;   /* mid brown */
  --accent:      #7C8B7A;   /* deep sage — headings, nav, key UI */
  --border:      #B6AC97;   /* warm taupe */
  --fill:        #B9C0A8;   /* light sage — chips, badges */
  --cta:         #B47A5B;   /* muted terracotta — buttons & links only */
  --cta-hover:   #9C6A4E;
  --footer-bg:   #5C6B5A;   /* forest sage — nav + footer */
  --white:       #FFFFFF;

  --font-disp: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --max-w:   1120px;
  --nav-h:   60px;
  --r:       4px;           /* border-radius — minimal, editorial */
}

/* ── Base ───────────────────────────────────────────────────── */
html  { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: var(--nav-h); }
body  {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-disp);
  font-weight: 300;
  line-height: 1.12;
  color: var(--accent);
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.1rem; font-weight: 400; }

p { max-width: 64ch; color: var(--text-mid); }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--border);
  margin-bottom: 0.9rem;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem 1.9rem;
  border-radius: var(--r);
  border: none;
  transition: background 0.18s, transform 0.15s, color 0.15s;
}
.btn:hover { transform: translateY(-1px); }

.btn-cta        { background: var(--cta); color: var(--white); }
.btn-cta:hover  { background: var(--cta-hover); }

.btn-ghost      { background: transparent; color: var(--bg); border: 1px solid rgba(237,230,214,.4); }
.btn-ghost:hover { background: rgba(237,230,214,.12); }

.btn-sage       { background: var(--accent); color: var(--bg); }
.btn-sage:hover { background: var(--footer-bg); }

/* ── Skip link ──────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%; left: 0;
  background: var(--accent); color: var(--bg);
  padding: .5rem 1rem;
  border-radius: 0 0 var(--r) 0;
  z-index: 200;
  font-size: .85rem;
}
.skip-link:focus { top: 0; }

/* ── Site header / nav ──────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--footer-bg);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 2rem;
}

/* Nav logo: stacked mark + wordmark */
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1rem;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity .15s;
}
.nav-logo:hover { opacity: .8; }
.nav-logo-mark { height: 40px; width: auto; display: block; }
.nav-logo-name {
  font-family: var(--font-disp);
  font-weight: 300;
  font-style: italic;
  font-size: .78rem;
  letter-spacing: .06em;
  color: var(--bg);
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(237,230,214,.65);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--bg);
  border-color: var(--fill);
}

.nav-cta {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--cta);
  padding: .5rem 1.1rem;
  border-radius: var(--r);
  transition: background .15s;
}
.nav-cta:hover { background: var(--cta-hover); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--bg);
  transition: transform .22s, opacity .22s;
  border-radius: 1px;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .nav-cta.open {
    display: block;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    text-align: center;
    border-radius: 0;
    padding: .9rem;
    z-index: 101;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: calc(var(--nav-h) + 2.9rem); left: 0; right: 0;
    background: var(--footer-bg);
    padding: 0.5rem 0 1.5rem;
    border-top: 1px solid rgba(255,255,255,.06);
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    z-index: 100;
  }
  .nav-links.open a {
    padding: .85rem 1.5rem;
    border: none;
    font-size: 0.85rem;
  }
}

/* ── Site footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--footer-bg);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
/* Footer logo: stacked mark + wordmark + tagline */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .15rem;
  text-decoration: none;
  transition: opacity .15s;
}
.footer-brand:hover { opacity: .8; }
.footer-logo-mark { height: 32px; width: auto; display: block; }
.footer-logo-name {
  font-family: var(--font-disp);
  font-weight: 300;
  font-size: 1rem;
  color: var(--bg);
  line-height: 1;
}
.footer-brand small {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: .68rem;
  color: rgba(237,230,214,.4);
  margin-top: .1rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.footer-links a {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(237,230,214,.55);
  transition: color .15s;
}
.footer-links a:hover { color: var(--bg); }
.footer-copy { font-size: .7rem; color: rgba(237,230,214,.35); }

/* ═══════════════════════════════════════════════════════════
   HOME PAGE
══════════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  background: var(--accent);
}
.hero-left {
  flex: 0 0 52%;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 2rem) 3rem 3.5rem;
}
.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 3rem) 5rem 5rem 0;
}
.hero-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--r);
}
.hero-content {
  width: 100%;
  max-width: 480px;
}
/* Hero logo: large mark + h1 stacked */
.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: .75rem;
}
.hero-logo-mark { height: 72px; width: auto; display: block; filter: drop-shadow(0 2px 12px rgba(0,0,0,.25)); }
.hero-content h1 {
  color: var(--bg);
  margin-bottom: 0;
}
.hero-tagline {
  font-size: clamp(.95rem, 2vw, 1.12rem);
  color: rgba(237,230,214,.85);
  max-width: 44ch;
  margin-bottom: 2rem;
  line-height: 1.55;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem .5rem;
  margin-top: 2rem;
  font-size: .75rem;
  letter-spacing: .06em;
  color: rgba(237,230,214,.6);
}
@media (max-width: 768px) {
  .hero { flex-direction: column; min-height: 0; }
  .hero-left { flex: none; align-items: flex-start; padding: calc(var(--nav-h) + 2rem) 1.5rem 2.5rem; }
  .hero-right { flex: none; height: 280px; padding: 1rem; }
  .hero-bg { border-radius: var(--r); }
}

/* ── About (home) ─────────────────────────────────────────── */
.section-about { padding: 5.5rem 0; background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: start;
}
.about-photo-col { position: sticky; top: calc(var(--nav-h) + 2rem); }
.about-photo-wrap {
  position: relative;
}
.about-photo-wrap > img,
.about-photo-placeholder {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--r);
}
.about-photo-placeholder { background: var(--fill); }

.hop-card {
  position: absolute;
  bottom: 1rem; right: 1rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: .9rem 1.1rem;
  display: flex;
  gap: .75rem;
  align-items: center;
  max-width: 230px;
  box-shadow: 0 4px 20px rgba(62,53,46,.12);
}
.hop-avatar, .hop-avatar-ph {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.hop-avatar-ph { background: var(--fill); }
.hop-card-text strong { display: block; font-size: .88rem; font-weight: 600; color: var(--text); }
.hop-card-text span   { font-size: .76rem; color: var(--border); line-height: 1.4; }

.about-text-col { padding-top: .25rem; }
.about-text-col h2 { margin-bottom: 1.5rem; }
.about-story p { margin-bottom: 1rem; font-size: 1rem; }
.about-story p:last-child { margin-bottom: 0; }

.cred-chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 2rem; }
.cred-chip {
  background: var(--fill);
  color: var(--footer-bg);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: .35rem .8rem;
  border-radius: var(--r);
}
.about-cta { margin-top: 2rem; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-col { position: static; max-width: 420px; }
  .hop-card { right: 0; }
}

/* ── Services Preview (home) ──────────────────────────────── */
.section-svc-preview { padding: 5.5rem 0; background: var(--bg-alt); }
.section-head { margin-bottom: 2.75rem; }
.section-head h2 { margin-bottom: .35rem; }
.section-head p { font-size: 1rem; margin-top: .5rem; }

.svc-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  gap: 1px;
  background: var(--border);
}
.svc-preview-card {
  background: var(--bg-alt);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  text-decoration: none;
  color: var(--text);
  transition: background .15s;
}
.svc-preview-card:hover { background: var(--bg); }
.svc-card-name {
  font-family: var(--font-disp);
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--accent);
  line-height: 1.15;
}
.svc-card-desc {
  font-size: .87rem;
  color: var(--text-mid);
  line-height: 1.5;
  flex: 1;
}
.svc-card-link {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cta);
  margin-top: .5rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap .15s;
}
.svc-preview-card:hover .svc-card-link { gap: .6rem; }

/* ── Reviews preview (home) ───────────────────────────────── */
.section-reviews-preview { padding: 5.5rem 0; background: var(--bg); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}
.review-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
}
.review-stars { color: var(--cta); font-size: .85rem; letter-spacing: .04em; margin-bottom: .85rem; }
.review-text {
  font-size: .96rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.72;
  flex: 1;
  margin-bottom: 1.25rem;
}
.review-author { font-weight: 600; font-size: .88rem; color: var(--text); }
.review-service { font-size: .75rem; color: var(--border); margin-top: .2rem; }

.text-link {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cta);
  text-decoration: underline;
  transition: color .15s;
}
.text-link:hover { color: var(--cta-hover); }

/* ── CTA Band ─────────────────────────────────────────────── */
.cta-band {
  background: var(--footer-bg);
  padding: 5rem 1.5rem;
  text-align: center;
}
.cta-band h2 { color: var(--bg); margin-bottom: .6rem; }
.cta-band p { color: rgba(237,230,214,.7); margin: 0 auto 2rem; max-width: 44ch; font-size: 1rem; }

/* ═══════════════════════════════════════════════════════════
   INNER PAGES — shared
══════════════════════════════════════════════════════════════ */

.page-hero {
  background: var(--bg-alt);
  padding: calc(var(--nav-h) + 3.5rem) 1.5rem 3.5rem;
  border-bottom: 1px solid var(--border);
}
.page-hero .container { max-width: var(--max-w); margin: 0 auto; }
.page-hero h1 { margin-bottom: .5rem; }
.page-hero p { font-size: 1.05rem; max-width: 54ch; }

.page-hero--split .container {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.page-hero-text { flex: 1; }
.page-hero-photo {
  flex: 0 0 260px;
  height: 260px;
  border-radius: var(--r);
  overflow: hidden;
}
.page-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 640px) {
  .page-hero--split .container { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════════════════════════ */

.services-body { padding: 4rem 0; }

.svc-section {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}
.svc-section:last-of-type { border-bottom: none; }
.svc-section-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.svc-section-label h3 { margin-bottom: 0; }
.svc-section-content {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}
.svc-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 60%;
  border-radius: var(--r);
  display: block;
}
.svc-section-body p { margin-bottom: 1rem; font-size: .97rem; }
.svc-section-body p:last-child { margin-bottom: 0; }

@media (max-width: 720px) {
  .svc-section-content { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* Walk pricing cards */
.walk-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
  max-width: 540px;
}
@media (max-width: 500px) { .walk-cards { grid-template-columns: 1fr; max-width: 280px; } }

.walk-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem 1.5rem;
  position: relative;
}
.walk-card.best {
  border-color: var(--cta);
  background: var(--bg-alt);
}
.walk-badge {
  position: absolute;
  top: -.75rem; left: 50%; transform: translateX(-50%);
  background: var(--cta);
  color: var(--white);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .22rem .7rem;
  border-radius: var(--r);
  white-space: nowrap;
}
.walk-tier-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--border);
  margin-bottom: 1.25rem;
}
.walk-tier-freq {
  font-size: .8rem;
  color: var(--text-mid);
  margin-top: -.9rem;
  margin-bottom: 1.25rem;
}
.walk-price-row {
  padding: .6rem 0;
  border-top: 1px solid var(--border);
}
.walk-price-row .wpr-label { font-size: .75rem; color: var(--text-mid); margin-bottom: .15rem; }
.walk-price-row .wpr-price {
  font-family: var(--font-disp);
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1.05;
}
.walk-card.best .wpr-price { color: var(--cta); }
.walk-price-row .wpr-unit { font-size: .75rem; color: var(--border); }

.walk-note {
  font-size: .85rem;
  color: var(--text-mid);
  background: var(--fill);
  border-radius: var(--r);
  padding: .7rem 1rem;
  margin: 0 0 1.5rem;
  max-width: 540px;
}

/* Other services menu */
.svc-menu {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin: 1.5rem 0;
}
.svc-menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.svc-menu-row:last-child { border-bottom: none; }
.svc-menu-row:nth-child(even) { background: var(--bg-alt); }
.svc-menu-name { font-weight: 600; font-size: .92rem; }
.svc-menu-detail { font-size: .78rem; color: var(--text-mid); margin-top: .15rem; }
.svc-menu-price {
  font-family: var(--font-disp);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--accent);
  white-space: nowrap;
}

/* Billing & cancellation */
.billing-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem 2rem;
  margin-top: 1.5rem;
}
.billing-box h4 {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--border);
  margin-bottom: .75rem;
}
.billing-box li {
  font-size: .9rem;
  color: var(--text-mid);
  padding: .3rem 0 .3rem 1.25rem;
  position: relative;
}
.billing-box li::before { content: '—'; position: absolute; left: 0; color: var(--border); }

/* Service area */
.area-band {
  background: var(--accent);
  padding: 3.5rem 0;
}
.area-band h3, .area-band h2 { color: var(--bg); margin-bottom: .5rem; }
.area-band > .container > p { color: rgba(237,230,214,.75); margin-bottom: 1.5rem; max-width: none; }
.nbhd-tags { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1rem 0; }
.nbhd-tag {
  background: rgba(237,230,214,.15);
  color: rgba(237,230,214,.9);
  font-size: .78rem;
  font-weight: 500;
  padding: .3rem .75rem;
  border-radius: var(--r);
  border: 1px solid rgba(237,230,214,.2);
}
.area-note { font-size: .82rem; font-style: italic; color: rgba(237,230,214,.5); margin-top: .75rem; }

/* ═══════════════════════════════════════════════════════════
   REVIEWS PAGE — CAROUSEL
══════════════════════════════════════════════════════════════ */

.carousel-section { padding: 4.5rem 0; background: var(--bg); }

.carousel-wrap {
  position: relative;
  padding: 0 3rem;
}

.carousel { overflow: hidden; }

.carousel-track {
  display: flex;
  gap: 1.25rem;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

/* Desktop: 2 cards visible */
.carousel-slide {
  flex: 0 0 calc((100% - 1.25rem) / 2);
}

/* Mobile: 1 card visible */
@media (max-width: 768px) {
  .carousel-slide { flex: 0 0 100%; }
  .carousel-wrap { padding: 0 2.5rem; }
}

.review-card-carousel {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
.review-card-carousel .review-stars {
  font-size: .85rem;
  letter-spacing: .06em;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.review-card-carousel blockquote {
  font-size: .94rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}
.review-card-carousel .review-author {
  font-weight: 600;
  font-size: .88rem;
  color: var(--text);
  flex-shrink: 0;
}
.review-card-carousel .review-service {
  font-size: .75rem;
  color: var(--border);
  margin-top: .2rem;
}

.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background .15s, border-color .15s;
  z-index: 2;
  padding: 0;
}
.carousel-btn:hover { background: var(--bg-alt); border-color: var(--accent); }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.75rem;
}
.carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none; padding: 0; cursor: pointer;
  transition: background .22s, width .25s;
}
.carousel-dot.active {
  background: var(--accent);
  width: 22px;
  border-radius: 3px;
}

@media (max-width: 600px) {
  .carousel-wrap { padding: 0 2.5rem; }
  .review-card-carousel { padding: 2rem 1.5rem; }
}

.reviews-source {
  text-align: center;
  margin-top: 3rem;
  font-size: .85rem;
  color: var(--text-mid);
}
.reviews-source a { color: var(--cta); font-weight: 600; text-decoration: underline; }
.reviews-source a:hover { color: var(--cta-hover); }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════════ */

.contact-body { padding: 4.5rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4.5rem;
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }

.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { font-size: .97rem; margin-bottom: 2rem; }
.contact-detail { display: flex; flex-direction: column; gap: .15rem; margin-bottom: 1.1rem; }
.contact-detail .cd-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--border);
}
.contact-detail a { color: var(--cta); font-size: .95rem; font-weight: 500; }
.contact-detail a:hover { text-decoration: underline; }
.contact-detail span { font-size: .95rem; color: var(--text-mid); }

.contact-note {
  margin-top: 2rem;
  font-size: .85rem;
  font-style: italic;
  color: var(--border);
  border-left: 2px solid var(--fill);
  padding-left: .9rem;
  max-width: 34ch;
}

/* Form */
.form-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2.25rem 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: .9rem; }
.form-group label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem .9rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--text);
  outline: none;
  transition: border-color .15s, background .15s;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); background: var(--bg); }
.form-group textarea { resize: vertical; min-height: 100px; }

.btn-submit { width: 100%; padding: .9rem; font-size: .82rem; margin-top: .5rem; }

.form-success { display: none; text-align: center; padding: 2.5rem 1rem; }
.form-success.visible { display: block; }
.form-success p { margin: .5rem auto 0; max-width: 36ch; }

/* ═══════════════════════════════════════════════════════════
   GLOBAL MOBILE FIXES (max-width: 768px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Reduce section padding */
  .section-about,
  .section-svc-preview,
  .section-reviews-preview { padding: 3rem 0; }
  .carousel-section { padding: 3rem 0; }
  .contact-body { padding: 3rem 0; }
  .cta-band { padding: 3rem 1.5rem; }
  .services-body { padding: 2rem 0; }

  /* About section */
  .about-grid { gap: 2rem; }

  /* Services: stack label above content */
  .svc-section { padding: 2.5rem 0; }
  .svc-section-content {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  /* Let service photos show at natural height — no cropping */
  .svc-photo {
    aspect-ratio: auto;
    height: auto;
    object-fit: initial;
    object-position: initial;
    width: 100%;
  }

  /* Walk pricing cards */
  .walk-cards { grid-template-columns: 1fr; }

  /* Page hero split (reviews) — full natural height, no crop */
  .page-hero { padding: calc(var(--nav-h) + 2rem) 1.5rem 2rem; }
  .page-hero--split .container { flex-direction: column; gap: 1.5rem; }
  .page-hero-photo { flex: none; width: 100%; height: auto; }
  .page-hero-photo img { height: auto; object-fit: initial; object-position: initial; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-links { flex-direction: column; gap: .5rem; align-items: center; }

  /* Headings scale down */
  h1 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  h2 { font-size: clamp(1.7rem, 7vw, 2.5rem); }
}
