/* ==========================================================================
   REDONE CO. — Design System
   Charcoal / teal-sage. Barlow Condensed display, Inter body.
   ========================================================================== */

:root {
  /* Brand tokens — from handoff doc */
  --charcoal-950: #2a2a2a;
  --charcoal-900: #3d3d3d;
  --teal: #7a9e9f;
  --teal-bg: #cdd8d8;
  --white: #ffffff;
  --off-white: #f4f5f5;
  --light-grey: #eaebeb;
  /* #6f6f6f, not the handoff's #888888 — the original fails WCAG AA
     (3.25:1) as body text on --off-white; this passes (4.6:1) on both
     --white and --off-white while staying the same hue. */
  --text-grey: #6f6f6f;

  /* Derived working tokens */
  /* #537576, not #5e8485 — same reasoning: the original was 4.11:1 on
     --white (fails AA for normal-size text like .eyebrow labels), this is
     4.6:1+ on both --white and --off-white. */
  --teal-deep: #537576;
  --teal-tint: #e4ebeb;
  --ink: #201f1f;
  --line: #dcdedd;
  --line-dark: rgba(255, 255, 255, 0.12);

  --nav-height: 96px;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Scroll-reveal is opt-in: content is fully visible by default, so no-JS,
   slow-JS, and non-executing crawlers/link-preview bots all see everything.
   Only once the inline head script confirms JS is running does it stamp
   html.js-reveal *before first paint*, and only then do .reveal elements
   start hidden and fade in via script.js adding is-visible. Content is
   never hidden behind a class nothing guarantees will be added. */
html.js-reveal .reveal { opacity: 0; transform: translateY(18px); }
html.js-reveal .reveal.is-visible { opacity: 1; transform: translateY(0); }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* Belt-and-suspenders: the page must never scroll sideways, whatever a
     future edit does to a heading, image, or fixed-width child. */
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- type ---------- */

h1, h2, h3, h4 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.98;
  margin: 0;
  text-wrap: balance;
  /* Safety net: a ch-based max-width (e.g. .hero h1) can be narrower than a
     single long word at large mobile font sizes. Without this, that word
     can't wrap and silently overflows the viewport instead. */
  overflow-wrap: break-word;
}

.display-1 { font-size: clamp(2.8rem, 6.5vw, 5.6rem); font-weight: 900; }
.display-2 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 800; }
.display-3 { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 800; }

p { margin: 0 0 1em; max-width: 60ch; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--teal-deep);
}
.eyebrow.on-dark { color: var(--teal); }
.eyebrow.on-dark::before { background: var(--teal); }

