/* ===========================================================
   Mutts Makeover Dog Grooming — 5-Page Website
   Warm playful boutique design system
   =========================================================== */

:root {
  --cream: #FAF4EC;
  --cream-alt: #F3E6D5;
  --terracotta: #D97E54;
  --terracotta-deep: #B85A35;
  --cocoa: #4A342A;
  --cocoa-soft: #6B5347;
  --teal: #5F9E93;
  --teal-deep: #386F66;
  --white: #FFFFFF;
  --line: rgba(74, 52, 42, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-full: 999px;
  --shadow: 0 14px 34px rgba(74, 52, 42, 0.12);
  --shadow-lg: 0 26px 60px rgba(74, 52, 42, 0.18);
  --font-head: 'Fredoka', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--cocoa);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; margin: 0; line-height: 1.15; color: var(--cocoa); }
p { margin: 0; }
button { font-family: inherit; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ===== Accessibility ===== */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 300;
  background: var(--cocoa);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 12px 12px;
  font-weight: 700;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--teal-deep);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ===== Motion system =====
   Default: everything fully visible (no-JS / JS-not-yet-run fallback).
   html.js scopes the animated states; prefers-reduced-motion: no-preference
   gates the actual transitions so reduced-motion users get the final state
   instantly with zero movement. transform/opacity only. */
html.js .reveal { opacity: 0; transform: translateY(14px); }
html.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal {
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  }
}

html.js .hero__anim { opacity: 0; transform: translateY(14px); }
html.js .hero.is-loaded .hero__anim { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  html.js .hero__anim { transition: opacity 0.5s ease-out, transform 0.5s ease-out; }
  html.js .hero__anim--1 { transition-delay: 0.05s; }
  html.js .hero__anim--2 { transition-delay: 0.15s; }
  html.js .hero__anim--3 { transition-delay: 0.25s; }
  html.js .hero__anim--4 { transition-delay: 0.35s; }
  html.js .hero__anim--5 { transition-delay: 0.45s; }
  html.js .hero__anim--6 { transition-delay: 0.55s; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn--primary {
  background: var(--terracotta-deep);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(184, 90, 53, 0.32);
}
.btn--primary:hover { background: #a34e2c; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(184, 90, 53, 0.4); }
.btn--primary:active { transform: scale(0.97); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.24); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  border-color: var(--teal-deep);
  color: var(--teal-deep);
}
.btn--outline:hover { background: var(--teal-deep); color: var(--white); transform: translateY(-2px); }
.btn--lg { padding: 15px 32px; font-size: 1.05rem; }
.btn--block { width: 100%; }
@media (prefers-reduced-motion: reduce) {
  .btn:hover, .btn:active { transform: none; }
}

/* ===== Paw print decorative icon ===== */
.paw {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/* ===== Top bar ===== */
.topbar {
  background: var(--cocoa);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar__phones { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar__phones a { font-weight: 700; color: var(--white); }
.topbar__phones a:hover { color: var(--terracotta); }
.topbar__badge { display: none; font-weight: 600; color: rgba(255, 255, 255, 0.8); }
@media (min-width: 720px) { .topbar__badge { display: block; } }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 244, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand__logo { height: 52px; width: 52px; border-radius: 50%; object-fit: cover; box-shadow: 0 4px 14px rgba(74, 52, 42, 0.2); }
.brand__text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.1;
  color: var(--cocoa);
}
.brand__text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.nav { display: none; gap: 28px; font-weight: 700; font-size: 0.95rem; }
.nav a { color: var(--cocoa); position: relative; padding: 8px 2px; transition: color 0.2s ease; }
.nav a:hover { color: var(--terracotta-deep); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }
.header__cta { display: none; }
@media (min-width: 900px) {
  .nav { display: flex; margin-left: auto; margin-right: 24px; }
  .header__cta { display: inline-flex; }
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2.5px; background: var(--cocoa); border-radius: 2px; }
@media (min-width: 900px) { .nav-toggle { display: none; } }
.nav--mobile-open {
  display: flex !important;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--cream);
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
  box-shadow: var(--shadow);
  border-bottom: 1px solid var(--line);
}
.nav--mobile-open a { padding: 13px 0; border-bottom: 1px solid var(--line); min-height: 44px; display: flex; align-items: center; }
.nav--mobile-open a::after { display: none; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 56px 0 88px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -140px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 126, 84, 0.18), transparent 70%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  gap: 44px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 56px; }
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--teal-deep);
  margin-bottom: 16px;
}
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--terracotta-deep); }
.hero__lede { font-size: 1.08rem; color: var(--cocoa-soft); max-width: 520px; margin-bottom: 30px; line-height: 1.6; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__actions .btn--ghost { background: transparent; border-color: var(--teal-deep); color: var(--teal-deep); }
.hero__actions .btn--ghost:hover { background: var(--teal-deep); color: var(--white); }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--cocoa-soft);
}
.hero__trust li { display: flex; align-items: center; gap: 7px; }
.hero__trust .paw { color: var(--terracotta-deep); width: 15px; height: 15px; }
@media (max-width: 619px) {
  .hero { padding: 40px 0 60px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}

/* Hero visual — blob-masked badge card standing in for a groomed-dog photo */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  margin: 0 auto;
  border-radius: 58% 42% 61% 39% / 45% 38% 62% 55%;
  background: linear-gradient(150deg, var(--terracotta) 0%, #E4A377 45%, var(--teal) 100%);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,0.28) 0, rgba(255,255,255,0.28) 3px, transparent 4px),
    radial-gradient(circle at 78% 16%, rgba(255,255,255,0.22) 0, rgba(255,255,255,0.22) 3px, transparent 4px),
    radial-gradient(circle at 85% 70%, rgba(255,255,255,0.24) 0, rgba(255,255,255,0.24) 3px, transparent 4px),
    radial-gradient(circle at 12% 78%, rgba(255,255,255,0.2) 0, rgba(255,255,255,0.2) 3px, transparent 4px);
}
.hero__badge {
  position: relative;
  width: 62%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(74, 52, 42, 0.32);
  border: 6px solid rgba(255, 255, 255, 0.85);
}
.hero__badge img { width: 100%; height: 100%; object-fit: cover; }
.hero__visual-note {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.92);
  color: var(--cocoa-soft);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* Trust band */
.trust-band {
  background: var(--cocoa);
  color: var(--white);
  padding: 20px 0;
}
.trust-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 34px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
}
.trust-band__item { display: flex; align-items: center; gap: 10px; }
.trust-band .paw { color: var(--terracotta); width: 20px; height: 20px; }
.trust-band__divider { width: 1px; height: 20px; background: rgba(255, 255, 255, 0.25); }
@media (max-width: 560px) { .trust-band__divider { display: none; } }

