/* ==========================================================================
   Loving Touch Dog Grooming - styles.css
   Design system per design-notes.md. Vanilla CSS, OKLCH, no build step.
   Display: Young Serif · Body/UI: Karla
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Warm-oat neutrals */
  --cream:     oklch(97.6% 0.012 85);
  --cream-2:   oklch(94.5% 0.016 82);
  --card:      oklch(99% 0.006 85);
  --sand:      oklch(88% 0.020 80);
  --ink:       oklch(27% 0.018 68);
  --ink-soft:  oklch(43% 0.016 70);

  /* Brand green */
  --pine:      oklch(37% 0.052 160);
  --pine-deep: oklch(29% 0.044 162);
  --sage:      oklch(52% 0.058 158);
  --sage-soft: oklch(92% 0.028 155);

  /* Lilac / mauve accent (nods to Carole's real brand) */
  --plum:      oklch(52% 0.108 322);
  --plum-btn:  oklch(47% 0.114 322);
  --plum-deep: oklch(41% 0.108 320);
  --plum-soft: oklch(93% 0.030 320);

  /* Type */
  --font-display: "Young Serif", Georgia, "Times New Roman", serif;
  --font-body: "Karla", "Helvetica Neue", system-ui, sans-serif;
  --fs-display: clamp(2.5rem, 1.55rem + 4vw, 4rem);
  --fs-h1:      clamp(2rem, 1.45rem + 2.4vw, 3rem);
  --fs-h2:      clamp(1.6rem, 1.25rem + 1.5vw, 2.25rem);
  --fs-h3:      clamp(1.18rem, 1.05rem + 0.5vw, 1.4rem);
  --fs-body:    1.0625rem;
  --fs-sm:      0.9rem;
  --fs-eyebrow: 0.78rem;

  /* Spacing */
  --space-2xs: 4px; --space-xs: 8px; --space-sm: 12px; --space-md: 16px;
  --space-lg: 24px; --space-xl: 32px; --space-2xl: 48px; --space-3xl: 64px; --space-4xl: 96px;
  --section-y: clamp(3.5rem, 2.5rem + 4vw, 7rem);
  --container: 1200px;
  --pad-x: clamp(1rem, 5vw, 2.5rem);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Shadow (tinted warm, soft) */
  --shadow-sm: 0 1px 2px oklch(27% 0.02 68 / 0.06), 0 4px 12px oklch(27% 0.02 68 / 0.05);
  --shadow-md: 0 8px 30px oklch(27% 0.02 68 / 0.10);

  /* Motion */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-move: cubic-bezier(0.77, 0, 0.175, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--pine-deep);
}
p { max-width: 65ch; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.sr-only {
  position: absolute; 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(--space-md); top: -60px; z-index: 200;
  background: var(--pine-deep); color: var(--cream);
  padding: var(--space-sm) var(--space-md); border-radius: var(--radius);
  transition: top 160ms var(--ease-out);
}
.skip-link:focus { top: var(--space-md); }

:focus-visible { outline: 2px solid var(--plum); outline-offset: 3px; border-radius: 4px; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-xs);
  font-family: var(--font-body); font-size: var(--fs-eyebrow); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--sage);
  margin-bottom: var(--space-md);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: currentColor; opacity: 0.6;
}
.section--pine .eyebrow { color: oklch(78% 0.05 150); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--plum-btn); --btn-fg: var(--cream); --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-xs);
  font-family: var(--font-body); font-size: var(--fs-body); font-weight: 700;
  line-height: 1; text-decoration: none; cursor: pointer; white-space: nowrap;
  padding: 0.95em 1.6em; border-radius: var(--radius-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1.5px solid var(--btn-bd);
  transition: transform 160ms var(--ease-out), background-color 200ms ease, box-shadow 200ms ease, color 200ms ease;
}
.btn__icon { width: 1.05em; height: 1.05em; }
.btn:active { transform: scale(0.97); }
.btn--primary { box-shadow: 0 6px 18px oklch(47% 0.114 322 / 0.28); }
@media (hover: hover) {
  .btn--primary:hover { background: var(--plum-deep); box-shadow: 0 8px 24px oklch(47% 0.114 322 / 0.34); }
}
.btn--outline {
  --btn-bg: transparent; --btn-fg: var(--pine); --btn-bd: var(--sand);
  font-weight: 600;
}
@media (hover: hover) {
  .btn--outline:hover { --btn-bd: var(--pine); background: var(--sage-soft); }
}
.btn--light {
  --btn-bg: var(--cream); --btn-fg: var(--pine-deep);
}
.btn--lg { font-size: 1.08rem; padding: 1.05em 1.9em; }
.btn__icon { width: 1.15em; height: 1.15em; flex: none; }
.btn--whatsapp { --btn-bg: oklch(52% 0.115 150); --btn-fg: var(--cream); --btn-bd: transparent; box-shadow: 0 6px 18px oklch(52% 0.115 150 / 0.26); }
@media (hover: hover) { .btn--whatsapp:hover { background: oklch(46% 0.115 150); } }
.contact-actions { display: flex; flex-wrap: wrap; gap: var(--space-md); justify-content: center; margin: var(--space-xl) 0 var(--space-2xl); }
@media (hover: hover) {
  .btn--light:hover { background: oklch(100% 0 0); transform: translateY(-1px); }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  padding: 12px var(--pad-x) 0;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-lg); min-height: 64px;
  max-width: var(--container); margin-inline: auto;
  padding: 9px 9px 9px 32px;
  background: oklch(97.6% 0.012 85 / 0.82);
  backdrop-filter: blur(12px);
  border: 1px solid var(--sand);
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 22px oklch(27% 0.02 68 / 0.08);
  transition: box-shadow 240ms ease;
}
.site-header--scrolled .site-header__inner {
  box-shadow: 0 12px 34px oklch(27% 0.02 68 / 0.13);
}
.brand { display: inline-flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.brand__logo { height: 44px; width: auto; display: block; flex-shrink: 0; }
.footer__brand .brand__logo { height: 68px; padding: 11px 16px; background: var(--cream); border-radius: 14px; }

.nav__list { display: flex; align-items: center; gap: var(--space-xl); list-style: none; padding: 0; }
.nav__link {
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem;
  text-decoration: none; color: var(--ink); padding: var(--space-xs) 0;
  position: relative; transition: color 180ms ease;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--plum); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform 220ms var(--ease-out);
}
@media (hover: hover) { .nav__link:hover { color: var(--pine); } .nav__link:hover::after { transform: scaleX(1); } }
.nav__link--active { color: var(--pine); }
.nav__link--active::after { transform: scaleX(1); }