.lede {
  font-size: 1.05rem;
  color: var(--text-grey);
  max-width: 52ch;
}
.on-dark .lede, .lede.on-dark { color: rgba(255,255,255,0.72); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 30px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn-primary { background: var(--white); color: var(--charcoal-950); }
.btn-primary:hover { background: var(--teal); color: var(--white); }

.btn-outline { border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-dark { background: var(--charcoal-950); color: var(--white); }
.btn-dark:hover { background: var(--teal-deep); }

.btn-ghost-dark { border-color: rgba(42,42,42,0.25); color: var(--charcoal-950); }
.btn-ghost-dark:hover { border-color: var(--charcoal-950); background: rgba(42,42,42,0.05); }

.btn-teal { background: var(--charcoal-950); color: var(--white); }
.btn-teal:hover { background: var(--white); color: var(--charcoal-950); }

.btn[disabled], .btn.is-sold {
  background: var(--charcoal-900);
  color: rgba(255,255,255,0.5);
  cursor: not-allowed;
  pointer-events: none;
}

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 100;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav-inner {
  width: 100%;
  display: grid;
  /* equal 1fr rails either side of the links keep the link group centered
     in the bar regardless of how wide the logo or the right-side button
     happen to be, rather than the links hugging the logo. */
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 48px;
}

.nav-links {
  display: flex;
  gap: 34px;
  justify-self: center;
}

.nav-links a {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-logo {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  transition: color 0.35s var(--ease);
}
.nav-logo .logo-mark { position: relative; display: block; flex: none; height: 46px; width: 31px; }
.nav-logo .logo-mark img { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: contain; display: block; transition: opacity 0.35s var(--ease); }
.nav-logo .logo-mark .mark-dark { opacity: 0; }
.logo-word {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.55rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: inherit;
}

.nav-right { justify-self: end; display: flex; align-items: center; gap: 22px; }
.nav-right .btn { color: var(--white); border-color: rgba(255,255,255,0.5); }
.nav-right .btn:hover { background: var(--white); color: var(--charcoal-950); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 26px; height: 20px;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background 0.3s var(--ease);
}
.nav-toggle span { top: 9px; }
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }

/* light nav state — set by JS when scrolled over a light section */
.nav.is-light {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.nav.is-light .nav-links a,
.nav.is-light .nav-dropdown-trigger,
.nav.is-light .nav-right a.nav-text { color: var(--charcoal-950); }
.nav.is-light .nav-logo { color: var(--charcoal-950); }
.nav.is-light .nav-logo .logo-mark .mark-light { opacity: 0; }
.nav.is-light .nav-logo .logo-mark .mark-dark { opacity: 1; }
.nav.is-light .nav-right .btn { color: var(--charcoal-950); border-color: rgba(42,42,42,0.35); }
.nav.is-light .nav-right .btn:hover { background: var(--charcoal-950); color: var(--white); }
.nav.is-light .nav-toggle span,
.nav.is-light .nav-toggle span::before,
.nav.is-light .nav-toggle span::after { background: var(--charcoal-950); }

.nav.is-solid-dark {
  background: var(--charcoal-950);
  border-bottom-color: rgba(255,255,255,0.08);
}

/* mobile nav drawer */
.nav-drawer {
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  background: var(--charcoal-950);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 40px var(--gutter);
  gap: 28px;
}
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer a {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--white);
}
.nav-drawer { overflow-x: hidden; overflow-y: auto; }
.nav-drawer .btn {
  align-self: flex-start;
  margin-top: 12px;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

body.nav-open { overflow: hidden; }

@media (max-width: 900px) {
  .nav-links, .nav-right .btn { display: none; }
  .nav-toggle { display: block; }
  .nav-right { gap: 0; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-logo { justify-self: start; }
}

/* ---------- nav dropdown (Services) ---------- */

.nav-item { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 4px 0;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  transition: color 0.3s var(--ease);
}
.nav-caret { width: 9px; height: 6px; transition: transform 0.25s var(--ease); }
.nav-item.has-dropdown:hover .nav-caret,
.nav-item.has-dropdown.is-open .nav-caret { transform: rotate(180deg); }

/* Invisible bridge filling the visual gap between the trigger and the
   dropdown panel below it. Without this, moving the mouse straight down
   from "Services"/"About" toward the panel crosses a dead zone that isn't
   part of .nav-item's hover box (the panel is absolutely positioned, so it
   doesn't extend .nav-item's own layout box down to meet it) — hover is
   lost mid-move, the panel closes, and a click never lands. This pseudo-
   element sits exactly in that gap so the hover chain never breaks. */
.nav-item.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 22px;
}

.nav-dropdown {
  position: absolute;
  top: 100%; left: 50%;
  transform: translate(-50%, 6px);
  min-width: 184px;
  margin-top: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: 0 16px 32px rgba(32,31,31,0.14);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  z-index: 10;
}
.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown,
.nav-item.has-dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-dropdown a,
.nav.is-light .nav-dropdown a {
  color: var(--charcoal-950);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 2px;
  transition: background 0.2s var(--ease);
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover { background: var(--off-white); }

.nav-drawer-sub {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: -14px;
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,0.15);
}
.nav-drawer-sub a {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ---------- section helpers ---------- */

section { position: relative; }

.section-dark { background: var(--charcoal-950); color: var(--white); }
.section-light { background: var(--white); }
.section-off { background: var(--off-white); }
.section-grey { background: var(--light-grey); }

.pad-xl { padding: clamp(80px, 12vw, 160px) 0; }
.pad-l { padding: clamp(64px, 9vw, 120px) 0; }
.pad-m { padding: clamp(48px, 6vw, 80px) 0; }

/* ---------- marquee ---------- */

.marquee-bar {
  background: var(--charcoal-950);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.4);
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.14);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- hero ---------- */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  background: var(--charcoal-950) url("../images/Hero_image.jpg") center right / cover no-repeat;
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(30,30,30,0.94) 0%, rgba(30,30,30,0.72) 38%, rgba(30,30,30,0.28) 68%, rgba(30,30,30,0.05) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-height) + 60px) 0 90px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 26px;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.hero h1 { max-width: 14ch; margin-bottom: 22px; }
.hero .lede { color: rgba(255,255,255,0.78); font-size: 1.1rem; max-width: 46ch; margin-bottom: 38px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 700px) {
  .hero { align-items: center; background-position: 70% center; }
  .hero::before { background: linear-gradient(180deg, rgba(30,30,30,0.6) 0%, rgba(30,30,30,0.88) 55%, rgba(30,30,30,0.96) 100%); }
  /* display-1's clamp() floors at 2.8rem regardless of viewport, which is too
     large for a long single word like "Professionally" on a narrow phone.
     Scale it down further here so overflow-wrap rarely has to break a word. */
  .hero h1 { font-size: clamp(2rem, 9.5vw, 2.8rem); max-width: 100%; }
}

/* ---------- what we do ---------- */

.wwd-grid {
  display: grid;
  grid-template-columns: 0.85fr 2fr;
  gap: 56px;
  align-items: start;
}
.wwd-heading h2 { margin-bottom: 18px; }
.wwd-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.wwd-card {
  background: var(--charcoal-950);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--white);
  transition: background 0.3s var(--ease);
}
.wwd-card.is-tint { background: rgba(255, 255, 255, 0.05); }
.wwd-card .num { font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--teal); }
.wwd-card h3 { font-size: 1.35rem; }
.wwd-card p { font-size: 0.92rem; color: rgba(255, 255, 255, 0.65); }
.wwd-card:hover { background: rgba(122, 158, 159, 0.16); }

@media (max-width: 900px) {
  .wwd-grid { grid-template-columns: 1fr; }
  .wwd-cards { grid-template-columns: 1fr; }
}

/* ---------- inventory ---------- */

.inv-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.inv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .inv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .inv-grid { grid-template-columns: 1fr; } }

