/* Stephanie's Mobile Dog Grooming - approved preview reconstruction */

:root {
  --canvas: #f8f2ec;
  --canvas-soft: #fdf8f3;
  --ink: #141210;
  --ink-soft: #4a423c;
  --pink: #e5006e;
  --pink-deep: #c00059;
  --blush: #fbd2e2;
  --blush-deep: #f7aecd;
  --blue: #cfe3f6;
  --blue-deep: #b3d3ef;
  --yellow: #fadd8f;
  --yellow-deep: #f3cb60;
  --pink-soft: #f9c3da;
  --pink-soft-deep: #f4a4c6;
  --white: #fffdfb;
  --radius: 14px;
  --shell: 1220px;
  --display: "Cooper Black", "Bookman Old Style", "Sitka Display", "Iowan Old Style", "Palatino Linotype", Georgia, "Times New Roman", serif;
  --body: "Avenir Next", Avenir, "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

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

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

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0;
}

h1 em, h2 em, h3 em { color: var(--pink); font-style: normal; }

p { margin: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: inherit; }

.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.glyph,
svg[class*="accent"],
svg[class*="paw"],
svg[class*="spark"],
svg[class*="heart"],
svg[class*="scissors"],
svg[class*="symbol"],
svg[class*="fleck"] {
  fill: currentColor;
  width: 1em;
  height: 1em;
  flex: none;
}

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 60;
  padding: 12px 18px;
  background: var(--pink);
  color: #fff;
  font-weight: 700;
  border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus { left: 0; }

/* ---------- buttons ---------- */

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 0.97rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.button .glyph { font-size: 1.25rem; }

.button-pink {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 10px 22px -14px rgba(229, 0, 110, 0.85);
}

.button-pink:hover { background: var(--pink-deep); transform: translateY(-2px); }

.button-outline {
  background: var(--white);
  color: var(--pink);
  border: 2px solid var(--pink);
}

.button-outline:hover { background: var(--blush); transform: translateY(-2px); }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 242, 236, 0.94);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.25s ease;
}

.site-header.is-stuck { box-shadow: 0 12px 26px -24px rgba(20, 18, 16, 0.6); }

.header-inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: block;
  flex: none;
  line-height: 0;
  border-radius: 8px;
}

.brand-frame {
  display: block;
  width: 218px;
  aspect-ratio: 90 / 47;
  overflow: hidden;
}

.brand-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
  mix-blend-mode: multiply;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.95rem;
  font-weight: 600;
}

.main-nav a {
  text-decoration: none;
  padding: 6px 2px;
  position: relative;
  transition: color 0.2s ease;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:not(.nav-cta):hover,
.main-nav a.is-current { color: var(--pink); }

.main-nav a.is-current::after,
.main-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }

.nav-cta { display: none; }

.header-cta { flex: none; }

.menu-button {
  display: none;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}

.menu-bars { display: grid; gap: 4px; width: 18px; }

.menu-bars i {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 26px 28px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1.08fr);
  align-items: center;
  column-gap: 40px;
}

.hero-copy { padding-bottom: 40px; }

.hero h1 {
  font-size: clamp(2.55rem, 4.5vw, 4.15rem);
  line-height: 1.03;
  display: grid;
}

.hero h1 em,
.hero h1 span { display: block; }

.hero h1 em:first-child { font-size: 1.08em; }

.hero h1 .line-tight { font-size: 0.85em; }

.hero h1 em:last-child { font-size: 1.02em; }

.location-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  font-size: 0.94rem;
  color: var(--ink-soft);
}

.location-line .glyph { color: var(--pink); font-size: 1.15rem; }

.hero-actions {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.hero-actions .button { min-width: 264px; justify-content: center; }

.hero-art {
  position: relative;
  padding: 18px 10px 0;
  color: var(--pink);
}

.hero-photo {
  position: relative;
  z-index: 2;
  margin: 0;
  aspect-ratio: 5 / 6;
  border-radius: 54% 46% 44% 56% / 48% 44% 56% 52%;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 42%;
  animation: drift 13s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.07) translate3d(0, -12px, 0); }
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(20, 18, 16, 0.06);
}

