/* Healthy Touch — site styles */
:root {
  --ink: #121110;
  --ink-2: #1c1a18;
  --ink-3: #2a2724;
  --cream: #f3eee5;
  --paper: #faf7f1;
  --stage: #ffffff;
  --text: #1c1a18;
  --text-muted: #5f5850;
  --text-on-dark: #efe9df;
  --muted-on-dark: #a9a197;
  --champagne: #c7a878;
  --champagne-deep: #806039;
  --line: rgba(28, 26, 24, 0.12);
  --line-dark: rgba(239, 233, 223, 0.14);
  --leaf-green: #6cb33f;
  --leaf-blue: #0a65a3;

  --font-display: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --font-body: "Switzer", "Work Sans", system-ui, sans-serif;

  --text-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.85rem + 0.1vw, 0.9375rem);
  --text-base: clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.35vw, 1.375rem);
  --text-xl: clamp(1.75rem, 1.4rem + 1.4vw, 2.625rem);
  --text-2xl: clamp(2.25rem, 1.6rem + 2.6vw, 3.75rem);
  --text-hero: clamp(3rem, 1.8rem + 5.2vw, 6.5rem);

  --space-2: 0.5rem; --space-3: 0.75rem; --space-4: 1rem; --space-6: 1.5rem;
  --space-8: 2rem; --space-10: 2.5rem; --space-12: 3rem; --space-16: 4rem;
  --space-20: 5rem; --space-24: 6rem; --space-32: 8rem;

  --radius-sm: 4px; --radius-md: 8px; --radius-lg: 14px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --wrap: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0; font-family: var(--font-body); font-size: var(--text-base);
  line-height: 1.6; color: var(--text); background: var(--paper);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, p { margin: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--champagne); outline-offset: 3px; border-radius: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

.skip { position: absolute; left: -9999px; top: 0; background: var(--ink); color: var(--text-on-dark); padding: var(--space-3) var(--space-4); z-index: 100; }
.skip:focus { left: var(--space-4); top: var(--space-4); }