.chair-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.chair-media {
  aspect-ratio: 4/3;
  background: var(--off-white);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.chair-media svg { width: 46%; opacity: 0.5; }
.chair-media img { width: 100%; height: 100%; object-fit: cover; }
.chair-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--white);
}
.badge-like-new { background: #4c8c6b; }
.badge-excellent { background: #4b7fa8; }
.badge-good { background: #b6862c; }
.badge-okay { background: #8a7a4c; }
.badge-bad { background: #a3453a; }
.badge-sold { background: var(--charcoal-900); }

/* multi-photo chair card carousel */
.chair-img-track { position: absolute; inset: 0; }
.chair-img-track img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  opacity: 0; transition: opacity 0.35s ease;
}
.chair-img-track img.is-active { opacity: 1; z-index: 1; }
@media (prefers-reduced-motion: reduce) {
  .chair-img-track img { transition: none; }
}
.chair-img-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 2;
  width: 30px; height: 30px; border-radius: 50%; border: none;
  background: rgba(20, 20, 20, 0.55); color: var(--white);
  font-size: 1.1rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.15s ease;
}
.chair-media.has-multi:hover .chair-img-nav,
.chair-img-nav:focus-visible { opacity: 1; }
.chair-img-prev { left: 10px; }
.chair-img-next { right: 10px; }
.chair-img-count {
  position: absolute; top: 14px; right: 14px;
  z-index: 2;
  background: rgba(20, 20, 20, 0.6); color: var(--white);
  font-size: 0.7rem; font-weight: 700; font-variant-numeric: tabular-nums;
  padding: 3px 8px; border-radius: 999px; letter-spacing: 0.02em;
}
.chair-img-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; gap: 5px;
}
.chair-img-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.55); cursor: pointer;
}
.chair-img-dot.is-active { background: var(--white); }

.chair-body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.chair-name { font-family: "Barlow Condensed", sans-serif; font-weight: 800; font-size: 1.3rem; text-transform: uppercase; }
.chair-spec { font-size: 0.85rem; color: var(--text-grey); margin-bottom: 6px; }
.chair-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.chair-spec-chip {
  font-size: 0.72rem; font-weight: 600; color: var(--text-grey);
  background: var(--off-white); border: 1px solid var(--line);
  border-radius: 999px; padding: 3px 9px;
}
.chair-prices { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.chair-price { font-family: "Barlow Condensed", sans-serif; font-weight: 800; font-size: 1.5rem; font-variant-numeric: tabular-nums; }
.chair-retail { font-size: 0.82rem; color: var(--text-grey); text-decoration: line-through; font-variant-numeric: tabular-nums; }
.chair-warranty { font-size: 0.78rem; color: var(--teal-deep); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 14px; }
.chair-body .btn { margin-top: auto; width: 100%; }

/* empty state */
.empty-state {
  border: 1px dashed var(--line);
  padding: clamp(56px, 8vw, 96px) 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  background: var(--off-white);
}
.empty-state svg { width: 64px; opacity: 0.35; margin-bottom: 6px; }
.empty-state h3 { font-size: 1.8rem; }
.empty-state p { color: var(--text-grey); }
.waitlist-form {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  width: 100%;
  max-width: 420px;
  flex-wrap: wrap;
}
.waitlist-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
}
.waitlist-form input:focus { outline: 2px solid var(--teal); outline-offset: -1px; }

/* ---------- trust bar ---------- */

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-item {
  background: var(--white);
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.trust-item .n { font-family: "Barlow Condensed", sans-serif; font-weight: 800; font-size: 1.9rem; color: var(--teal-deep); }
.trust-item .l { font-size: 0.82rem; color: var(--text-grey); text-transform: uppercase; letter-spacing: 0.04em; }
@media (max-width: 700px) { .trust-bar { grid-template-columns: repeat(2, 1fr); } }

/* ---------- process ---------- */

.process {
  background: var(--charcoal-950) url("../images/background_pictures.jpg") center / cover no-repeat;
  color: var(--white);
  position: relative;
}
.process::before { content: ""; position: absolute; inset: 0; background: rgba(20,20,20,0.86); }
.process-inner { position: relative; z-index: 1; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-top: 54px;
}
.process-step .n {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 4.4rem;
  color: rgba(255,255,255,0.35);
  line-height: 1;
  margin-bottom: 14px;
}
.process-step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.process-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 56px; }
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-steps { grid-template-columns: 1fr; } }

/* ---------- mission ---------- */

.mission-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.mission-grid .lede { font-size: 1.08rem; color: var(--ink); max-width: 68ch; }
.mission-tagline {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-top: 26px;
}
@media (max-width: 900px) { .mission-grid { grid-template-columns: 1fr; } }

/* ---------- testimonials ---------- */

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: var(--white);
  padding: 32px 28px;
  border: 1px solid var(--line);
}
.stars { color: var(--teal-deep); font-size: 0.95rem; letter-spacing: 0.1em; margin-bottom: 16px; }
.testi-quote { font-size: 0.98rem; margin-bottom: 22px; }
.testi-name { font-weight: 600; font-size: 0.92rem; }
.testi-role { font-size: 0.8rem; color: var(--text-grey); }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

/* ---------- cta banner ---------- */