.hero-swoop {
  position: absolute;
  z-index: 1;
  left: -6px;
  top: 4px;
  width: 74%;
  height: 62%;
  border-left: 2.5px solid var(--pink);
  border-top: 2.5px solid var(--pink);
  border-radius: 60% 0 0 0 / 52% 0 0 0;
}

.hero-accent { position: absolute; z-index: 3; color: var(--pink); }

.accent-spark { font-size: 1.7rem; top: 24px; left: 42%; }

.accent-paw-a { font-size: 2.1rem; top: 52%; right: -6px; transform: rotate(14deg); }

.accent-paw-b { font-size: 1.9rem; bottom: 9%; right: 6%; transform: rotate(-10deg); }

/* ---------- trust ribbon ---------- */

.trust-ribbon {
  grid-column: 1 / -1;
  position: relative;
  z-index: 5;
  margin: -54px 0 0;
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 22px 40px -32px rgba(20, 18, 16, 0.5);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 26px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}

.trust-item + .trust-item { border-left: 1px dashed var(--blush-deep); }

.trust-item .glyph { color: var(--pink); font-size: 2.1rem; }

/* ---------- section heads ---------- */

.section-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.85rem, 3.1vw, 2.75rem);
  line-height: 1.12;
}

.section-head em { position: relative; }

.section-head em::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: -0.16em;
  height: 4px;
  border-radius: 4px;
  background: var(--pink);
  opacity: 0.85;
}

.head-accent {
  flex: none;
  font-size: 2.6rem;
  color: var(--pink);
  transform: rotate(-16deg);
}

/* ---------- services ---------- */

.services {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 78px 28px 0;
}

.service-row {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service { text-align: center; }

.service .blob {
  position: relative;
  aspect-ratio: 1 / 0.92;
  display: grid;
  place-items: center;
  padding: 16px 16px 34px;
  color: var(--ink);
}

.service .blob::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 58% 42% 46% 54% / 52% 56% 44% 48%;
  transition: transform 0.3s ease;
}

.service:nth-child(2) .blob::before { border-radius: 46% 54% 58% 42% / 46% 52% 48% 54%; }
.service:nth-child(3) .blob::before { border-radius: 52% 48% 42% 58% / 56% 46% 54% 44%; }
.service:nth-child(4) .blob::before { border-radius: 44% 56% 52% 48% / 50% 44% 56% 50%; }

.service:hover .blob::before { transform: rotate(-2deg) scale(1.02); }

.service-symbol {
  position: relative;
  z-index: 1;
  font-size: 5.6rem;
  color: var(--ink);
  margin-bottom: 6px;
}

.blob-fleck { position: absolute; z-index: 1; color: var(--ink); opacity: 0.7; }

.fleck-a { font-size: 1.2rem; top: 12%; right: 16%; }

.fleck-b { font-size: 1.1rem; bottom: 24%; left: 14%; }

.service h3 {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  min-width: 76%;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 1.15rem;
  white-space: nowrap;
}

.service p {
  margin: 16px auto 0;
  max-width: 25ch;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.blob-blush .blob::before { background: var(--blush); }
.blob-blush h3 { background: var(--blush-deep); }
.blob-blue .blob::before { background: var(--blue); }
.blob-blue h3 { background: var(--blue-deep); }
.blob-yellow .blob::before { background: var(--yellow); }
.blob-yellow h3 { background: var(--yellow-deep); }
.blob-pink .blob::before { background: var(--pink-soft); }
.blob-pink h3 { background: var(--pink-soft-deep); }

.blob-pink .service-symbol,
.blob-pink .blob-fleck { color: var(--pink-deep); }

.service-note {
  margin: 44px auto 0;
  max-width: 74ch;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 22px;
  border: 1.5px dashed var(--blush-deep);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-align: left;
}

.service-note .glyph { color: var(--pink); font-size: 1.4rem; margin-top: 2px; }

/* ---------- how it works ---------- */

.how {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 84px 28px 0;
}

.section-head.centred { justify-content: center; }

.process-wrap { position: relative; margin-top: 40px; }

.process-path {
  position: absolute;
  inset: 8px 8% auto;
  height: 140px;
  color: var(--pink);
  pointer-events: none;
}

.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.process li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process li:nth-child(2) { margin-top: 22px; }
.process li:nth-child(3) { margin-top: 44px; }

.step-badge {
  position: absolute;
  top: -6px;
  left: calc(50% - 62px);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-family: var(--display);
  font-size: 1rem;
}

.step-disc {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--pink);
  box-shadow: 0 16px 30px -22px rgba(20, 18, 16, 0.55);
  transition: transform 0.25s ease;
}

