/* Hallmark · pre-emit critique: P4 H4 E4 S4 R5 V4
 * Hallmark · macrostructure: Split Studio · genre: editorial (dark) · theme: custom (Draknar)
 * tone: craftsman, direct · anchor hue: brand red #e63946 (buttons only, <5%) · paper: near-black green
 * display: Fraunces (variable, roman only) · body: Source Sans 3 · motion: one reveal, one easing, border-only hover
 * Mock-up 2026-08-25 for Joe — built to the webby-craft rules; live site untouched. */
@font-face { font-family: "Fraunces"; src: url("fonts/fraunces-latin-wght-normal.woff2") format("woff2"); font-weight: 100 900; font-style: normal; font-display: swap; }
@font-face { font-family: "Source Sans 3"; src: url("fonts/source-sans-3-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Source Sans 3"; src: url("fonts/source-sans-3-latin-600-normal.woff2") format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Source Sans 3"; src: url("fonts/source-sans-3-latin-700-normal.woff2") format("woff2"); font-weight: 700; font-display: swap; }

:root {
  --color-paper: #0b100f;          /* near-black green (Tony's dark theme) */
  --color-paper-2: #131b19;        /* cards */
  --color-paper-3: #1c2623;        /* raised */
  --color-cream: #f3efe6;          /* type on dark */
  --color-cream-2: #e6dfd2;
  --color-ink: #1b1b1b;            /* type on cream band */
  --color-muted: rgb(243 239 230 / 72%);
  --color-line: rgb(243 239 230 / 14%);
  --color-accent: #e63946;         /* the one brand colour */
  --color-accent-aa: #c72f3b;      /* white-on-red passes 4.5:1 */
  --color-focus: #ffd166;          /* focus ring, 3:1+ on both papers */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  --space-xs: 0.5rem; --space-sm: 1rem; --space-md: 1.5rem; --space-lg: 2.5rem; --space-xl: 4rem; --space-2xl: 6rem;
  --text-display: clamp(2.6rem, 7vw, 5.2rem);
  --text-h2: clamp(1.8rem, 3.4vw, 2.6rem);
  --text-h3: 1.35rem;
  --radius-sm: 6px; --radius-md: 14px;
  --ease-out: cubic-bezier(0.2, 0, 0, 1);
  --dur-fast: 160ms; --dur-base: 240ms;
}
* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body { margin: 0; overflow-x: clip; background: var(--color-paper); color: var(--color-cream); font-family: var(--font-body); font-size: 1.0625rem; line-height: 1.55; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); font-style: normal; font-weight: 640; line-height: 1.05; margin: 0; letter-spacing: -0.01em; overflow-wrap: anywhere; min-width: 0; }
h1 { font-size: var(--text-display); font-weight: 700; }
h2 { font-size: var(--text-h2); margin-bottom: var(--space-sm); }
h3 { font-size: var(--text-h3); font-weight: 600; }
p { margin: 0 0 var(--space-sm); }
.wrap { width: min(1120px, 100% - 2.5rem); margin-inline: auto; }
.section { padding: var(--space-2xl) 0; }
.section + .section { border-top: 1px solid var(--color-line); }
.lead { font-size: 1.25rem; color: var(--color-muted); max-width: 56ch; }
.muted { color: var(--color-muted); }
.small { font-size: 0.92rem; }

/* focus — instant, visible on both papers (Hallmark: never animate the ring) */
:focus-visible { outline: 3px solid var(--color-focus); outline-offset: 3px; }
.skip { position: absolute; left: -999px; top: 0.5rem; background: var(--color-focus); color: var(--color-ink); padding: 0.5rem 0.9rem; border-radius: var(--radius-sm); font-weight: 700; z-index: 100; }
.skip:focus { left: 0.5rem; }

/* nav — N1b-ish: mark + name · five links · one button */
.nav { position: sticky; top: 0; z-index: 50; background: rgb(11 16 15 / 92%); backdrop-filter: blur(8px); border-bottom: 1px solid var(--color-line); }
.nav .wrap { display: flex; align-items: center; gap: var(--space-md); min-height: 4.25rem; }
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; font-weight: 700; white-space: nowrap; }
.brand img { width: 2.2rem; height: 2.2rem; border-radius: 50%; }
.nav-links { display: flex; gap: var(--space-md); margin-left: auto; list-style: none; padding: 0; margin-block: 0; }
.nav-links a { text-decoration: none; color: var(--color-muted); white-space: nowrap; transition: color var(--dur-fast) var(--ease-out); }
.nav-links a:hover { color: var(--color-cream); }
@media (max-width: 860px) { .nav-links { display: none; } }