.cta-banner {
  background: var(--charcoal-950) url("../images/Gemini_Generated_Image_jfrqw5jfrqw5jfrq.jpg") center / cover no-repeat;
  position: relative;
  color: var(--charcoal-950);
}
.cta-banner::before { content: ""; position: absolute; inset: 0; background: rgba(205, 216, 216, 0.88); }
.cta-banner-inner {
  position: relative; z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.cta-banner h2 { max-width: 16ch; }
.cta-banner .btn-dark:hover { background: var(--white); color: var(--charcoal-950); }

/* ---------- contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 64px;
}
.contact-list { display: flex; flex-direction: column; gap: 26px; margin-top: 30px; }
.contact-item .l { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-grey); margin-bottom: 4px; }
.contact-item .v { font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 1.3rem; }
.contact-item a.v:hover { color: var(--teal-deep); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-grey);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--off-white);
  padding: 14px 16px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.78rem; color: var(--text-grey); margin-top: 4px; }
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } .form-grid { grid-template-columns: 1fr; } }

/* ---------- footer newsletter signup ---------- */

.footer-newsletter { margin-top: 22px; }
.footer-newsletter h4 {
  font-family: "Inter", sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}
.newsletter-row { display: flex; gap: 8px; flex-wrap: wrap; }
.newsletter-row input[type="email"] {
  flex: 1; min-width: 160px;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
}
.newsletter-row input[type="email"]::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-row input[type="email"]:focus { outline: none; border-color: var(--teal); background: rgba(255,255,255,0.09); }
.newsletter-row button { flex: none; padding: 11px 18px; font-size: 0.82rem; }
.newsletter-consent {
  display: flex; align-items: flex-start; gap: 8px; margin-top: 10px;
  font-size: 0.78rem; color: rgba(255,255,255,0.55); cursor: pointer; line-height: 1.4;
}
.newsletter-consent input { margin-top: 3px; flex: none; }
.newsletter-consent a { color: rgba(255,255,255,0.75); text-decoration: underline; }
.newsletter-note { font-size: 0.8rem; margin-top: 10px; }
.newsletter-note.is-ok { color: var(--teal); }
.newsletter-note.is-error { color: #e5a3a3; }

/* ---------- footer ---------- */

.site-footer { background: var(--charcoal-950); color: rgba(255,255,255,0.8); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 72px 0 44px;
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 18px; color: var(--white); }
.footer-brand .brand-mark { display: flex; align-items: center; gap: 12px; }
.footer-brand .brand-mark img { height: 44px; width: 30px; object-fit: contain; flex: none; display: block; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); max-width: 32ch; margin: 0; }
.footer-col h4 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.78); transition: color 0.25s var(--ease); }
.footer-col a:hover { color: var(--teal); }
.footer-social { display: flex; gap: 14px; margin-top: 4px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.footer-social a:hover { border-color: var(--teal); background: rgba(122,158,159,0.12); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a:hover { color: var(--teal); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- inner-page hero (non-home pages) ---------- */

.page-hero {
  background: var(--charcoal-950);
  color: var(--white);
  padding: calc(var(--nav-height) + 76px) 0 64px;
}
.page-hero .display-2 { max-width: 20ch; }

/* photo variant — used on About and Sustainability, which have a real
   background photo instead of the flat charcoal fill every other inner
   page uses. The gradient overlay keeps the white heading/eyebrow text
   readable over whatever's in the photo underneath it. */
.page-hero.has-photo {
  position: relative;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.page-hero.has-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20,24,24,0.62), rgba(20,24,24,0.8));
}
.page-hero.about-hero { background-image: url("../images/about-hero-bg.jpg"); }
.page-hero.sustainability-hero { background-image: url("../images/sustainability-hero-bg.jpg"); }

/* story text + supporting photo, side by side — About's "Our Story" and
   Sustainability's intro both use this. */
.about-story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}
.about-story-figure {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.about-story-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 860px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-story-figure { order: -1; }
}

/* ---------- pricing tables (services page) ---------- */

.price-table-wrap { overflow-x: auto; }
table.price-table {
  width: 100%;
  border-collapse: collapse;
  /* Only two columns (model, price) — this only needs to be wide enough that
     the longest model name and its price don't crowd each other. A larger
     min-width here would force horizontal scroll on phones for no reason;
     overflow-x on the wrapper above is the real safety net if it's ever needed. */
  min-width: 280px;
}
table.price-table th, table.price-table td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
table.price-table th {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-grey);
}
table.price-table td.model { font-weight: 600; }
table.price-table td.amount { font-family: "Barlow Condensed", sans-serif; font-weight: 800; font-size: 1.15rem; font-variant-numeric: tabular-nums; text-align: right; }
table.price-table th:last-child, table.price-table td:last-child { text-align: right; }

.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 800px) { .services-grid { grid-template-columns: 1fr; } }
/* Grid items default to min-width:auto, which floors them at their content's
   intrinsic size — here, the pricing table's min-width:420px. That silently
   grows the column (and the whole page) sideways instead of letting
   .price-table-wrap's own overflow-x:auto scroll the table in place. */
.services-grid > div { min-width: 0; }

.addon-list { display: flex; flex-direction: column; }
.addon-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.addon-row .name { font-weight: 500; }
.addon-row .price { font-family: "Barlow Condensed", sans-serif; font-weight: 800; font-variant-numeric: tabular-nums; white-space: nowrap; }

/* ---------- policies page ---------- */

.policy-block { max-width: 78ch; margin-bottom: 56px; }
.policy-block:last-child { margin-bottom: 0; }
.policy-block h2 { margin-bottom: 20px; }
.policy-block h3 { font-size: 1.15rem; text-transform: none; font-family: "Inter", sans-serif; font-weight: 600; margin: 26px 0 10px; letter-spacing: 0; }
.policy-block ul { display: flex; flex-direction: column; gap: 10px; margin: 0 0 18px; }
.policy-block li {
  padding-left: 22px;
  position: relative;
  font-size: 0.96rem;
  color: var(--ink);
}
.policy-block li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--teal-deep);
}
.policy-nav {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.policy-nav a {
  padding: 12px 4px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-grey);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.policy-nav a.is-active, .policy-nav a:hover { color: var(--charcoal-950); border-color: var(--teal); }

/* ---------- parts page ---------- */

.parts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); }
.parts-card { background: var(--white); padding: 30px 26px; display: flex; flex-direction: column; gap: 10px; }
.parts-card .price { font-family: "Barlow Condensed", sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--teal-deep); }
.parts-card .parts-name { font-family: "Inter", sans-serif; font-weight: 600; font-size: 1.15rem; text-transform: none; letter-spacing: 0; }
.parts-card p { font-size: 0.88rem; color: var(--text-grey); }
.parts-media { aspect-ratio: 4/3; background: var(--off-white); overflow: hidden; margin: -30px -26px 4px; }
.parts-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .parts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .parts-grid { grid-template-columns: 1fr; } }

