
:root {
  /* Matched to the original React/TanStack stack tokens in context/local-code/wishingwell/src/styles.css */
  --background: oklch(0.975 0.012 80);
  --surface: oklch(0.99 0.008 80);
  --foreground: oklch(0.24 0.025 60);
  --muted: oklch(0.48 0.025 70);
  --border: oklch(0.88 0.018 80);
  --accent: oklch(0.36 0.04 145);
  --accent-secondary: oklch(0.62 0.13 50);
  --radius: 0.75rem;
  --radius-control: 8px;
  --space: 8px;
  --font-display: Fraunces, ui-serif, Georgia, serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Helvetica Neue, Arial, sans-serif;
}
.dark {
  --background: oklch(0.18 0.015 80);
  --surface: oklch(0.22 0.018 80);
  --foreground: oklch(0.95 0.015 80);
  --muted: oklch(0.7 0.02 80);
  --border: oklch(1 0 0 / 12%);
  --accent: oklch(0.78 0.06 130);
  --accent-secondary: oklch(0.7 0.13 55);
}
* { box-sizing: border-box; }
html { color-scheme: light dark; scroll-behavior: smooth; }
body.calendar-open { overflow: hidden; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-feature-settings: "ss01", "cv11";
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.skip-link { position: absolute; left: 16px; top: -80px; background: var(--foreground); color: var(--background); padding: 10px 14px; border-radius: var(--radius); z-index: 20; }
.skip-link:focus { top: 16px; }
.site-shell { min-height: 100vh; background: var(--background); }
.topbar { position: sticky; top: 0; z-index: 10; border-bottom: 1px solid color-mix(in srgb, var(--border) 60%, transparent); background: color-mix(in srgb, var(--background) 85%, transparent); box-shadow: 0 1px 8px color-mix(in srgb, #000 5%, transparent); backdrop-filter: blur(12px); }
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand-mark { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; font-family: var(--font-display); font-size: 20px; font-weight: 500; letter-spacing: -0.01em; }
.brand-dot { display: none; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--muted); font-size: 14px; padding: 0; border-radius: var(--radius); transition: color 160ms ease; }
.nav-links a[aria-current="page"], .nav-links a:hover { color: var(--foreground); background: transparent; font-weight: 500; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.reservation-actions .button { padding: 0 14px; white-space: nowrap; }
.theme-toggle { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid var(--border); background: var(--surface); color: var(--foreground); box-shadow: 0 1px 3px color-mix(in srgb, #000 5%, transparent); cursor: pointer; transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease; }
.theme-toggle:hover { background: color-mix(in srgb, var(--surface) 75%, var(--accent) 25%); transform: translateY(-1px); }
.theme-toggle span { font-size: 17px; line-height: 1; }
.menu-toggle { display: none; border: 1px solid var(--border); background: var(--background); color: var(--foreground); border-radius: var(--radius); min-width: 44px; min-height: 44px; }
.mobile-panel { display: none; border-top: 1px solid var(--border); padding: 8px 24px 18px; background: var(--background); }
.mobile-panel a { display: block; padding: 12px 0; color: var(--muted); }
.mobile-panel .mobile-cta { margin-top: 8px; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); color: var(--foreground); font-weight: 800; text-align: center; }
.mobile-panel .mobile-cta.primary { background: var(--accent); border-color: var(--accent); color: var(--background); }
.mobile-panel[data-open="true"] { display: block; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 18px; border-radius: 999px; border: 1px solid var(--border); background: var(--background); color: var(--foreground); font-weight: 700; font-size: 14px; cursor: pointer; transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease; }
.button:hover { transform: translateY(-1px); box-shadow: 0 10px 24px color-mix(in srgb, #000 10%, transparent); }
.button.primary { background: var(--accent); border-color: var(--accent); color: var(--background); }
.button.ghost { background: var(--surface); }
.hero { position: relative; min-height: clamp(560px, 78vh, 760px); display: grid; align-items: end; overflow: hidden; border-bottom: 1px solid var(--border); }
.hero.compact { min-height: clamp(420px, 58vh, 560px); }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgb(0 0 0 / 35%), rgb(0 0 0 / 30%) 42%, rgb(0 0 0 / 70%)); }
.camp-hero img { object-position: center 45%; filter: brightness(1.12) contrast(1.04) saturate(1.04); }
.camp-hero::after { background: linear-gradient(to bottom, rgb(0 0 0 / 22%), rgb(0 0 0 / 18%) 42%, rgb(0 0 0 / 56%)); }
.hero-content { position: relative; z-index: 1; max-width: 1180px; width: 100%; margin: 0 auto; padding: clamp(96px, 12vw, 144px) 24px clamp(56px, 8vw, 88px); color: #fff; }
.eyebrow { margin: 0 0 12px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.hero .eyebrow { color: rgb(255 255 255 / 80%); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; margin: 0; letter-spacing: -0.01em; line-height: 1.08; text-wrap: balance; }
h1 { font-size: clamp(44px, 7vw, 72px); max-width: 920px; }
h2 { font-size: clamp(36px, 5vw, 48px); }
h3 { font-size: clamp(24px, 3vw, 32px); }
p { margin: 0; text-wrap: pretty; }
.lede { margin-top: 22px; max-width: 720px; font-size: clamp(18px, 2.2vw, 24px); color: rgb(255 255 255 / 80%); }
.hero-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.section { max-width: 1180px; margin: 0 auto; padding: clamp(64px, 8vw, 96px) 24px; }
.section.tight { padding: 48px 24px; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 32px; }
.section-head p:not(.eyebrow) { max-width: 420px; color: var(--muted); }
.grid { display: grid; gap: 24px; }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card { border: 1px solid var(--border); border-radius: 1rem; background: var(--surface); overflow: hidden; box-shadow: 0 1px 3px color-mix(in srgb, #000 5%, transparent); transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease; }
.card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--accent-secondary) 40%, var(--border)); box-shadow: 0 18px 40px color-mix(in srgb, #000 10%, transparent); }
.card.pad { padding: 24px; }
.card.white { background: var(--background); }
.card img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.card-body { padding: 24px; }
.card p, .muted { color: var(--muted); }
.card h3 + p { margin-top: 10px; }
.section[data-od-id="home-stay-options"] .grid.three { align-items: stretch; }
.section[data-od-id="home-stay-options"] .card { display: flex; flex-direction: column; height: 100%; }
.section[data-od-id="home-stay-options"] .card-body { display: grid; grid-template-rows: auto auto 1fr; gap: 12px; min-height: 188px; }
.section[data-od-id="home-stay-options"] .card-body h3 { margin-top: 0; }
.section[data-od-id="home-stay-options"] .card-body h3 + p { margin-top: 0; }
.section[data-od-id="home-stay-options"] .status-pill { width: fit-content; align-self: start; white-space: nowrap; }
.status-pill, .chip { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; border: 1px solid var(--border); border-radius: var(--radius); padding: 0 14px; font-size: 12px; font-weight: 700; color: var(--muted); background: var(--background); }
.status-pill.accent, .chip[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: var(--background); }
.quick-form { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr .75fr auto; gap: 12px; max-width: 980px; padding: 16px; border-radius: 1.5rem; border: 1px solid rgb(255 255 255 / 25%); background: rgb(28 25 23 / 35%); color: #fff; box-shadow: 0 25px 50px rgb(0 0 0 / 25%); backdrop-filter: blur(18px); }
.stay-toggle { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 16px; padding: 4px 2px 10px; border-bottom: 1px solid rgb(255 255 255 / 25%); }
.toggle-label { color: #fff; font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.toggle-note { color: rgb(255 255 255 / 72%); font-size: 14px; }
.quick-form .field label { color: rgb(255 255 255 / 80%); }
.quick-form .field input, .quick-form .field select { border-color: rgb(255 255 255 / 25%); background: rgb(255 255 255 / 15%); color: #fff; box-shadow: inset 0 1px 2px rgb(0 0 0 / 10%); }
.quick-form .field input::-webkit-calendar-picker-indicator { filter: invert(1); opacity: .85; }
.segmented-control { display: inline-grid; grid-template-columns: repeat(2, minmax(116px, 1fr)); gap: 4px; padding: 4px; border: 1px solid rgb(255 255 255 / 25%); border-radius: var(--radius); background: rgb(255 255 255 / 15%); }
.orbital-target { position: relative; isolation: isolate; border-radius: var(--radius); }
.orbital-target.is-orbital-active { box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent-secondary) 48%, transparent), 0 0 0 7px color-mix(in srgb, var(--accent-secondary) 16%, transparent), 0 14px 32px color-mix(in srgb, var(--foreground) 13%, transparent); }
.orbital-target.is-orbital-active::before { content: ""; position: absolute; inset: 0; border-radius: var(--radius); padding: 2px; background: conic-gradient(from var(--halo-angle), transparent 0deg, transparent 52deg, #ffd08a 70deg, var(--accent-secondary) 86deg, #fff4d7 102deg, transparent 122deg, transparent 360deg); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; animation: halo-orbit 2.8s linear infinite; filter: drop-shadow(0 0 8px color-mix(in srgb, var(--accent-secondary) 55%, transparent)); }
.orbital-target.is-orbital-active::after { content: ""; position: absolute; inset: 0; border: 1px solid color-mix(in srgb, var(--accent-secondary) 55%, transparent); border-radius: var(--radius); pointer-events: none; opacity: .55; }
@property --halo-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes halo-orbit { to { --halo-angle: 360deg; } }
@media (prefers-reduced-motion: reduce) { .orbital-target.is-orbital-active::before { animation: none; background: linear-gradient(90deg, var(--accent-secondary), #ffd08a); } }
@property --field-focus-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes field-focus-orbit { to { --field-focus-angle: 360deg; } }
.segment { min-height: 40px; border: 0; border-radius: calc(var(--radius) - 4px); background: transparent; color: rgb(255 255 255 / 72%); font-weight: 800; cursor: pointer; padding: 0 14px; }
.segment[aria-pressed="true"] { background: var(--accent-secondary); color: #fff; }
.field { display: grid; gap: 6px; }
.field label { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
.input, .field input, .field select, .field textarea { width: 100%; min-height: 44px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--background); color: var(--foreground); padding: 10px 12px; }
.field input[type="date"] { min-width: 0; padding-right: 42px; color: var(--foreground); color-scheme: light; -webkit-appearance: auto; appearance: auto; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%235f574e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px 18px; }
.field input[type="date"]::-webkit-date-and-time-value { color: currentColor; text-align: left; min-height: 24px; }
.field input[type="date"]::-webkit-datetime-edit,
.field input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.field input[type="date"]::-webkit-datetime-edit-text,
.field input[type="date"]::-webkit-datetime-edit-month-field,
.field input[type="date"]::-webkit-datetime-edit-day-field,
.field input[type="date"]::-webkit-datetime-edit-year-field { color: currentColor; opacity: 1; }
.field input[type="date"]::-webkit-calendar-picker-indicator { display: block; opacity: .85; cursor: pointer; }
.quick-form .field input[type="date"] { color: #fff; color-scheme: dark; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E"); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: transparent; background: linear-gradient(var(--background), var(--background)) padding-box, conic-gradient(from var(--field-focus-angle), var(--accent) 0deg, color-mix(in srgb, var(--accent) 55%, white) 42deg, color-mix(in srgb, var(--accent) 22%, white) 64deg, var(--accent) 88deg, var(--accent) 360deg) border-box; animation: field-focus-orbit 1.6s linear infinite; }
.quick-form .field input:focus, .quick-form .field select:focus { border-color: rgb(255 255 255 / 60%); background: rgb(255 255 255 / 15%); box-shadow: inset 0 1px 2px rgb(0 0 0 / 10%), 0 0 0 2px rgb(255 255 255 / 40%); animation: none; }
@media (prefers-reduced-motion: reduce) { .field input:focus, .field select:focus, .field textarea:focus { animation: none; border-color: var(--accent); background: var(--background); } }
.field textarea { min-height: 96px; resize: vertical; }
.booking-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); gap: 32px; align-items: start; }
.booking-photo { align-self: stretch; min-height: 520px; margin: 0; border: 1px solid var(--border); border-radius: 1rem; background: var(--surface); overflow: hidden; box-shadow: 0 18px 40px color-mix(in srgb, #000 9%, transparent); display: grid; grid-template-rows: minmax(0, 1fr) auto; }
.booking-photo img { display: block; width: 100%; height: 100%; min-height: 0; object-fit: cover; }

.booking-photo figcaption { padding: 14px 16px; color: var(--muted); font-size: 13px; line-height: 1.35; }
.form-stack { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.choice { border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius); padding: 14px; text-align: left; cursor: pointer; min-height: 52px; color: var(--foreground); font-weight: 700; box-shadow: 0 1px 2px color-mix(in srgb, #000 4%, transparent); }
.choice:hover { border-color: color-mix(in srgb, var(--accent-secondary) 40%, var(--border)); }
.choice[aria-pressed="true"] { border-color: var(--accent); outline: 2px solid var(--accent); background: color-mix(in srgb, var(--accent) 12%, var(--surface)); color: var(--foreground); }
.message { display: none; border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius); padding: 18px; color: var(--foreground); }
.message[data-show="true"] { display: block; }
.bot-field { display: none !important; }
.calendar-trigger { justify-self: start; }
.calendar { position: fixed; inset: 0; z-index: 30; display: none; flex-direction: column; align-items: center; justify-content: center; padding: 24px; border: 0; border-radius: 0; background: color-mix(in srgb, #000 45%, transparent); }
.calendar[data-open="true"] { display: flex; }
.calendar::before { content: ""; position: absolute; inset: 0; }
.calendar > * { position: relative; }
.calendar-head, .calendar-grid, .calendar p { width: min(560px, 100%); }
.calendar-head { border: 1px solid var(--border); border-bottom: 0; border-radius: var(--radius) var(--radius) 0 0; padding: 18px 18px 0; background: var(--surface); }
.calendar-grid { border-inline: 1px solid var(--border); padding: 14px 18px; background: var(--surface); }
.calendar p { border: 1px solid var(--border); border-top: 0; border-radius: 0 0 var(--radius) var(--radius); padding: 0 18px 18px; background: var(--surface); }
.calendar p.mt-16 { margin-top: 0; }
.calendar-close { min-height: 44px; padding: 0 14px; }
.calendar-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 0; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; text-align: center; }
.calendar-grid span, .calendar-grid button { min-height: 38px; border-radius: var(--radius); display: grid; place-items: center; border: 1px solid transparent; background: transparent; color: var(--foreground); }
.calendar-grid .dow { color: var(--muted); font-size: 12px; font-weight: 700; }
.calendar-grid button { border-color: var(--border); cursor: pointer; }
.calendar-grid button[disabled] { color: var(--muted); background: var(--background); cursor: not-allowed; text-decoration: line-through; }
.calendar-grid button[data-selected="true"] { background: var(--accent); border-color: var(--accent); color: var(--background); }
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
.sidebar-nav { position: sticky; top: 92px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); padding: 10px; display: grid; gap: 4px; }
.sidebar-nav a { padding: 10px 12px; color: var(--muted); border-radius: var(--radius); font-size: 14px; }
.sidebar-nav a:hover { background: var(--background); color: var(--foreground); }
.attraction-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.featured-card { min-height: 340px; display: flex; flex-direction: column; justify-content: space-between; gap: 20px; padding: 28px; }
.featured-card .button { align-self: flex-start; }
[data-attractions] .meta[role="toolbar"] { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; gap: 10px; }
[data-attractions] .meta[role="toolbar"] .chip { width: 100%; min-height: 44px; padding: 0 14px; text-align: center; line-height: 1.15; }
.attraction-list .card { display: flex; flex-direction: column; gap: 16px; min-height: 360px; padding: 28px; }
.attraction-list .card h3 { font-size: clamp(24px, 2.4vw, 30px); }
.attraction-list .card p { line-height: 1.6; }
.attraction-list .card .meta { align-items: center; gap: 10px 12px; }
.attraction-list .card dl.meta { display: grid; gap: 10px; margin: 0; }
.attraction-list .card dl.meta div { display: grid; gap: 3px; }
.attraction-list .card .button { align-self: flex-start; margin-top: auto; }
.meta { display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: 13px; }
.footer { border-top: 1px solid var(--border); margin-top: 40px; }
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 40px 24px; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; color: var(--muted); }
.footer strong { color: var(--foreground); }
.footer a { display: inline-flex; align-items: center; min-height: 44px; padding: 6px 0; }
.opendesign-banner { border-bottom: 1px solid var(--border); background: var(--surface); }
.opendesign-banner .section { padding-top: 24px; padding-bottom: 24px; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.file-map { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.file-tile { border: 1px solid var(--border); background: var(--background); border-radius: var(--radius); padding: 16px; }
.file-tile strong { display: block; margin-bottom: 6px; }
@media (max-width: 1080px) {
  .grid.three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .file-map { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .booking-layout { grid-template-columns: minmax(0, 1fr); }
  .booking-photo { min-height: 320px; }
  .booking-photo img { min-height: 274px; }
}
@media (max-width: 920px) {
  .nav-links, .nav-actions .button { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .quick-form, .grid.two, .split, .footer-inner { grid-template-columns: 1fr; }
  .quick-form { max-width: 620px; }
  .attraction-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  [data-attractions] .meta[role="toolbar"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-head { display: grid; align-items: start; }
  .sidebar-nav { position: static; }
}
@media (max-width: 680px) {
  .grid.three, .file-map, .attraction-list { grid-template-columns: 1fr; }
  [data-attractions] .meta[role="toolbar"] { grid-template-columns: 1fr; }
  .attraction-list .card, .featured-card { min-height: auto; padding: 24px; }
  .attraction-list .card .button, .featured-card .button { width: 100%; }
  .quick-form { grid-template-columns: 1fr; }
  .quick-form .button { width: 100%; }
}
@media (max-width: 560px) {
  .nav-inner { padding: 14px 16px; }
  .brand-mark { font-size: 15px; }
  .hero { min-height: 520px; }
  .hero.compact { min-height: 420px; }
  .hero-content, .section { padding-left: 16px; padding-right: 16px; }
  .hero-content { padding-top: 88px; padding-bottom: 44px; }
  h1 { font-size: clamp(40px, 12vw, 48px); }
  h2 { font-size: clamp(30px, 10vw, 38px); }
  .lede { font-size: 18px; }
  .form-row, .choice-grid { grid-template-columns: 1fr; }
  .section { padding-top: 56px; padding-bottom: 56px; }
  .cta-row .button { width: 100%; }
  .footer-inner { gap: 20px; }
  .calendar-grid { gap: 4px; }
  .calendar-grid span, .calendar-grid button { min-height: 42px; }
}
@media print {
  .topbar, .quick-form, .button, .sidebar-nav { display: none; }
  body { background: #ffffff; color: #111111; }
  .hero { min-height: auto; }
  .hero img, .hero::after { display: none; }
  .hero-content { color: #111111; padding: 40px 24px; }
  .lede { color: var(--muted); }
}

.od-title { font-size: clamp(36px, 5vw, 68px); }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.gap-32 { gap: 32px; }
