/* ════════════════════════════════════════════════════════════════════════
   theme-editorial.css — "Editorial / Magazine" foundation for Johan Hair Studio
   Big serif headlines, pull quotes, drop caps, column rhythm, hairline rules.
   Neutral/warm palette (brand colors TBD). Swap this file to re-skin (Zen Garden).
   ════════════════════════════════════════════════════════════════════════ */

:root {
  /* Warm editorial neutrals — no brand color yet, per client direction */
  --paper:   #FAF6EF;   /* warm cream page */
  --sand:    #EFE7D9;   /* panel tint */
  --sand-2:  #E7DDCB;   /* deeper tint */
  --ink:     #1B1815;   /* near-black, warm */
  --ink-2:   #4A433B;   /* secondary text */
  --stone:   #6E655A;   /* muted captions — darkened for WCAG AA on cream (~4.7:1) */
  --rule:    #DDD3C3;   /* hairline rules */
  --paper-on-dark: #F4EEE3;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;

  --measure: 38rem;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --maxw: 76rem;

  --step-kicker: 0.78rem;
  --step-h1: clamp(3.2rem, 11vw, 8rem);
  --step-h2: clamp(2rem, 5vw, 3.4rem);
  --step-h3: clamp(1.3rem, 2.2vw, 1.7rem);
  --step-lead: clamp(1.1rem, 1.6vw, 1.4rem);
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
}

/* ── Shared bits ─────────────────────────────────────────────── */
.kicker {
  font-family: var(--sans);
  font-size: var(--step-kicker);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
}
.kicker--invert { color: rgba(244,238,227,0.7); }

.section-title {
  font-family: var(--serif);
  font-size: var(--step-h2);
  font-weight: 400;
  letter-spacing: -0.015em;
}

.footnote { font-size: 0.8rem; color: var(--stone); font-style: italic; }

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--ink);
  border-radius: 0;
  transition: background .25s ease, color .25s ease, transform .25s ease;
  cursor: pointer;
}
.btn--solid  { background: var(--ink); color: var(--paper); }
.btn--solid:hover  { background: transparent; color: var(--ink); }
.btn--ghost  { background: transparent; color: var(--ink); }
.btn--ghost:hover  { background: var(--ink); color: var(--paper); }
.btn--invert { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--invert:hover { background: transparent; color: var(--paper); }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.02rem; }

/* ── Masthead (sticky, scroll-aware) ──────────────────────────── */
.masthead {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  transition: transform .35s ease, box-shadow .35s ease;
  will-change: transform;
}
.masthead.is-stuck { box-shadow: 0 1px 0 var(--rule), 0 10px 26px -20px rgba(20,16,12,.55); }
.masthead.is-stuck .masthead__bar { display: none; }              /* condense when stuck */
.masthead.is-hidden { transform: translateY(-100%); }             /* hide on scroll down */
.masthead__bar {
  display: flex; justify-content: space-between;
  max-width: var(--maxw); margin-inline: auto;
  padding: 0.6rem var(--gutter);
  border-bottom: 1px solid var(--rule);
}
.masthead__meta {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone);
}
.masthead__main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--maxw); margin-inline: auto;
  padding: 1.3rem var(--gutter) 1.1rem;
  border-bottom: 2px solid var(--ink);
  flex-wrap: wrap;
  transition: padding .3s ease;
}
.masthead.is-stuck .masthead__main { padding-top: 0.85rem; padding-bottom: 0.85rem; align-items: center; }
.masthead.is-stuck .wordmark__name { font-size: clamp(1.5rem, 3vw, 2rem); transition: font-size .3s ease; }

/* Hamburger toggle (hidden on desktop) */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.5rem; }
.nav-toggle span {
  display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0;
  transition: transform .3s ease, opacity .3s ease;
}
.masthead.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.masthead.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.masthead.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.wordmark { display: flex; flex-direction: column; line-height: 0.92; }
.wordmark__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.9rem);
  letter-spacing: -0.02em;
}
.wordmark__sub {
  font-family: var(--sans);
  font-size: 0.72rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--stone); padding-left: 0.15em;
}
.nav { display: flex; align-items: center; gap: clamp(0.9rem, 1.8vw, 1.8rem); flex-wrap: wrap; }
.nav a {
  font-size: 0.92rem; font-weight: 500;
  position: relative; padding-bottom: 2px;
}
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--ink); transition: width .25s ease;
}
.nav a:not(.btn):hover::after { width: 100%; }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  max-width: var(--maxw);
  margin: clamp(2.5rem, 6vw, 5rem) auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.hero__text { animation: rise 0.9s cubic-bezier(.2,.7,.2,1) both; }
