/* =============================================================================
   DRIVEWAY CAMPAIGN — Rachael's Mobile Dog Grooming (Nottingham)
   LipLapa-level craft adapted to ONE groomer brand.
   Feel: bold pet-care campaign — coral punch on deep ink, cream paper,
   driveway/van energy. NOT boutique teal/forest, NOT equal service cards,
   NOT Inter, NOT "premium pet care experience."
   Motif: single-brand sites use a normal homepage (sticky nav + Oswald hero
   + dual ticker + how-it-works / why-van / areas snap / FB proof / CTA).
   The full-viewport splash chooser (hover-expand halves) is a LipLapa-only
   multi-brand pattern — two brands = path choice BEFORE the catalogue.
   Unused .splash-* rules below may remain; they are harmless leftovers.
   Palette: Berry #E23D4D · Ink #1A1320 · Cream #F7F1EC · Blush #F3E0E2
            White #FFFBFA · Muted #7A6E74 · Brand-dark #C42F3E
   Fonts: Oswald (display) · Poppins (body) · Sacramento (script motif only)
   Buttons: pill (border-radius: 50px). Dual CTAs: brand fill + outline/ghost.
   ============================================================================= */

:root {
  --brand: #E23D4D;
  --brand-dark: #C42F3E;
  --ink: #1A1320;
  --cream: #F7F1EC;
  --blush: #F3E0E2;
  --white: #FFFBFA;
  --muted: #7A6E74;
  --on-brand: #FFFFFF;
  --line: #E8DED8;
  --ink-soft: rgba(26, 19, 32, 0.06);
  --brand-soft: rgba(226, 61, 77, 0.12);
  --radius-pill: 50px;
  --radius-card: 1.1rem;
  --wrap: min(70rem, calc(100% - 2.5rem));
  --header-h: 4.35rem;
  --font-display: "Oswald", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, sans-serif;
  --font-script: "Sacramento", cursive;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand); }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }
address { font-style: normal; }

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

/* —— Typography —— */
.display,
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--ink);
}

.display em,
h1 em, h2 em {
  font-style: normal;
  color: var(--brand);
  text-transform: none;
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

/* Script motif for accent lines only — "at your door" energy */
.script {
  font-family: var(--font-script);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--brand);
  line-height: 1;
}

.lede {
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  color: var(--muted);
  max-width: 36rem;
  line-height: 1.7;
}

.kicker,
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.85rem;
}

/* —— Buttons (pill) —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.65rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.22s var(--ease), color 0.22s var(--ease),
              border-color 0.22s var(--ease), transform 0.22s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { color: inherit; transform: translateY(-2px); }

.btn-brand {
  background: var(--brand);
  color: var(--on-brand);
  border-color: var(--brand);
}
.btn-brand:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: var(--on-brand);
}

.btn-outline {
  background: transparent;
  border-color: var(--brand);
  color: var(--brand);
}
.btn-outline:hover {
  background: var(--brand);
  color: var(--on-brand);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.btn-ink {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-ink:hover {
  background: #2a2030;
  color: var(--cream);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* —— Sticky nav (inner pages) —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 241, 236, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: var(--wrap);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.wordmark:hover { color: var(--ink); }

.wordmark-mark {
  width: 2.55rem;
  height: 2.55rem;
  flex-shrink: 0;
}

.wordmark-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.wordmark-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.wordmark-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}
.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.82;
}
.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  opacity: 1;
  color: var(--brand);
}

.header-cta {
  display: none;
  margin-left: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
}

.nav-toggle {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  border-radius: 0.5rem;
}
.nav-toggle svg { width: 1.4rem; height: 1.4rem; }

.nav-mobile {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--cream);
  padding: 1rem 0 1.25rem;
}
.nav-mobile.is-open { display: block; }
.nav-mobile nav {
  width: var(--wrap);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.nav-mobile a {
  padding: 0.75rem 0.25rem;
  font-weight: 500;
  font-size: 1.05rem;
}
.nav-mobile .btn { margin-top: 0.5rem; width: 100%; }

@media (min-width: 820px) {
  .nav-desktop { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav-mobile,
  .nav-mobile.is-open { display: none !important; }
}

/* —— Dual ticker (NO prefers-reduced-motion kill — AJ demo rule) —— */
.ticker {
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  gap: 0;
  padding: 0.65rem 0;
  animation: ticker-scroll 38s linear infinite;
}
.ticker-track:nth-child(2) {
  animation-direction: reverse;
  animation-duration: 46s;
  background: rgba(255, 255, 255, 0.03);
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0 1.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.9;
}
.ticker-dot {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* —— Page heroes (inner) —— */
.page-hero,
.about-hero,
.brand-hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.brand-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 85% 20%, rgba(226, 61, 77, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(243, 224, 226, 0.08), transparent 50%);
  pointer-events: none;
}
.brand-hero > * { position: relative; z-index: 1; }
.brand-hero .display,
.page-hero .display,
.about-hero .display {
  color: var(--cream);
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  max-width: 14ch;
}
.brand-hero .lede,
.page-hero .lede,
.about-hero .lede {
  color: rgba(247, 241, 236, 0.72);
  margin-top: 1rem;
}
.brand-hero .eyebrow,
.page-hero .eyebrow,
.about-hero .eyebrow {
  color: var(--brand);
}