/* buttons — one shape, the accent lives here */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.85rem 1.4rem; border-radius: var(--radius-sm); font-weight: 700; text-decoration: none; border: 2px solid transparent; white-space: nowrap; font: inherit; font-weight: 700; cursor: pointer; transition: background-color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out); }
.btn-primary { background: var(--color-accent-aa); color: #fff; }
.btn-primary:hover { background: var(--color-accent); }
.btn-ghost { background: transparent; color: var(--color-cream); border-color: var(--color-line); }
.btn-ghost:hover { border-color: var(--color-cream); }
.btn:active { transform: translateY(1px); }

/* hero — split: words left, one photo right */
.hero { padding: var(--space-2xl) 0 var(--space-xl); }
.hero .wrap { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: var(--space-xl); align-items: center; }
.hero h1 { margin-bottom: var(--space-md); }
.hero .lead { margin-bottom: var(--space-lg); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); align-items: center; }
.promise { margin-top: var(--space-md); color: var(--color-muted); font-size: 1rem; }
.photo-slot { aspect-ratio: 4 / 5; border-radius: var(--radius-md); background: var(--color-paper-2); border: 1px dashed rgb(243 239 230 / 30%); display: grid; place-items: center; text-align: center; padding: var(--space-lg); color: var(--color-muted); position: relative; }
.photo-slot img { width: 34%; opacity: 0.9; margin-bottom: var(--space-sm); }
.photo-slot strong { color: var(--color-cream); display: block; margin-bottom: 0.25rem; }
@media (max-width: 860px) { .hero .wrap { grid-template-columns: minmax(0, 1fr); } .photo-slot { aspect-ratio: 4 / 3; } }
.reveal { animation: rise var(--dur-base) var(--ease-out) both; }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .reveal { animation: none; } * { transition-duration: 0ms !important; } html { scroll-behavior: auto; } }

/* cream band — the ownership block (the one thing nobody else says) */
.band { background: var(--color-cream); color: var(--color-ink); }
.band .muted { color: rgb(27 27 27 / 72%); }
.own { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--space-lg); align-items: start; }
.own ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-sm); font-size: 1.15rem; }
.own li { padding-left: 1.6rem; position: relative; }
.own li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 0.7rem; height: 0.7rem; background: var(--color-accent); border-radius: 2px; }
@media (max-width: 860px) { .own { grid-template-columns: minmax(0, 1fr); } }