.process li:hover .step-disc { transform: translateY(-3px); }

.step-disc .glyph { font-size: 2.5rem; }

.process h3 { margin-top: 16px; font-size: 1.18rem; line-height: 1.15; }

.process p {
  margin-top: 8px;
  max-width: 26ch;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* ---------- recent grooms ---------- */

.grooms {
  margin-top: 84px;
  padding-top: 8px;
  overflow: hidden;
}

.grooms-head {
  position: relative;
  z-index: 2;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.grooms-head h2 { font-size: clamp(2rem, 3.4vw, 3rem); }

.grooms-paw { font-size: 2.1rem; color: var(--pink); transform: rotate(-18deg); }

.grooms-spark { font-size: 1.4rem; color: var(--pink); }

.grooms-hint {
  margin-left: auto;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.photo-river {
  position: relative;
  margin: -14px -3vw 0;
  padding: 16px 0;
  width: 106vw;
  background: var(--white);
  border-top: 2px solid var(--blush-deep);
  border-bottom: 2px solid var(--blush-deep);
  transform: rotate(-1.4deg);
  overflow: hidden;
}

.photo-track {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  cursor: grab;
  touch-action: pan-y;
  will-change: transform;
}

.photo-track:focus-visible { outline-offset: -4px; }

.photo-track.is-dragging { cursor: grabbing; }

.photo-track li {
  position: relative;
  flex: none;
  width: 178px;
}

.photo-track li:nth-child(odd) { transform: rotate(-1.6deg); }
.photo-track li:nth-child(even) { transform: rotate(1.4deg); }
.photo-track li:nth-child(3n) { transform: rotate(0.6deg) translateY(4px); }

.photo-track li:nth-child(5n + 1)::before {
  content: "";
  position: absolute;
  inset: 10px -12px -6px 12px;
  background: var(--blush);
  border-radius: 10px;
  transform: rotate(4deg);
}

.photo-track img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  background: var(--blush);
  pointer-events: none;
}

/* before/after photographs are square compositions and must stay whole */

.photo-track li.comparison-card { width: 248px; }

.photo-track li.comparison-card::before { content: none; }

.photo-track li.comparison-card img { aspect-ratio: 1 / 1; }

/* ---------- story and proof ---------- */

.story {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 74px 28px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.98fr) minmax(0, 0.62fr);
  align-items: center;
  gap: 34px;
}

.story-photo {
  position: relative;
  margin: 0;
}

.story-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 54%;
  border-radius: 40px 18px 40px 18px;
}

.story-heart {
  position: absolute;
  left: -10px;
  bottom: -18px;
  font-size: 2.2rem;
  color: var(--yellow-deep);
  transform: rotate(-12deg);
}

.story-copy h2 { font-size: clamp(1.7rem, 2.7vw, 2.4rem); line-height: 1.14; }

.story-copy > p {
  margin-top: 16px;
  max-width: 40ch;
  font-size: 0.94rem;
  color: var(--ink-soft);
}

.story-extras {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.story-extras li {
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--blue);
  font-size: 0.82rem;
  font-weight: 600;
}

.story-extras li:nth-child(2) { background: var(--blush); }
.story-extras li:nth-child(3) { background: var(--yellow); }

.review-ticket {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 42px 22px 34px;
  text-align: center;
  text-decoration: none;
  transform: rotate(1.6deg);
  transition: transform 0.25s ease;
}

.review-ticket::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--white);
  clip-path: polygon(
    0 10px, 12.5% 0, 25% 10px, 37.5% 0, 50% 10px, 62.5% 0, 75% 10px, 87.5% 0, 100% 10px,
    100% calc(100% - 10px), 87.5% 100%, 75% calc(100% - 10px), 62.5% 100%, 50% calc(100% - 10px),
    37.5% 100%, 25% calc(100% - 10px), 12.5% 100%, 0 calc(100% - 10px)
  );
}

