/* Gelulu Gelato — site styles. Two colours: RED + CREAM, ink for text. */
@font-face {
  font-family: "Gelulu Hand";
  src: url("../fonts/GeluluHand-Regular.woff2") format("woff2"), url("../fonts/GeluluHand-Regular.otf") format("opentype");
  font-weight: 400; font-style: normal; font-display: swap;
}
:root {
  --cream: #F6F1E7;
  --cream-2: #EDE6D6;
  --paper: #FFFDF9;
  --ink: #1B1714;
  --ink-soft: #625A4C;
  --line: #DCD3C1;
  --line-strong: #B9AC92;
  --red: #D42B1F;
  --red-deep: #AE2119;
  --red-tint: #F8E4E1;
  --font-hand: "Gelulu Hand", "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --maxw: 1180px;
  --gutter: clamp(20px, 4vw, 40px);
  --radius: 6px;
  color-scheme: light;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--red); outline-offset: 3px;
}

h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; text-wrap: balance; }
h1 { font-family: var(--font-hand); font-size: clamp(2.4rem, 5.6vw, 4.2rem); line-height: 1.06; font-weight: 400; letter-spacing: 0.02em; }
h2 { font-family: var(--font-hand); font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.1; font-weight: 400; letter-spacing: 0.02em; }
h3 { font-size: 1.3rem; line-height: 1.2; font-weight: 600; }
p { margin: 0; }
.lede { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--ink-soft); max-width: 36em; }
.red { color: var(--red); }
.muted { color: var(--ink-soft); }

.container { width: min(var(--maxw), 100% - 2 * var(--gutter)); margin-inline: auto; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  padding: 0.85em 1.4em; border-radius: 999px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; line-height: 1;
  text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
  transition: background-color 140ms ease, color 140ms ease, border-color 140ms ease, transform 140ms ease;
}
.btn:active { transform: translateY(1px); }
.btn-red { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn-line { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--cream); }
.btn-ghost { background: transparent; color: var(--red); border-color: transparent; padding-inline: 0.4em; }
.btn-ghost:hover { text-decoration: underline; }
.btn[aria-disabled="true"] { opacity: 0.55; cursor: not-allowed; }
button.btn { font: inherit; cursor: pointer; }
button.btn[aria-disabled="true"] { cursor: not-allowed; }
.btn svg { width: 1.05em; height: 1.05em; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream); background: color-mix(in srgb, var(--cream) 92%, transparent);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { height: 44px; width: auto; }
.brand-name { font-family: var(--font-hand); font-weight: 400; font-size: 1.35rem; letter-spacing: 0.02em; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; font-weight: 500; font-size: 0.95rem; color: var(--ink); }
.nav-links a:hover { color: var(--red); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 1.5px solid var(--ink); border-radius: 999px; padding: 8px 12px; font: inherit; font-weight: 600; cursor: pointer; }
@media (max-width: 860px) {
  .nav-links { display: none; position: absolute; left: 0; right: 0; top: 68px; flex-direction: column; align-items: flex-start; gap: 0; background: var(--cream); border-bottom: 1px solid var(--line); padding: 8px var(--gutter) 16px; }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-links li:last-child a { border-bottom: 0; }
  .nav-toggle { display: inline-block; }
  .nav-cta .btn { padding: 0.7em 1em; font-size: 0.88rem; }
}