/* ===== Sections ===== */
.section { padding: 96px 0; scroll-margin-top: 90px; }
@media (max-width: 719px) { .section { padding: 60px 0; } }
.section--alt { background: var(--cream-alt); }
.section--dark { background: var(--cocoa); color: var(--white); }
.section--dark p { color: rgba(255, 255, 255, 0.78); }
.eyebrow {
  display: block;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--teal-deep);
  margin-bottom: 12px;
}
.section--dark .eyebrow { color: var(--terracotta); }
.section__title {
  text-align: center;
  font-size: clamp(1.7rem, 3.4vw, 2.35rem);
  max-width: 640px;
  margin: 0 auto 16px;
}
.section__lede {
  text-align: center;
  color: var(--cocoa-soft);
  max-width: 580px;
  margin: 0 auto 48px;
  font-size: 1.04rem;
  line-height: 1.6;
}
.section--dark .section__lede { color: rgba(255, 255, 255, 0.78); }

/* ===== Services ===== */
.grid--services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
}
.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-6px) rotate(-0.6deg); box-shadow: var(--shadow-lg); }
.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--terracotta);
  margin-bottom: 18px;
}
.card__icon .paw { width: 28px; height: 28px; color: var(--white); }
.card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.card p { color: var(--cocoa-soft); font-size: 0.96rem; line-height: 1.55; margin-bottom: 14px; }
.card__price {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--terracotta-deep);
  background: rgba(217, 126, 84, 0.12);
  padding: 5px 14px;
  border-radius: var(--radius-full);
}
@media (prefers-reduced-motion: reduce) { .card:hover { transform: none; } }