.wrap { width: min(100% - 2 * clamp(1.25rem, 4vw, 3rem), var(--wrap)); margin-inline: auto; }
.eyebrow {
  font-size: var(--text-xs); letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500; color: var(--champagne-deep);
}
.dark .eyebrow, .hero .eyebrow { color: var(--champagne); }
.display { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; line-height: 1.02; }
.lede { font-size: var(--text-lg); line-height: 1.5; color: var(--text-muted); max-width: 44ch; }
.dark .lede { color: var(--muted-on-dark); }
.dark { background: var(--ink); color: var(--text-on-dark); }
.cream { background: var(--cream); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  min-height: 48px; padding: 0 1.6rem; border-radius: 999px; font-size: var(--text-sm);
  font-weight: 500; letter-spacing: 0.02em; text-decoration: none; border: 1px solid transparent;
  cursor: pointer; transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.btn-primary { background: var(--champagne); color: var(--ink); }
.btn-primary:hover { background: #d8bc8f; }
.btn-dark { background: var(--ink); color: var(--text-on-dark); }
.btn-dark:hover { background: var(--ink-3); }
.btn-ghost { border-color: currentColor; background: transparent; }
.btn-ghost:hover { background: rgba(199,168,120,.12); }
.link-arrow { font-size: var(--text-sm); font-weight: 500; text-decoration: none; display: inline-flex; gap: .5em; align-items: center; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.link-arrow span { transition: transform .3s var(--ease); }
.link-arrow:hover span { transform: translateX(4px); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(18,17,16,.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  color: var(--text-on-dark); border-bottom: 1px solid var(--line-dark);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: var(--space-6); }
.brand { display: inline-flex; align-items: center; flex: none; text-decoration: none; background: #fff; padding: 5px 8px; border-radius: var(--radius-sm); }
.brand-logo { width: clamp(180px, 54vw, 214px); height: auto; }
.foot-brand .brand-logo { width: min(240px, 62vw); }
.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.2rem); list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; font-size: var(--text-sm); color: var(--muted-on-dark); transition: color .2s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text-on-dark); }
.nav .btn { min-height: 42px; padding: 0 1.2rem; }
.nav-links a.btn-primary, .nav-links a.btn-primary:hover { color: var(--ink); }
.menu-toggle { display: none; background: none; border: 1px solid var(--line-dark); border-radius: 999px; width: 44px; height: 44px; color: var(--text-on-dark); cursor: pointer; }
.menu-toggle svg { width: 20px; height: 20px; margin: auto; }
@media (max-width: 1050px) {
  .menu-toggle { display: grid; place-items: center; }
  .nav-links { position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--ink); border-bottom: 1px solid var(--line-dark); padding: var(--space-2) 0 var(--space-6); display: none; }
  .nav-links.open { display: flex; }
  .nav-links { max-height: calc(100vh - 76px); max-height: calc(100dvh - 76px); overflow-y: auto; overscroll-behavior: contain; }
  .nav-links li a:not(.btn) { display: block; padding: var(--space-4) clamp(1.25rem, 4vw, 3rem); font-size: var(--text-base); }
  .nav-links li:last-child { padding: var(--space-4) clamp(1.25rem, 4vw, 3rem) 0; }
  .nav-links .btn { width: 100%; }
}

/* Hero */
.hero { position: relative; background: #000; color: var(--text-on-dark); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 1fr; align-items: center; min-height: min(88vh, 860px); gap: var(--space-8); }
.hero-copy { padding-block: var(--space-24); position: relative; z-index: 2; }
.hero h1 { font-size: var(--text-hero); margin: var(--space-6) 0 var(--space-8); max-width: 11ch; }
.hero h1 em { font-style: italic; color: var(--champagne); }
.hero .lede { max-width: 36ch; color: var(--muted-on-dark); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-10); }
.hero-media { position: relative; align-self: stretch; display: flex; align-items: center; }
.hero-media img { width: 118%; max-width: none; margin-left: -6%; }
.hero-caption { position: absolute; right: 0; bottom: var(--space-10); font-size: var(--text-xs); color: var(--muted-on-dark); letter-spacing: .14em; text-transform: uppercase; }
.hero-caption strong { color: var(--text-on-dark); font-weight: 500; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; gap: 0; }
  .hero-copy { padding-block: var(--space-16) var(--space-4); }
  .hero-media img { width: 100%; margin: 0; }
  .hero-caption { position: static; padding-bottom: var(--space-10); }
  .hero-media { flex-direction: column; align-items: flex-start; }
}

/* Sections */
.section { padding-block: clamp(var(--space-16), 9vw, var(--space-32)); }
.section-tight { padding-block: clamp(var(--space-12), 6vw, var(--space-20)); }
.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: end; margin-bottom: clamp(var(--space-10), 5vw, var(--space-16)); }
.section-head h2 { font-size: var(--text-2xl); margin-top: var(--space-4); max-width: 14ch; }
.section-head > p { color: var(--text-muted); max-width: 46ch; justify-self: end; }
.dark .section-head > p { color: var(--muted-on-dark); }
@media (max-width: 800px) { .section-head { grid-template-columns: 1fr; } .section-head > p { justify-self: start; } }

/* Intro statement */
.statement { display: grid; grid-template-columns: 220px 1fr; gap: var(--space-8); }
.statement p.big { font-family: var(--font-display); font-size: var(--text-xl); line-height: 1.22; max-width: 30ch; }
.statement p.big em { color: var(--champagne-deep); }
@media (max-width: 800px) { .statement { grid-template-columns: 1fr; } }