/* ---------- color swatches (owner-editable per part) ---------- */

.swatches-block { margin-top: 4px; }
.swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.swatches[hidden] { display: none; } /* the configurator toggles this at runtime; flex above would otherwise beat [hidden] */
.swatch-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background-color: var(--swatch-color, #ccc);
  background-size: cover;
  background-position: center;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.swatch-btn:hover { transform: scale(1.1); }
.swatch-btn[aria-pressed="true"] { border-color: var(--charcoal-950); box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--charcoal-950); }
.swatch-selected { font-size: 0.78rem; color: var(--text-grey); margin-top: 8px; min-height: 1.2em; }

/* ---------- chair configurator ---------- */

.configurator { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: start; }
.configurator-preview {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  aspect-ratio: 4 / 3;
  background: var(--off-white);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.configurator-preview img { width: 100%; height: 100%; object-fit: cover; }
.configurator-preview img[hidden] { display: none; } /* the sitewide img{display:block} would otherwise beat [hidden] */
.configurator-preview-empty { color: var(--text-grey); font-size: 0.92rem; text-align: center; padding: 0 40px; }

.configurator-options { display: flex; flex-direction: column; gap: 22px; }

.mode-toggle { display: flex; border: 1px solid var(--line); }
.mode-btn {
  flex: 1;
  padding: 13px 10px;
  background: var(--off-white);
  border: none;
  border-left: 1px solid var(--line);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-grey);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.mode-btn:first-child { border-left: none; }
.mode-btn.is-active { background: var(--charcoal-950); color: var(--white); }
.mode-btn:not(.is-active):hover { background: var(--light-grey); color: var(--ink); }

.configurator-note { font-size: 0.88rem; color: var(--text-grey); }
.configurator-note a { color: var(--teal-deep); font-weight: 600; }

.preview-thumbs { display: flex; flex-wrap: wrap; gap: 8px; }
.preview-thumb {
  width: 56px; height: 56px;
  padding: 0;
  border: 2px solid var(--line);
  background: var(--off-white);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}
.preview-thumb img { width: 100%; height: 100%; object-fit: cover; }
.preview-thumb.is-active, .preview-thumb:hover { border-color: var(--charcoal-950); }

.configurator-inquire { align-self: flex-start; }
.configurator-inquire[hidden] { display: none; } /* .btn sets display:inline-flex, which otherwise beats the [hidden] attribute */

@media (max-width: 860px) {
  .configurator { grid-template-columns: 1fr; gap: 32px; }
  .configurator-preview { position: static; }
}

/* ---------- photo gallery: infinite kinetic horizontal scroll ---------- */

.gallery-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(48px, 8vw, 96px);
}
.gallery-intro .eyebrow { margin-bottom: 10px; }
.gallery-hint {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-grey);
}

.gallery-scroll {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
  padding: 12px 0;
}
.gallery-scroll.is-dragging { cursor: grabbing; }
.gallery-scroll[hidden] { display: none; }

.gallery-track {
  display: flex;
  align-items: center;
  will-change: transform;
  padding-left: 6vw;
}
.gallery-frame {
  position: relative;
  flex: 0 0 auto;
  height: clamp(280px, 34vw, 480px);
  margin-right: clamp(28px, 4vw, 72px);
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  transform-origin: center center;
  transition: transform 0.1s linear;
}
.gallery-frame img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
}

.gallery-status {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 18px;
  margin-top: clamp(28px, 5vw, 56px);
  font-family: "Inter", sans-serif;
}
.gallery-status .count {
  font-variant-numeric: tabular-nums;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--text-grey);
}
.gallery-status .caption {
  font-size: 0.95rem;
  color: var(--charcoal-950);
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .gallery-frame { transition: none; }
}
@media (max-width: 700px) {
  .gallery-intro { align-items: flex-start; }
  .gallery-hint { display: none; }
  .gallery-frame { height: clamp(220px, 58vw, 340px); margin-right: 18px; }
}

/* ---------- before / after comparison slider ---------- */

.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(24px, 3vw, 40px);
  margin-top: 8px;
}
.ba-card { margin: 0; }
.ba-slider {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--light-grey);
  border-radius: 2px;
  user-select: none;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}
.ba-before-wrap {
  position: absolute;
  inset: 0;
  clip-path: inset(0 50% 0 0); /* JS keeps this in sync with the range value */
}
.ba-before-wrap .ba-img { position: absolute; inset: 0; }

.ba-tag {
  position: absolute;
  top: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  background: rgba(20, 24, 24, 0.55);
  padding: 5px 11px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 1;
}
.ba-tag-before { left: 14px; }
.ba-tag-after { right: 14px; }

