/* ==========================================================================
   Wag & Wash Pet Grooming Spa — site.css
   One stylesheet for all ten pages. Nothing is styled inside a page.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* brand */
  --coral: #F0654F;        /* bright brand coral — backgrounds only, ink text on it */
  --coral-btn: #C9412E;    /* button coral — white text passes 4.5:1 */
  --coral-deep: #A63A2B;   /* coral for text/links on light backgrounds */
  --coral-soft: #FCE3DC;
  --mint: #CDEFE3;
  --mint-soft: #E6F7F1;
  --mint-deep: #1E6A57;    /* mint for text, and as a dark band with white text */
  --yellow: #FFD166;
  --yellow-soft: #FFF0C2;
  /* neutrals */
  --ink: #23212B;
  --ink-soft: #4A4753;
  --cream: #FFF8F3;
  --white: #FFFFFF;
  --line: rgba(35, 33, 43, .14);
  /* type */
  --font: ui-rounded, "SF Pro Rounded", "Nunito", "Quicksand", "Varela Round", "Segoe UI", system-ui, -apple-system, sans-serif;
  --fs-body: 1.0625rem;
  --fs-lead: clamp(1.15rem, 1rem + .6vw, 1.4rem);
  --fs-h1: clamp(2.25rem, 1.4rem + 3.8vw, 4.25rem);
  --fs-h2: clamp(1.8rem, 1.3rem + 1.9vw, 2.9rem);
  --fs-h3: clamp(1.2rem, 1.1rem + .4vw, 1.45rem);
  --fs-small: .9375rem;
  /* shape */
  --r-sm: 14px;
  --r: 26px;
  --r-lg: 44px;
  --r-pill: 999px;
  --blob: 58% 42% 55% 45% / 48% 55% 45% 52%;
  --blob-2: 42% 58% 47% 53% / 55% 44% 56% 45%;
  /* space */
  --s-1: .25rem; --s-2: .5rem; --s-3: .75rem; --s-4: 1rem; --s-5: 1.5rem;
  --s-6: 2rem; --s-7: 3rem; --s-8: 4rem; --s-9: 6rem;
  --band-y: clamp(3.25rem, 4vw + 2rem, 6.5rem);
  /* layout */
  --wrap: 1180px;
  --wrap-narrow: 760px;
  --measure: 62ch;
  --shadow: 0 14px 34px -16px rgba(35, 33, 43, .22);
  --shadow-sm: 0 6px 18px -10px rgba(35, 33, 43, .2);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --dur: 220ms;
  --header-h: 76px;
}

/* ---------- 2. Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); }
html, body { overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; display: block; }
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -.015em; margin: 0 0 var(--s-4); font-weight: 800; text-wrap: balance; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.25; }
h4 { font-size: 1.1rem; }
p, ul, ol, dl, blockquote, address, table { margin: 0 0 var(--s-4); }
p:last-child, ul:last-child, dl:last-child { margin-bottom: 0; }
address { font-style: normal; }
a { color: var(--coral-deep); text-decoration: underline; text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { text-decoration-thickness: .16em; }
strong { font-weight: 800; }
small { font-size: var(--fs-small); }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--yellow); color: var(--ink); }

/* focus — every focusable element shows it */
:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; border-radius: var(--r-sm); }
.band--ink :focus-visible, .band--mint-deep :focus-visible, .site-footer :focus-visible { outline-color: var(--yellow); }