/* plans — switch + cards that are the link */
.period-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1rem; margin: var(--space-md) 0 var(--space-lg); }
.sc-period { display: inline-flex; gap: 0.25rem; padding: 0.25rem; border-radius: 999px; background: var(--color-paper-3); }
.sc-period-btn { border: 0; border-radius: 999px; padding: 0.55rem 1.15rem; font: inherit; font-weight: 700; color: var(--color-muted); background: transparent; cursor: pointer; white-space: nowrap; transition: background-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out); }
.sc-period-btn[aria-pressed="true"] { background: var(--color-cream); color: var(--color-ink); }
.sc-machine-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-sm); }
@media (max-width: 860px) { .sc-machine-grid { grid-template-columns: minmax(0, 1fr); } }
.plan { display: flex; flex-direction: column; gap: 0.6rem; padding: var(--space-md); background: var(--color-paper-2); border: 2px solid var(--color-line); border-radius: var(--radius-md); text-decoration: none; color: inherit; transition: border-color var(--dur-fast) var(--ease-out); }
.plan:hover { border-color: var(--color-cream); }
.plan.is-featured { border-color: rgb(243 239 230 / 40%); background: var(--color-paper-3); }
.sc-machine-tag { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-muted); }
.plan .price { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; line-height: 1; }
.plan ul { margin: 0; padding-left: 1.1rem; color: var(--color-muted); display: grid; gap: 0.35rem; }
.sc-save { justify-self: start; font-size: 0.85rem; font-weight: 700; padding: 0.3rem 0.7rem; border-radius: 999px; background: rgb(243 239 230 / 12%); color: var(--color-cream); }
.sc-machine-grid[data-period='yearly'] .sc-save { display: none; }
.plan .btn { margin-top: auto; align-self: flex-start; }
.build-line { margin-top: var(--space-md); padding: var(--space-md); border: 1px solid var(--color-line); border-radius: var(--radius-md); display: flex; flex-wrap: wrap; gap: var(--space-sm) var(--space-lg); align-items: center; justify-content: space-between; }
.build-line strong { font-family: var(--font-display); font-size: 1.5rem; }

/* à la carte — a menu, not cards */
.menu { list-style: none; padding: 0; margin: var(--space-md) 0 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 var(--space-xl); }
@media (max-width: 860px) { .menu { grid-template-columns: minmax(0, 1fr); } }
.menu li { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 0.25rem var(--space-sm); padding: 0.85rem 0; border-bottom: 1px solid var(--color-line); align-items: baseline; }
.menu .name { font-weight: 700; }
.menu .price { font-family: var(--font-display); font-weight: 600; white-space: nowrap; text-align: right; }
.menu .line { grid-column: 1 / -1; color: var(--color-muted); font-size: 0.97rem; }
.menu .p::after { content: " *"; color: var(--color-muted); }
.footnote { margin-top: var(--space-md); color: var(--color-muted); font-size: 0.9rem; }

/* work — tiles that open the full page */
.work { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-sm); margin-top: var(--space-md); }
@media (max-width: 860px) { .work { grid-template-columns: minmax(0, 1fr); } }
.tile { margin: 0; border-radius: var(--radius-md); overflow: hidden; background: var(--color-paper-2); border: 2px solid var(--color-line); transition: border-color var(--dur-fast) var(--ease-out); }
.tile:hover { border-color: var(--color-cream); }
.tile a { display: block; position: relative; text-decoration: none; }
.tile img { aspect-ratio: 4 / 3; object-fit: cover; object-position: top; width: 100%; }
.tile .open { position: absolute; right: 0.75rem; bottom: 0.75rem; padding: 0.35rem 0.7rem; border-radius: 999px; background: rgb(11 16 15 / 82%); color: var(--color-cream); font-size: 0.8rem; font-weight: 700; }
.tile figcaption { padding: 0.9rem 1.1rem; font-weight: 600; }
.tile figcaption small { display: block; font-weight: 400; color: var(--color-muted); }
.sc-lightbox { border: 0; padding: 0; width: min(1280px, 96vw); height: 94vh; max-width: none; max-height: none; border-radius: var(--radius-md); background: var(--color-paper-2); color: var(--color-cream); overflow: hidden; }
.sc-lightbox::backdrop { background: rgb(0 0 0 / 80%); }
.sc-lightbox-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.75rem 1rem; border-bottom: 1px solid var(--color-line); font-weight: 600; }
.sc-lightbox-close { border: 0; border-radius: 999px; padding: 0.5rem 0.9rem; background: var(--color-accent-aa); color: #fff; font: inherit; font-weight: 700; cursor: pointer; }
.sc-lightbox-scroll { height: calc(94vh - 3.25rem); overflow: auto; background: #000; }
.sc-lightbox-scroll img { width: 100%; }
.sc-lightbox-open { overflow: hidden; }

/* how it works — a numbered list, not a card grid */
.steps { list-style: none; counter-reset: step; padding: 0; margin: var(--space-md) 0 0; max-width: 60ch; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 3rem minmax(0, 1fr); gap: var(--space-sm); padding: var(--space-md) 0; border-top: 1px solid var(--color-line); }
.steps li::before { content: counter(step); font-family: var(--font-display); font-size: 2rem; font-weight: 700; line-height: 1; color: var(--color-muted); }
.steps h3 { margin-bottom: 0.25rem; }

/* comparison */
.compare { width: 100%; border-collapse: collapse; margin-top: var(--space-md); font-size: 0.98rem; }
.compare th, .compare td { text-align: left; padding: 0.7rem 0.6rem; border-bottom: 1px solid var(--color-line); vertical-align: top; }
.compare th { color: var(--color-muted); font-weight: 600; }
.compare td:first-child { font-weight: 700; }
.compare .us { color: var(--color-cream); }
.table-wrap { overflow-x: auto; }
.quote { border-left: 3px solid var(--color-accent); padding-left: var(--space-sm); color: var(--color-muted); margin: var(--space-md) 0 0; font-size: 0.97rem; }

/* faq */
.faq { max-width: 70ch; margin-top: var(--space-md); }
.faq details { border-top: 1px solid var(--color-line); }
.faq details:last-child { border-bottom: 1px solid var(--color-line); }
.faq summary { cursor: pointer; padding: 1rem 0; font-weight: 700; font-size: 1.1rem; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--color-muted); font-family: var(--font-display); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--color-muted); padding-bottom: 1rem; }