/* Collection */
.collection { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1rem, 2vw, 1.75rem); }
.chair-card { grid-column: span 6; display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.chair-card .stage {
  background: var(--stage); border-radius: var(--radius-lg); aspect-ratio: 5 / 4;
  display: grid; place-items: center; overflow: hidden; position: relative;
  box-shadow: 0 1px 0 rgba(28,26,24,.04), 0 24px 48px -32px rgba(60,45,25,.25);
}
.chair-card .stage img { width: 78%; height: 86%; object-fit: contain; transition: transform .8s var(--ease); }
.chair-card:hover .stage img { transform: scale(1.04); }
.chair-card .num { position: absolute; top: var(--space-6); left: var(--space-6); font-size: var(--text-xs); letter-spacing: .16em; color: var(--text-muted); }
.chair-card .meta { display: flex; justify-content: space-between; align-items: baseline; gap: var(--space-4); padding: var(--space-6) var(--space-2) 0; }
.chair-card h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--text-xl); line-height: 1.1; }
.chair-card .sub { color: var(--text-muted); font-size: var(--text-sm); margin-top: 6px; max-width: 38ch; }
.chair-card .go { font-size: var(--text-sm); white-space: nowrap; border-bottom: 1px solid currentColor; }
.msrp { display: flex; flex-wrap: wrap; align-items: baseline; gap: var(--space-2); margin-top: var(--space-4); color: var(--text); }
.msrp span { font-size: var(--text-xs); font-weight: 500; letter-spacing: .12em; }
.msrp strong { font-size: var(--text-lg); font-weight: 500; font-variant-numeric: tabular-nums; }
.availability-badge { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-2); margin-top: var(--space-3); padding: var(--space-2) var(--space-3); border-radius: var(--radius-sm); background: var(--ink); color: var(--champagne); font-size: var(--text-xs); font-weight: 500; letter-spacing: .06em; }
.availability-badge time { color: var(--text-on-dark); letter-spacing: 0; font-weight: 400; }
.availability-banner { background: var(--ink-2); color: var(--text-on-dark); }
.availability-banner .wrap { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: var(--space-3); padding-block: var(--space-4); font-size: var(--text-sm); }
.availability-banner strong { color: var(--champagne); font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.chair-card.feature { grid-column: span 7; }
.chair-card.feature + .chair-card { grid-column: span 5; }
.chair-card.feature .stage { aspect-ratio: auto; height: 100%; min-height: 420px; }
.chair-card.feature + .chair-card .stage { aspect-ratio: 4 / 5; }
.chair-card.rev { grid-column: span 5; }
.chair-card.rev .stage { aspect-ratio: 4 / 5; }
.chair-card.rev + .chair-card { grid-column: span 7; }
.chair-card.rev + .chair-card .stage { aspect-ratio: auto; height: 100%; min-height: 420px; }
.chair-card .stage-wrap { flex: 1; display: flex; flex-direction: column; }
.chair-card .stage-wrap .stage { flex: 1; }
@media (max-width: 800px) {
  .chair-card, .chair-card.feature, .chair-card.feature + .chair-card, .chair-card.rev, .chair-card.rev + .chair-card { grid-column: 1 / -1; }
  .chair-card .stage, .chair-card.feature .stage, .chair-card.rev + .chair-card .stage { aspect-ratio: 5 / 4; min-height: 0; height: auto; }
}

/* Full-bleed image band */
.band { position: relative; min-height: min(78vh, 720px); display: flex; align-items: flex-end; color: var(--text-on-dark); overflow: hidden; }
.band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 35%; }
.band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,17,16,0) 35%, rgba(18,17,16,.78) 100%); }
.band .wrap { position: relative; z-index: 2; padding-bottom: clamp(var(--space-10), 6vw, var(--space-20)); }
.band blockquote { margin: 0; font-family: var(--font-display); font-size: var(--text-2xl); line-height: 1.08; max-width: 18ch; }
.band cite { display: block; font-style: normal; font-size: var(--text-xs); letter-spacing: .16em; text-transform: uppercase; margin-top: var(--space-6); color: var(--champagne); }