/* ---------- 3. Layout utilities ---------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }
.measure { max-width: var(--measure); }
.center { text-align: center; }
.center .measure { margin-inline: auto; }
.lead { font-size: var(--fs-lead); line-height: 1.45; font-weight: 600; }
.muted { color: var(--ink-soft); }
.stack > * + * { margin-top: var(--s-4); }
.stack--lg > * + * { margin-top: var(--s-6); }
.cluster { display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-4); align-items: center; }
.cluster--center { justify-content: center; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: var(--s-4); top: -100px; z-index: 100;
  background: var(--ink); color: var(--cream); padding: var(--s-3) var(--s-5); border-radius: var(--r-pill);
}
.skip-link:focus { top: var(--s-4); }

.grid { display: grid; gap: var(--s-5); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }

.split { display: grid; gap: var(--s-7); align-items: center; }
@media (min-width: 820px) {
  .split { grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); }
  .split--wide-copy { grid-template-columns: 1.15fr .85fr; }
  .split--reverse > :first-child { order: 2; }
}

/* ---------- 4. Bands (page sections) ---------- */
.band { position: relative; padding-block: var(--band-y); }
.band--cream { background: var(--cream); color: var(--ink); }
.band--white { background: var(--white); color: var(--ink); }
.band--mint { background: var(--mint); color: var(--ink); }
.band--mint-soft { background: var(--mint-soft); color: var(--ink); }
.band--coral { background: var(--coral); color: var(--ink); }
.band--yellow { background: var(--yellow); color: var(--ink); }
.band--ink { background: var(--ink); color: var(--cream); }
.band--mint-deep { background: var(--mint-deep); color: var(--white); }

/* A block with its own background sets its own text colour and nothing outranks it there. */
.band--coral :is(h1, h2, h3, h4, p, li, dt, dd, blockquote, cite, small, span, strong, a, address):not(.btn),
.band--yellow :is(h1, h2, h3, h4, p, li, dt, dd, blockquote, cite, small, span, strong, a, address):not(.btn),
.band--mint :is(h1, h2, h3, h4, p, li, dt, dd, blockquote, cite, small, span, strong, address):not(.btn) { color: var(--ink); }
.band--coral a:not(.btn), .band--yellow a:not(.btn) { color: var(--ink); text-decoration-color: var(--ink); }
.band--mint a:not(.btn) { color: var(--coral-deep); }
.band--ink :is(h1, h2, h3, h4, p, li, dt, dd, blockquote, cite, small, span, strong, a, address):not(.btn) { color: var(--cream); }
.band--mint-deep :is(h1, h2, h3, h4, p, li, dt, dd, blockquote, cite, small, span, strong, a, address):not(.btn) { color: var(--white); }
.band--ink .muted, .band--mint-deep .muted { color: inherit; opacity: .82; }

/* Scooped top edge — the band curves up over the one before it */
.band--scoop { border-radius: clamp(1.75rem, 5vw, 3.5rem) clamp(1.75rem, 5vw, 3.5rem) 0 0; margin-top: calc(-1 * clamp(1.75rem, 5vw, 3.5rem)); padding-top: calc(var(--band-y) + 1rem); }
.band--scoop-bottom { border-radius: 0 0 clamp(1.75rem, 5vw, 3.5rem) clamp(1.75rem, 5vw, 3.5rem); z-index: 1; }

/* decorative blob behind a band's corner */
.band--deco { overflow: hidden; }
.band--deco::before {
  content: ""; position: absolute; width: 38vmax; height: 38vmax; right: -14vmax; top: -16vmax;
  border-radius: var(--blob); background: rgba(255, 255, 255, .28); pointer-events: none;
}
.band--deco.band--cream::before { background: var(--mint-soft); }
.band--deco > .wrap, .band--deco > .wrap--narrow { position: relative; }

.section__head { max-width: var(--measure); margin-bottom: clamp(1.75rem, 3vw, 3rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head p { font-size: var(--fs-lead); font-weight: 500; line-height: 1.45; }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  min-height: 50px; padding: .8rem 1.6rem; border-radius: var(--r-pill);
  font-weight: 800; font-size: 1rem; line-height: 1.2; text-decoration: none; cursor: pointer;
  border: 2px solid transparent; transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--coral-btn); color: var(--white); border-color: var(--coral-btn); }