/* Sections */
.section { padding-block: clamp(56px, 8vw, 104px); border-top: 1px solid var(--line); }
.section-head { display: grid; gap: 14px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head .lede { margin-top: 4px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split > * { min-width: 0; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.photo { border-radius: var(--radius); overflow: hidden; background: var(--cream-2); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo.portrait { aspect-ratio: 4 / 5; }
.photo.square { aspect-ratio: 1; }

/* Hero */
.hero { padding-block: clamp(40px, 6vw, 88px) clamp(48px, 7vw, 96px); }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-copy { display: grid; gap: 24px; }
.hero-copy .lede { max-width: 30em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-hours { display: grid; margin: -6px 0 0; max-width: 22em; font-variant-numeric: tabular-nums; }   /* 20 Sep 2026: hours replace the flavour list in the lede (her call) */
.hero-hours div { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.hero-hours div:first-child { border-top: 1px solid var(--line); }
.hero-hours dt { color: var(--ink-soft); }
.hero-hours dd { margin: 0; font-weight: 600; white-space: nowrap; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 8px 28px; font-size: 0.9rem; color: var(--ink-soft); padding-top: 8px; }
.hero-facts strong { color: var(--ink); font-weight: 600; }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } .hero-grid .photo { order: -1; aspect-ratio: 4 / 4.4; } }

/* (Tagline strip removed 20 Sep 2026 — founder wants no auto-rolling strip; home is hero → doors → about.) */

/* Flavours */
.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.tab { background: transparent; border: 1.5px solid var(--line-strong); border-radius: 999px; padding: 8px 16px; font: inherit; font-weight: 600; font-size: 0.9rem; cursor: pointer; color: var(--ink-soft); }
.tab[aria-selected="true"], .tab[aria-pressed="true"] { border-color: var(--ink); color: var(--ink); background: var(--paper); }
.flavour-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 clamp(32px, 4vw, 64px); }
@media (max-width: 760px) { .flavour-grid { grid-template-columns: 1fr; } }
.flavour { display: grid; grid-template-columns: 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line); align-items: start; }
.fl-body { display: grid; gap: 8px; min-width: 0; }
.fl-head { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; }
.flavour h3 { font-size: 1.35rem; }
.profile { display: flex; flex-wrap: wrap; gap: 4px 0; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.profile span + span::before { content: "\00B7"; color: var(--red); margin: 0 9px; font-weight: 700; }
.flavour p.desc { color: var(--ink-soft); max-width: 44em; }
.flavour .tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 4px; padding: 3px 7px; }
.tier { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; border-radius: 999px; padding: 5px 10px; border: 1.5px solid var(--red); color: var(--red); }
.tier.xp { background: var(--red); color: #fff; }
.flavour-note { margin-top: 24px; color: var(--ink-soft); font-size: 0.95rem; max-width: 62ch; }

/* Price tables */
.price-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 860px) { .price-grid { grid-template-columns: 1fr; } }
.price-block { display: grid; gap: 14px; }
.price-block + .price-block { margin-top: 36px; }
.price-table { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.price-table th, .price-table td { text-align: left; padding: 12px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.price-table th { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.price-table td:last-child, .price-table th:last-child { text-align: right; white-space: nowrap; }
.price-table td.price { font-family: var(--font-hand); font-weight: 400; font-size: 1.35rem; color: var(--red); }
.rule-list { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; color: var(--ink-soft); }
.rule-list li { padding-left: 18px; position: relative; }
.rule-list li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }

/* Find us */
.hours { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.hours td { padding: 10px 0; border-bottom: 1px solid var(--line); }
.hours td:last-child { text-align: right; white-space: nowrap; font-weight: 600; }
.address { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; line-height: 1.25; }
.find-grid { display: grid; gap: 22px; }
.tips { display: grid; gap: 12px; }
.tip { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; color: var(--ink-soft); }
.tip svg { width: 22px; height: 22px; color: var(--red); margin-top: 2px; }
.tip strong { color: var(--ink); }

/* Order */
/* Order: steps, nudges, sticky bar */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; list-style: none; margin: 0 0 clamp(28px, 4vw, 44px); padding: 0; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; gap: 10px; } }
.steps li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; padding: 16px 0; border-top: 1.5px solid var(--ink); }
.steps li div { display: grid; gap: 2px; }
.steps strong { font-size: 1rem; }
.steps li div span { color: var(--ink-soft); font-size: 0.9rem; }
.step-n { font-family: var(--font-hand); font-size: 1.5rem; line-height: 1; color: var(--red); }
.mi-tag { display: inline-block; margin-left: 8px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); border: 1.5px solid var(--red); border-radius: 999px; padding: 2px 8px; vertical-align: 2px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font: inherit; font-size: 0.9rem; font-weight: 500; background: var(--paper); border: 1.5px solid var(--line-strong); border-radius: 999px; padding: 10px 14px; cursor: pointer; color: var(--ink); min-height: 40px; }
.chip[aria-pressed="true"], .chip[aria-checked="true"] { border-color: var(--ink); background: var(--ink); color: var(--cream); }
.when-custom { margin-top: 10px; }
.dl-opts { display: grid; gap: 8px; }
.dl-opt { font: inherit; text-align: left; background: var(--paper); border: 1.5px solid var(--line-strong); border-radius: var(--radius); padding: 10px 12px; cursor: pointer; color: var(--ink); display: grid; gap: 3px; }
.dl-opt strong { font-size: 0.93rem; }
.dl-opt span { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.4; }
.dl-opt[aria-pressed="true"], .dl-opt[aria-checked="true"] { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.dl-opt:hover { border-color: var(--ink); }
.opt { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--ink-soft); }
.cart-nudge { background: var(--red-tint); border-radius: 4px; padding: 10px 12px; font-size: 0.88rem; color: var(--ink); display: flex; justify-content: space-between; gap: 10px; align-items: center; }
.cart-nudge a { color: var(--red-deep); font-weight: 600; text-decoration: none; white-space: nowrap; }
.open-line { min-height: 1.2em; }
.delivery-row { margin-top: clamp(28px, 4vw, 44px); padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px; }
.delivery-row p { color: var(--ink-soft); max-width: 48ch; }
.delivery-row p strong { color: var(--ink); }

/* Order builder: menu + cart */
.mi-sub { color: var(--ink-soft); font-size: 0.88rem; }
.btn-sm { padding: 0.6em 1.1em; font-size: 0.85rem; }
.stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--ink); border-radius: 999px; overflow: hidden; }
.stepper button { background: none; border: 0; width: 40px; height: 40px; font: inherit; font-size: 1.1rem; line-height: 1; cursor: pointer; color: var(--ink); }
.stepper button:hover { background: var(--cream-2); }
.stepper button:disabled { color: var(--line); cursor: default; background: none; }
.stepper output { min-width: 26px; text-align: center; font-weight: 600; font-variant-numeric: tabular-nums; font-size: 0.95rem; }