.site-header__cta { display: flex; align-items: center; gap: var(--space-md); }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent;
  cursor: pointer; padding: 10px; border-radius: var(--radius);
}
.nav-toggle__bar, .nav-toggle__bar::before, .nav-toggle__bar::after {
  content: ""; display: block; height: 2px; width: 24px; background: var(--pine-deep);
  border-radius: 2px; transition: transform 240ms var(--ease-out), opacity 180ms ease;
}
.nav-toggle__bar { position: relative; }
.nav-toggle__bar::before { position: absolute; top: -7px; }
.nav-toggle__bar::after { position: absolute; top: 7px; }

/* ---------- Hero (split, asymmetric) ---------- */
.hero { position: relative; overflow: hidden; }
.hero__inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-block: clamp(2.5rem, 2rem + 4vw, 5.5rem);
}
.hero__title {
  font-size: var(--fs-display); margin: 0 0 var(--space-lg);
  max-width: 14ch;
}
.hero__title em { font-style: normal; color: var(--plum); }
.hero__lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 54ch; margin-bottom: var(--space-xl); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-md); align-items: center; }
.hero__media { position: relative; }
.hero__media__frame {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); aspect-ratio: 16 / 13;
}
.hero__media__frame img { width: 100%; height: 100%; object-fit: cover; }