.hero-script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--brand);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 0.35rem;
}

/* —— Sections —— */
.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.section-cream { background: var(--cream); }
.section-blush { background: var(--blush); }
.section-ink {
  background: var(--ink);
  color: var(--cream);
}
.section-ink .display,
.section-ink h2,
.section-ink h3 { color: var(--cream); }
.section-ink .lede,
.section-ink p { color: rgba(247, 241, 236, 0.72); }
.section-ink .eyebrow { color: var(--brand); }

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}
.section-head.centre {
  margin-inline: auto;
  text-align: center;
}
.section-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
}
.section-intro {
  color: var(--muted);
  max-width: 36rem;
  margin-top: 0.5rem;
}
.section-head.centre .section-intro { margin-inline: auto; }

/* —— Splash chooser (index) —— */
body.page-splash {
  background: var(--ink);
  color: #fff;
  overflow-x: hidden;
}

.splash-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  padding: 1.1rem 1rem;
  pointer-events: none;
}
.splash-top .wordmark {
  pointer-events: auto;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}
.splash-top .wordmark:hover { color: #fff; }
.splash-top .wordmark-sub { color: rgba(255, 255, 255, 0.7); }
.splash-top .wordmark-mark rect { fill: var(--brand); }

.splash {
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
}

.splash-half {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5.5rem 1.75rem 4.5rem;
  position: relative;
  overflow: hidden;
  transition: flex 0.45s var(--ease);
  color: #fff;
  text-decoration: none;
  min-width: 0;
}
.splash-half:hover {
  flex: 1.32;
  color: #fff;
}
.splash-half::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  transition: background 0.4s ease;
  z-index: 1;
}
.splash-half:hover::after { background: rgba(0, 0, 0, 0.14); }
.splash-half > * { position: relative; z-index: 2; }

/* Photo-like gradient panels (campaign art — no stock photos) */
.splash-book {
  background:
    radial-gradient(ellipse 70% 55% at 30% 40%, rgba(226, 61, 77, 0.55), transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(243, 224, 226, 0.12), transparent 55%),
    linear-gradient(160deg, #1A1320 0%, #2A1520 45%, #3D1A28 100%);
}
.splash-see {
  background:
    radial-gradient(ellipse 65% 50% at 70% 35%, rgba(226, 61, 77, 0.4), transparent 55%),
    radial-gradient(ellipse 45% 45% at 20% 75%, rgba(255, 251, 250, 0.1), transparent 50%),
    linear-gradient(200deg, #2C1824 0%, #1A1320 50%, #4A2030 100%);
}

.splash-art {
  width: min(220px, 55vw);
  height: auto;
  margin-bottom: 1.25rem;
  opacity: 0.95;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
}

.splash-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 0.35rem;
}
.splash-script {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: #fff;
  opacity: 0.95;
  margin-bottom: 0.85rem;
  line-height: 1;
}
.splash-tag {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  max-width: 26ch;
  line-height: 1.5;
}
.splash-enter {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 2px solid #fff;
  color: #fff;
  padding: 0.72rem 1.65rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.25s ease, color 0.25s ease;
}
.splash-half:hover .splash-enter {
  background: #fff;
  color: var(--ink);
}
.splash-book:hover .splash-enter { color: var(--brand); }
.splash-see:hover .splash-enter { color: var(--ink); }

.splash-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  text-align: center;
  padding: 0.7rem 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

@media (max-width: 760px) {
  .splash { flex-direction: column; }
  .splash-half {
    padding: 5.5rem 1.5rem 4rem;
    min-height: 50vh;
    min-height: 50dvh;
  }
  .splash-half:hover { flex: 1; }
  .splash-label { font-size: 2.1rem; }
  .splash-art { width: min(160px, 42vw); }
}

/* —— Steps / how it works —— */
.steps {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 760px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.35rem;
}
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}
.step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.step p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* —— Proof strip —— */
.proof-strip {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 560px) {
  .proof-strip { grid-template-columns: repeat(3, 1fr); }
}
.proof-item {
  text-align: center;
  padding: 1.25rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.04);
}
.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.proof-item span {
  font-size: 0.85rem;
  color: rgba(247, 241, 236, 0.7);
}