/* contact */
.contact { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: var(--space-xl); }
@media (max-width: 860px) { .contact { grid-template-columns: minmax(0, 1fr); } }
.field { display: grid; gap: 0.35rem; margin-bottom: var(--space-sm); }
.field label { font-weight: 600; }
.field input, .field textarea, .field select { font: inherit; color: var(--color-cream); background: var(--color-paper-2); border: 2px solid var(--color-line); border-radius: var(--radius-sm); padding: 0.75rem 0.9rem; width: 100%; }
.field input:hover, .field textarea:hover { border-color: rgb(243 239 230 / 35%); }
.field input:focus-visible, .field textarea:focus-visible { outline: 3px solid var(--color-focus); outline-offset: 2px; }
.help { min-height: 1.4em; color: var(--color-muted); font-size: 0.92rem; }
.sticky-call { display: none; }
@media (max-width: 860px) {
  .sticky-call { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; gap: 0.5rem; padding: 0.6rem 0.75rem; background: rgb(11 16 15 / 94%); border-top: 1px solid var(--color-line); }
  .sticky-call .btn { flex: 1; }
  body { padding-bottom: 4.5rem; }
}

/* footer */
.footer { padding: var(--space-lg) 0; border-top: 1px solid var(--color-line); color: var(--color-muted); font-size: 0.92rem; }
.footer .wrap { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between; }
.footer a { white-space: nowrap; }