/* Spaces */
.spaces { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); }
.space { padding: var(--space-8) var(--space-6) var(--space-8) 0; border-right: 1px solid var(--line-dark); }
.space + .space { padding-left: var(--space6, 1.5rem); }
.space:last-child { border-right: 0; }
.space .idx { font-size: var(--text-xs); color: var(--champagne); letter-spacing: .16em; }
.space h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--text-xl); margin: var(--space-6) 0 var(--space-3); line-height: 1.1; }
.space p { color: var(--muted-on-dark); font-size: var(--text-sm); max-width: 30ch; }
.space .fit { margin-top: var(--space-6); font-size: var(--text-xs); letter-spacing: .08em; color: var(--text-on-dark); }
@media (max-width: 900px) {
  .spaces { grid-template-columns: 1fr 1fr; }
  .space:nth-child(2) { border-right: 0; }
  .space:nth-child(n+3) { border-top: 1px solid var(--line-dark); }
}
@media (max-width: 560px) {
  .spaces { grid-template-columns: 1fr; }
  .space { border-right: 0; padding-left: 0 !important; }
  .space + .space { border-top: 1px solid var(--line-dark); }
}

/* Split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--space-8), 6vw, var(--space-20)); align-items: center; }
.split.flip > :first-child { order: 2; }
.split .media { border-radius: var(--radius-lg); overflow: hidden; }
.split .media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.split h2 { font-size: var(--text-2xl); margin: var(--space-4) 0 var(--space-6); max-width: 13ch; }
.split p + p { margin-top: var(--space-4); }
.split .body { color: var(--text-muted); max-width: 48ch; }
.steps { list-style: none; padding: 0; margin: var(--space-8) 0 0; border-top: 1px solid var(--line); }
.steps li { padding: var(--space-4) 0; border-bottom: 1px solid var(--line); }
.steps strong { font-weight: 500; }
.steps p { color: var(--text-muted); font-size: var(--text-sm); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split.flip > :first-child { order: 0; } }

/* FAQ */
.faq { max-width: 860px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: var(--space-6); padding: var(--space-6) 0; font-size: var(--text-lg); font-weight: 500; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-display); font-size: 1.8rem; line-height: 1; color: var(--champagne-deep); transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 var(--space-6); color: var(--text-muted); max-width: 64ch; }

/* CTA */
.cta { text-align: left; }
.cta-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--space-10); align-items: end; }
.cta h2 { font-size: var(--text-2xl); max-width: 14ch; margin-top: var(--space-4); }
.cta-side p { color: var(--muted-on-dark); margin-bottom: var(--space-6); max-width: 40ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }
@media (max-width: 800px) { .cta-inner { grid-template-columns: 1fr; } }

/* Product page */
.p-hero { background: var(--cream); }
.p-hero-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(var(--space-8), 5vw, var(--space-16)); align-items: center; padding-block: clamp(var(--space-12), 6vw, var(--space-20)); }
.crumbs { font-size: var(--text-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--text); }
.p-hero h1 { font-size: var(--text-hero); margin: var(--space-6) 0 var(--space-4); line-height: .98; }
.p-hero .tagline { font-family: var(--font-display); font-style: italic; font-size: var(--text-xl); color: var(--champagne-deep); line-height: 1.2; }
.p-hero .intro { margin-top: var(--space-6); color: var(--text-muted); max-width: 46ch; }
.p-hero .hero-actions { margin-top: var(--space-8); }
.p-hero .msrp { margin-top: var(--space-6); }
.p-hero .msrp strong { font-size: var(--text-xl); }
.p-stage { background: var(--stage); border-radius: var(--radius-lg); aspect-ratio: 1 / 1; display: grid; place-items: center; box-shadow: 0 30px 60px -40px rgba(60,45,25,.35); overflow: hidden; }
.p-stage.on-dark { background: #000; }
.p-stage img { width: 84%; height: 84%; object-fit: contain; }
.fits { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-6); list-style: none; padding: 0; }
.fits li { font-size: var(--text-xs); letter-spacing: .06em; padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--text-muted); }
@media (max-width: 860px) { .p-hero-grid { grid-template-columns: 1fr; } .p-stage { order: -1; } }

.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 clamp(var(--space-8), 5vw, var(--space-16)); }
.feature-row { padding: var(--space-8) 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 56px 1fr; gap: var(--space-4); }
.feature-row .n { font-size: var(--text-xs); letter-spacing: .14em; color: var(--champagne-deep); padding-top: 6px; }
.feature-row h3 { font-size: var(--text-lg); font-weight: 500; margin-bottom: var(--space-2); }
.feature-row p { color: var(--text-muted); font-size: var(--text-sm); max-width: 46ch; }
@media (max-width: 760px) { .features { grid-template-columns: 1fr; } }