.btn--primary:hover { background: var(--coral-deep); border-color: var(--coral-deep); color: var(--white); }
.btn--secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--secondary:hover { background: var(--ink); color: var(--cream); }
.btn--mint { background: var(--mint-deep); color: var(--white); border-color: var(--mint-deep); }
.btn--mint:hover { background: #17533f; border-color: #17533f; color: var(--white); }
.btn--ink { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--ink:hover { background: #100f15; color: var(--cream); }
.btn--light { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--light:hover { background: var(--cream); color: var(--ink); }
.btn--yellow { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.btn--yellow:hover { background: #ffc94d; color: var(--ink); }
.btn--sm { min-height: 44px; padding: .55rem 1.1rem; font-size: .95rem; }
.btn--lg { min-height: 56px; padding: 1rem 2rem; font-size: 1.08rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-4); align-items: center; }
.btn-row--center { justify-content: center; }
/* buttons inside coloured bands never lose contrast */
.band--coral .btn--primary, .band--yellow .btn--primary { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.band--coral .btn--secondary, .band--yellow .btn--secondary { color: var(--ink); border-color: var(--ink); }
.band--ink .btn--secondary, .band--mint-deep .btn--secondary { color: var(--cream); border-color: var(--cream); }
.band--ink .btn--secondary:hover, .band--mint-deep .btn--secondary:hover { background: var(--cream); color: var(--ink); }

/* ---------- 6. Header, brand, nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 248, 243, .92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); min-height: var(--header-h); position: relative; }

.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); min-height: 44px; }
.brand__mark {
  position: relative; flex: none; width: 42px; height: 42px; border-radius: var(--blob); background: var(--mint);
}
.brand__mark::before {
  content: ""; position: absolute; inset: 9px 7px 7px 11px; border-radius: var(--blob-2); background: var(--coral);
}
.brand__mark::after {
  content: ""; position: absolute; width: 11px; height: 11px; border-radius: 50%; background: var(--yellow); right: 4px; top: 5px;
}
.brand__name { display: block; font-weight: 900; font-size: 1.35rem; line-height: 1; letter-spacing: -.02em; }
.brand__name .amp { color: var(--coral-deep); }
.brand__tag { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-top: .3rem; }
.site-footer .brand__tag { color: inherit; opacity: .8; }

.nav-check { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.nav-btn {
  display: inline-flex; align-items: center; gap: .5rem; min-height: 44px; padding: 0 1.1rem;
  border: 2px solid var(--ink); border-radius: var(--r-pill); font-weight: 800; cursor: pointer; background: var(--white);
}
.nav-btn::before { content: ""; width: 18px; height: 2px; background: currentColor; box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor; border-radius: 2px; }
.nav-check:checked ~ .nav-btn::before { box-shadow: none; transform: rotate(45deg); }
.nav-check:focus-visible ~ .nav-btn { outline: 3px solid var(--ink); outline-offset: 3px; }
.nav { display: none; }
.nav-check:checked ~ .nav {
  display: block; position: absolute; left: 0; right: 0; top: calc(100% + .5rem);
  background: var(--white); border-radius: var(--r); box-shadow: var(--shadow); padding: var(--s-3);
}
.nav__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.nav__link {
  display: flex; align-items: center; min-height: 46px; padding: .5rem 1rem; border-radius: var(--r-pill);
  font-weight: 700; color: var(--ink); text-decoration: none; transition: background-color var(--dur) var(--ease);
}
.nav__link:hover { background: var(--mint-soft); }
.nav__link[aria-current="page"] { background: var(--mint); }
.nav__link--cta { background: var(--coral-btn); color: var(--white); justify-content: center; margin-top: var(--s-2); }
.nav__link--cta:hover { background: var(--coral-deep); }
/* The CTA keeps its own coral even when it is also the current page — `[aria-current="page"]`
   alone (spec 0,2,0) beats `.nav__link--cta` (0,1,0) and leaves white CTA text on pale mint,
   1.23:1. This rule (0,3,0) wins without touching the semantics: `aria-current="page"` stays on
   the link for assistive tech, it just no longer changes how the CTA looks. */
.nav__link--cta[aria-current="page"] { background: var(--coral-btn); color: var(--white); }
.nav__link--cta[aria-current="page"]:hover { background: var(--coral-deep); }
@media (min-width: 1000px) {
  .nav-btn { display: none; }
  .nav, .nav-check:checked ~ .nav { display: block; position: static; background: none; box-shadow: none; padding: 0; }
  .nav__list { flex-direction: row; align-items: center; gap: 2px; }
  .nav__link { min-height: 44px; padding: .4rem .85rem; font-size: .95rem; }
  .nav__link--cta { margin: 0 0 0 .5rem; padding-inline: 1.1rem; }
}

/* ---------- 7. Hero (home) and page headers (inner pages) ---------- */
.hero { padding-block: clamp(2.5rem, 5vw, 5.5rem) clamp(3.5rem, 6vw, 7rem); }
.hero__grid { display: grid; gap: var(--s-7); align-items: center; }
@media (min-width: 880px) { .hero__grid { grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 5vw, 5rem); } }
.hero__copy > * { animation: rise .7s var(--ease) both; }
.hero__copy > :nth-child(2) { animation-delay: .08s; }
.hero__copy > :nth-child(3) { animation-delay: .16s; }
.hero__copy > :nth-child(4) { animation-delay: .24s; }
.hero__copy > :nth-child(5) { animation-delay: .32s; }
.hero__copy h1 { margin-bottom: var(--s-4); }
.hero__copy .lead { color: var(--coral-deep); margin-bottom: var(--s-4); }
.hero__copy .btn-row { margin-top: var(--s-6); }
.hero__note { margin-top: var(--s-6); }
.hero__photo { animation: rise .9s var(--ease) both; animation-delay: .2s; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.page-header { padding-block: clamp(2.5rem, 5vw, 5rem); background: var(--mint-soft); }
.page-header--coral { background: var(--coral-soft); }
.page-header--yellow { background: var(--yellow-soft); }
.page-header h1 { margin-bottom: var(--s-3); }
.page-header .lead { color: var(--ink-soft); max-width: var(--measure); }
.page-header .btn-row { margin-top: var(--s-5); }
.page-header__grid { display: grid; gap: var(--s-6); align-items: center; }
@media (min-width: 820px) { .page-header__grid { grid-template-columns: 1.2fr .8fr; } }

/* ---------- 8. Photos and placeholders ---------- */
.photo { position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--mint); aspect-ratio: 4 / 5; }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo--wide { aspect-ratio: 16 / 10; }
.photo--square { aspect-ratio: 1; }
.photo--tall { aspect-ratio: 3 / 4; }
.photo--blob { border-radius: var(--blob); }
.photo--blob-2 { border-radius: var(--blob-2); }
.photo--card { border-radius: var(--r); }

/* organic frame: mint blob behind, yellow dot in front */
.photo-frame { position: relative; isolation: isolate; padding: 6%; }
.photo-frame::before {
  content: ""; position: absolute; z-index: -1; inset: 0 4% 8% -2%;
  border-radius: var(--blob-2); background: var(--mint); transform: rotate(-6deg);
}
.photo-frame::after {
  content: ""; position: absolute; width: clamp(34px, 9%, 64px); aspect-ratio: 1; border-radius: 50%;
  background: var(--yellow); right: 2%; bottom: 3%;
}
.photo-frame--coral::before { background: var(--coral-soft); }
.photo-frame--yellow::before { background: var(--yellow-soft); }
.photo-frame--yellow::after { background: var(--coral); }
.photo-frame > .photo { position: relative; z-index: 1; }

/* awaiting a real photograph — reads as a stand-in, never a broken image, never decoration */
.placeholder {
  aspect-ratio: 4 / 3; border-radius: var(--r); border: 2px dashed rgba(35, 33, 43, .3);
  background: repeating-linear-gradient(135deg, rgba(35, 33, 43, .045) 0 12px, transparent 12px 24px), var(--mint-soft);
  display: grid; place-items: center; color: var(--ink-soft); font-weight: 700; font-size: var(--fs-small);
}
.placeholder::after { content: "Photo to come"; }
.placeholder--wide { aspect-ratio: 16 / 9; }
.placeholder--square { aspect-ratio: 1; }
.placeholder--tall { aspect-ratio: 4 / 5; }

/* ---------- 9. Cards ---------- */
.card {
  position: relative; background: var(--white); color: var(--ink); border-radius: var(--r); padding: clamp(1.4rem, 2.5vw, 2rem);
  box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex; flex-direction: column; gap: var(--s-3);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card > * { margin: 0; }
.card__title { font-size: var(--fs-h3); margin: 0; }
.card__text { color: var(--ink-soft); }
.card__text a { color: var(--coral-deep); }
.card__foot { margin-top: auto; padding-top: var(--s-2); }
.card--tint-coral { background: var(--coral-soft); }
.card--tint-mint { background: var(--mint-soft); }
.card--tint-yellow { background: var(--yellow-soft); }
.card--flat { box-shadow: none; border: 1px solid var(--line); }
.card--flat:hover { transform: none; box-shadow: none; }
/* small blob accent in the corner — the mark that says "which card" without a paw print */
.card--dot::before {
  content: ""; position: absolute; top: 1.1rem; right: 1.1rem; width: 18px; height: 18px; border-radius: var(--blob); background: var(--coral);
}
.card--dot-mint::before { background: var(--mint-deep); }
.card--dot-yellow::before { background: var(--yellow); }
.card--photo { padding: 0; overflow: hidden; }
.card--photo .photo { border-radius: 0; aspect-ratio: 4 / 3; }
.card--photo .card__body { padding: clamp(1.2rem, 2vw, 1.75rem); display: flex; flex-direction: column; gap: var(--s-3); }

/* price inside a title stays part of the sentence, just coloured */
.price { color: var(--coral-deep); white-space: nowrap; font-weight: 800; }
.band--coral .price, .band--yellow .price { color: var(--ink); }
.band--ink .price, .band--mint-deep .price { color: var(--yellow); }

/* feature list: heading + paragraph blocks, with a coloured rule */
.features { display: grid; gap: var(--s-6); }
.feature { padding-left: 1.25rem; border-left: 5px solid var(--coral); }
.feature:nth-child(2) { border-color: var(--mint-deep); }
.feature:nth-child(3) { border-color: var(--yellow); }
.feature h3 { margin-bottom: var(--s-2); }
.feature p { color: var(--ink-soft); }

/* ---------- 10. Callouts, notes, tickets ---------- */
.ticket {
  display: inline-block; background: var(--yellow); color: var(--ink); border-radius: var(--r-sm);
  padding: .8rem 1.1rem; font-weight: 700; line-height: 1.4;
  border-left: 8px solid var(--coral);
}
.ticket a { color: var(--ink); }
.note {
  background: var(--mint-soft); color: var(--ink); border-radius: var(--r); padding: var(--s-5) var(--s-6);
  border-left: 8px solid var(--mint-deep);
}
.note--coral { background: var(--coral-soft); border-left-color: var(--coral-btn); }
.note--yellow { background: var(--yellow-soft); border-left-color: var(--yellow); }
.note p { margin: 0; }
.note p + p { margin-top: var(--s-3); }

/* ---------- 11. Quotes / testimonials ---------- */
.quote { margin: 0; }
.quote p { font-size: clamp(1.2rem, 1rem + .9vw, 1.6rem); line-height: 1.4; font-weight: 700; letter-spacing: -.01em; }
.quote cite { display: block; margin-top: var(--s-4); font-style: normal; font-weight: 800; font-size: 1rem; }
.quote--card { background: var(--white); border-radius: var(--r); padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: var(--shadow-sm); }
.band--coral .quote--card, .band--yellow .quote--card { background: rgba(255, 255, 255, .55); box-shadow: none; }
.quote--inline { border-left: 5px solid var(--coral); padding-left: 1.1rem; }
.quote--inline p { font-size: 1.15rem; }

/* ---------- 12. Info blocks (address, hours, areas) ---------- */
.info { display: grid; gap: var(--s-2) var(--s-6); margin: 0; }
.info dt { font-weight: 800; }
.info dd { margin: 0 0 var(--s-3); }
.info--cols { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: .65rem 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.hours td:last-child { text-align: right; white-space: nowrap; font-weight: 700; }
.band--ink .hours td, .band--mint-deep .hours td { border-color: rgba(255, 255, 255, .22); }
.hours tr:last-child td { border-bottom: 0; }
.plain-list { list-style: none; padding: 0; margin: 0; }
.plain-list li + li { margin-top: var(--s-2); }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 1.6rem; }
.check-list li + li { margin-top: var(--s-2); }
.check-list li::before { content: ""; position: absolute; left: 0; top: .5em; width: .85rem; height: .85rem; border-radius: var(--blob); background: var(--mint-deep); }

/* ---------- 13. Pricing ---------- */
.price-list { display: grid; gap: var(--s-4); }
.price-row {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: var(--s-2) var(--s-6); align-items: start;
  background: var(--white); border-radius: var(--r); padding: var(--s-5) var(--s-6); box-shadow: var(--shadow-sm);
}
.price-row__name { grid-column: 1; margin: 0; font-size: 1.2rem; }
.price-row__desc { grid-column: 1; color: var(--ink-soft); margin: 0; }
.price-row__price { grid-column: 2; grid-row: 1 / span 2; font-weight: 900; font-size: 1.3rem; color: var(--coral-deep); white-space: nowrap; align-self: start; }
.price-row--simple { grid-template-columns: minmax(0, 1fr) auto; padding: var(--s-4) var(--s-5); }
.price-row--simple .price-row__price { grid-row: 1; }

/* ---------- 14. Shop / products ---------- */
.product-grid { display: grid; gap: var(--s-5); grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.product { display: flex; flex-direction: column; gap: var(--s-3); }
.product__head { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s-2) var(--s-4); align-items: baseline; }
.product__head h3 { flex: 1 1 14ch; margin: 0; }
.product__price { font-weight: 900; font-size: 1.35rem; color: var(--coral-deep); white-space: nowrap; }
.product__sub { font-weight: 700; }
.product__text { color: var(--ink-soft); }
.product .btn { align-self: flex-start; margin-top: auto; }
.badge { display: inline-block; padding: .3rem .7rem; border-radius: var(--r-pill); background: var(--mint); color: var(--ink); font-size: .8rem; font-weight: 800; letter-spacing: .04em; }
.badge--yellow { background: var(--yellow); }
.badge--coral { background: var(--coral); }

/* ---------- 15. Gallery ---------- */
.gallery { display: grid; gap: var(--s-4); grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); }
.gallery figure { margin: 0; }
.gallery .photo { aspect-ratio: 1; border-radius: var(--r); }
.gallery figure:nth-child(4n + 1) .photo { border-radius: var(--blob); }
.gallery figure:nth-child(4n + 3) .photo { border-radius: var(--blob-2); }
.gallery figcaption { margin-top: var(--s-2); font-size: var(--fs-small); color: var(--ink-soft); }
.gallery--strip { grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }
.gallery--strip .photo { aspect-ratio: 4 / 5; }

/* ---------- 16. FAQ accordion ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: var(--s-4);
  min-height: 56px; padding: var(--s-4) 0; font-weight: 800; font-size: 1.1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--mint);
  background-image: linear-gradient(var(--ink), var(--ink)), linear-gradient(var(--ink), var(--ink));
  background-size: 14px 2px, 2px 14px; background-position: center; background-repeat: no-repeat;
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.faq details[open] summary::after { background-color: var(--coral); background-size: 14px 2px, 0 0; }
.faq details > :not(summary) { padding-bottom: var(--s-5); max-width: var(--measure); color: var(--ink-soft); }
.faq h2 { margin-top: var(--s-7); }
.faq h2:first-child { margin-top: 0; }

/* ---------- 17. Prose / article (about, blog) ---------- */
.prose { max-width: var(--measure); }
.prose > * + * { margin-top: var(--s-4); }
.prose h2 { margin-top: var(--s-7); }
.prose h3 { margin-top: var(--s-6); }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li + li { margin-top: var(--s-2); }
.prose blockquote { margin: var(--s-5) 0; }
.article { max-width: 70ch; margin-inline: auto; }
.article > * + * { margin-top: var(--s-4); }
.article h2 { margin-top: var(--s-7); }
.article h3 { margin-top: var(--s-6); }
.article__intro { font-size: var(--fs-lead); font-weight: 500; line-height: 1.45; }
.signature { display: block; margin-top: var(--s-5); font-weight: 800; color: var(--coral-deep); }
.qual-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-3); }
.qual-list li { display: flex; align-items: center; gap: var(--s-3); padding: var(--s-4) var(--s-5); background: var(--white); border-radius: var(--r-sm); font-weight: 700; box-shadow: var(--shadow-sm); }
.qual-list li::before { content: ""; flex: none; width: 14px; height: 14px; border-radius: var(--blob); background: var(--coral); }
.qual-list li:nth-child(2)::before { background: var(--mint-deep); }

/* ---------- 18. Forms ---------- */
.form { display: grid; gap: var(--s-4); }
.form--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.form .field--full { grid-column: 1 / -1; }
.field { display: grid; gap: var(--s-2); }
.field label { font-weight: 800; }
.field small { color: var(--ink-soft); }
.input {
  width: 100%; min-height: 50px; padding: .75rem 1rem; border-radius: var(--r-sm);
  border: 2px solid rgba(35, 33, 43, .3); background: var(--white); color: var(--ink);
}
.input:focus-visible { border-color: var(--ink); outline-offset: 2px; }
textarea.input { min-height: 9rem; resize: vertical; }
.form .btn { justify-self: start; }

/* ---------- 19. Contact bits ---------- */
.contact-cards { display: grid; gap: var(--s-5); grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.contact-card .big { font-size: 1.5rem; font-weight: 900; letter-spacing: -.01em; }
.socials { display: flex; flex-wrap: wrap; gap: var(--s-3); list-style: none; padding: 0; margin: 0; }
.socials a, .socials span {
  display: inline-flex; align-items: center; min-height: 44px; padding: .5rem 1.1rem; border-radius: var(--r-pill);
  border: 2px solid currentColor; font-weight: 800; text-decoration: none;
}
.socials a:hover { background: var(--mint); color: var(--ink); border-color: var(--mint); }
.tel { font-weight: 800; white-space: nowrap; }

/* ---------- 20. CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: var(--s-4); }
.cta-band .btn-row { justify-content: center; margin-top: var(--s-5); }

/* ---------- 21. Footer ---------- */
.site-footer { background: var(--ink); color: var(--cream); padding-block: clamp(3rem, 5vw, 4.5rem) var(--s-6); }
.site-footer a { color: var(--cream); }
.site-footer .brand { color: var(--cream); }
.footer-grid { display: grid; gap: var(--s-6); grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }
.footer-col p { margin: 0 0 var(--s-2); }
.footer-nav { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0 .35rem; }
.footer-nav li { display: flex; align-items: center; }
.footer-nav a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 .55rem; font-weight: 700; text-decoration: none; border-radius: var(--r-pill); }
.footer-nav a:hover { background: rgba(255, 255, 255, .12); }
.footer-nav li + li::before { content: "·"; opacity: .5; margin-right: .35rem; }
.footer-legal { margin-top: var(--s-6); padding-top: var(--s-5); border-top: 1px solid rgba(255, 255, 255, .2); font-size: var(--fs-small); display: grid; gap: var(--s-2); }
.footer-legal p { margin: 0; opacity: .85; }
.footer-quals { display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-4); font-weight: 700; margin: 0; padding: 0; list-style: none; }
.footer-quals li::before { content: ""; display: inline-block; width: 10px; height: 10px; border-radius: var(--blob); background: var(--yellow); margin-right: .5rem; vertical-align: middle; }

/* ---------- 22. Motion off ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .card:hover, .btn:hover { transform: none; }
}

/* ---------- 23. Footer page-nav — even wrap ---------- */
/* The ten page links inside <nav> wrap as two columns of five at every width
   (was 4+5+1 at 1440px and 4+4+2 at 390px). The three-item social list, which
   sits outside <nav>, is untouched and keeps its inline dots. */
.footer-col nav .footer-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 var(--s-2); }
.footer-col nav .footer-nav li + li::before { content: none; margin-right: 0; }