/* The range input's native thumb IS the divider: a thin full-height bar
   with a visible grip, styled identically (bar shape aside) in both
   engines so the control looks the same everywhere. The track itself
   stays fully transparent — the images underneath do all the showing. */
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: ew-resize;
  z-index: 2;
}
.ba-range::-webkit-slider-runnable-track { background: transparent; height: 100%; }
.ba-range::-moz-range-track { background: transparent; height: 100%; border: none; }
.ba-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 4px;
  height: 100%;
  background: var(--white);
  box-shadow: 0 0 0 1.5px rgba(20, 24, 24, 0.35);
  border-radius: 2px;
  cursor: ew-resize;
}
.ba-range::-moz-range-thumb {
  width: 4px;
  height: 100%;
  background: var(--white);
  box-shadow: 0 0 0 1.5px rgba(20, 24, 24, 0.35);
  border-radius: 2px;
  border: none;
  cursor: ew-resize;
}
.ba-range:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 1.5px rgba(20, 24, 24, 0.35), 0 0 0 4px var(--teal); }
.ba-range:focus-visible::-moz-range-thumb { box-shadow: 0 0 0 1.5px rgba(20, 24, 24, 0.35), 0 0 0 4px var(--teal); }

.ba-caption { margin-top: 16px; display: flex; flex-direction: column; gap: 2px; }
.ba-caption-name { font-family: "Barlow Condensed", sans-serif; font-weight: 800; font-size: 1.15rem; }
.ba-caption-detail { font-size: 0.86rem; color: var(--text-grey); }

@media (max-width: 700px) {
  .ba-grid { grid-template-columns: 1fr; }
}

/* ---------- about page ---------- */

.about-story { max-width: 68ch; }
.about-story p { white-space: pre-line; }

.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 40px;
}
.impact-stats[hidden] { display: none; }
.impact-stat { background: var(--white); padding: 28px 20px; display: flex; flex-direction: column; gap: 6px; }
.impact-stat .n { font-family: "Barlow Condensed", sans-serif; font-weight: 800; font-size: 2.2rem; color: var(--teal-deep); font-variant-numeric: tabular-nums; }
.impact-stat .l { font-size: 0.8rem; color: var(--text-grey); text-transform: uppercase; letter-spacing: 0.04em; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 36px;
}
.team-grid[hidden] { display: none; }
.team-card { text-align: center; display: flex; flex-direction: column; align-items: center; }
.team-photo {
  width: 148px;
  height: 148px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--off-white);
  overflow: hidden;
  object-fit: cover;
  margin: 0 0 16px;
  flex: none;
}
.team-name { font-family: "Barlow Condensed", sans-serif; font-weight: 800; font-size: 1.2rem; text-transform: uppercase; }
.team-role { font-size: 0.82rem; color: var(--teal-deep); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 8px; }
.team-bio { font-size: 0.92rem; color: var(--text-grey); max-width: 30ch; }

.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 20px;
}
.service-area-text .item { margin-bottom: 22px; }
.service-area-text .item h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 6px; color: var(--charcoal-950); }
.service-area-map { aspect-ratio: 4 / 3; border: 1px solid var(--line); overflow: hidden; background: var(--off-white); }
.service-area-map iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 800px) { .service-area-grid { grid-template-columns: 1fr; } }

.about-sustain-cta {
  margin-top: 56px;
  padding: 36px;
  background: var(--charcoal-950);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.about-sustain-cta h3 { font-family: "Barlow Condensed", sans-serif; font-weight: 800; font-size: 1.5rem; text-transform: uppercase; max-width: 26ch; }

/* ---------- sustainability page: circular economy diagram ---------- */

.cycle-wrap { display: flex; justify-content: center; margin: clamp(48px, 8vw, 88px) 0; }
.cycle-diagram {
  position: relative;
  width: min(94vw, 760px);
  aspect-ratio: 1;
}
/* a softly blurred, "unfocused" materials photo behind the loop — gives the
   diagram real texture and color without competing with the node text
   sitting on top of it. Same photo used next to the intro copy above. */
.cycle-diagram::before {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: url("../images/sustainability-materials-image.jpg") center / cover;
  filter: blur(7px) saturate(1.15);
  opacity: 0.4;
  transform: scale(1.06); /* hides the blur's soft edge past the circle's crop */
}
.cycle-diagram::after {
  content: "";
  position: absolute;
  inset: 17%;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(20,24,24,0.05);
}

/* Each node is a <button> — minimal by default (just the number + label);
   hover, keyboard focus, or a click/tap expands the description. The desc
   text stays in the DOM either way, so screen readers always get it
   regardless of the visual collapsed state. */
.cycle-diagram .cycle-node {
  position: absolute;
  transform: translate(-50%, -50%);
  width: clamp(150px, 25vw, 220px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
  border: none;
  padding: 8px;
  margin: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.cycle-diagram .cycle-node:nth-child(1) { top: 9%; left: 50%; }
.cycle-diagram .cycle-node:nth-child(2) { top: 36%; left: 89%; }
.cycle-diagram .cycle-node:nth-child(3) { top: 84%; left: 74%; }
.cycle-diagram .cycle-node:nth-child(4) { top: 84%; left: 26%; }
.cycle-diagram .cycle-node:nth-child(5) { top: 36%; left: 11%; }
.cycle-diagram .cycle-node .n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--charcoal-950);
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 12px;
  box-shadow: 0 6px 18px rgba(20,24,24,0.25);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.cycle-diagram .cycle-node .label {
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: var(--white);
  padding: 5px 14px;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(20,24,24,0.1);
}
.cycle-diagram .cycle-node .desc {
  display: block;
  font-size: 0.88rem;
  color: var(--text-grey);
  line-height: 1.45;
  background: var(--white);
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 14px;
  margin-top: 8px;
  box-shadow: 0 10px 24px rgba(20,24,24,0.16);
  transition: max-height 0.3s var(--ease), opacity 0.25s var(--ease), padding 0.3s var(--ease);
}
.cycle-diagram .cycle-node:hover .n,
.cycle-diagram .cycle-node:focus-visible .n,
.cycle-diagram .cycle-node[aria-expanded="true"] .n {
  transform: scale(1.08);
  background: var(--teal-deep);
}
.cycle-diagram .cycle-node:hover .desc,
.cycle-diagram .cycle-node:focus-visible .desc,
.cycle-diagram .cycle-node[aria-expanded="true"] .desc {
  max-height: 180px;
  opacity: 1;
  padding: 12px 14px;
}

@media (max-width: 680px) {
  .cycle-diagram { display: none; }
  .cycle-list { display: flex; flex-direction: column; gap: 22px; margin: 40px 0; }
}
@media (min-width: 681px) { .cycle-list { display: none; } }
.cycle-list .cycle-node { position: static; transform: none; width: auto; text-align: left; display: flex; align-items: flex-start; gap: 16px; }
.cycle-list .cycle-node .n {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--charcoal-950);
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
}
.cycle-list .cycle-node .text { flex: 1; }
.cycle-list .cycle-node .label { font-family: "Barlow Condensed", sans-serif; font-weight: 800; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 6px; display: block; }
.cycle-list .cycle-node .desc { font-size: 0.82rem; color: var(--text-grey); line-height: 1.4; }

/* ---------- Blog ---------- */

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 28px; }
.blog-card { display: flex; flex-direction: column; }
.blog-card-image { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: var(--light-grey); margin-bottom: 16px; }
.blog-card-date { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-grey); margin-bottom: 8px; }
.blog-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.blog-card p { font-size: 0.92rem; color: var(--text-grey); line-height: 1.55; margin-bottom: 12px; }
.blog-card a.read-more { font-size: 0.85rem; font-weight: 600; color: var(--teal-deep); }
.blog-card a.read-more:hover { color: var(--charcoal-950); }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-post { max-width: 74ch; }
.blog-post-date { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-grey); margin-bottom: 14px; }
.blog-post-cover { width: 100%; max-height: 460px; object-fit: cover; margin: 24px 0 36px; }
.blog-post-body p { margin-bottom: 20px; line-height: 1.7; font-size: 1.02rem; color: var(--ink); }
.blog-post-images { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 36px 0; }
.blog-post-images figure { margin: 0; }
.blog-post-images img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.blog-post-images figcaption { font-size: 0.8rem; color: var(--text-grey); margin-top: 8px; }
@media (max-width: 620px) { .blog-post-images { grid-template-columns: 1fr; } }
.blog-back { display: inline-block; margin-bottom: 32px; font-size: 0.85rem; font-weight: 600; color: var(--teal-deep); }
.blog-back:hover { color: var(--charcoal-950); }