.others { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.75rem); }
.others .chair-card { grid-column: auto; }
.others .chair-card .stage { aspect-ratio: 1 / 1; }
.others .chair-card h3 { font-size: var(--text-lg); font-family: var(--font-body); font-weight: 500; }
@media (max-width: 760px) { .others { grid-template-columns: 1fr; } }

/* Chair specifications, using the owner-supplied operating footprint and power draw. */
.product-specs { margin-top: var(--space-12); }
.product-specs h3 { font-size: var(--text-xl); }
.product-specs dl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-8); margin: var(--space-6) 0 0; }
.product-specs dl > div { border-top: 1px solid var(--line); padding-top: var(--space-4); }
.product-specs dt { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: var(--space-2); }
.product-specs dd { margin: 0; font-weight: 500; }
@media (max-width: 760px) { .product-specs dl { grid-template-columns: 1fr; gap: var(--space-6); } }

/* Delivery choices: informational only; inquiry field mapping is unchanged. */
.delivery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: start; }
.delivery-grid h2 { font-size: var(--text-2xl); margin-block: var(--space-4); }
.delivery-grid p { max-width: 46ch; color: var(--text-muted); }
.delivery-list, .warranty-list { margin: 0; padding: 0; list-style: none; }
.delivery-list li, .warranty-list li { display: flex; justify-content: space-between; align-items: baseline; gap: var(--space-4); padding-block: var(--space-3); border-bottom: 1px solid var(--line); }
.delivery-list li span, .warranty-list li span { min-width: 0; }
.delivery-list li strong, .warranty-list li strong { flex-shrink: 0; font-weight: 500; }
.delivery-extra { margin-top: var(--space-4); }
.delivery-extra strong { color: var(--text); font-weight: 500; }
@media (max-width: 760px) { .delivery-grid { grid-template-columns: 1fr; } }

/* Page intro (about/contact) */
.page-intro { padding-block: clamp(var(--space-16), 8vw, var(--space-24)) clamp(var(--space-10), 5vw, var(--space-16)); }
.page-intro h1 { font-size: var(--text-hero); margin-top: var(--space-6); max-width: 12ch; line-height: 1; }
.page-intro .lede { margin-top: var(--space-6); }

/* Form */
.form-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(var(--space-8), 6vw, var(--space-20)); align-items: start; }
.form { background: var(--stage); border-radius: var(--radius-lg); padding: clamp(var(--space-6), 4vw, var(--space-12)); box-shadow: 0 30px 60px -45px rgba(60,45,25,.35); }
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6) var(--space-6); }
.field { display: flex; flex-direction: column; gap: var(--space-2); }
.field.full { grid-column: 1 / -1; }
.field label { font-size: var(--text-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); font-weight: 500; }
.field label .opt { text-transform: none; letter-spacing: 0; color: #8b847a; font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid rgba(28,26,24,.18); border-radius: var(--radius-md);
  background: var(--paper); font-size: var(--text-base); transition: border-color .2s, background .2s;
}
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--champagne-deep); background: #fff; box-shadow: 0 0 0 3px rgba(199,168,120,.25); }
.field .err { font-size: var(--text-xs); color: #a3362a; min-height: 1em; }
.chips { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.chips label { text-transform: none; letter-spacing: 0; font-size: var(--text-sm); color: var(--text); font-weight: 400; }
.chips input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chips span { display: inline-flex; align-items: center; min-height: 44px; padding: 0 16px; border: 1px solid rgba(28,26,24,.18); border-radius: 999px; cursor: pointer; transition: all .2s; background: var(--paper); }
.chips input:checked + span { background: var(--ink); color: var(--text-on-dark); border-color: var(--ink); }
.chips input:focus-visible + span { outline: 2px solid var(--champagne); outline-offset: 2px; }
fieldset { border: 0; padding: 0; margin: 0; }
legend { font-size: var(--text-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); font-weight: 500; margin-bottom: var(--space-3); padding: 0; }
.form-foot { display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center; justify-content: space-between; margin-top: var(--space-8); }
.form-foot small { color: var(--text-muted); font-size: var(--text-xs); max-width: 38ch; }
.form-status { margin-top: var(--space-6); padding: var(--space-6); border-radius: var(--radius-md); background: var(--cream); display: none; }
.form-status.show { display: block; }
.form-status h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--text-xl); margin-bottom: var(--space-2); }
.form-status p { color: var(--text-muted); }
.form.sent .fields, .form.sent .form-foot { display: none; }
.form.sent .form-status { margin-top: 0; }
.aside h2 { font-size: var(--text-xl); font-family: var(--font-display); font-weight: 400; margin-bottom: var(--space-6); }
.aside .steps { margin-top: 0; }
.contact-lines { margin-top: var(--space-10); display: grid; gap: var(--space-4); }
.contact-lines a { text-decoration: none; font-size: var(--text-lg); border-bottom: 1px solid var(--line); padding-bottom: var(--space-3); display: flex; justify-content: space-between; }
.contact-lines a small { font-size: var(--text-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); align-self: center; }
@media (max-width: 900px) { .form-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .fields { grid-template-columns: 1fr; } }