.review-ticket > * { position: relative; z-index: 1; }

.review-ticket:hover { transform: rotate(1.6deg) translateY(-3px); }

.ticket-badge {
  position: absolute;
  top: -26px;
  right: -18px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1877f2;
  color: #fff;
  border: 3px solid var(--canvas);
}

.ticket-badge .glyph { font-size: 2.6rem; }

.review-ticket strong {
  font-family: var(--display);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--pink);
}

.review-ticket strong small { font-size: 0.46em; }

.ticket-line { font-family: var(--display); font-size: 1.08rem; line-height: 1.2; }

.ticket-meta { font-size: 0.78rem; color: var(--ink-soft); }

.ticket-cta {
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--pink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ticket-paw {
  position: absolute;
  right: -22px;
  bottom: -14px;
  font-size: 1.5rem;
  color: var(--blue-deep);
  transform: rotate(12deg);
}

/* ---------- contact ---------- */

.contact {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 78px 28px 60px;
}

.contact-row {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.contact-row li + li { border-left: 1px dashed var(--blush-deep); }

.contact-row a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 10px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.contact-row a:hover { background: var(--canvas-soft); transform: translateY(-2px); }

.contact-disc {
  flex: none;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
}

.contact-disc .glyph { font-size: 1.4rem; }

.contact-text { display: grid; }

.contact-text strong { color: var(--pink); font-size: 0.92rem; }

.contact-text small { font-size: 0.82rem; color: var(--ink-soft); }

/* ---------- footer ---------- */

.site-footer {
  border-top: 2px solid var(--blush-deep);
  background: var(--canvas-soft);
  padding: 22px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 22px;
}

.footer-brand { line-height: 0; border-radius: 8px; }

.footer-brand .brand-frame { width: 196px; }

.footer-serving {
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.25;
  text-align: center;
}

.footer-heart { font-size: 1.2rem; color: var(--pink); }

.footer-paws { display: inline-flex; gap: 8px; color: rgba(20, 18, 16, 0.22); }

.footer-paws svg { width: 1.5rem; height: 1.5rem; fill: currentColor; }

.footer-paws svg:last-child { width: 1.1rem; height: 1.1rem; align-self: flex-end; }

.footer-scissors { font-size: 2.2rem; color: var(--pink); transform: rotate(-14deg); }

.footer-copy {
  grid-column: 1 / -1;
  font-size: 0.74rem;
  color: var(--ink-soft);
}

/* ---------- reveal ---------- */

html.js .reveal {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
  .brand-frame { width: 176px; }
  .main-nav { gap: 20px; font-size: 0.9rem; }
  .header-inner { gap: 16px; padding: 12px 20px; }
  .service-symbol { font-size: 4.4rem; }
  .story { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .review-ticket { grid-column: 1 / -1; justify-self: center; margin-top: 12px; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 84px; }

  .header-inner { padding: 10px 18px; }

  .brand-frame { width: 168px; }

  .menu-button { display: inline-flex; }

  .header-cta { display: none; }

  .main-nav {
    position: fixed;
    inset: 72px 12px auto;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px;
    background: var(--white);
    border: 2px solid var(--blush-deep);
    border-radius: 18px;
    box-shadow: 0 30px 60px -34px rgba(20, 18, 16, 0.6);
    font-size: 1.02rem;
    display: none;
  }

  .main-nav.is-open { display: flex; }

  .main-nav a:not(.nav-cta) {
    padding: 13px 8px;
    border-bottom: 1px dashed var(--blush);
  }

  .main-nav a:not(.nav-cta)::after { display: none; }

  .nav-cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 12px;
  }

  .hero {
    padding: 18px 18px 0;
    grid-template-columns: minmax(0, 1fr);
    row-gap: 0;
  }

  .hero-copy { order: 1; padding-bottom: 22px; }

  .hero-art { order: 2; padding: 0 6px; }

  .trust-ribbon { order: 3; }

  .hero h1 { font-size: clamp(2.3rem, 9.4vw, 3.2rem); }

  .hero-actions { flex-direction: row; flex-wrap: wrap; }

  .hero-actions .button { min-width: 0; flex: 1 1 100%; }

  .hero-photo { aspect-ratio: 1 / 1; }

  .accent-paw-a { right: 2px; }

  .trust-ribbon {
    margin-top: -30px;
    grid-template-columns: minmax(0, 1fr);
  }

  .trust-item { padding: 14px 18px; }

  .trust-item + .trust-item {
    border-left: 0;
    border-top: 1px dashed var(--blush-deep);
  }

  .services { padding: 56px 18px 0; }

  .section-head { gap: 12px; flex-wrap: wrap; }

  .head-accent { font-size: 2rem; }

  .service-row {
    margin-top: 34px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }

  .service-symbol { font-size: 3.6rem; }

  .service h3 { font-size: 0.98rem; padding: 7px 12px; min-width: 84%; }

  .service p { font-size: 0.83rem; margin-top: 12px; }

  .service-note { margin-top: 30px; }

  .how { padding: 60px 18px 0; }

  .process-path { display: none; }

  .process {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    text-align: left;
  }

  .process li {
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
    margin: 0;
    padding: 18px 0 26px 0;
    display: grid;
    grid-template-columns: 76px 1fr;
  }

  .process li:nth-child(2),
  .process li:nth-child(3) { margin-top: 0; }

  .process li::before {
    content: "";
    position: absolute;
    left: 37px;
    top: 84px;
    bottom: 2px;
    border-left: 3px dashed var(--pink);
  }

  .process li:last-child::before { display: none; }

  .step-badge { top: 8px; left: 58px; width: 28px; height: 28px; font-size: 0.85rem; }

  .step-disc { width: 76px; height: 76px; grid-row: span 2; }

  .step-disc .glyph { font-size: 2rem; }

  .process h3 { margin-top: 4px; }

  .process h3 br { display: none; }

  .process p { max-width: none; }

  .grooms { margin-top: 60px; }

  .grooms-head { padding: 0 18px; flex-wrap: wrap; gap: 10px; }

  .grooms-hint { margin-left: 0; flex-basis: 100%; }

  .photo-river { margin: 10px -4vw 0; width: 108vw; }

  .photo-track li { width: 148px; }

  .photo-track li.comparison-card { width: 212px; }

  .story {
    padding: 56px 18px 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }

  .story-photo img { border-radius: 28px 14px 28px 14px; }

  .review-ticket { margin-top: 4px; }

  .contact { padding: 56px 18px 44px; }

  .contact-row {
    margin-top: 24px;
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }

  .contact-row li + li {
    border-left: 0;
    border-top: 1px dashed var(--blush-deep);
  }

  .contact-row a { padding: 12px 6px; }

  .site-footer {
    grid-template-columns: auto 1fr;
    gap: 14px 16px;
    padding: 20px 18px;
  }

  .footer-brand .brand-frame { width: 148px; }

  .footer-serving { text-align: left; font-size: 0.95rem; }

  .footer-heart { display: none; }

  .footer-paws { grid-column: 1; }

  .footer-scissors { grid-column: 2; justify-self: end; }
}

@media (max-width: 420px) {
  .brand-frame { width: 142px; }
  .menu-button { padding: 10px 14px; }
  .menu-word {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    white-space: nowrap;
    clip-path: inset(50%);
  }
  .menu-button { min-width: 46px; justify-content: center; }
  .hero h1 { font-size: 2.25rem; }
  .hero-actions .button { padding: 12px 18px; font-size: 0.92rem; }
  .service-symbol { font-size: 3rem; }
  .service h3 { font-size: 0.9rem; }
  .review-ticket strong { font-size: 2.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  html.js .reveal { opacity: 1; transform: none; }

  .hero-photo img { animation: none; transform: scale(1.04); }
}

@media (forced-colors: active) {
  .service .blob::before,
  .review-ticket::before { forced-color-adjust: none; }
  .button-pink,
  .contact-disc,
  .step-disc { border: 1px solid currentColor; }
}