/* ===== Gallery ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery__item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.gallery__item:hover { transform: translateY(-6px) rotate(1deg); box-shadow: var(--shadow-lg); }
.gallery__item:nth-child(even):hover { transform: translateY(-6px) rotate(-1deg); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery__item:hover img { transform: scale(1.06); }
@media (prefers-reduced-motion: reduce) {
  .gallery__item:hover, .gallery__item:nth-child(even):hover { transform: none; }
}

/* Photo placeholder tile — used until real groomed-dog photos are supplied */
.photo-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 12px;
  background: linear-gradient(150deg, var(--ph-a, var(--terracotta)), var(--ph-b, var(--teal)));
  color: var(--white);
}
.photo-placeholder .paw { width: 26px; height: 26px; opacity: 0.9; }
.photo-placeholder span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  line-height: 1.3;
}
.photo-placeholder small { font-size: 0.66rem; font-weight: 700; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.04em; }
.gallery__item--1 { --ph-a: #D97E54; --ph-b: #E4A377; }
.gallery__item--2 { --ph-a: #5F9E93; --ph-b: #86BBB1; }
.gallery__item--3 { --ph-a: #B85A35; --ph-b: #D97E54; }
.gallery__item--4 { --ph-a: #386F66; --ph-b: #5F9E93; }
.gallery__item--5 { --ph-a: #E4A377; --ph-b: #D97E54; }
.gallery__item--6 { --ph-a: #86BBB1; --ph-b: #386F66; }
.gallery__item--7 { --ph-a: #D97E54; --ph-b: #B85A35; }
.gallery__item--8 { --ph-a: #5F9E93; --ph-b: #2E5A52; }

/* ===== Reviews ===== */
.ratings-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin: 0 auto 48px;
  padding: 18px 30px;
  max-width: 560px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow);
}
.ratings-bar__item { display: flex; align-items: center; gap: 10px; }
.ratings-bar__badge {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--white);
  background: var(--teal-deep);
  padding: 6px 14px;
  border-radius: var(--radius-full);
}
.ratings-bar__label { font-size: 0.94rem; color: var(--cocoa-soft); }
.ratings-bar__label strong { color: var(--cocoa); font-family: var(--font-head); font-weight: 600; }
.ratings-bar__divider { width: 1px; height: 26px; background: var(--line); }
@media (max-width: 520px) {
  .ratings-bar { border-radius: 20px; flex-direction: column; }
  .ratings-bar__divider { width: 60px; height: 1px; }
}
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow);
}
.review-card__stars { color: var(--terracotta); font-size: 1.05rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-card p { color: var(--cocoa); line-height: 1.6; font-size: 0.98rem; }
.review-card__author { margin-top: 18px; font-weight: 700; font-size: 0.9rem; color: var(--teal-deep); }
.review-card__author span { color: var(--cocoa-soft); font-weight: 400; }
.reviews__cta { text-align: center; margin-top: 40px; }

/* ===== CTA band ===== */
.cta-band {
  text-align: center;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-deep));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: var(--white); margin-bottom: 10px; }
.cta-band p { color: rgba(255, 255, 255, 0.9); margin-bottom: 24px; }
.cta-band__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.cta-band .btn--primary { background: var(--white); color: var(--terracotta-deep); box-shadow: 0 10px 24px rgba(74,52,42,0.2); }
.cta-band .btn--primary:hover { background: var(--cream); }

/* ===== Footer ===== */
.footer { background: var(--cocoa); color: rgba(255, 255, 255, 0.75); padding: 40px 0; }
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  font-size: 0.86rem;
}
.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer__logo { height: 40px; width: 40px; border-radius: 50%; object-fit: cover; }
.footer__brand span { font-family: var(--font-head); font-weight: 600; color: var(--white); font-size: 1.05rem; }
.footer__links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer__inner a { font-weight: 700; color: var(--white); }
.footer__inner a:hover { color: var(--terracotta); }
.footer__note { color: rgba(255, 255, 255, 0.5); font-size: 0.78rem; }
@media (min-width: 760px) {
  .footer__inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ===== Floating call button ===== */
.call-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--terracotta-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  transition: transform 0.18s ease;
}
.call-fab svg { width: 24px; height: 24px; }
.call-fab:active { transform: scale(0.94); }
@media (min-width: 900px) { .call-fab { display: none; } }

/* ===== Contact ===== */
.contact__grid { display: grid; gap: 44px; }
.contact__list { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.contact__list li { display: flex; align-items: flex-start; gap: 12px; font-size: 1.02rem; }
.contact__list .paw { color: var(--terracotta); flex-shrink: 0; margin-top: 4px; width: 16px; height: 16px; }
.contact__list a:hover { color: var(--terracotta); }
.contact__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  color: var(--cocoa);
}
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 8px; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  resize: vertical;
  color: var(--cocoa);
  background: var(--cream);
}
.form-row select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B5347' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-row select:invalid { color: var(--cocoa-soft); }
.form-note { margin-top: 14px; font-size: 0.9rem; text-align: center; color: var(--teal-deep); font-weight: 700; min-height: 1.2em; }

