/* ============================================================
   Three Spoons Catering — components.css
   Buttons · accordion · banner · catalogue · toc · prose-band · rate-card · postcards
   ============================================================ */

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 12px 18px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--t-fast) var(--ease),
    background-color var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease),
    border-color var(--t-fast) var(--ease);
  white-space: nowrap;
  will-change: transform;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn--phone {
  background: var(--cta-bg);
  color: var(--paper-2);
  padding: 12px 20px 12px 16px;
}
.btn--phone:hover { background: var(--cta-bg-hover); }
.btn--phone .num { font-family: var(--font-mono); font-weight: 600; letter-spacing: 0.02em; }

.btn--primary {
  background: var(--surface-dark);
  color: var(--paper);
  padding: 14px 22px;
  font-size: var(--fs-base);
}
.btn--primary:hover { background: var(--ink-2); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
  padding: 14px 22px;
  font-size: var(--fs-base);
}
.btn--ghost:hover { border-color: var(--ink); }

.btn--ghost-light {
  background: transparent;
  color: var(--paper);
  border-color: rgba(245, 241, 232, 0.3);
  padding: 14px 22px;
  font-size: var(--fs-base);
}
.btn--ghost-light:hover {
  border-color: var(--paper);
  background: rgba(245, 241, 232, 0.06);
}

.btn--lg { padding: 16px 26px; font-size: var(--fs-base); }
.btn--inline { padding: 6px 12px; font-size: var(--fs-xs); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 500;
  font-size: var(--fs-sm);
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.btn-link:hover { color: var(--accent-deep); border-color: var(--accent); }
.btn-link::after { content: "→"; }

/* ---------- Accordion / FAQ ---------- */
details.qa {
  padding: var(--sp-5) 0;
  border-top: 1px solid var(--line);
}
details.qa:last-of-type { border-bottom: 1px solid var(--line); }
details.qa > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-4);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: var(--fs-md);
  letter-spacing: -0.012em;
  color: var(--ink);
}
details.qa > summary::-webkit-details-marker { display: none; }
details.qa > summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 300;
  color: var(--accent-deep);
  transition: transform var(--t-fast) var(--ease);
  flex-shrink: 0;
  line-height: 1;
}
details.qa[open] > summary::after { transform: rotate(45deg); }
details.qa > div {
  padding-top: var(--sp-3);
  color: var(--ink-3);
  font-size: var(--fs-sm);
}
details.qa > div p { font-size: inherit; color: inherit; margin: 0; }
details.qa > div p + p { margin-top: var(--sp-3); }

.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 1024px) {
  .faq { grid-template-columns: minmax(0, 380px) 1fr; gap: var(--sp-8); }
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: var(--sp-3);
  right: var(--sp-3);
  bottom: var(--sp-3);
  z-index: 60;
  background: var(--surface-dark);
  color: var(--paper);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  display: none;
  flex-direction: column;
  gap: var(--sp-4);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.45);
  max-width: 720px;
  margin-inline: auto;
}
.cookie-banner[data-show="true"] { display: flex; }
.cookie-banner__title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: var(--fs-md);
  letter-spacing: -0.012em;
}
.cookie-banner__text {
  font-size: var(--fs-sm);
  color: rgba(245, 241, 232, 0.78);
  margin: 0;
}
.cookie-banner__text a { color: var(--accent); text-decoration: underline; text-decoration-color: rgba(122, 150, 87, 0.5); }
.cookie-banner__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.cookie-banner .btn { font-size: var(--fs-sm); padding: 10px 16px; }
.cookie-banner .btn--ghost-light { padding: 10px 16px; }

.cookie-prefs {
  display: none;
  flex-direction: column;
  gap: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(245, 241, 232, 0.15);
}
.cookie-prefs[data-show="true"] { display: flex; }
.cookie-prefs label {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: rgba(245, 241, 232, 0.85);
}
.cookie-prefs input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--accent);
}
.cookie-prefs label[data-locked] { opacity: 0.7; }

/* ---------- Breadcrumbs ---------- */
.crumbs {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding: var(--sp-5) 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--accent-deep); }
.crumbs span[aria-current] { color: var(--ink); }
.crumbs li:not(:last-child)::after { content: "/"; margin-left: var(--sp-2); color: var(--line-2); }
.crumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.crumbs ol li { display: inline; }