.hero__title {
  font-family: var(--serif);
  font-size: var(--step-h1);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin: 1rem 0 1.5rem;
}
.hero__title em { font-style: italic; font-weight: 500; }
.hero__lead {
  font-size: var(--step-lead);
  color: var(--ink-2);
  max-width: 32ch;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero__note {
  font-size: 0.82rem; letter-spacing: 0.04em; color: var(--stone);
  padding-top: 1.2rem; border-top: 1px solid var(--rule);
}
.hero__figure { animation: rise 1.1s cubic-bezier(.2,.7,.2,1) both; }
.hero__image {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  background: var(--sand-2);
}
.hero__photo {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.15) contrast(1.02);
}
.hero__placeholder-tag {
  position: absolute; left: 0; bottom: 0;
  font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--ink); color: var(--paper);
  padding: 0.45rem 0.7rem;
}
.hero__caption {
  font-family: var(--serif); font-style: italic; font-size: 0.95rem;
  color: var(--stone); padding-top: 0.7rem;
}
.hero__art { width: 100%; height: 100%; display: block; }

/* ── Lede ─────────────────────────────────────────────────────── */
.lede {
  max-width: var(--maxw); margin-inline: auto; padding: clamp(2rem,5vw,4rem) var(--gutter);
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(1.5rem,4vw,4rem); align-items: start;
}
.lede__body {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.1vw, 1.65rem);
  line-height: 1.45; font-weight: 400; color: var(--ink);
}
.dropcap {
  float: left; font-family: var(--serif); font-weight: 600;
  font-size: 4.4em; line-height: 0.7; padding: 0.05em 0.1em 0 0;
}
.lede__marks { align-self: center; }
.lede__marks li {
  font-family: var(--sans); font-size: 0.95rem; color: var(--ink-2);
  padding: 0.75rem 0; border-bottom: 1px solid var(--rule);
}
.lede__marks li:first-child { border-top: 1px solid var(--rule); }

/* ── Section head ─────────────────────────────────────────────── */
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.section-head .kicker { flex-basis: 100%; margin-bottom: 0.4rem; }
.section-link { font-size: 0.9rem; font-weight: 500; border-bottom: 1px solid var(--ink); padding-bottom: 1px; }
.section-link:hover { color: var(--stone); border-color: var(--stone); }

/* ── Services ─────────────────────────────────────────────────── */
.services { max-width: var(--maxw); margin-inline: auto; padding: clamp(2.5rem,6vw,5rem) var(--gutter); }
.service {
  display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1rem,3vw,2.5rem);
  align-items: baseline; padding: 1.6rem 0; border-top: 1px solid var(--rule);
  transition: padding-left .3s ease;
}
.service:last-of-type { border-bottom: 1px solid var(--rule); }
.service:hover { padding-left: 0.6rem; }
.service__no { font-family: var(--serif); font-style: italic; color: var(--stone); font-size: 1.1rem; }
.service__name { font-family: var(--serif); font-size: var(--step-h3); font-weight: 500; margin-bottom: 0.35rem; }
.service__desc { font-size: 0.98rem; color: var(--ink-2); max-width: 46ch; }
.service__book {
  display: inline-block; margin-top: 0.65rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  border-bottom: 1px solid var(--stone); color: var(--stone); padding-bottom: 1px;
  transition: color .2s ease, border-color .2s ease;
}
.service__book:hover { color: var(--ink); border-color: var(--ink); }
.service__price { font-family: var(--serif); font-size: 1.5rem; white-space: nowrap; }
.service__price small { font-size: 0.7rem; vertical-align: super; color: var(--stone); }
.service[hidden] { display: none; }

/* Filter bar (services page) */
.filter-section { max-width: var(--maxw); margin-inline: auto; padding: clamp(1.5rem,4vw,2.5rem) var(--gutter) 0; }
.filter-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; padding-bottom: clamp(1.2rem,3vw,2rem); border-bottom: 2px solid var(--ink); }
.filter-btn {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.55rem 1.1rem; border: 1px solid var(--rule);
  background: transparent; color: var(--ink-2); cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ── Specialists ──────────────────────────────────────────────── */
.specialists { max-width: var(--maxw); margin-inline: auto; padding: clamp(2.5rem,6vw,5rem) var(--gutter); }
.specialist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3rem); }
.specialist__photo { aspect-ratio: 3 / 4; overflow: hidden; background: var(--ink); margin-bottom: 1.2rem; }
.specialist__photo img { width: 100%; height: 100%; object-fit: cover; display: block; border: 0; filter: grayscale(0.1); transition: transform .6s ease, filter .4s ease; }
.specialist:hover .specialist__photo img { transform: scale(1.04); filter: grayscale(0); }
/* Emily's JPEG has a white border baked in — scale it past the overflow:hidden boundary */
.specialist-grid .specialist:first-child .specialist__photo img { transform: scale(1.09); }
.specialist-grid .specialist:first-child:hover .specialist__photo img { transform: scale(1.13); }
.specialist__name { font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.specialist__role { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); margin: 0.3rem 0 0.7rem; }
.specialist__bio { color: var(--ink-2); max-width: 38ch; }
.specialist__cta { margin-top: 1.6rem; }