/* Values (about) */
.values { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: clamp(1rem, 2vw, 1.75rem); }
.value { background: var(--stage); border-radius: var(--radius-lg); padding: var(--space-8); }
.value:first-child { background: var(--ink); color: var(--text-on-dark); grid-row: span 2; display: flex; flex-direction: column; justify-content: space-between; }
.value:first-child p { color: var(--muted-on-dark); }
.value h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--text-xl); line-height: 1.1; margin-bottom: var(--space-3); }
.value p { color: var(--text-muted); font-size: var(--text-sm); }
@media (max-width: 860px) { .values { grid-template-columns: 1fr; } .value:first-child { grid-row: auto; } }

/* Footer */
.site-footer { background: var(--ink); color: var(--text-on-dark); padding-block: var(--space-20) var(--space-10); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: var(--space-10); }
.foot-grid h2 { font-size: var(--text-xs); letter-spacing: .16em; text-transform: uppercase; color: var(--champagne); font-weight: 500; margin: 0 0 var(--space-4); }
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-2); }
.foot-grid a { text-decoration: none; color: var(--muted-on-dark); font-size: var(--text-sm); }
.foot-grid a:hover { color: var(--text-on-dark); }
.foot-brand p { color: var(--muted-on-dark); font-size: var(--text-sm); max-width: 32ch; margin-top: var(--space-6); }
.foot-brand .social-links { margin-top: var(--space-4); }
.foot-brand .social-links ul { display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-6); }
.foot-brand .social-links a { display: inline-flex; align-items: center; min-height: 44px; color: var(--text-on-dark); text-decoration: underline; text-underline-offset: 4px; }
.foot-brand .social-links a:hover { color: var(--champagne); }
.foot-bottom { margin-top: var(--space-16); padding-top: var(--space-6); border-top: 1px solid var(--line-dark); display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-4); font-size: var(--text-xs); color: var(--muted-on-dark); }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } }
@media (max-width: 900px) {
  .foot-grid li a { display: inline-flex; align-items: center; min-height: 44px; }
  .crumbs a { display: inline-flex; align-items: center; min-height: 44px; }
}
@media (max-width: 560px) {
  .foot-grid > :last-child { grid-column: 1 / -1; }
  .contact-lines a { flex-wrap: wrap; gap: var(--space-2); overflow-wrap: anywhere; }
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* Product gallery */
.draft-note { background: var(--cream); border-bottom: 1px solid var(--line); font-size: var(--text-xs); }
.draft-note .wrap { display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-6); padding-block: var(--space-3); }
.draft-note strong, .draft-tag { color: var(--champagne-deep); }
.draft-tag { display: inline-block; border: 1px solid var(--line); padding: 2px 8px; border-radius: 99px; margin-left: var(--space-2); }
.news-feature { display: grid; grid-template-columns: .7fr 1.3fr; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.news-list { display: grid; gap: var(--space-8); }
.news-date { padding: clamp(var(--space-8), 5vw, var(--space-16)); display: flex; flex-direction: column; justify-content: center; }
.news-month { font-family: var(--font-display); font-size: var(--text-xl); margin-top: var(--space-8); }
.news-days { font-family: var(--font-display); font-size: var(--text-hero); line-height: 1.1; }
.news-year { font-size: var(--text-lg); color: var(--champagne); }
.news-place { font-size: var(--text-sm); margin-top: var(--space-8); color: var(--muted-on-dark); }
.news-feature-copy { padding: clamp(var(--space-8), 5vw, var(--space-16)); background: var(--stage); }
.news-feature-copy h3 { font-size: var(--text-xl); line-height: 1.15; margin-block: var(--space-6); max-width: 25ch; }
.news-feature-copy h3 a { text-decoration: none; }
.news-feature-copy h3 a:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.news-feature-copy > p:not(.eyebrow) { color: var(--text-muted); max-width: 48ch; }
.news-feature-copy > .link-arrow { margin-top: var(--space-8); min-height: 44px; }
.news-inquiries { display: flex; align-items: center; justify-content: space-between; gap: var(--space-8); }
.news-inquiries h2 { font-size: var(--text-2xl); margin-block: var(--space-4); }
.news-inquiries p:not(.eyebrow) { max-width: 54ch; color: var(--text-muted); }
.news-inquiries .btn { flex-shrink: 0; }
.news-article-head .eyebrow { margin-top: var(--space-10); }
.news-article-head h1 { font-size: clamp(2.5rem, 1.4rem + 3.5vw, 4.75rem); line-height: 1.05; max-width: 22ch; margin-block: var(--space-6); }
.news-article-head .lede { max-width: 56ch; }
.news-byline { display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-6); margin-top: var(--space-8); font-size: var(--text-sm); }
.news-byline span { color: var(--text-muted); }
.news-article-grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(260px, 1fr); gap: clamp(var(--space-8), 6vw, var(--space-20)); align-items: start; }
.news-body { font-size: var(--text-lg); max-width: 64ch; }
.news-body > p + p { margin-top: var(--space-6); }
.news-body a { text-underline-offset: 4px; text-decoration-thickness: 1px; }
.news-body h2 { font-size: var(--text-xl); margin-block: var(--space-10) var(--space-6); }
.news-editor-note { margin-top: var(--space-10); padding: var(--space-6); background: var(--cream); border-left: 3px solid var(--champagne); font-size: var(--text-sm); }
.news-editor-note p { margin-top: var(--space-2); color: var(--text-muted); }
.news-event-box { padding: var(--space-8); background: var(--cream); border-radius: var(--radius-lg); }
.news-event-box > img { background: #fff; padding: var(--space-3); margin-bottom: var(--space-8); }
.news-event-box h2 { font-size: var(--text-xl); line-height: 1.1; margin-top: var(--space-4); }
.news-event-box dt { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: .12em; color: var(--text-muted); margin-top: var(--space-6); }
.news-event-box dd { margin: var(--space-2) 0 0; }
.news-event-box > a { margin-top: var(--space-6); min-height: 44px; }
.iaapa-event-box > a { display: flex; width: fit-content; align-items: center; }
@media (max-width: 800px) {
  .news-feature, .news-article-grid { grid-template-columns: 1fr; }
  .news-inquiries { flex-direction: column; align-items: flex-start; }
  .news-date { padding: var(--space-8); }
  .news-month { margin-top: var(--space-4); }
  .news-place { margin-top: var(--space-4); }
}
.gallery { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(1rem, 2vw, 1.75rem); }
.g-item { margin: 0; border-radius: var(--radius-lg); overflow: hidden; }
.g-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 5 / 4; }
@media (max-width: 760px) { .gallery { grid-template-columns: 1fr; } }