/* —— Horizontal snap row (areas / services tease) —— */
.snap-row {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.25rem 0 1rem;
  margin-inline: calc((100% - var(--wrap)) / -2);
  padding-inline: calc((100% - var(--wrap)) / 2);
  scrollbar-width: thin;
}
.snap-card {
  flex: 0 0 auto;
  width: min(72vw, 16rem);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.35rem 1.25rem;
  min-height: 9rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.snap-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, var(--brand-soft), transparent 55%);
  pointer-events: none;
}
.snap-card > * { position: relative; z-index: 1; }
.snap-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}
.snap-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}
.snap-card.ink {
  background: var(--ink);
  border-color: transparent;
  color: var(--cream);
}
.snap-card.ink p { color: rgba(247, 241, 236, 0.7); }
.snap-card.ink h3 { color: var(--cream); }
.snap-card.berry {
  background: var(--brand);
  border-color: transparent;
  color: #fff;
}
.snap-card.berry p { color: rgba(255, 255, 255, 0.85); }
.snap-card.berry h3 { color: #fff; }

.area-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  white-space: nowrap;
}
.areas-list,
.areas-list-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.areas-band {
  padding: 1.25rem 0;
  border-block: 1px solid var(--line);
  background: var(--blush);
}
.areas-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
  text-align: center;
}
.areas-scroll {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  justify-content: flex-start;
  padding-bottom: 0.25rem;
  scroll-snap-type: x mandatory;
}
.areas-scroll .area-chip { scroll-snap-align: start; }
@media (min-width: 820px) {
  .areas-scroll { justify-content: center; flex-wrap: wrap; overflow: visible; }
}

/* —— Credential / story stack —— */
.cred-stack { display: flex; flex-direction: column; }
.cred-block {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.cred-block:last-child { border-bottom: 1px solid var(--line); }
.cred-year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--brand);
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.cred-block h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}
.cred-block p { color: var(--muted); font-size: 0.95rem; }

/* —— Split layouts —— */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 760px) {
  .split { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; }
  .split.reverse { direction: rtl; }
  .split.reverse > * { direction: ltr; }
}

.about-prose p {
  margin-bottom: 1.1rem;
  color: var(--ink);
  max-width: 38rem;
}
.about-prose p:last-child { margin-bottom: 0; }

.van-callout {
  margin-top: 1.75rem;
  padding: 1.35rem 1.4rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-card);
}
.van-callout h3 {
  color: var(--cream);
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}
.van-callout p {
  color: rgba(247, 241, 236, 0.75);
  margin: 0;
  font-size: 0.95rem;
}

/* —— Campaign art panels (CSS/SVG stand-ins for brand photography) —— */
.art-panel {
  aspect-ratio: 4 / 5;
  border-radius: 1.35rem;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse 70% 50% at 40% 30%, rgba(226, 61, 77, 0.45), transparent 60%),
    linear-gradient(165deg, #2A1824, #1A1320 60%, #3D2030);
  box-shadow: 0 28px 50px -28px rgba(26, 19, 32, 0.55);
}
.art-panel.blush {
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(226, 61, 77, 0.22), transparent 55%),
    linear-gradient(180deg, var(--blush), #EAD4D6);
}
.art-panel svg {
  width: min(70%, 200px);
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
}
.art-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}
.art-panel.blush .art-caption { color: var(--ink); opacity: 0.55; }

/* —— Service features (asymmetric, not equal cards) —— */
.service-feature {
  display: grid;
  gap: 1.5rem;
  padding: 2.25rem 0;
  border-top: 1px solid var(--line);
  align-items: center;
}
.service-feature:last-of-type { border-bottom: 1px solid var(--line); }
@media (min-width: 760px) {
  .service-feature {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
  }
  .service-feature:nth-child(even) {
    grid-template-columns: 0.8fr 1.2fr;
  }
  .service-feature:nth-child(even) .service-copy { order: 2; }
  .service-feature:nth-child(even) .service-visual { order: 1; }
}
.service-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 0.65rem;
}
.service-copy p {
  color: var(--muted);
  max-width: 36rem;
}
.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}
.tag {
  display: inline-flex;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--ink-soft);
  color: var(--ink);
}
.tag-brand {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.service-visual .mini-art {
  aspect-ratio: 5 / 4;
  border-radius: 1.1rem;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(226, 61, 77, 0.2), transparent 50%),
    var(--blush);
  border: 1px solid var(--line);
  padding: 1.5rem;
}
.service-visual .mini-art.dark {
  background:
    radial-gradient(circle at 70% 40%, rgba(226, 61, 77, 0.4), transparent 55%),
    var(--ink);
  border-color: transparent;
}
.mini-art svg { width: min(100%, 140px); height: auto; }
.mini-caption {
  margin-top: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}