/* Rotating "perfect for anxious dogs" seal, overhanging top-right */
.hero__seal {
  position: absolute; top: -30px; right: -26px; z-index: 3;
  width: clamp(96px, 8vw, 120px); aspect-ratio: 1; display: block;
  filter: drop-shadow(0 8px 18px oklch(27% 0.02 68 / 0.18));
}
.hero__seal img { position: absolute; top: 50%; left: 50%; }
.hero__seal__disc { width: 100%; transform: translate(-50%, -50%); }
.hero__seal__ring {
  width: 87.2%; transform: translate(-50%, -50%);
  animation: seal-spin 28.6s linear infinite;
}
@keyframes seal-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ---------- Section scaffolding ---------- */
.section { padding-block: var(--section-y); }
#services { scroll-margin-top: 100px; }  /* clear the sticky nav when anchored */
.section--tint { background: var(--cream-2); }
.section--pine { background: var(--pine-deep); color: oklch(90% 0.02 120); }
.section--pine h1, .section--pine h2, .section--pine h3 { color: var(--cream); }
.section--pine p { color: oklch(87% 0.02 130); line-height: 1.78; }
.section__head { max-width: 60ch; margin-bottom: var(--space-2xl); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__title { font-size: var(--fs-h2); margin-bottom: var(--space-md); }
.section__intro { color: var(--ink-soft); font-size: 1.08rem; }
.section--pine .section__intro { color: oklch(85% 0.02 130); }

/* ---------- Statement band (one dog at a time) ---------- */
.statement { text-align: center; }
.statement__mark { width: 34px; height: 34px; color: var(--plum); margin: 0 auto var(--space-lg); }
.statement__text {
  font-family: var(--font-display); font-size: clamp(1.6rem, 1.1rem + 2.4vw, 2.7rem);
  line-height: 1.32; color: var(--pine-deep); max-width: 34ch; margin: 0 auto;
  letter-spacing: -0.01em;
}
.statement__text b { color: var(--plum); font-weight: 400; }
.section--pine .statement__text { color: var(--cream); }
.section--pine .statement__text b { color: oklch(80% 0.09 55); }

/* ---------- Approach (2-col: media + points) ---------- */
.approach { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
.approach--flip .approach__media { order: 2; }
.approach__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 3/2; }
.approach__media img { width: 100%; height: 100%; object-fit: cover; }
.approach__points { display: grid; gap: var(--space-xl); margin-top: var(--space-xl); }
.point { display: grid; grid-template-columns: auto 1fr; gap: var(--space-md); }
.point__icon {
  width: 44px; height: 44px; flex: none; border-radius: 50%;
  display: grid; place-items: center; background: var(--sage-soft); color: var(--pine);
}
.point__icon svg { width: 22px; height: 22px; }
.point__title { font-size: var(--fs-h3); margin-bottom: var(--space-2xs); }
.point p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Service rows (editorial zig-zag) ---------- */
.srows { display: grid; gap: clamp(2.5rem, 4vw, 4.5rem); }
.srow { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.srow--flip .srow__media { order: 2; }
.srow__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 3/2; }
.srow__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-out); }
@media (hover: hover) { .srow:hover .srow__media img { transform: scale(1.04); } }
.srow__num { font-family: var(--font-display); font-size: 1.05rem; color: var(--plum); margin-bottom: var(--space-xs); }
.srow__title { font-size: var(--fs-h2); margin-bottom: var(--space-md); }
.srow__body p { color: var(--ink-soft); }
.srow__price {
  display: inline-block; margin-top: var(--space-lg);
  font-family: var(--font-body); font-weight: 700; color: var(--pine);
  background: var(--sage-soft); padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-pill); font-size: 0.92rem;
}
.srow__list { list-style: none; padding: 0; margin: var(--space-md) 0 0; display: grid; gap: var(--space-sm); }
.srow__list li { display: grid; grid-template-columns: auto 1fr; gap: var(--space-sm); color: var(--ink-soft); font-size: 0.98rem; }
.srow__list svg { width: 18px; height: 18px; color: var(--sage); margin-top: 4px; flex: none; }