/* ---------- Two-column long-form ---------- */
.longform {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .longform { grid-template-columns: minmax(0, 280px) 1fr; gap: var(--sp-8); }
}
.longform aside h3 {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: var(--sp-3);
}
.longform aside ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--sp-2);
}
.longform aside ul a {
  font-size: var(--fs-sm);
  color: var(--ink-2);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.longform aside ul a:hover, .longform aside ul a[aria-current] {
  color: var(--ink);
  border-bottom-color: var(--accent);
}
.longform article h2 { margin-top: var(--sp-7); }
.longform article h2:first-child { margin-top: 0; }
.longform article h3 { margin-top: var(--sp-6); margin-bottom: var(--sp-3); }
.longform article p { margin-top: var(--sp-3); }
.longform article ul {
  margin-top: var(--sp-3);
  padding-left: var(--sp-5);
  display: grid;
  gap: var(--sp-2);
}
.longform article ul li { color: var(--ink-2); font-size: var(--fs-base); }

/* ---------- Page hero image strip ---------- */
.page-hero-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0;
  background: var(--ink-3);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 768px) {
  .page-hero-image { aspect-ratio: 16 / 7; }
}
@media (min-width: 1280px) {
  .page-hero-image { aspect-ratio: 21 / 9; }
}
.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.92) contrast(1.04);
}