.mini-art.dark .mini-caption { color: rgba(247, 241, 236, 0.55); }

.pricing-note {
  margin-top: 2.5rem;
  padding: 1.75rem 1.5rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-card);
  display: grid;
  gap: 1.25rem;
  align-items: center;
}
@media (min-width: 760px) {
  .pricing-note { grid-template-columns: 1fr auto; padding: 2rem 2rem; }
}
.pricing-note h3 {
  color: var(--cream);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.pricing-note p {
  color: rgba(247, 241, 236, 0.75);
  font-size: 0.95rem;
  max-width: 42rem;
}
.pricing-note strong { color: #fff; }

/* —— Contact —— */
.contact-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 760px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
}
.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem;
}
.contact-panel h2 {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-list dt {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.2rem;
}
.contact-list dd { font-weight: 500; }
.contact-list a { color: var(--ink); text-decoration: underline; text-underline-offset: 0.15em; }
.contact-list a:hover { color: var(--brand); }
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table th,
.hours-table td {
  text-align: left;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.hours-table th { font-weight: 600; width: 55%; }
.hours-note {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.visually-quiet { color: var(--muted); font-size: 0.92rem; }

/* —— CTA band —— */
.cta-band {
  padding: clamp(3rem, 7vw, 5rem) 0;
  text-align: center;
}
.cta-band .display {
  font-size: clamp(2rem, 5vw, 3.2rem);
  max-width: 16ch;
  margin-inline: auto;
}
.cta-band .lede {
  margin-inline: auto;
  margin-top: 0.85rem;
}
.cta-band .btn-row {
  justify-content: center;
}

/* —— Footer —— */
.site-footer {
  background: var(--ink);
  color: rgba(247, 241, 236, 0.72);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
}
.footer-brand .wordmark { color: var(--cream); margin-bottom: 0.85rem; }
.footer-brand .wordmark-sub { color: rgba(247, 241, 236, 0.55); }
.footer-brand p {
  font-size: 0.92rem;
  max-width: 28ch;
  line-height: 1.55;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.85rem;
}
.footer-col a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.92rem;
  color: rgba(247, 241, 236, 0.7);
}
.footer-col a:hover { color: var(--brand); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  padding-top: 1.25rem;
  font-size: 0.78rem;
  color: rgba(247, 241, 236, 0.45);
}

/* —— Mobile polish (~560 / 760 / 820) —— */
@media (max-width: 819px) {
  .btn-row { justify-content: center; }
  .section-head,
  .page-hero .wrap,
  .about-hero .wrap,
  .brand-hero .wrap,
  .cta-band .wrap {
    text-align: center;
  }
  .section-intro,
  .lede { margin-inline: auto; }
  .brand-hero .display,
  .page-hero .display,
  .about-hero .display { max-width: none; }
  .cred-block {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    text-align: left;
  }
  .split,
  .service-feature { text-align: center; }
  .service-meta,
  .contact-actions { justify-content: center; }
  .about-prose p { margin-inline: auto; }
  .art-panel { max-width: 20rem; margin-inline: auto; }
}

@media (max-width: 560px) {
  :root { --wrap: min(70rem, calc(100% - 1.75rem)); }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .header-inner { gap: 0.5rem; }
  .wordmark-sub { display: none; }
  .splash-enter { width: auto; }
}

/* —— Reveals: respect reduced motion (ticker exempt per AJ rule) —— */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
  .splash-half { transition: none; }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Optional reveal helper for inner pages */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}


/* Real/sample photo in art panel (replaces SVG van motif) */
.art-panel-photo {
  padding: 0;
  overflow: hidden;
  background: #1A1320;
}
.art-panel-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 45%;
}
.art-panel-photo .art-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.55rem 0.75rem;
  background: linear-gradient(transparent, rgba(26,19,32,0.85));
  color: #F7F1EC;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}
.art-panel { position: relative; }