/* ---------- Collection band ---------- */
.collect { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
.collect__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 16/10; order: 2; }
.collect__media img { width: 100%; height: 100%; object-fit: cover; }
.collect__body p { color: oklch(85% 0.02 130); }

/* ---------- Reviews (hanging quote + staggered pair) ---------- */
.review-lead { max-width: 57ch; margin: 0 auto var(--space-3xl); text-align: center; }
.review-lead__q { font-family: var(--font-display); font-size: clamp(1.5rem, 1rem + 2.2vw, 2.4rem); line-height: 1.3; color: var(--pine-deep); }
.review-lead__by { display: block; margin-top: var(--space-lg); font-family: var(--font-body); font-weight: 700; color: var(--sage); font-size: 0.95rem; }
.review-pair { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); max-width: 900px; margin-inline: auto; }
.review-pair > *:nth-child(2) { transform: translateY(28px); }
.review {
  background: var(--card); border: 1px solid var(--sand); border-radius: var(--radius-lg);
  padding: var(--space-xl); box-shadow: var(--shadow-sm);
}
.review__stars { display: flex; gap: 3px; margin-bottom: var(--space-md); color: var(--plum); }
.review__stars svg { width: 18px; height: 18px; }
.review__text { color: var(--ink); font-size: 1.02rem; }
.review__by { margin-top: var(--space-md); font-weight: 700; color: var(--pine); }
.review__src { font-weight: 400; color: var(--ink-soft); font-size: 0.86rem; }

.placeholder-flag {
  display: inline-block; margin-bottom: var(--space-md);
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--plum-deep);
  background: var(--plum-soft); padding: 3px 9px; border-radius: var(--radius-pill);
}

/* ---------- FAQ ---------- */
.faq { max-width: 64ch; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--sand); }
.faq__item:first-child { border-top: 1px solid var(--sand); }
.faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-lg);
  padding: var(--space-lg) 0;
  font-family: var(--font-display); font-size: 1.16rem; line-height: 1.35; color: var(--ink);
  transition: color 180ms ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__q-icon { flex: none; width: 20px; height: 20px; color: var(--plum); transition: transform 240ms var(--ease-out); }
.faq__item[open] .faq__q-icon { transform: rotate(45deg); }
.faq__a { padding: 0 0 var(--space-lg); max-width: 58ch; }
.faq__a p { color: var(--ink-soft); font-size: 1.02rem; }
@media (hover: hover) { .faq__item summary:hover { color: var(--pine); } }
@media (prefers-reduced-motion: reduce) { .faq__q-icon { transition: none; } }

/* ---------- Puppy intro lists (Services) ---------- */
.puppy-lists { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); }
.puppy-list { border-top: 2px solid var(--sand); padding-top: var(--space-lg); }
.puppy-list h3 { margin-bottom: var(--space-md); }
.puppy-list .srow__list { margin-top: 0; }

/* ---------- Credentials strip (About) ---------- */
.creds { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: clamp(1.5rem, 3vw, 3rem); }
.cred { border-top: 2px solid var(--sand); padding-top: var(--space-lg); }
.cred__num { font-family: var(--font-display); font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.3rem); color: var(--plum); line-height: 1; margin-bottom: var(--space-sm); }
.cred__label { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- About lead ---------- */
.about-lead { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: start; }
.about-lead__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; position: relative; }
.about-lead__media img { width: 100%; height: 100%; object-fit: cover; }
.about-lead__body p + p { margin-top: var(--space-md); }
.about-lead__body p { color: var(--ink-soft); }
.prose p { color: var(--ink-soft); }
.prose p + p { margin-top: var(--space-md); }