.cart-head { display: flex; justify-content: space-between; align-items: baseline; }
.cart-head h3 { font-size: 1.25rem; }
.cart-count { color: var(--ink-soft); font-size: 0.88rem; }
.cart-lines { display: grid; }
.cart-empty { color: var(--ink-soft); font-size: 0.92rem; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cart-line { display: grid; grid-template-columns: 1fr auto; gap: 4px 12px; padding: 12px 0; border-top: 1px solid var(--line); align-items: center; }
.cart-line:last-child { border-bottom: 1px solid var(--line); }
.cl-name { font-weight: 600; }
.cl-sub { grid-column: 1; color: var(--ink-soft); font-size: 0.86rem; }
.cl-price { grid-row: 1; grid-column: 2; font-family: var(--font-hand); font-weight: 400; font-size: 1.15rem; font-variant-numeric: tabular-nums; text-align: right; }
.cl-ctl { grid-column: 2; justify-self: end; }
.cl-ctl .stepper button { width: 36px; height: 36px; font-size: 1rem; }
.stepper button:focus-visible { outline-offset: -3px; }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; font-weight: 600; }
.cart-total strong { font-family: var(--font-hand); font-weight: 400; font-size: 1.9rem; color: var(--red); font-variant-numeric: tabular-nums; }
.cart-total small { display: block; font-weight: 400; font-size: 0.8rem; color: var(--ink-soft); }
.cart-fields { display: grid; gap: 12px; }
.cart-fields .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: grid; gap: 6px; }
.field label, .field .field-label { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); background: var(--paper); border: 1.5px solid var(--line-strong); border-radius: 4px; padding: 10px 12px; width: 100%; min-height: 44px;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); }
.hint { font-size: 0.85rem; color: var(--ink-soft); }
.error { color: var(--red); font-size: 0.9rem; min-height: 1.2em; }

/* Weddings teaser + tiers */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 860px) { .tiers { grid-template-columns: 1fr; } }
.tier-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: grid; gap: 10px; align-content: start; }
.tier-card.featured { border-color: var(--red); border-width: 1.5px; }
.tier-card .name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.tier-card .guests { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--red); }
.tier-card ul { margin: 6px 0 0; padding: 0; list-style: none; display: grid; gap: 6px; color: var(--ink-soft); font-size: 0.95rem; }
.tier-card li::before { content: "\2014"; color: var(--red); margin-right: 8px; }
.event-types { display: flex; flex-wrap: wrap; gap: 8px; }
.event-types span { border: 1.5px solid var(--line-strong); border-radius: 999px; padding: 6px 14px; font-size: 0.9rem; font-weight: 500; background: var(--paper); }

/* About */
.quote { font-family: var(--font-display); font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; }
.quote::before { content: "\201C"; color: var(--red); }
.quote::after { content: "\201D"; color: var(--red); }
.about-copy { display: grid; gap: 18px; }
.about-copy p { color: var(--ink-soft); max-width: 58ch; }
.about-copy p strong { color: var(--ink); }

/* FAQ */
.faq { max-width: 760px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--red); font-weight: 500; font-size: 1.4rem; line-height: 1; flex: none; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { padding: 0 0 20px; color: var(--ink-soft); max-width: 62ch; }

/* Footer */
.footer { border-top: 1px solid var(--line); background: var(--cream-2); padding: clamp(40px, 5vw, 64px) 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { font-family: var(--font-body); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 12px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--red); }
.footer-brand img { height: 64px; width: auto; margin-bottom: 12px; }
.footer-brand p { color: var(--ink-soft); font-size: 0.95rem; max-width: 30ch; }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 0.85rem; color: var(--ink-soft); }
.footer-bottom .hand { font-family: var(--font-hand); font-size: 1.25rem; color: var(--ink); }