/* ---------- FAQ page ---------- */

.faq-groups { display: flex; flex-direction: column; gap: 56px; max-width: 78ch; }
.faq-group h2 { font-size: 1.15rem; text-transform: none; font-family: "Inter", sans-serif; font-weight: 600; margin-bottom: 6px; letter-spacing: 0; color: var(--teal-deep); }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .icon { flex: none; position: relative; width: 18px; height: 18px; }
.faq-item .icon::before, .faq-item .icon::after { content: ""; position: absolute; background: var(--charcoal-950); transition: transform 0.2s var(--ease); }
.faq-item .icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq-item .icon::after { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.faq-item[open] .icon::after { transform: translateX(-50%) scaleY(0); }
.faq-item .faq-answer { padding: 0 0 22px; max-width: 68ch; color: var(--text-grey); line-height: 1.6; }
.faq-empty { color: var(--text-grey); }

/* ---------- corporate / bulk orders page ---------- */

.bulk-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 36px; }
.bulk-benefit h3 { font-family: "Barlow Condensed", sans-serif; font-weight: 800; font-size: 1.2rem; text-transform: uppercase; margin-bottom: 8px; }
.bulk-benefit p { color: var(--text-grey); line-height: 1.55; }
@media (max-width: 800px) { .bulk-benefits { grid-template-columns: 1fr; } }

.bulk-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 36px; }
.bulk-step .n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--charcoal-950); color: var(--white);
  font-family: "Barlow Condensed", sans-serif; font-weight: 800; font-size: 1rem;
  margin-bottom: 12px;
}
.bulk-step h3 { font-size: 1.02rem; margin-bottom: 6px; }
.bulk-step p { font-size: 0.88rem; color: var(--text-grey); line-height: 1.5; }
@media (max-width: 900px) { .bulk-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bulk-steps { grid-template-columns: 1fr; } }

/* ---------- inline video (YouTube, owner-pasted URL) ---------- */

.video-toggle { margin-top: 2px; }
.video-toggle summary {
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal-deep);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.video-toggle summary::-webkit-details-marker { display: none; }
.video-toggle summary::before {
  content: "";
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid currentColor;
  transition: transform 0.2s var(--ease);
}
.video-toggle[open] summary::before { transform: rotate(90deg); }
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  margin-top: 10px;
  background: var(--charcoal-950);
  border-radius: 3px;
  overflow: hidden;
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
/* Instagram embeds (posts/reels) render tall, not widescreen — 16:9 would
   letterbox them down to a sliver. */
.video-embed-instagram { aspect-ratio: 9/13; max-width: 400px; margin-left: auto; margin-right: auto; }

.parts-note {
  border: 1px solid var(--line);
  background: var(--off-white);
  padding: 24px 28px;
  margin-top: 40px;
  font-size: 0.92rem;
  color: var(--text-grey);
}

/* ---------- customer reviews ---------- */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 700px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.review-date { font-size: 0.78rem; color: var(--text-grey); }
.review-text { font-size: 0.98rem; }
.review-name { font-weight: 600; font-size: 0.9rem; }