/* ---------- Page header (internal pages) ---------- */
.page-header {
  padding-block: var(--sp-7) var(--sp-7);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
@media (min-width: 768px) {
  .page-header { padding-block: var(--sp-8) var(--sp-7); }
}
.page-header__grid {
  display: grid;
  gap: var(--sp-5);
}
@media (min-width: 1024px) {
  .page-header__grid { grid-template-columns: 1.4fr 1fr; align-items: end; gap: var(--sp-7); }
}
.page-header h1 {
  font-size: clamp(40px, 6.4vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.022em;
}
.page-header p { font-size: var(--fs-md); color: var(--ink-2); margin-top: var(--sp-4); }

/* ---------- Contact cards (Phone / Email / Kitchen) ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
}
.contact-card {
  padding: var(--sp-6);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: border-color var(--t) var(--ease), transform var(--t) var(--ease);
}
.contact-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.contact-card__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.contact-card__label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 3px rgba(77, 122, 79, 0.22);
}
.contact-card__big {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 30px);
  letter-spacing: -0.022em;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.05;
  transition: color var(--t-fast) var(--ease);
  word-break: keep-all;
}
.contact-card__big:hover { color: var(--accent-deep); text-decoration: none; }
.contact-card__big.mono {
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.005em;
  white-space: nowrap;
}
.contact-card__big--email {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(13px, 1.3vw, 15px);
  letter-spacing: 0;
  line-height: 1.35;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: none;
  white-space: normal;
}
.contact-card__address {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.contact-card__address .post {
  display: block;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.contact-card__list {
  list-style: none;
  padding: var(--sp-4) 0 0 0;
  margin: var(--sp-2) 0 0 0;
  display: grid;
  gap: var(--sp-3);
  border-top: 1px solid var(--line);
}
.contact-card__list li {
  font-size: var(--fs-sm);
  color: var(--ink-3);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}
.contact-card__list li::before {
  content: "";
  flex: 0 0 14px;
  height: 1px;
  margin-top: 10px;
  background: var(--accent);
}

/* ============================================================
   Print-room components — catalogue, toc, prose-band, rate-card, postcards
   Carried from boston-handyman anti-AI-slop scaffold
   ============================================================ */

/* ---------- Section intro ---------- */
.section-intro {
  max-width: 760px;
  margin-bottom: var(--sp-7);
}
.section-intro h2 {
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.section-intro p {
  margin-top: var(--sp-4);
  font-size: var(--fs-md);
  color: var(--ink-2);
  max-width: 58ch;
}
.section-intro p.lead { font-size: var(--fs-md); }
@media (min-width: 768px) {
  .section-intro { margin-bottom: var(--sp-8); }
}

/* ---------- Catalogue — numbered service rows ---------- */
.catalogue {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--ink);
}
.catalogue__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--sp-4) var(--sp-5);
  align-items: baseline;
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background var(--t) var(--ease);
}
.catalogue__row:hover {
  background: linear-gradient(90deg, transparent 0%, var(--accent-tint) 8%, var(--accent-tint) 92%, transparent 100%);
}
.catalogue__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.86;
  color: var(--accent-deep);
  letter-spacing: -0.025em;
  min-width: 0.9em;
}
.catalogue__body { min-width: 0; }
.catalogue__body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-variation-settings: "opsz" 96, "SOFT" 50;
  font-size: clamp(24px, 2.8vw, 36px);
  letter-spacing: -0.02em;
  margin: 0 0 var(--sp-2) 0;
  line-height: 1.1;
}
.catalogue__body h3 a {
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.catalogue__body h3 a:hover {
  color: var(--accent-deep);
  text-decoration-color: var(--accent);
}
.catalogue__body p {
  margin: 0;
  font-size: var(--fs-base);
  color: var(--ink-3);
  max-width: 56ch;
}
.catalogue__price {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.018em;
  color: var(--ink);
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.catalogue__price small {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: lowercase;
}
@media (max-width: 767px) {
  .catalogue__row { grid-template-columns: auto 1fr; grid-template-rows: auto auto; gap: var(--sp-3) var(--sp-4); }
  .catalogue__num { grid-row: 1 / 3; }
  .catalogue__price { grid-column: 2; grid-row: 2; justify-self: start; }
}

/* ---------- Prose band ---------- */
.prose-band {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
  max-width: 920px;
}
@media (min-width: 1024px) {
  .prose-band { grid-template-columns: 1fr 1.4fr; gap: var(--sp-8); align-items: start; }
}
.prose-band h2 {
  font-size: clamp(40px, 5.8vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.022em;
  margin: 0;
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.prose-band p {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 62ch;
  margin: 0;
}
.prose-band p + p { margin-top: var(--sp-4); }

/* ---------- Table-of-contents — areas list ---------- */
.toc {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--ink);
}
.toc li { border-bottom: 1px solid var(--line); }
.toc a {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: var(--sp-3) var(--sp-4);
  align-items: baseline;
  padding: var(--sp-5) 0;
  text-decoration: none;
  color: var(--ink);
  transition: color var(--t-fast) var(--ease);
}
.toc a:hover { color: var(--accent-deep); text-decoration: none; }
.toc a:hover .toc__leader { border-bottom-color: var(--accent); }
.toc__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.022em;
  line-height: 1.05;
}
.toc__leader {
  align-self: end;
  height: 12px;
  border-bottom: 2px dotted var(--line-2);
  margin: 0 var(--sp-3);
  transition: border-color var(--t-fast) var(--ease);
}
.toc__zip {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
}
.toc__time {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--accent-deep);
  white-space: nowrap;
  min-width: 5ch;
  text-align: right;
}
@media (max-width: 600px) {
  .toc a { grid-template-columns: 1fr auto; grid-template-rows: auto auto; }
  .toc__leader { display: none; }
  .toc__zip { grid-row: 2; grid-column: 1; }
  .toc__time { grid-row: 1 / 3; align-self: center; }
}

/* ---------- Rate card — fridge-magnet sticker ---------- */
.rate-card {
  background: var(--paper-2);
  border: 1px solid var(--ink);
  border-radius: var(--r-sm);
  padding: var(--sp-7) var(--sp-6) var(--sp-6);
  max-width: 880px;
  margin-inline: auto;
  position: relative;
  box-shadow:
    2px 2px 0 0 var(--ink),
    var(--shadow-card);
}
.rate-card::before {
  /* brass-tape strip */
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-1.5deg);
  width: 120px;
  height: 22px;
  background: var(--brass);
  opacity: 0.85;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.rate-card__head {
  text-align: left;
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-5);
  border-bottom: 1px dashed var(--line-2);
}
.rate-card__head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.05;
  margin: 0 0 var(--sp-3) 0;
  letter-spacing: -0.02em;
}
.rate-card__head p { margin: 0; color: var(--ink-3); font-size: var(--fs-base); }
.rate-card__list {
  display: grid;
  gap: var(--sp-5);
  margin: 0;
}
.rate-card__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-3) var(--sp-5);
  align-items: baseline;
  padding-bottom: var(--sp-5);
  border-bottom: 1px dotted var(--line-2);
}
.rate-card__row:last-child { border-bottom: 0; padding-bottom: 0; }
.rate-card__row dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-variation-settings: "opsz" 96, "SOFT" 50;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.018em;
  color: var(--ink);
  line-height: 1.08;
}
.rate-card__row dd { margin: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.rate-card__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(48px, 6.8vw, 88px);
  letter-spacing: -0.022em;
  line-height: 0.88;
  color: var(--accent-deep);
}
.rate-card__note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-align: right;
  max-width: 28ch;
}
.rate-card__foot {
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px dashed var(--line-2);
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink-3);
  font-size: var(--fs-base);
  max-width: 60ch;
}
@media (max-width: 540px) {
  .rate-card__row { grid-template-columns: 1fr; gap: var(--sp-2); }
  .rate-card__row dd { align-items: flex-start; }
  .rate-card__note { text-align: left; }
}