/* Page hero for sub-pages */
.page-hero { padding-block: clamp(40px, 6vw, 80px); display: grid; gap: 18px; }
.page-hero .lede { max-width: 40em; }
.fine { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 40px; }
@media (max-width: 760px) { .fine { grid-template-columns: 1fr; } }
.fine dt { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin-bottom: 4px; }
.fine dd { margin: 0 0 8px; color: var(--ink-soft); }
.callout { background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: var(--radius); padding: 20px 22px; color: var(--ink-soft); }
.callout strong { color: var(--ink); }
.cta-band { background: var(--ink); color: var(--cream); border-radius: var(--radius); padding: clamp(28px, 4vw, 48px); display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.cta-band h2 { color: var(--cream); }
.cta-band h2 .red { color: var(--red); }
.cta-band p { color: color-mix(in srgb, var(--cream) 75%, transparent); }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-band .btn-line { color: var(--cream); border-color: var(--cream); }
.cta-band .btn-line:hover { background: var(--cream); color: var(--ink); }
@media (max-width: 760px) { .cta-band { grid-template-columns: 1fr; } }

/* --- audit additions (03 Sep 2026) --- */
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--ink); color: var(--cream); padding: 10px 14px; border-radius: 4px; text-decoration: none; font-weight: 600; }
.skip:focus { top: 12px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
[id] { scroll-margin-top: 84px; }
.photo picture { display: contents; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.pt-10 { padding-top: 10px; }
.pb-section { padding-bottom: clamp(40px, 6vw, 80px); }
.tier-card h3.name { margin: 0; }
h2.quote { font-family: var(--font-display); letter-spacing: -0.01em; }
.nav-links a[aria-current="page"] { color: var(--red); }

@media print {
  .nav, .sticky-bar, .tabs, .cart, .delivery-row, .cta-band, .skip { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: inherit; text-decoration: none; }
  .section { padding: 12px 0; }
}
.price-table td .mi-sub { display: block; }

/* ===== ORDER v7: product cards → product sheet → cart drawer (04 Sep 2026) ===== */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 28px); }
@media (max-width: 760px) { .products { grid-template-columns: 1fr; } }
.product { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: grid; grid-template-rows: auto 1fr; }
.p-photo { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-2); }
.p-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 300ms ease; }
.product:hover .p-photo img { transform: scale(1.03); }
@media (prefers-reduced-motion: reduce) { .p-photo img { transition: none; } .product:hover .p-photo img { transform: none; } }
.p-body { padding: 18px 20px 20px; display: grid; gap: 8px; align-content: start; }
.p-body h3 { font-size: 1.25rem; }
.p-body p { color: var(--ink-soft); font-size: 0.93rem; }
.p-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 8px; }
.p-price { font-family: var(--font-hand); font-size: 1.45rem; color: var(--red); white-space: nowrap; }
.order-notes { margin-top: clamp(24px, 3vw, 36px); border-top: 1px solid var(--line); }
.order-notes details { border-bottom: 1px solid var(--line); }
.order-notes summary { cursor: pointer; padding: 14px 0; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.order-notes summary::-webkit-details-marker { display: none; }
.order-notes summary::after { content: "+"; color: var(--red); font-size: 1.3rem; line-height: 1; }
.order-notes details[open] summary::after { transform: rotate(45deg); }
.order-notes details p { color: var(--ink-soft); padding: 0 0 16px; max-width: 60ch; }

.scrim { position: fixed; inset: 0; background: rgba(27, 23, 20, 0.45); z-index: 60; }
body.modal-open { overflow: hidden; }

.sheet, .drawer { position: fixed; inset: 0; z-index: 70; display: grid; }
.sheet { place-items: end center; }
@media (min-width: 761px) { .sheet { place-items: center; padding: 24px; } }
.sheet-panel { background: var(--paper); width: 100%; max-height: 92vh; max-height: 92dvh; min-height: 0; border-radius: 14px 14px 0 0; display: grid; grid-template-rows: auto 1fr auto; overflow: hidden; position: relative; box-shadow: 0 -12px 40px rgba(27, 23, 20, 0.2); }
@media (min-width: 761px) { .sheet-panel { max-width: 920px; max-height: 90vh; border-radius: 12px; grid-template-columns: 1fr 1.15fr; grid-template-rows: 1fr auto; box-shadow: 0 24px 60px rgba(27, 23, 20, 0.25); } .sheet-photo { grid-row: 1 / 3; } .sheet-foot { grid-column: 2; } }
.sheet-close, .drawer-close { position: absolute; top: 10px; right: 10px; z-index: 2; width: 40px; height: 40px; border-radius: 999px; border: 0; background: var(--paper); color: var(--ink); font-size: 1.5rem; line-height: 1; cursor: pointer; box-shadow: 0 2px 10px rgba(27, 23, 20, 0.15); }
.sheet-photo { margin: 0; aspect-ratio: 16 / 9; overflow: hidden; background: var(--cream-2); }
@media (min-width: 761px) { .sheet-photo { aspect-ratio: auto; min-height: 100%; } }
.sheet-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sheet-photo picture { display: contents; }
.sheet-body { overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; min-height: 0; padding: 20px 20px 8px; display: grid; gap: 18px; align-content: start; }
.sheet-head h3 { font-size: 1.5rem; }
.sheet-sub { font-family: var(--font-hand); font-size: 1.35rem; color: var(--red); margin-top: 2px; }
.sheet-facts { display: flex; flex-wrap: wrap; gap: 6px 18px; list-style: none; margin: 0; padding: 0; color: var(--ink-soft); font-size: 0.86rem; }
.sheet-facts li::before { content: "·"; color: var(--red); margin-right: 8px; font-weight: 700; }
.sheet-flavours { display: grid; gap: 10px; }
.sheet-flavours-head { display: flex; justify-content: space-between; align-items: baseline; }
.sheet-count { font-size: 0.85rem; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
@media (max-width: 420px) { .tiles { grid-template-columns: 1fr; } }
.tile { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 4px 10px; text-align: left; font: inherit; font-size: 0.92rem; background: var(--cream); border: 1.5px solid var(--line-strong); border-radius: 8px; padding: 10px 12px; cursor: pointer; color: var(--ink); min-height: 48px; }
.tile .t-name { font-weight: 600; }
.tile .t-meta { grid-column: 1; color: var(--ink-soft); font-size: 0.76rem; letter-spacing: 0.04em; text-transform: uppercase; }
.tile .t-price { grid-column: 2; grid-row: 1 / 3; font-family: var(--font-hand); font-size: 1.05rem; color: var(--ink-soft); white-space: nowrap; }
.tile[aria-pressed="true"] { border-color: var(--red); background: var(--red-tint); }
.tile[aria-pressed="true"] .t-price { color: var(--red); }
.tile[aria-disabled="true"] { opacity: 0.45; cursor: not-allowed; }
.tile:hover { border-color: var(--ink); }
.sheet-flavours .surprise { justify-self: start; }
.sheet-qty { display: grid; gap: 8px; padding-bottom: 12px; }
.sheet-foot { padding: 12px 20px calc(16px + env(safe-area-inset-bottom, 0px)); border-top: 1px solid var(--line); background: var(--paper); display: grid; gap: 8px; }
.sheet-foot .btn { width: 100%; padding-block: 1em; }
.sheet-note { min-height: 1.2em; }

.drawer { justify-items: end; }
.drawer-panel { background: var(--paper); height: 100%; min-height: 0; width: min(460px, 100%); display: grid; grid-template-rows: auto 1fr auto; box-shadow: -12px 0 40px rgba(27, 23, 20, 0.2); position: relative; }
.drawer-head { display: flex; align-items: baseline; gap: 12px; padding: 18px 20px 12px; border-bottom: 1px solid var(--line); }
.drawer-head h3 { font-size: 1.35rem; }
.drawer-head .drawer-close { top: 12px; right: 14px; }
.drawer-scroll { overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; min-height: 0; padding: 8px 20px 20px; display: grid; gap: 16px; align-content: start; }
.drawer-foot { padding: 12px 20px calc(16px + env(safe-area-inset-bottom, 0px)); border-top: 1px solid var(--line); display: grid; gap: 8px; }
.drawer-foot .btn { width: 100%; padding-block: 1em; }
.add-more { justify-self: start; }

.cart-fab { position: fixed; left: 50%; transform: translateX(-50%); bottom: calc(14px + env(safe-area-inset-bottom, 0px)); z-index: 50; display: flex; align-items: center; gap: 14px; background: var(--ink); color: var(--cream); border: 0; border-radius: 999px; padding: 12px 18px 12px 20px; font: inherit; cursor: pointer; box-shadow: 0 10px 30px rgba(27, 23, 20, 0.3); max-width: calc(100vw - 32px); }
.cart-fab span, .cart-fab strong { white-space: nowrap; }
.cart-fab .fab-count { font-size: 0.8rem; opacity: 0.8; }
.cart-fab .fab-label { font-weight: 600; }
.cart-fab .fab-total { font-family: var(--font-hand); font-size: 1.3rem; color: #fff; }
@media (min-width: 761px) { .cart-fab { left: auto; right: 24px; transform: none; } }
body.has-fab { padding-bottom: 84px; }

/* day strip + time slots (v7.3) */
.when-custom { display: grid; gap: 10px; margin-top: 10px; }
.day-strip { display: flex; gap: 8px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 2px 2px 6px; margin: 0 -2px; scrollbar-width: thin; }
.day-chip { flex: 0 0 auto; scroll-snap-align: start; min-width: 68px; text-align: center; font: inherit; background: var(--paper); border: 1.5px solid var(--line-strong); border-radius: 10px; padding: 8px 10px; cursor: pointer; color: var(--ink); line-height: 1.2; }
.day-chip small { display: block; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 2px; }
.day-chip strong { font-weight: 600; font-size: 0.95rem; }
.day-chip[aria-checked="true"] { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.day-chip[aria-checked="true"] small { color: var(--cream); opacity: 0.8; }
.day-chip[aria-disabled="true"] { opacity: 0.4; cursor: not-allowed; }
.slot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.slot { font: inherit; font-size: 0.9rem; font-weight: 500; background: var(--paper); border: 1.5px solid var(--line-strong); border-radius: 999px; padding: 9px 6px; cursor: pointer; color: var(--ink); font-variant-numeric: tabular-nums; min-height: 40px; }
.slot[aria-checked="true"] { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.slot-hint { min-height: 1.2em; }

/* ===== MOTION (05 Sep 2026): smoother buttons + overlays. One easing, two durations. ===== */
:root { --ease: cubic-bezier(0.2, 0.7, 0.2, 1); --t-fast: 160ms; --t-med: 260ms; }
.btn, .chip, .tile, .day-chip, .slot, .dl-opt, .stepper button, .cart-fab, .sheet-close, .drawer-close, .order-notes summary, .nav-toggle, .tab {
  -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}

/* primary buttons: settle instead of snap, press in, lift on hover (mouse only) */
.btn {
  transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}
.btn:active { transform: translateY(0) scale(0.97); }
.btn[aria-disabled="true"]:active { transform: none; }
@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-1px); }
  .btn-red:hover { box-shadow: 0 8px 18px rgba(212, 43, 31, 0.22); }
  .btn-line:hover { box-shadow: 0 6px 14px rgba(27, 23, 20, 0.14); }
  .btn-ghost:hover, .btn[aria-disabled="true"]:hover { transform: none; box-shadow: none; }
  .btn:active, .btn-red:active { transform: translateY(0) scale(0.97); box-shadow: 0 2px 6px rgba(27, 23, 20, 0.12); }
  .btn[aria-disabled="true"]:active { transform: none; box-shadow: none; }
}

/* choice controls: chips, flavour tiles, day + time pickers, rider options, steppers */
.chip, .tile, .day-chip, .slot, .dl-opt, .stepper button, .sheet-close, .drawer-close, .order-notes summary {
  transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}
.tile, .dl-opt, .day-chip { border-radius: 10px; }
.chip:active, .tile:active, .day-chip:active, .slot:active, .dl-opt:active { transform: scale(0.97); }
.tile[aria-disabled="true"]:active, .day-chip[aria-disabled="true"]:active { transform: none; }
.tile[aria-pressed="true"] { box-shadow: inset 0 0 0 1px var(--red); }
.tile[aria-pressed="true"]:hover { border-color: var(--red); }
.day-chip[aria-checked="true"], .slot[aria-checked="true"], .chip[aria-checked="true"], .chip[aria-pressed="true"] { box-shadow: 0 4px 12px rgba(27, 23, 20, 0.16); }
@media (hover: hover) and (pointer: fine) {
  .chip:hover, .day-chip:hover, .slot:hover { border-color: var(--ink); }
  .tile:hover:not([aria-disabled="true"]) { background: var(--paper); transform: translateY(-1px); box-shadow: 0 4px 10px rgba(27, 23, 20, 0.08); }
  .tile[aria-pressed="true"]:hover { background: var(--red-tint); }
  .dl-opt:hover { box-shadow: 0 4px 10px rgba(27, 23, 20, 0.08); }
  .order-notes summary:hover { color: var(--red); }
  .sheet-close:hover, .drawer-close:hover { background: var(--cream-2); transform: rotate(90deg); }
}
.stepper button:active { background: var(--line); }
.sheet-close:active, .drawer-close:active { transform: rotate(90deg) scale(0.92); background: var(--cream-2); }
.order-notes summary::after { transition: transform var(--t-med) var(--ease); }

/* overlays: fade the scrim, slide the sheet up (pop on desktop), slide the drawer in; .closing runs the reverse before [hidden] */
.scrim { animation: fade-in var(--t-med) var(--ease) both; }
.scrim.closing { animation: fade-out var(--t-fast) var(--ease) both; }
.sheet-panel { animation: sheet-up var(--t-med) var(--ease) both; }
.sheet.closing .sheet-panel { animation: sheet-down var(--t-fast) var(--ease) both; }
@media (min-width: 761px) {
  .sheet-panel { animation-name: pop-in; }
  .sheet.closing .sheet-panel { animation-name: pop-out; }
}
.drawer-panel { animation: slide-in var(--t-med) var(--ease) both; }
.drawer.closing .drawer-panel { animation: slide-out var(--t-fast) var(--ease) both; }
@keyframes fade-in { from { opacity: 0; } }
@keyframes fade-out { to { opacity: 0; } }
@keyframes sheet-up { from { transform: translateY(40px); opacity: 0; } }
@keyframes sheet-down { to { transform: translateY(28px); opacity: 0; } }
@keyframes pop-in { from { transform: translateY(14px) scale(0.98); opacity: 0; } }
@keyframes pop-out { to { transform: translateY(10px) scale(0.98); opacity: 0; } }
@keyframes slide-in { from { transform: translateX(48px); opacity: 0; } }
@keyframes slide-out { to { transform: translateX(36px); opacity: 0; } }

/* floating "Review order" pill: pops in, lifts on hover */
.cart-fab { animation: fab-in var(--t-med) var(--ease) both; transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease); }
.cart-fab:active { transform: translateX(-50%) scale(0.97); }
@keyframes fab-in { from { opacity: 0; transform: translateX(-50%) translateY(14px) scale(0.96); } to { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); } }
@media (hover: hover) and (pointer: fine) {
  .cart-fab:hover { transform: translateX(-50%) translateY(-2px); box-shadow: 0 14px 34px rgba(27, 23, 20, 0.34); }
}
@media (min-width: 761px) {
  .cart-fab { animation-name: fab-in-desk; }
  .cart-fab:active { transform: scale(0.97); }
  @keyframes fab-in-desk { from { opacity: 0; transform: translateY(14px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
  @media (hover: hover) and (pointer: fine) { .cart-fab:hover { transform: translateY(-2px); } }
}

/* respect reduced motion: colours still change, nothing moves */
@media (prefers-reduced-motion: reduce) {
  .scrim, .scrim.closing, .sheet-panel, .sheet.closing .sheet-panel, .drawer-panel, .drawer.closing .drawer-panel, .cart-fab { animation: none !important; }
  .btn, .chip, .tile, .day-chip, .slot, .dl-opt, .stepper button, .sheet-close, .drawer-close, .cart-fab, .order-notes summary, .order-notes summary::after { transition: none !important; }
  .btn:hover, .btn:active, .tile:hover, .chip:active, .tile:active, .day-chip:active, .slot:active, .dl-opt:active, .sheet-close:hover, .drawer-close:hover, .sheet-close:active, .drawer-close:active, .cart-fab:hover, .cart-fab:active { transform: none !important; }
  .order-notes details[open] summary::after { transform: rotate(45deg); }
}

/* ===== MULTI-PAGE (05 Sep 2026): one job per page. Home = hero + four photo doors + a short about. ===== */
.section.page-top { border-top: 0; padding-top: clamp(36px, 5vw, 72px); }
.doors { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2.4vw, 28px); }
@media (max-width: 760px) { .doors { grid-template-columns: 1fr; } }
.door { display: grid; grid-template-rows: auto 1fr; text-decoration: none; color: inherit; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
        transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease); }
.door-photo { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-2); }
.door-photo picture { display: contents; }
.door-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 500ms var(--ease); }
.door-body { padding: 22px 24px 26px; display: grid; gap: 6px; align-content: start; }
.door-body h2 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); }
.door-body p { color: var(--ink-soft); max-width: 42ch; }
.door-body .go { color: var(--red); font-weight: 600; margin-top: 8px; font-size: 0.95rem; }
.door:focus-visible { outline-offset: 4px; }
@media (hover: hover) and (pointer: fine) {
  .door:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(27, 23, 20, 0.12); border-color: var(--line-strong); }
  .door:hover .door-photo img { transform: scale(1.03); }
  .door:hover .go { text-decoration: underline; text-underline-offset: 3px; }
}
/* "what next" row at the foot of every sub-page: one sentence, one or two buttons */
.next { margin-top: clamp(36px, 5vw, 64px); border-top: 1px solid var(--line); padding-top: 28px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px 24px; }
.next p { color: var(--ink-soft); max-width: 48ch; }
.next p strong { color: var(--ink); }
.footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) {
  .door, .door-photo img { transition: none; }
  .door:hover { transform: none; }
  .door:hover .door-photo img { transform: none; }
}