.review-photos { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 2px; }
.review-photo {
  position: relative;
  width: 76px; height: 76px;
  border: 0;
  padding: 0;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  background: var(--off-white);
}
.review-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.25s var(--ease); }
.review-photo:hover img { transform: scale(1.06); }
.review-photo-more {
  position: absolute; inset: 0;
  background: rgba(20, 24, 24, 0.55);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

/* lightbox — opens a review's photos, or a part's chair + cushion color
   photos, for scrolling through one at a time */
.lightbox {
  position: fixed; inset: 0;
  z-index: 300;
  background: rgba(10, 12, 12, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }
body.lightbox-open { overflow: hidden; }
.lightbox-img { max-width: min(90vw, 900px); max-height: 82vh; object-fit: contain; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s var(--ease);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.22); }
.lightbox-close { top: 20px; right: 20px; width: 42px; height: 42px; border-radius: 50%; font-size: 1.4rem; line-height: 1; }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; font-size: 1.6rem; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-count { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.75); font-size: 0.85rem; }
.lightbox-caption { position: absolute; bottom: 50px; left: 50%; transform: translateX(-50%); color: var(--white); font-weight: 600; font-size: 0.95rem; text-align: center; white-space: nowrap; }
@media (max-width: 700px) {
  .lightbox-prev, .lightbox-next { width: 42px; height: 42px; font-size: 1.3rem; }
  .lightbox-prev { left: 8px; } .lightbox-next { right: 8px; }
  .lightbox-close { top: 10px; right: 10px; }
}

/* write-a-review form */
.rating-picker {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 4px;
}
.rating-picker input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.rating-picker label {
  font-size: 1.7rem;
  line-height: 1;
  color: var(--line);
  cursor: pointer;
  transition: color 0.15s var(--ease);
}
.rating-picker input:checked ~ label,
.rating-picker label:hover,
.rating-picker label:hover ~ label,
.rating-picker input:checked ~ label:hover,
.rating-picker input:hover ~ label { color: var(--teal-deep); }
.rating-picker input:focus-visible ~ label { outline: 2px solid var(--teal); outline-offset: 2px; }

.photo-previews { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.photo-preview { position: relative; width: 64px; height: 64px; border-radius: 3px; overflow: hidden; background: var(--off-white); }
.photo-preview img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-preview-remove {
  position: absolute; top: 2px; right: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 0;
  background: rgba(20, 24, 24, 0.75);
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;
}

.form-status { font-size: 0.85rem; min-height: 1.2em; margin-top: 4px; }
.form-status.is-error { color: #b0453a; }
.form-status.is-success, .form-status.is-ok { color: var(--teal-deep); font-weight: 600; }
.form-status.is-sending { color: var(--text-grey); }

.review-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 44px);
  margin-bottom: 64px;
}

/* ---------- instant estimate tool ---------- */

.estimate-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}
.estimate-form { display: flex; flex-direction: column; gap: 18px; }
.estimate-addons {
  border: 1px solid var(--line);
  background: var(--white);
}
.estimate-addon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  font-size: 0.9rem;
  cursor: pointer;
  border-bottom: 1px solid var(--line);
}
.estimate-addon-row:last-child { border-bottom: 0; }
.estimate-addon-row:hover { background: var(--off-white); }
.estimate-addon-row input { width: 16px; height: 16px; accent-color: var(--teal-deep); flex: none; }
.estimate-result {
  background: var(--charcoal-950);
  color: var(--white);
  padding: clamp(26px, 3vw, 36px);
  position: sticky;
  top: 100px;
}
.estimate-result .eyebrow.on-dark { margin-bottom: 8px; }
.estimate-total {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin-bottom: 20px;
}
.estimate-breakdown { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.estimate-breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  font-variant-numeric: tabular-nums;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.estimate-breakdown li:last-child { border-bottom: 0; padding-bottom: 0; }
.estimate-priced-note { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin: -8px 0 18px; }
.estimate-result .btn { width: 100%; text-align: center; justify-content: center; }
@media (max-width: 800px) {
  .estimate-layout { grid-template-columns: 1fr; }
  .estimate-result { position: static; }
}

/* ---------- repair status tracker ---------- */

.repair-result {
  background: var(--off-white);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 44px);
  margin-top: 32px;
}
.repair-result-head { margin-bottom: 30px; }
.repair-chair-desc { color: var(--text-grey); margin-top: 6px; }
.repair-stepper {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.repair-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 4px 0 26px;
  position: relative;
}
.repair-step::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 16px;
  bottom: -6px;
  width: 2px;
  background: var(--line);
}
.repair-step:last-child::before { display: none; }
.repair-step.is-done::before { background: var(--teal-deep); }
.repair-step-dot {
  flex: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--line);
  margin-top: 3px;
  position: relative;
  z-index: 1;
}
.repair-step.is-done .repair-step-dot { background: var(--teal-deep); border-color: var(--teal-deep); }
.repair-step.is-current .repair-step-dot { border-color: var(--teal-deep); box-shadow: 0 0 0 4px rgba(94, 132, 133, 0.18); }
.repair-step-label {
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  color: var(--text-grey);
  padding-top: 1px;
}
.repair-step.is-done .repair-step-label { color: var(--ink); }
.repair-step.is-current .repair-step-label { color: var(--charcoal-950); font-weight: 700; }
.repair-stage-note {
  margin-top: 6px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.9rem;
}

/* ---------- utility ---------- */

.center { text-align: center; margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0 !important; }
.section-head { margin-bottom: 48px; }
.reveal { transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