/* ---------- CTA band ---------- */
.cta { text-align: center; }
.cta__title { font-size: var(--fs-h1); margin-bottom: var(--space-md); }
.cta p { margin-inline: auto; margin-bottom: var(--space-xl); }
.cta__actions { display: flex; flex-wrap: wrap; gap: var(--space-md); justify-content: center; }

/* ---------- Enquiry form + contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.enquiry { display: grid; gap: var(--space-lg); background: var(--card); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: var(--shadow-sm); }
.field { display: grid; gap: var(--space-xs); }
.field__label { font-weight: 700; font-size: 0.92rem; color: var(--pine-deep); }
.field__input, .field__area {
  font-family: var(--font-body); font-size: var(--fs-body); color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--sand); border-radius: var(--radius);
  padding: 0.8em 0.95em; width: 100%; transition: border-color 180ms ease, box-shadow 180ms ease;
}
.field__area { resize: vertical; min-height: 130px; }
.field__input:focus, .field__area:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px var(--sage-soft); }
.field__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
.enquiry__submit { justify-self: start; }
.form-note { font-size: 0.82rem; color: var(--ink-soft); }
.form-success {
  display: none; padding: var(--space-md); border-radius: var(--radius);
  background: var(--sage-soft); color: var(--pine-deep); font-weight: 600;
}

/* Contact page-header banner (studio image) */
.page-header { position: relative; margin-top: -88px; }  /* pull up behind the floating nav (nav ~87px) */
.page-header img { width: 100%; height: clamp(400px, 62vh, 640px); object-fit: cover; display: block; }
.page-header__overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  background: linear-gradient(oklch(20% 0.03 320 / 0) 40%, oklch(16% 0.03 320 / 0.74));
  padding-bottom: clamp(1.5rem, 4vw, 3rem);
}
.page-header__overlay .eyebrow { color: oklch(87% 0.05 320); }
.page-header__title { color: var(--cream); font-size: var(--fs-h1); margin: 0; }

.map { margin-top: var(--space-2xl); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--sand); }
.map iframe { width: 100%; height: 380px; border: 0; display: block; }

.studio { margin-top: var(--space-3xl); position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.studio img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; display: block; }
.studio__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: var(--space-2xl) var(--space-lg) var(--space-lg);
  color: var(--cream); font-size: 0.98rem; font-weight: 600; text-align: center;
  background: linear-gradient(oklch(29% 0.044 162 / 0), oklch(20% 0.03 320 / 0.72));
}

/* Studio banner (home) */
.studio-banner { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 440px; display: grid; }
.studio-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.studio-banner__panel {
  position: relative; align-self: end; justify-self: start; max-width: 500px;
  margin: clamp(1rem, 3vw, 2.5rem); padding: clamp(1.25rem, 3vw, 2rem);
  background: oklch(97.6% 0.012 85 / 0.93); backdrop-filter: blur(8px);
  border: 1px solid oklch(100% 0 0 / 0.5); border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.studio-banner__title { font-size: var(--fs-h2); margin-bottom: var(--space-md); }
.studio-banner__panel p { color: var(--ink-soft); margin-bottom: var(--space-lg); font-size: 0.98rem; }
@media (max-width: 620px) {
  .studio-banner { min-height: 0; display: block; }
  .studio-banner img { position: relative; height: 220px; }
  .studio-banner__panel { max-width: none; margin: 0; border-radius: 0; border: 0; box-shadow: none; background: var(--cream-2); }
}

.contact-aside { display: grid; gap: var(--space-xl); }
.contact-grid { display: grid; gap: var(--space-lg); }
.contact-grid--row { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); max-width: 900px; margin-inline: auto; }
.contact-item { display: grid; grid-template-columns: auto 1fr; gap: var(--space-md); align-items: start; }
.contact-item__icon { width: 42px; height: 42px; flex: none; border-radius: 50%; display: grid; place-items: center; background: var(--sage-soft); color: var(--pine); }
.contact-item__icon svg { width: 20px; height: 20px; }
.contact-item__label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sage); font-weight: 700; margin-bottom: 2px; }
.contact-item a { color: var(--pine); text-decoration: none; font-weight: 600; }
@media (hover: hover) { .contact-item a:hover { color: var(--plum-deep); } }