/* order page */
.chips { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.75rem; }
@media (max-width: 700px) { .chips { grid-template-columns: minmax(0, 1fr); } }
.chip { display: block; cursor: pointer; }
.chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chip span.card { display: block; padding: 1rem; border: 2px solid var(--color-line); border-radius: var(--radius-md); background: var(--color-paper-2); transition: border-color var(--dur-fast) var(--ease-out); }
.chip input:checked + span.card { border-color: var(--color-cream); background: var(--color-paper-3); }
.chip input:focus-visible + span.card { outline: 3px solid var(--color-focus); outline-offset: 2px; }
.chip .big { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; }
.addons { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.addons li label { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 0.75rem; align-items: center; padding: 0.75rem 0.9rem; border: 2px solid var(--color-line); border-radius: var(--radius-sm); cursor: pointer; }
.addons input { width: 1.2rem; height: 1.2rem; accent-color: var(--color-accent); }
.addons .price { font-family: var(--font-display); font-weight: 600; white-space: nowrap; }
.mock-banner { background: var(--color-focus); color: var(--color-ink); text-align: center; padding: 0.5rem 1rem; font-weight: 700; }

/* ---- revision 2 (Joe's review): nav collision, intro, full order form, legal boxes ---- */
.nav .wrap { justify-content: space-between; }
.brand span { white-space: nowrap; }
@media (max-width: 860px) {
  .nav-cta { display: none; }               /* the sticky bottom bar carries the button on phones */
  .brand { font-size: 1rem; }
}
.mock-banner { font-size: 0.9rem; }

/* signature intro (ported from SignatureIntro.astro) */
#dw-intro { position: fixed; inset: 0; z-index: 100; overflow: hidden; cursor: pointer; touch-action: manipulation; }
#dw-cover { position: absolute; inset: 0; background: #000; }
#dw-cover.burning { -webkit-mask-image: radial-gradient(circle at 50% 42%, transparent 0 var(--dw-r, 0px), rgba(0,0,0,.55) calc(var(--dw-r, 0px) + 6vmin), #000 calc(var(--dw-r, 0px) + 16vmin)); mask-image: radial-gradient(circle at 50% 42%, transparent 0 var(--dw-r, 0px), rgba(0,0,0,.55) calc(var(--dw-r, 0px) + 6vmin), #000 calc(var(--dw-r, 0px) + 16vmin)); }
#dw-web { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: min(120vw, 1400px); height: auto; opacity: 0; transition: opacity .8s ease; filter: drop-shadow(0 0 6px rgba(230,57,70,.5)); }
#dw-web.on { opacity: 1; }
#dw-dragon { position: absolute; left: 50%; top: 0; width: clamp(200px, 42vmin, 420px); transform: translate(-50%, 110vh); will-change: transform; filter: drop-shadow(0 0 3px rgba(0,0,0,.95)) drop-shadow(0 0 26px rgba(230,57,70,.85)); }
#dw-fire { position: absolute; left: 50%; top: 42%; width: 0; height: 0; transform: translate(-50%,-50%); border-radius: 50%; pointer-events: none; opacity: 0; box-shadow: 0 0 24px 10px rgba(255,170,60,.95), 0 0 60px 26px rgba(230,57,70,.7), inset 0 0 34px 12px rgba(255,120,40,.8); filter: url(#dw-rough); }
#dw-skip { position: absolute; bottom: max(4vh, env(safe-area-inset-bottom)); left: 0; right: 0; text-align: center; color: rgba(255,255,255,.6); font-family: system-ui, sans-serif; font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; margin: 0; }
#dw-embers { position: absolute; inset: 0; pointer-events: none; }
#dw-embers span { position: absolute; bottom: -2vh; width: 6px; height: 6px; border-radius: 50%; background: radial-gradient(circle, #ffb347 0%, #e63946 60%, transparent 100%); opacity: 0; animation: dw-ember 2.4s linear infinite; }
@keyframes dw-ember { 0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; } 12% { opacity: .9; } 100% { transform: translateY(-105vh) translateX(var(--sway, 4vw)) scale(.35); opacity: 0; } }