/* ── Pull quote ───────────────────────────────────────────────── */
.pullquote {
  background: var(--sand); margin-block: clamp(1rem,3vw,2rem);
}
.pullquote__quote {
  max-width: 48rem; margin-inline: auto; padding: clamp(3rem,8vw,6rem) var(--gutter) 1rem;
  text-align: center;
}
.pullquote__quote p {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.6rem, 4vw, 2.8rem); line-height: 1.25; letter-spacing: -0.01em;
}
.pullquote__quote em { font-style: normal; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.pullquote__quote cite { display: block; font-family: var(--sans); font-style: normal; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stone); margin-top: 1.5rem; }
.pullquote .footnote { text-align: center; display: block; padding: 0 var(--gutter) 3rem; }

/* ── Curl care ────────────────────────────────────────────────── */
.curl-care {
  max-width: var(--maxw); margin-inline: auto; padding: clamp(2.5rem,6vw,5rem) var(--gutter);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,4rem); align-items: center;
}
.curl-care__body { font-size: var(--step-lead); color: var(--ink-2); margin: 1rem 0 1.8rem; max-width: 42ch; }
.curl-care__list { border-top: 2px solid var(--ink); }
.curl-care__list li {
  font-family: var(--serif); font-size: clamp(1.2rem,2.4vw,1.8rem);
  padding: 1.1rem 0; border-bottom: 1px solid var(--rule);
  display: flex; gap: 1rem; align-items: baseline; transition: color .25s ease;
}
.curl-care__list li:hover { color: var(--stone); }
.curl-care__no { font-style: italic; font-size: 0.9em; color: var(--stone); min-width: 1.6em; }

/* ── CTA band ─────────────────────────────────────────────────── */
.cta-band {
  background: var(--ink); color: var(--paper-on-dark);
  text-align: center; padding: clamp(3.5rem,9vw,7rem) var(--gutter);
}
.cta-band__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5rem); letter-spacing: -0.02em; margin: 1rem 0 1.2rem;
}
.cta-band__body { font-size: var(--step-lead); color: rgba(244,238,227,0.78); max-width: 36ch; margin: 0 auto 2rem; }
.cta-band__note { font-size: 0.8rem; color: rgba(244,238,227,0.55); margin-top: 1.6rem; }

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer { max-width: var(--maxw); margin-inline: auto; padding: clamp(2.5rem,5vw,4rem) var(--gutter) 2.5rem; }
.site-footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid var(--rule);
}
.wordmark--footer { margin-bottom: 1rem; }
.site-footer__brand p { color: var(--ink-2); font-size: 0.95rem; }
.site-footer__col h3 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); margin-bottom: 0.9rem; }
.site-footer__col p { font-size: 0.95rem; color: var(--ink-2); margin-bottom: 0.7rem; }
.site-footer__col a { border-bottom: 1px solid var(--rule); padding-bottom: 1px; }
.site-footer__col a:hover { border-color: var(--ink); }
.site-footer__col nav { display: flex; flex-direction: column; gap: 0.55rem; align-items: flex-start; }
.site-footer__fine { font-size: 0.78rem; color: var(--stone); padding-top: 1.5rem; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 860px) {
  .hero, .lede, .specialist-grid, .curl-care, .site-footer__grid { grid-template-columns: 1fr; }
  .masthead__main { align-items: center; }
  .nav-toggle { display: block; z-index: 60; }

  /* nav becomes a slide-in drawer */
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(80vw, 340px);
    background: var(--paper);
    box-shadow: -20px 0 50px -30px rgba(20,16,12,.7);
    flex-direction: column; align-items: flex-start;
    gap: 0.25rem;
    padding: 5.5rem var(--gutter) 2rem;
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
  }
  .masthead.nav-open .nav { transform: none; }
  .nav a:not(.btn) { font-size: 1.25rem; font-family: var(--serif); padding: 0.6rem 0; width: 100%; border-bottom: 1px solid var(--rule); }
  .nav a:not(.btn)::after { display: none; }
  .nav .btn { margin-top: 1.2rem; width: 100%; text-align: center; }
  body.no-scroll { overflow: hidden; }

  .hero__figure { order: -1; }
  .lede__marks { margin-top: 1rem; }
  .site-footer__grid { gap: 2.2rem; }
}