/* ---------- Footer ---------- */
.site-footer { background: var(--pine-deep); color: oklch(85% 0.02 130); padding-block: var(--space-4xl) var(--space-2xl); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); }
.footer__brand .brand { color: var(--cream); }
.footer__brand .brand__name { color: var(--cream); }
.footer__brand p { color: oklch(80% 0.02 130); margin-top: var(--space-md); font-size: 0.95rem; max-width: 34ch; }
.footer__col h4 { font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: oklch(78% 0.05 150); margin-bottom: var(--space-md); }
.footer__links { list-style: none; padding: 0; display: grid; gap: var(--space-sm); }
.footer__links a { color: oklch(85% 0.02 130); text-decoration: none; font-size: 0.96rem; transition: color 160ms ease; }
@media (hover: hover) { .footer__links a:hover { color: var(--cream); } }
.footer__note { margin-top: var(--space-3xl); padding-top: var(--space-lg); border-top: 1px solid oklch(100% 0 0 / 0.12); display: flex; flex-wrap: wrap; gap: var(--space-md); justify-content: space-between; font-size: 0.84rem; color: oklch(72% 0.02 130); }
.footer__social { display: flex; gap: var(--space-sm); margin-top: var(--space-lg); }
.footer__social-link {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  color: oklch(86% 0.02 130); border: 1px solid oklch(100% 0 0 / 0.18);
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms var(--ease-out);
}
.footer__social-link svg { width: 18px; height: 18px; }
@media (hover: hover) {
  .footer__social-link:hover { color: var(--pine-deep); background: var(--cream); border-color: transparent; transform: translateY(-2px); }
}
.footer__social-link:active { transform: scale(0.95); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(10px); }
.reveal.is-visible {
  opacity: 1; transform: none;
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
  transition-delay: calc(var(--i, 0) * 70ms);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .hero__media__frame { aspect-ratio: 16/11; }
  .hero__seal { top: -22px; right: 6px; width: 84px; }
  .hero__title { max-width: 100%; }
  .approach, .about-lead, .collect, .contact-wrap { grid-template-columns: 1fr; }
  .approach--flip .approach__media, .collect__media { order: -1; }
  .srow, .srow--flip .srow__media { grid-template-columns: 1fr; }
  .srow--flip .srow__media { order: -1; }
  .srow__media { order: -1; }
  .review-pair { grid-template-columns: 1fr; max-width: 460px; }
  .review-pair > *:nth-child(2) { transform: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav {
    position: fixed; top: 84px; left: var(--pad-x); right: var(--pad-x);
    background: var(--cream);
    border: 1px solid var(--sand); border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
    padding: var(--space-xs) var(--space-lg) var(--space-sm);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform 260ms var(--ease-out), opacity 200ms ease;
  }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list > li { display: block; }
  .nav__link { display: block; padding: var(--space-md) 0; border-bottom: 1px solid var(--sand); font-size: 1.1rem; }
  .nav__list > li:last-child .nav__link { border-bottom: none; }
  .nav__link::after { display: none; }
  .nav--open .nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-toggle { display: block; }
  /* phone-first: keep the call button on mobile, icon-only + compact */
  .btn--call .btn__label { display: none; }
  .btn--call { padding: 0.72em 0.82em; gap: 0; }
  .field__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__note { justify-content: flex-start; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__seal__ring { animation: none; transform: translate(-50%, -50%); }
  .srow:hover .srow__media img { transform: none; }
  .review-pair > *:nth-child(2) { transform: none; }
}