@media (min-width: 860px) {
  .contact__grid { grid-template-columns: 1fr 1.05fr; }
}

/* ===========================================================
   Multipage-specific additions
   =========================================================== */

.nav a.active { color: var(--terracotta-deep); }
.nav a.active::after { transform: scaleX(1); }

/* Interior page hero banner (services / gallery / about / contact) */
.page-hero {
  position: relative;
  padding: 64px 0 56px;
  background: linear-gradient(135deg, var(--cocoa) 0%, #5c4335 100%);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 126, 84, 0.28), transparent 70%);
}
.page-hero__crumb {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 14px;
}
.page-hero__crumb a { color: rgba(255, 255, 255, 0.85); }
.page-hero__crumb a:hover { color: var(--terracotta); }
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4.4vw, 2.8rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255, 255, 255, 0.82); max-width: 560px; margin: 0 auto; font-size: 1.02rem; line-height: 1.6; }

/* Services page — pricing note banner */
.pricing-note {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto 48px;
  padding: 18px 24px;
  background: var(--white);
  border: 1px dashed var(--terracotta-deep);
  border-radius: var(--radius-md);
  color: var(--cocoa-soft);
  font-size: 0.94rem;
}
.pricing-note .paw { color: var(--terracotta-deep); width: 22px; height: 22px; flex-shrink: 0; }

/* Add-on services list (services.html) */
.addon-list {
  max-width: 720px;
  margin: 56px auto 0;
  display: grid;
  gap: 14px;
}
.addon-list__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}
.addon-list__row strong { font-family: var(--font-head); font-weight: 600; }
.addon-list__row span { color: var(--terracotta-deep); font-weight: 700; font-family: var(--font-head); white-space: nowrap; }

/* Gallery page — before/after pairs */
.ba-grid {
  display: grid;
  gap: 40px;
}
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: center;
}
.ba-pair__label {
  grid-column: 1 / -1;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--cocoa);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.ba-pair .gallery__item { aspect-ratio: 4 / 3; }
@media (min-width: 720px) {
  .ba-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
}

/* About page */
.about__grid { display: grid; gap: 48px; align-items: center; }
.about__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 40% 60% 55% 45% / 48% 40% 60% 52%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(150deg, var(--teal), var(--terracotta));
  display: flex; align-items: center; justify-content: center;
}
.about__media .photo-placeholder { border-radius: 0; }
.about__content p { color: var(--cocoa-soft); line-height: 1.7; margin-bottom: 16px; }
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.about__stats div {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 10px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about__stats strong { display: block; font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; color: var(--terracotta-deep); }
.about__stats span { display: block; font-size: 0.76rem; color: var(--cocoa-soft); margin-top: 4px; }
@media (min-width: 860px) {
  .about__grid { grid-template-columns: 0.9fr 1.1fr; }
}

/* Home page (website/index.html) — service teaser + work teaser + CTA band spacing */
.home-cta { margin-top: 20px; }
.section .cta-band { margin-top: 8px; }

/* Map placeholder (contact page) */
.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 10;
  background: linear-gradient(150deg, var(--cream-alt), var(--white));
  border: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--cocoa-soft);
  text-align: center;
  padding: 20px;
}
.map-placeholder .paw { width: 30px; height: 30px; color: var(--terracotta-deep); }
.map-placeholder strong { font-family: var(--font-head); font-weight: 600; color: var(--cocoa); }
.map-placeholder small { font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