/* ---------- Pinboard / postcards — testimonials ---------- */
.pinboard { padding-block: var(--sp-9); }
.postcards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-7) var(--sp-6);
  margin-top: var(--sp-7);
}
@media (min-width: 768px) {
  .postcards { grid-template-columns: repeat(3, 1fr); gap: var(--sp-7) var(--sp-5); }
}
.postcard {
  position: relative;
  background: #FBF6E6;
  border: 1px solid var(--line-2);
  padding: var(--sp-7) var(--sp-5) var(--sp-5);
  border-radius: 2px;
  box-shadow: 0 8px 24px -12px rgba(31, 35, 28, 0.22);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  min-height: 220px;
}
.postcard--tilt-l { transform: rotate(-1.2deg); }
.postcard--tilt-r { transform: rotate(1.4deg); }
.postcard:hover { transform: rotate(0); transition: transform var(--t) var(--ease); }
.postcard__tape {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 88px;
  height: 22px;
  background: rgba(201, 161, 75, 0.78);
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  pointer-events: none;
}
.postcard__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.46;
  color: var(--ink);
  margin: 0;
  flex: 1;
}
.postcard__sig {
  margin-top: auto;
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  color: var(--ink-2);
  font-weight: 600;
}

/* ---------- Paper texture — subtle noise overlay on body ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.46 0 0 0 0 0.42 0 0 0 0 0.34 0 0 0 0.6 0'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}

/* ============================================================
   Wedding-album / lookbook components — index-only redesign
   ============================================================ */

/* ---------- Hero mosaic — 4-photo asymmetric collage + copy ---------- */
.hero-mosaic {
  padding-block: var(--sp-8) var(--sp-9);
  background: var(--paper);
}
@media (min-width: 768px) {
  .hero-mosaic { padding-block: var(--sp-9) var(--sp-10); }
}
.hero-mosaic__layout {
  display: grid;
  gap: var(--sp-7);
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .hero-mosaic__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: var(--sp-8);
    align-items: center;
  }
}
.hero-mosaic__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
  aspect-ratio: 4 / 5;
  max-width: 640px;
}
.hero-mosaic__tile {
  margin: 0;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
  box-shadow: 0 6px 18px -10px rgba(20, 24, 18, 0.25);
}
.hero-mosaic__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.04);
}
.hero-mosaic__tile--lead {
  grid-row: 1 / 4;
  grid-column: 1;
}
.hero-mosaic__copy {
  display: grid;
  gap: var(--sp-4);
  align-content: start;
}
.hero-mosaic__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.hero-mosaic h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
  margin: 0;
  text-transform: none;
}
.hero-mosaic__lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.45;
  color: var(--ink-2);
  margin: 0;
  max-width: 50ch;
}
.hero-mosaic__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-3);
}