/* ===== FLAVOUR TILES (06 Sep 2026): photo + name only; tap opens the detail sheet. Founder: "just show photo and flavour". ===== */
.flavour-grid { grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 3vw, 36px) clamp(16px, 2vw, 24px); }
@media (max-width: 760px) { .flavour-grid { grid-template-columns: repeat(2, 1fr); } }
.flavour { position: relative; display: grid; gap: 12px; padding: 0; border: 0; align-content: start; }
.fl-photo { margin: 0; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; background: var(--cream-2); }
.fl-photo picture { display: contents; }
.fl-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 500ms var(--ease); }
.fl-photo.fl-none { display: grid; place-items: center; }
.fl-photo.fl-none img { width: 34%; height: auto; object-fit: contain; opacity: 0.55; }
.flavour .fl-head { gap: 6px 10px; }
.flavour h3 { font-size: 1.1rem; line-height: 1.25; }
@media (max-width: 420px) { .flavour h3 { font-size: 1rem; } }
.fl-open { color: inherit; text-decoration: none; }
.fl-open::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius); }   /* whole tile is the link */
.fl-open:focus-visible { outline: none; }
.fl-open:focus-visible::after { outline: 2px solid var(--red); outline-offset: 4px; }
@media (hover: hover) and (pointer: fine) {
  .flavour:hover .fl-photo img { transform: scale(1.04); }
  .flavour:hover h3 { color: var(--red); }
}
.js .fl-more { display: none; }
.fl-more { display: grid; gap: 8px; }
.fl-sheet-desc { color: var(--ink-soft); max-width: 48ch; }
#flavour-sheet .sheet-body { gap: 14px; }
#flavour-sheet .sheet-photo { aspect-ratio: 4 / 3; }
@media (min-width: 761px) { #flavour-sheet .sheet-panel { max-width: 780px; grid-template-columns: 1fr 1fr; } #flavour-sheet .sheet-photo { aspect-ratio: 1; min-height: 0; } #flavour-sheet .sheet-body { padding-top: 26px; } }
@media (prefers-reduced-motion: reduce) { .fl-photo img { transition: none; } .flavour:hover .fl-photo img { transform: none; } }


/* ===== JOIN US (17 Sep 2026): hiring page. Three role cards reuse .tier-card; blocks stack inside one page-top section. ===== */
.join-block { margin-top: clamp(48px, 7vw, 88px); }
.role-card { display: flex; flex-direction: column; gap: 6px; padding: 28px; }   /* flex column so margin-top:auto pins the button to the card foot */
.role-card .role-sub { color: var(--ink-soft); font-size: 0.92rem; }
.role-card .sub { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-top: 14px; }
.role-card ul { margin-top: 2px; }
.role-card .role-actions { margin-top: auto; padding-top: 18px; }



/* ===== v9 (20 Sep 2026): JOIN US rebuilt + CONTACT page, after puckscoffee.com/career + /contact (her reference).
   Full-bleed photo heroes (.hero-photo), a static "now hiring" band (no marquee — she banned auto-roll), a numbered "what matters" grid (.values),
   the positions list on a red band (.positions / details.pos), and a contact page (.contact-grid) whose form composes a WhatsApp message (site.js). ===== */
.hero-photo { position: relative; isolation: isolate; min-height: min(70svh, 620px); display: grid; align-items: end; background: var(--ink); color: var(--cream); overflow: hidden; }
.hero-photo picture img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero-photo::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(27, 23, 20, 0.86) 0%, rgba(27, 23, 20, 0.48) 45%, rgba(27, 23, 20, 0.16) 100%); }
.hero-photo .container { padding-block: clamp(56px, 9vw, 112px) clamp(40px, 6vw, 72px); display: grid; gap: 18px; }
.hero-photo .eyebrow { color: var(--cream); opacity: 0.85; }
.hero-photo h1 { color: var(--cream); }
.hero-photo .lede { color: var(--cream); opacity: 0.9; max-width: 34em; }
.hero-photo .btn-line { color: var(--cream); border-color: var(--cream); }
.hero-photo .btn-line:hover { background: var(--cream); color: var(--ink); }
.band { background: var(--red); color: #fff; text-align: center; padding: 13px var(--gutter); font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; letter-spacing: 0.06em; text-transform: uppercase; display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 0; }
.band span:not(:last-child)::after { content: "\2022"; margin: 0 14px; opacity: 0.8; }
/* "What matters here" = three red steps (the RED STAIRS): each row steps in from the left; number + word in the hand font */
.creed { display: grid; }
.creed-row { display: grid; grid-template-columns: 96px 1fr; gap: 12px 24px; align-items: start; padding: 20px 0 34px; border-top: 2px solid var(--red); }
.creed-row:nth-child(2) { margin-left: 12%; }
.creed-row:nth-child(3) { margin-left: 24%; }
.creed-no { font-family: var(--font-hand); font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1; color: var(--red); }
.creed-row h3 { font-family: var(--font-hand); font-weight: 400; font-size: clamp(1.8rem, 3.2vw, 2.6rem); line-height: 1.05; letter-spacing: 0.02em; }
.creed-row p { color: var(--ink-soft); max-width: 46ch; margin-top: 8px; }
@media (max-width: 760px) { .creed-row { grid-template-columns: 60px 1fr; padding-bottom: 26px; } .creed-row:nth-child(2), .creed-row:nth-child(3) { margin-left: 0; } }
.positions { background: var(--cream-2); color: var(--ink); padding-block: clamp(56px, 8vw, 104px); border-top: 1px solid var(--line); }   /* was the red band; she found white-on-red hard to read (20 Sep) */
.pos-list { border-top: 1.5px solid var(--ink); }
.pos { border-bottom: 1px solid var(--line-strong); }
.pos summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 10px 18px; padding: 22px 0; }
.pos summary::-webkit-details-marker { display: none; }
.pos-plus { font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; line-height: 1; color: var(--red); transition: transform var(--t-med) var(--ease); }
.pos[open] .pos-plus { transform: rotate(45deg); }
.pos-title { font-family: var(--font-hand); font-size: clamp(1.7rem, 3.4vw, 2.6rem); line-height: 1.05; letter-spacing: 0.02em; }
@media (hover: hover) and (pointer: fine) { .pos summary:hover .pos-title { color: var(--red); } }
.pos-meta { display: flex; align-items: center; gap: 14px; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; color: var(--ink-soft); }
.pos-meta .status { border: 1.5px solid var(--red); color: var(--red); border-radius: 999px; padding: 5px 11px; }
.pos.filled .status { border-color: var(--line-strong); color: var(--ink-soft); border-style: dashed; }
.pos.filled .pos-title { color: var(--ink-soft); }
.pos-body { padding: 0 0 30px 46px; display: grid; gap: 12px; max-width: 64ch; }
.pos-body p { color: var(--ink-soft); }
.pos-body .sub { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-top: 8px; }
.pos-body ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.pos-body li::before { content: "\2014"; color: var(--red); margin-right: 8px; }
.pos-terms li strong { color: var(--ink); margin-right: 6px; }
.pos-actions { padding-top: 8px; }
@media (max-width: 760px) {
  .pos summary { grid-template-columns: 24px 1fr; }
  .pos-meta { grid-column: 2; flex-wrap: wrap; white-space: normal; gap: 8px 14px; }
  .pos-body { padding-left: 0; }
}
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 6vw, 88px); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: grid; gap: 26px; }
.contact-info .info h3 { font-family: var(--font-body); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.contact-info .info p { font-size: 1.05rem; line-height: 1.5; }
.contact-info .info p + p { margin-top: 6px; }
.contact-info .info a { text-decoration: none; }
.contact-info .info a:hover { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.topics { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 6px; }
.topics button { font: inherit; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); background: transparent; border: 1.5px solid var(--line-strong); border-radius: 999px; padding: 8px 13px; cursor: pointer; transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease); }
.topics button:hover { border-color: var(--ink); }
.topics button[aria-pressed="true"] { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.contact-form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 3vw, 36px); display: grid; gap: 16px; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .contact-form .row { grid-template-columns: 1fr; } }
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form .error:empty { display: none; }
.contact-form .actions { display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; }
.contact-form .hint a { color: var(--ink); }
.contact-form .sent { background: var(--red-tint); border: 1px solid var(--red); border-radius: var(--radius); padding: 14px 16px; }
.contact-form.is-sent .row, .contact-form.is-sent .field, .contact-form.is-sent .actions, .contact-form.is-sent .error { display: none; }
.contact-form .field label .muted { text-transform: none; letter-spacing: 0; font-weight: 500; }
@media (prefers-reduced-motion: reduce) { .pos-plus, .topics button { transition: none; } }
@media print { .hero-photo picture img, .hero-photo::after { display: none; } .hero-photo { color: #000; min-height: 0; } .band { display: none; } .positions { background: #fff; } }

/* ===== ONE GRADE FOR EVERY PHOTO (20 Sep 2026, her ask: "add filter to match all the photos"): a light warm film look so the phone shots sit with the Fujifilm set. Mascot placeholders excluded. ===== */
.photo img, .door-photo img, .p-photo img, .fl-photo:not(.fl-none) img, .hero-photo picture img, .sheet-photo img { filter: sepia(0.12) saturate(1.08) contrast(0.95) brightness(1.03); }
@media print { .photo img, .door-photo img, .p-photo img, .fl-photo img, .hero-photo picture img, .sheet-photo img { filter: none; } }