/* ── Reveal on scroll ─────────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-revealed { opacity: 1; transform: none; }
@media (max-width: 520px) {
  .service { grid-template-columns: auto 1fr; }
  .service__price { grid-column: 2; }
  .nav a:not(.btn) { font-size: 0.86rem; }
}

/* ════════════════════════════════════════════════════════════════
   Shared interior-page components (used by all pages beyond Home)
   ════════════════════════════════════════════════════════════════ */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 52rem; }
.section { padding-block: clamp(2.5rem, 6vw, 5rem); }
.section + .section { padding-top: 0; }

/* Interior page header band */
.page-header {
  max-width: var(--maxw); margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 5rem) var(--gutter) clamp(1.8rem, 4vw, 3rem);
  border-bottom: 2px solid var(--ink);
}
.page-header__kicker { margin-bottom: 1rem; }
.page-header__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.8rem, 8vw, 6rem); letter-spacing: -0.03em; line-height: 0.98;
}
.page-header__title em { font-style: italic; font-weight: 500; }
.page-header__lead {
  font-size: var(--step-lead); color: var(--ink-2);
  max-width: 46ch; margin-top: 1.4rem;
}
.breadcrumb { font-size: 0.78rem; letter-spacing: 0.06em; color: var(--stone); margin-bottom: 1.2rem; }
.breadcrumb a:hover { color: var(--ink); }

/* Prose / article text */
.prose { max-width: var(--measure); }
.prose > * + * { margin-top: 1.1rem; }
.prose h2 { font-family: var(--serif); font-size: var(--step-h2); font-weight: 400; margin-top: 2.4rem; letter-spacing: -0.015em; }
.prose h3 { font-family: var(--serif); font-size: var(--step-h3); font-weight: 500; margin-top: 1.8rem; }
.prose p, .prose li { color: var(--ink-2); }
.prose a { border-bottom: 1px solid var(--ink); padding-bottom: 1px; }
.prose a:hover { color: var(--stone); border-color: var(--stone); }
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose ul li { list-style: disc; margin-top: 0.5rem; }
.prose ol li { list-style: decimal; margin-top: 0.5rem; }
.prose blockquote {
  font-family: var(--serif); font-style: italic; font-size: 1.3rem;
  border-left: 2px solid var(--ink); padding-left: 1.2rem; color: var(--ink);
}

/* Inline link utility — for underlined links OUTSIDE .prose (base.css strips
   underlines globally, so bare links need this to read as links). */
.link { border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.link:hover { color: var(--stone); }

/* Price utility — serif price usable in cards/lists outside .service */
.price { font-family: var(--serif); font-size: 1.35rem; white-space: nowrap; }
.price small { font-size: 0.7rem; vertical-align: super; color: var(--stone); }

/* Badge / pill */
.badge {
  display: inline-block; font-family: var(--sans); font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  padding: 0.32rem 0.6rem; border: 1px solid var(--ink); color: var(--ink);
}
.badge--soft { border-color: var(--rule); color: var(--ink-2); background: var(--sand); }
.badge--warn { border-color: var(--ink); background: var(--ink); color: var(--paper); }

/* Generic card / tile */
.card { background: var(--sand); padding: clamp(1.4rem, 3vw, 2.2rem); border: 1px solid var(--rule); }
.card__label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); }
.card__title { font-family: var(--serif); font-size: var(--step-h3); font-weight: 500; margin: 0.5rem 0; }

/* Editorial table (pricing, portal lists) */
.table { width: 100%; border-collapse: collapse; }
.table caption { text-align: left; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); padding-bottom: 0.8rem; }
.table th, .table td { text-align: left; padding: 0.95rem 0.8rem; border-bottom: 1px solid var(--rule); vertical-align: middle; }
.table th { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); font-weight: 600; }
.table tr:hover td { background: var(--sand); }
.table .num { text-align: right; font-family: var(--serif); white-space: nowrap; }