/* ---------- Lookbook — 4 photo-led service rows ---------- */
.lookbook__intro {
  max-width: 700px;
  margin-bottom: var(--sp-8);
}
.lookbook__intro h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5.2vw, 62px);
  line-height: 1.02;
  margin: 0 0 var(--sp-4) 0;
  text-transform: none;
}
.lookbook__intro p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-2);
}
.lookbook__card {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: 1fr;
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--line);
}
.lookbook__card:last-child { border-bottom: 0; }
@media (min-width: 768px) {
  .lookbook__card {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: var(--sp-7);
    align-items: center;
  }
  .lookbook__card--rev { direction: rtl; }
  .lookbook__card--rev > * { direction: ltr; }
}
.lookbook__card--lead {
  padding-bottom: var(--sp-9);
}
@media (min-width: 768px) {
  .lookbook__card--lead { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); }
}
.lookbook__photo { margin: 0; }
.lookbook__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px -16px rgba(20, 24, 18, 0.22);
  filter: saturate(0.92) contrast(1.04);
}
.lookbook__card--lead .lookbook__photo img { aspect-ratio: 5 / 4; }
.lookbook__photo figcaption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  margin-top: var(--sp-3);
  letter-spacing: 0.01em;
}
.lookbook__body { display: grid; gap: var(--sp-4); align-content: center; }
.lookbook__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 500;
}
.lookbook__body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.08;
  margin: 0;
  text-transform: none;
  letter-spacing: -0.005em;
}
.lookbook__body h3 a {
  color: var(--ink);
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  transition: color var(--t-fast) var(--ease), text-decoration-color var(--t-fast) var(--ease);
}
.lookbook__body h3 a:hover { color: var(--accent-deep); text-decoration-color: var(--accent); }
.lookbook__body p {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 58ch;
}
.lookbook__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3) var(--sp-5);
  margin: var(--sp-3) 0 0 0;
  padding-top: var(--sp-4);
  border-top: 1px dashed var(--line-2);
}
@media (min-width: 540px) { .lookbook__meta { grid-template-columns: repeat(3, 1fr); } }
.lookbook__meta dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.lookbook__meta dd {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
}

/* ---------- Editorial pull-quote ---------- */
.pull-quote { padding-block: var(--sp-9); }
@media (min-width: 768px) { .pull-quote { padding-block: var(--sp-10); } }
.pull-quote__body {
  max-width: 24ch;
  margin-inline: auto;
  text-align: center;
  position: relative;
  padding-top: var(--sp-6);
}
.pull-quote__body::before {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  background: var(--brass);
  margin: 0 auto var(--sp-5);
}
.pull-quote__body p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 4.6vw, 54px);
  line-height: 1.16;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
  max-width: none;
}
.pull-quote__sig {
  display: block;
  margin-top: var(--sp-5);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

/* ---------- Season — current menu sidebar ---------- */
.season { padding-block: var(--sp-8); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.season__grid {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .season__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    gap: var(--sp-8);
    align-items: start;
  }
}
.season__intro { align-self: start; }
.season__kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: var(--sp-3);
}
.season__intro h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.04;
  margin: 0 0 var(--sp-3) 0;
  text-transform: none;
}
.season__intro p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-2);
  max-width: 36ch;
}
.season__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.season__list li {
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr minmax(0, 1.4fr);
  gap: var(--sp-3);
  align-items: baseline;
  padding-block: var(--sp-4);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--ink);
}
.season__list li > span:first-child {
  font-weight: 600;
  white-space: nowrap;
}
.season__list li > span:last-child {
  font-style: italic;
  color: var(--ink-3);
}
.season__leader {
  align-self: end;
  height: 1em;
  border-bottom: 1px dotted var(--line-2);
  margin: 0 var(--sp-2);
}
@media (max-width: 540px) {
  .season__list li { grid-template-columns: 1fr; gap: 2px; padding-block: var(--sp-3); }
  .season__leader { display: none; }
}

/* ---------- Prose-narrow — short text-only section ---------- */
.prose-narrow {
  max-width: 70ch;
  margin-inline: auto;
}
.prose-narrow h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.04;
  margin: 0 0 var(--sp-3) 0;
  text-transform: none;
}
.prose-narrow p {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: none;
}
.prose-narrow a {
  color: var(--accent-deep);
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(74, 93, 50, 0.4);
}
.prose-narrow a:hover { text-decoration-color: var(--accent); }