/* order form */
fieldset.group { border: 1px solid var(--color-line); border-radius: var(--radius-md); padding: var(--space-md); margin: 0 0 var(--space-md); min-width: 0; }
fieldset.group legend { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; padding: 0 .4rem; }
.lbl { font-weight: 700; margin: var(--space-sm) 0 .4rem; }
.chips-auto { display: flex; flex-wrap: wrap; gap: .5rem; }
.chips-auto .chip span.card { padding: .55rem .9rem; border-radius: 999px; }
.two { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--space-sm); }
@media (max-width: 600px) { .two { grid-template-columns: minmax(0,1fr); } }
.hours { display: grid; gap: .5rem; margin-top: .5rem; }
.day { display: grid; grid-template-columns: auto 1fr auto 1fr auto; gap: .5rem; align-items: center; }
.day .t { font: inherit; color: var(--color-cream); background: var(--color-paper-2); border: 2px solid var(--color-line); border-radius: var(--radius-sm); padding: .4rem .5rem; min-width: 0; width: 100%; }
@media (max-width: 480px) { .day { grid-template-columns: auto 1fr auto 1fr; } .day > label.small { grid-column: 1 / -1; } }
.accept-box { max-height: 16rem; overflow: auto; padding: var(--space-sm) var(--space-md); border: 2px solid var(--color-line); border-radius: var(--radius-sm); background: var(--color-paper-2); font-size: .95rem; }
.accept-box:focus-visible { outline: 3px solid var(--color-focus); outline-offset: 2px; }
.legal h1, .legal h2, .legal h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; margin: 1rem 0 .4rem; }
.legal p, .legal li { color: var(--color-muted); margin: 0 0 .6rem; }
.legal ul { padding-left: 1.2rem; }
.accept { display: grid; grid-template-columns: auto minmax(0,1fr); gap: .75rem; align-items: start; margin: .75rem 0 var(--space-sm); cursor: pointer; }
.accept input { width: 1.25rem; height: 1.25rem; margin-top: .2rem; accent-color: var(--color-accent); }
.accept input:disabled + span { color: var(--color-muted); }
/* reduced-motion intro: the composed frame, no animation */
#dw-intro.still #dw-cover { background: rgba(0,0,0,.55); }
#dw-intro.still #dw-web { opacity: 1; transition: none; }
#dw-intro.still #dw-dragon { transform: translate(-50%, 4vh); }
#dw-intro.still #dw-embers, #dw-intro.still #dw-fire { display: none; }

/* revision 5: team, areas, polish */
h1, h2, h3 { text-wrap: balance; }
.price, .menu .price, .plan .price, .addons .price { font-variant-numeric: tabular-nums; }
.team { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-md); margin-top: var(--space-md); }
@media (max-width: 860px) { .team { grid-template-columns: minmax(0, 1fr); } }
.person { padding: var(--space-md); background: var(--color-paper-2); border: 2px solid var(--color-line); border-radius: var(--radius-md); }
.face { width: 5.5rem; height: 5.5rem; border-radius: 50%; background: var(--color-paper-3); border: 2px dashed rgb(243 239 230 / 30%); display: grid; place-items: center; font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--color-muted); margin-bottom: var(--space-sm); }
.person h3 { margin-bottom: .35rem; }
.areas { list-style: none; padding: 0; margin: var(--space-md) 0 0; display: flex; flex-wrap: wrap; gap: .6rem; }
.areas li { padding: .55rem 1rem; border: 2px solid var(--color-line); border-radius: 999px; font-weight: 600; }
/* revision 6: add-on rows are links; hours picker; confirm box */
.menu li a { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 0.25rem var(--space-sm); align-items: baseline; text-decoration: none; color: inherit; border-radius: var(--radius-sm); margin: 0 -0.5rem; padding: 0.15rem 0.5rem; transition: background-color var(--dur-fast) var(--ease-out); }
.menu li { display: block; padding: 0.7rem 0; }
.menu li a:hover { background: var(--color-paper-2); }
.menu li a .line { grid-column: 1 / -1; }
.menu-note { margin-top: var(--space-md); font-weight: 600; }
.person h3 { margin-bottom: 0; }
.hours .day { grid-template-columns: auto minmax(0,1fr) auto minmax(0,1fr) auto; }
.day input[list] { font: inherit; }
.day.off .t, .day.off .to { opacity: .35; }
.confirm { margin: .5rem 0 0; padding: .75rem .9rem; border: 2px solid var(--color-focus); border-radius: var(--radius-sm); background: var(--color-paper-2); display: none; }
.confirm.on { display: block; }
.confirm .btn { margin-right: .5rem; margin-top: .5rem; padding: .5rem .9rem; }
.warn { color: var(--color-muted); font-size: .92rem; margin: .35rem 0 0; }