/* Status dots */
.dot { display: inline-block; width: 0.55rem; height: 0.55rem; border-radius: 50%; margin-right: 0.45rem; vertical-align: baseline; }
.dot--ok { background: #3f7d52; } .dot--wait { background: #b58a2e; } .dot--off { background: var(--stone); }

/* Forms */
.form { max-width: 40rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { margin-bottom: 1.3rem; display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-2); font-weight: 600; }
.field .req { color: var(--ink); }
.field input, .field select, .field textarea {
  background: #fff; border: 1px solid var(--rule); padding: 0.8rem 0.9rem; font-size: 1rem;
  font-family: var(--sans); color: var(--ink); border-radius: 0;
  transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.field textarea { resize: vertical; min-height: 7rem; }
.fieldset { border: 1px solid var(--rule); padding: 1.4rem; margin-bottom: 1.5rem; }
.fieldset legend { font-family: var(--serif); font-size: 1.2rem; padding: 0 0.5rem; }
.form-note { font-size: 0.85rem; color: var(--stone); }
/* Checkbox/inline field: box beside a normal-case sentence label */
.field--check { flex-direction: row; align-items: flex-start; gap: 0.6rem; }
.field--check input { width: auto; flex: none; margin-top: 0.15rem; }
.field--check label { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--ink-2); font-size: 0.92rem; order: 2; }
.callout {
  background: var(--sand); border-left: 3px solid var(--ink); padding: 1.1rem 1.3rem;
  font-size: 0.92rem; color: var(--ink-2); margin: 1.5rem 0;
}
.callout strong { color: var(--ink); }

@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }

/* Feature/listing grids reused across pages */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem, 3vw, 2.4rem); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 3vw, 2rem); }
@media (max-width: 820px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* ── Contact page ─────────────────────────────────────────────── */
.contact-info { margin-top: clamp(1.5rem, 4vw, 2.5rem); }
.card p { font-size: 0.95rem; color: var(--ink-2); margin-top: 0.3rem; line-height: 1.5; }
.card a { border-bottom: 1px solid var(--rule); padding-bottom: 1px; }
.card a:hover { border-color: var(--ink); }
.contact-map {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--rule); overflow: hidden;
}
.contact-map__iframe {
  display: block; width: 100%; height: 380px; border: 0;
}
.contact-map__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  padding: 1rem 1.2rem;
  border-top: 1px solid var(--rule);
  background: var(--sand);
}
.contact-map__address {
  font-size: 0.88rem; color: var(--ink-2);
}
.contact-map__address strong { color: var(--ink); font-weight: 600; }

/* ── Curl care — guide-specific controls ─────────────────────── */
.guide-read-link {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 0.42rem 0.9rem;
  transition: background .2s ease, color .2s ease;
  text-decoration: none;
}
.guide-read-link:hover { background: var(--ink); color: var(--paper); }

.guide-back {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--stone);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  margin-bottom: 2rem;
  transition: color .2s ease, border-color .2s ease;
}
.guide-back:hover { color: var(--ink); border-color: var(--ink); }

/* ── Shop — product cards ─────────────────────────────────────── */
.shop-partner {
  max-width: var(--maxw); margin-inline: auto;
  padding: clamp(1.8rem,4vw,2.8rem) var(--gutter) 0;
}
.product-grid {
  max-width: var(--maxw); margin-inline: auto;
  padding: clamp(1.5rem,4vw,3rem) var(--gutter) clamp(2.5rem,6vw,5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.product-card { display: flex; flex-direction: column; }
.product-card__img-link { display: block; background: var(--sand); overflow: hidden; flex-shrink: 0; }
.product-card__img { aspect-ratio: 1 / 1; overflow: hidden; background: var(--sand); }
.product-card__img img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 1.6rem; transition: transform .55s ease;
}
.product-card__img-link:hover .product-card__img img { transform: scale(1.07); }
.product-card__body {
  padding: 1rem 0 0.2rem; flex: 1;
  display: flex; flex-direction: column;
  border-top: 2px solid var(--ink);
}
.product-card__brand {
  font-size: 0.63rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 0.35rem;
}
.product-card__name {
  font-family: var(--serif); font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 500; line-height: 1.2; margin-bottom: 0.5rem;
}
.product-card__desc {
  font-size: 0.85rem; color: var(--ink-2); line-height: 1.55;
  flex: 1; margin-bottom: 1rem;
}
.product-card__foot {
  display: flex; align-items: baseline;
  justify-content: space-between; gap: 1rem; margin-top: auto;
}
.product-card__price { font-family: var(--serif); font-size: 1.2rem; }
.product-card__cta {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--stone);
  border-bottom: 1px solid var(--stone); padding-bottom: 1px;
  white-space: nowrap;
  transition: color .2s ease, border-color .2s ease;
}
.product-card__cta:hover { color: var(--ink); border-color: var(--ink); }
.product-card[hidden] { display: none; }
@media (max-width: 900px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .product-grid { grid-template-columns: 1fr; } }

/* ── Motion ───────────────────────────────────────────────────── */
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
