/* Infonix Solutions LLC - "Range of Motion" system.
   Tokens first; every component reads from them. Dark mode swaps the paper side only. */
:root {
  --cobalt: #1f3fd1;
  --cobalt-deep: #162e9e;
  --plastic: #bfd2ff;
  --plastic-soft: #e4ecff;
  --orange: #ff6b1a;
  --orange-press: #e85a0c;
  --paper: #f7f9fc;
  --surface: #ffffff;
  --ink: #10162b;
  --ink-2: #3b4461;
  --line: #d5ddec;
  --on-cobalt: #ffffff;
  --on-cobalt-2: #c9d8ff;
  --error: #b42318;
  --plate: #e9eef6;
  --footer: #0a0f1f;
  --footer-text: #c5cde3;
  --footer-rule: #222b4a;
  --footer-link: #e8edf8;
  --success-bg: #e3f6ea;
  --success-text: #0b5a2b;
  --error-bg: #fdeceb;
  --error-text: #8f1c12;

  --font-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --font-body: "Atkinson Hyperlegible Next", "Segoe UI", system-ui, sans-serif;
  --font-mono: "Atkinson Hyperlegible Mono", ui-monospace, "Cascadia Mono", monospace;

  --u: 8px;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 12px 32px -12px rgba(22, 46, 158, 0.28);
  --container: 1200px;
  --nav-h: 72px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #0c1122;
    --surface: #141b33;
    --ink: #e8edf8;
    --ink-2: #b4bfd9;
    --line: #28325a;
    --plastic-soft: #1b2650;
    --cobalt: #2342d6;
    --cobalt-deep: #172c93;
    --shadow: 0 12px 32px -12px rgba(0, 0, 0, 0.6);
    --error: #ff8a7a;
    --plate: #1b2447;
    --success-bg: #12351f;
    --success-text: #9be3b4;
    --error-bg: #3a1512;
    --error-text: #ffb4aa;
    color-scheme: dark;
  }
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--nav-h) + 16px); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 1.125rem/1.6 var(--font-body);
  -webkit-font-smoothing: antialiased;
}
img, svg, canvas { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-underline-offset: 0.2em; text-decoration-thickness: 1.5px; }
button { font: inherit; color: inherit; }

::selection { background: var(--plastic); color: #10162b; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 6px; }
html { scrollbar-color: var(--cobalt) var(--paper); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 calc(var(--u) * 2);
  text-wrap: balance;
}
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.375rem; letter-spacing: -0.01em; }
p { margin: 0 0 calc(var(--u) * 2); max-width: 65ch; }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

.container { width: min(100% - 2 * clamp(16px, 4vw, 48px), var(--container)); margin-inline: auto; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -80px; z-index: 100;
  background: var(--orange); color: #10162b; padding: 12px 16px; border-radius: var(--radius-sm);
  font-weight: 700; text-decoration: none;
}
.skip-link:focus { top: 16px; }

/* Buttons: orange is action-only. Ink text keeps 6:1 contrast on orange. */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 28px;
  border: 2px solid transparent; border-radius: 999px;
  font-weight: 700; font-size: 1.0625rem; text-decoration: none; white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, transform 0.35s var(--ease-out);
}
.btn i { font-size: 1.25em; }
.btn-action { background: var(--orange); color: #10162b; }
.btn-action:hover { background: var(--orange-press); }
.btn-action:active { transform: scale(0.98); }
.btn-line { border-color: currentColor; background: transparent; }
.btn-line:hover { background: rgba(255, 255, 255, 0.12); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: var(--nav-h); }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.logo svg { width: 40px; height: 40px; }
.logo-word { font: 800 1.5rem/1 var(--font-display); letter-spacing: -0.03em; }
.logo-word small { display: block; font: 400 0.75rem/1.2 var(--font-body); letter-spacing: 0.02em; color: var(--ink-2); }
.nav-list { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-list a {
  display: block; padding: 10px 14px; border-radius: 999px;
  text-decoration: none; font-weight: 700; font-size: 1rem;
}
.nav-list a:hover { background: var(--plastic-soft); }
.nav-list a[aria-current="page"] { background: var(--ink); color: var(--paper); }
.cart-link {
  position: relative; display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--line); text-decoration: none; font-size: 1.5rem;
}
.cart-link:hover { border-color: var(--cobalt); }
.cart-count {
  position: absolute; top: -4px; right: -4px; min-width: 22px; height: 22px; padding: 0 6px;
  border-radius: 999px; background: var(--orange); color: #10162b;
  font: 700 0.75rem/22px var(--font-mono); text-align: center;
}
.cart-count:empty { display: none; }
.nav-toggle {
  display: none; width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--line); background: none; cursor: pointer; font-size: 1.5rem;
}

/* Hero: the cobalt field and the live goniometer */
.hero { background: var(--cobalt); color: var(--on-cobalt); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 6fr 5fr; align-items: center; gap: 32px;
  min-height: min(calc(88vh - var(--nav-h)), 820px); padding-block: 48px;
}
.hero h1 { font-size: clamp(2.5rem, 4.3vw, 3.75rem); letter-spacing: -0.035em; margin-bottom: 24px; }
.hero-lead { font-size: 1.25rem; color: var(--on-cobalt-2); max-width: 30ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }

.gonio { position: relative; aspect-ratio: 1; width: 100%; max-width: 640px; justify-self: center; }
.gonio-scale, .gonio canvas, .gonio-fallback { position: absolute; inset: 0; width: 100%; height: 100%; }
.gonio canvas { touch-action: pan-y; cursor: grab; }
.gonio canvas:active { cursor: grabbing; }
.gonio-fallback { object-fit: cover; inset: 17%; width: 66%; height: 66%; border-radius: 50%; transition: opacity 0.6s; }
.gonio.is-live .gonio-fallback { opacity: 0; }
.gonio-scale { pointer-events: none; overflow: visible; }
.gonio-scale .ring { fill: rgba(191, 210, 255, 0.14); stroke: rgba(191, 210, 255, 0.55); stroke-width: 1.5; }
.gonio-scale .tick { stroke: var(--plastic); stroke-width: 2; }
.gonio-scale .tick-minor { stroke: rgba(191, 210, 255, 0.5); stroke-width: 1; }
.gonio-scale .tick-label { fill: var(--on-cobalt-2); font: 500 13px var(--font-mono); }
.gonio-scale .sweep { fill: none; stroke: var(--plastic); stroke-width: 10; stroke-linecap: round; opacity: 0.9; }
.gonio-scale .ghost { fill: none; stroke: var(--plastic); stroke-width: 2; stroke-dasharray: 2 8; stroke-linecap: round; }
.gonio-readout {
  position: absolute; left: 50%; bottom: 2%; transform: translateX(-50%);
  display: flex; align-items: baseline; gap: 12px; white-space: nowrap;
  padding: 8px 18px; border-radius: 999px; background: var(--cobalt-deep);
  font-family: var(--font-mono); color: var(--on-cobalt-2); font-size: 0.9375rem;
}
.gonio-readout strong { color: var(--on-cobalt); font-size: 1.5rem; font-weight: 500; min-width: 3.2ch; text-align: right; }
.gonio-fold {
  position: absolute; right: 2%; top: 4%;
  min-height: 44px; padding: 0 18px; border-radius: 999px;
  border: 1.5px solid var(--plastic); background: transparent; color: var(--on-cobalt);
  font-weight: 700; font-size: 0.9375rem; cursor: pointer;
}
.gonio-fold:hover { background: rgba(191, 210, 255, 0.16); }
.gonio:not(.is-live) .gonio-fold, .gonio:not(.is-live) .gonio-readout { display: none; }

/* Section rhythm: more air above headings than below */
.section { padding-block: clamp(72px, 10vw, 128px); }
.section-head { margin-bottom: clamp(32px, 5vw, 56px); max-width: 720px; }
.section-head p { color: var(--ink-2); font-size: 1.1875rem; }

/* Categories: a dial whose needle follows the group you point at */
.care-map { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.care-map-aside { position: sticky; top: calc(var(--nav-h) + 32px); }
.dial { width: min(100%, 420px); margin-top: 32px; }
.dial .arc { fill: none; stroke: var(--line); stroke-width: 2; }
.dial .tick { stroke: var(--ink-2); stroke-width: 1.5; }
.dial .plate { fill: var(--plastic-soft); }
.dial .needle { stroke: var(--cobalt); stroke-width: 4; stroke-linecap: round; }
.dial .hub { fill: var(--cobalt); }
.dial .stop { fill: var(--paper); stroke: var(--cobalt); stroke-width: 2; }
.dial .stop.is-on { fill: var(--cobalt); }
.dial-label { font: 500 0.9375rem var(--font-mono); color: var(--ink-2); margin-top: 8px; }
.care-groups { list-style: none; margin: 0; padding: 0; }
.care-group {
  padding: 32px 0; border-top: 1.5px solid var(--line);
  transition: opacity 0.3s;
}
.care-group:last-child { border-bottom: 1.5px solid var(--line); }
.care-groups:hover .care-group:not(:hover) { opacity: 0.55; }
.care-group h3 { display: flex; align-items: center; gap: 12px; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.care-group h3 i { color: var(--cobalt); font-size: 1.1em; }
.care-group ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.care-group li a {
  display: inline-block; padding: 8px 16px; border-radius: 999px;
  background: var(--plastic-soft); text-decoration: none; font-weight: 700; font-size: 1rem;
}
.care-group li a:hover { background: var(--plastic); color: #10162b; }
.care-group p { color: var(--ink-2); margin-bottom: 16px; }

/* Products: 3x3 cells, the wheelchair takes four */
.shelf { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; list-style: none; margin: 0; padding: 0; }
.product { position: relative; perspective: 900px; }
.shelf .product:first-child { grid-column: span 2; grid-row: span 2; }
.product-card {
  display: flex; flex-direction: column; height: 100%;
  background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--radius);
  text-decoration: none; overflow: hidden;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.5s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}
.product-card:hover { box-shadow: var(--shadow); border-color: var(--plastic); }
.product-media { position: relative; flex: 1; min-height: 200px; background: var(--plate); }
.product-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; }
.shelf .product:first-child .product-media img { aspect-ratio: auto; }
.product-info { display: flex; justify-content: space-between; align-items: end; gap: 16px; padding: 20px 24px; }
.product-info :is(h2, h3) { font-size: 1.1875rem; margin: 0; }
.shelf .product:first-child .product-info h3 { font-size: 1.75rem; }
.price { font: 500 1.25rem var(--font-mono); white-space: nowrap; }
.shelf-foot { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; margin-top: 32px; color: var(--ink-2); }
.link-arrow { font-weight: 700; color: var(--cobalt); display: inline-flex; align-items: center; gap: 8px; }
@media (prefers-color-scheme: dark) { .link-arrow { color: var(--plastic); } }

/* Ordering path: an arc drawn as you scroll, four stops along it */
.path-wrap { position: relative; }
.path-svg { width: 100%; height: auto; overflow: visible; }
.path-svg .track { fill: none; stroke: var(--line); stroke-width: 2; stroke-dasharray: 2 10; stroke-linecap: round; }
.path-svg .draw { fill: none; stroke: var(--cobalt); stroke-width: 4; stroke-linecap: round; }
.path-svg .node { fill: var(--paper); stroke: var(--cobalt); stroke-width: 3; transition: fill 0.3s; }
.path-svg .node.is-on { fill: var(--cobalt); }
.path-steps { list-style: none; margin: 24px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.path-steps h3 { font-size: 1.25rem; margin-bottom: 8px; }
.path-steps p { color: var(--ink-2); font-size: 1.0625rem; }
.path-note {
  margin-top: 40px; display: inline-flex; gap: 12px; align-items: center;
  padding: 14px 22px; border-radius: 999px; background: var(--plastic-soft); font-weight: 700;
}
.path-note i { color: var(--cobalt); font-size: 1.4rem; }

/* Families: image with layered plastic plate behind it */
.families { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.families-media { position: relative; }
.families-media::before {
  content: ""; position: absolute; inset: -24px 24px 24px -24px;
  background: var(--plastic); opacity: 0.55; border-radius: var(--radius);
}
.families-media img { position: relative; border-radius: var(--radius); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.reasons { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 32px; margin-top: 32px; }
.reasons h3 { font-size: 1.1875rem; margin-bottom: 6px; display: flex; gap: 10px; align-items: center; }
.reasons h3 i { color: var(--cobalt); }
.reasons p { color: var(--ink-2); font-size: 1.0625rem; margin: 0; }
@media (prefers-color-scheme: dark) { .reasons h3 i, .care-group h3 i, .path-note i { color: var(--plastic); } .families-media::before { opacity: 0.2; } }

/* Testimonials (SAMPLE until real reviews exist) */
.voices { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.voice { margin: 0; padding: 32px; background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--radius); }
.voice blockquote { margin: 0 0 20px; font: 500 1.3125rem/1.45 var(--font-display); letter-spacing: -0.01em; }
.voice figcaption { color: var(--ink-2); font-size: 1rem; }
.voice figcaption strong { color: var(--ink); display: block; }
.stars { color: var(--orange); letter-spacing: 2px; margin-bottom: 12px; font-size: 1.125rem; }
[data-sample-reviews="off"] .voices-section { display: none; }

/* Close */
.close { background: var(--cobalt); color: var(--on-cobalt); border-radius: calc(var(--radius) * 2); padding: clamp(40px, 7vw, 88px); display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
.close h2 { font-size: clamp(2rem, 4.4vw, 3.25rem); }
.close p { color: var(--on-cobalt-2); }
.close-contact { display: grid; gap: 16px; justify-items: start; }
.close-contact a:not(.btn) { color: var(--on-cobalt); font: 500 1.125rem var(--font-mono); }

/* Footer */
.site-footer { background: var(--footer); color: var(--footer-text); padding: 72px 0 32px; margin-top: clamp(72px, 10vw, 128px); }
.site-footer a { color: var(--footer-link); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-grid h2 { font-size: 1rem; color: #fff; margin-bottom: 16px; letter-spacing: 0; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer .logo-word, .site-footer .logo-word small { color: #fff; }
.site-footer .logo { margin-bottom: 16px; }
.footer-base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--footer-rule); font-size: 0.9375rem; }

/* ---------- Inner pages ---------- */

/* Page head: a shorter cobalt field with a static goniometer that sweeps to the page's angle */
.page-head { background: var(--cobalt); color: var(--on-cobalt); overflow: hidden; }
.page-head-grid { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: center; padding-block: clamp(48px, 7vw, 88px); }
.page-head h1 { font-size: clamp(2.25rem, 4.6vw, 3.5rem); letter-spacing: -0.03em; margin-bottom: 16px; }
.page-lead { font-size: 1.25rem; color: var(--on-cobalt-2); max-width: 44ch; margin: 0; }
.page-head--compact .page-head-grid { grid-template-columns: 1fr; padding-block: clamp(32px, 4vw, 48px); }
.page-head--compact h1 { font-size: clamp(2rem, 3.6vw, 2.75rem); margin-bottom: 8px; }
.page-head--compact .page-gonio-wrap { display: none; }
h1[tabindex="-1"] { width: fit-content; }
.gonio-scale.page-gonio { position: static; width: 100%; height: auto; overflow: visible; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0 0 20px; padding: 0; font-size: 1rem; color: var(--on-cobalt-2); }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; opacity: 0.7; }
.breadcrumb a { color: var(--on-cobalt); }
.breadcrumb [aria-current] { color: var(--on-cobalt-2); }

/* Services */
.svc-index {
  position: sticky; top: var(--nav-h); z-index: 20;
  background: color-mix(in srgb, var(--paper) 94%, transparent); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.svc-index ul { display: flex; gap: 8px; list-style: none; margin: 0; padding: 12px 0; overflow-x: auto; scrollbar-width: none; }
.svc-index a {
  display: inline-block; padding: 10px 16px; border-radius: 999px; white-space: nowrap;
  text-decoration: none; font-weight: 700; font-size: 1rem; background: var(--plastic-soft);
}
.svc-index a:hover, .svc-index a.is-current { background: var(--ink); color: var(--paper); }
.svc-group { padding-block: clamp(56px, 8vw, 96px) 0; scroll-margin-top: calc(var(--nav-h) + 72px); }
.svc-group-head { display: flex; gap: 20px; align-items: start; margin-bottom: 32px; }
.svc-group-head > i { flex: none; display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: var(--cobalt); color: var(--on-cobalt); font-size: 2rem; }
.svc-group-head h2 { margin-bottom: 8px; }
.svc-group-head p { color: var(--ink-2); margin: 0; }
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.svc {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1.5px solid var(--line); border-radius: var(--radius); overflow: hidden;
  scroll-margin-top: calc(var(--nav-h) + 88px);
}
.svc:only-child, .svc-grid > .svc:first-child:not(:only-child) { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
.svc img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; background: var(--plate); }
.svc:only-child img, .svc-grid > .svc:first-child:not(:only-child) img { height: 100%; }
.svc-group:nth-of-type(even) .svc:only-child img { order: 2; }
.svc-body { padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; gap: 12px; }
.svc-body h3 { font-size: 1.625rem; margin: 0; }
.svc-body p { color: var(--ink-2); margin: 0; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 4px 0 0; padding: 0; }
.svc-tags li { padding: 4px 12px; border-radius: 999px; border: 1.5px solid var(--line); font-size: 0.9375rem; }
.svc-related { margin-top: auto; padding-top: 12px; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.svc-related a { font-weight: 700; color: var(--cobalt); display: inline-flex; align-items: center; gap: 6px; }
.svc-ask { margin-top: auto; padding-top: 12px; color: var(--ink-2); font-size: 1rem; }
.svc-ask a { color: var(--cobalt); font-weight: 700; }
@media (prefers-color-scheme: dark) {
  .svc-related a, .svc-ask a { color: var(--plastic); }
}

/* About */
.story { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.story-lead { font: 600 clamp(1.5rem, 2.6vw, 2rem)/1.3 var(--font-display); letter-spacing: -0.015em; max-width: 28ch; }
.story-media { position: relative; }
.story-media::before {
  content: ""; position: absolute; inset: 24px -24px -24px 24px;
  background: var(--plastic); opacity: 0.55; border-radius: var(--radius);
}
.story-media img { position: relative; border-radius: var(--radius); width: 100%; aspect-ratio: 720 / 926; object-fit: cover; }
.values { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1.5px solid var(--line); }
.value { padding: 32px 32px 32px 0; border-bottom: 1.5px solid var(--line); }
.value:nth-child(odd) { border-right: 1.5px solid var(--line); }
.value:nth-child(even) { padding-left: 32px; }
.value h3 { display: flex; gap: 12px; align-items: center; font-size: 1.5rem; }
.value h3 i { color: var(--cobalt); }
.value p { color: var(--ink-2); margin: 0; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 40px; list-style: none; margin: 0; padding: 0; }
.checks li { display: flex; gap: 12px; align-items: start; font-weight: 700; font-size: 1.1875rem; }
.checks i { color: var(--cobalt); font-size: 1.5rem; flex: none; }
.why-band { background: var(--plastic-soft); border-radius: calc(var(--radius) * 2); padding: clamp(32px, 6vw, 72px); display: grid; grid-template-columns: 5fr 7fr; gap: 40px; align-items: center; }
@media (prefers-color-scheme: dark) { .value h3 i, .checks i { color: var(--plastic); } .story-media::before { opacity: 0.2; } }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.contact-card { background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 32px; position: sticky; top: calc(var(--nav-h) + 24px); }
.contact-card h2 { font-size: 1.5rem; }
.contact-lines { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 20px; }
.contact-lines li { display: flex; gap: 16px; }
.contact-lines i { flex: none; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--plastic-soft); color: var(--cobalt); font-size: 1.375rem; }
.contact-lines strong { display: block; }
.contact-lines a, .contact-lines span { color: var(--ink-2); }
.contact-lines .mono { font-size: 1.0625rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.field { margin-bottom: 20px; }
.field-full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 700; margin-bottom: 8px; }
.field .opt { font-weight: 400; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 12px 16px;
  border: 1.5px solid var(--ink-2); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--ink); font: inherit;
}
.field textarea { min-height: 160px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid var(--plastic); outline-offset: 0; border-color: var(--cobalt); }
.field [aria-invalid="true"] { border-color: var(--error); border-width: 2px; }
.field-hint { font-size: 0.9375rem; color: var(--ink-2); margin: 6px 0 0; }
.field-error { color: var(--error); font-size: 0.9375rem; font-weight: 700; margin: 6px 0 0; min-height: 0; }
.field-error:empty { display: none; }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-note { color: var(--ink-2); font-size: 0.9375rem; margin-top: 16px; }
.form-status:empty { display: none; }
.form-status { margin-top: 20px; padding: 16px 20px; border-radius: var(--radius-sm); font-weight: 700; }
.form-status:focus { outline: none; }
.form-status.is-success { background: var(--success-bg); color: var(--success-text); }
.form-status.is-error { background: var(--error-bg); color: var(--error-text); }
button.btn:disabled { opacity: 0.6; cursor: progress; }

.faq { max-width: 860px; }
.faq details { border-top: 1.5px solid var(--line); }
.faq details:last-child { border-bottom: 1.5px solid var(--line); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 24px 0; cursor: pointer; list-style: none;
  font: 700 1.25rem/1.3 var(--font-display);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { flex: none; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--plastic-soft); color: var(--cobalt); transition: transform 0.4s var(--ease-out); }
.faq details[open] summary i { transform: rotate(45deg); }
.faq details p { color: var(--ink-2); margin: 0 0 24px; }

/* Policies (read mode) */
.policy { display: grid; grid-template-columns: 240px 1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.policy-toc { position: sticky; top: calc(var(--nav-h) + 32px); }
.policy-toc h2 { font-size: 1rem; margin-bottom: 12px; letter-spacing: 0; }
.policy-toc ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; border-left: 2px solid var(--line); }
.policy-toc a { display: block; padding: 6px 0 6px 16px; margin-left: -2px; border-left: 2px solid transparent; text-decoration: none; color: var(--ink-2); font-size: 1rem; }
.policy-toc a:hover { color: var(--ink); border-left-color: var(--cobalt); }
.prose { max-width: 70ch; }
.prose h2 { font-size: 1.625rem; margin-top: 48px; scroll-margin-top: calc(var(--nav-h) + 24px); }
.prose h2:first-child { margin-top: 0; }
.prose ul { padding-left: 1.25em; margin: 0 0 16px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--cobalt); font-weight: 700; }
.updated { font: 500 0.9375rem var(--font-mono); color: var(--on-cobalt-2); margin-top: 16px; }
@media (prefers-color-scheme: dark) { .prose a, .contact-lines i, .faq summary i { color: var(--plastic); } }

/* 404 */
.lost { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; min-height: 60vh; }
.lost { padding-block: 64px; }
.lost h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.03em; }
.lost-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.btn-quiet { background: var(--plastic-soft); color: var(--ink); }
.btn-quiet:hover { background: var(--plastic); color: #10162b; }

@media (max-width: 880px) {
  .page-head-grid { grid-template-columns: 1fr 140px; gap: 24px; }
  .story, .why-band, .contact-layout, .lost, .policy { grid-template-columns: 1fr; }
  .contact-card, .policy-toc { position: static; }
  .lost .page-gonio { max-width: 240px; }
}
@media (max-width: 640px) {
  .page-head-grid { grid-template-columns: 1fr; }
  .page-gonio-wrap { display: none; }
  .svc-grid, .values, .checks, .form-grid { grid-template-columns: 1fr; }
  .svc:only-child, .svc-grid > .svc:first-child:not(:only-child) { grid-template-columns: 1fr; }
  .svc-group:nth-of-type(even) .svc:only-child img { order: 0; }
  .svc:only-child img, .svc-grid > .svc:first-child:not(:only-child) img { height: auto; }
  .value, .value:nth-child(even) { padding: 24px 0; border-right: 0; }
  .story-media::before { inset: 16px -10px -14px 16px; }
  .svc-group-head > i { width: 52px; height: 52px; font-size: 1.625rem; }
}

/* ---------- Shop, product, cart ---------- */

/* Shop filters and grid */
.shop-bar { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 32px; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter {
  min-height: 44px; padding: 0 18px; border-radius: 999px; border: 1.5px solid var(--line);
  background: var(--surface); font-weight: 700; font-size: 1rem; cursor: pointer;
}
.filter:hover { border-color: var(--cobalt); }
.filter[aria-pressed="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.shop-count { color: var(--ink-2); font: 500 1rem var(--font-mono); }
.catalog { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; list-style: none; margin: 0; padding: 0; }
.catalog .product-media { flex: none; min-height: 0; }
.catalog .product-media img { aspect-ratio: 1; }
.catalog .product-info { flex: 1; flex-direction: column; align-items: stretch; justify-content: space-between; gap: 6px; }
.catalog .product-info p { color: var(--ink-2); font-size: 1rem; margin: 0; }
.product-meta { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.product-cat { font-size: 0.9375rem; color: var(--ink-2); }
.quick-add {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 16px;
  border: 0; border-radius: 999px; background: var(--orange); color: #10162b;
  font-weight: 700; font-size: 0.9375rem; cursor: pointer;
  box-shadow: 0 8px 20px -10px rgba(16, 22, 43, 0.5);
  transition: transform 0.35s var(--ease-out), background-color 0.2s;
}
.quick-add:hover { background: var(--orange-press); }
.quick-add:active { transform: scale(0.96); }

/* Product detail */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 88px); align-items: start; }
.pdp-media { position: sticky; top: calc(var(--nav-h) + 24px); perspective: 1000px; }
.pdp-media img {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: calc(var(--radius) * 1.5);
  background: var(--plate); border: 1.5px solid var(--line);
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.6s var(--ease-out);
}
.pdp-info .breadcrumb ol { color: var(--ink-2); }
.pdp-info .breadcrumb a { color: var(--ink); }
.pdp-info .breadcrumb [aria-current] { color: var(--ink-2); }
.pdp h1 { font-size: clamp(2rem, 3.6vw, 3rem); letter-spacing: -0.03em; margin-bottom: 12px; }
.pdp-price { font: 500 2rem var(--font-mono); margin: 0 0 16px; }
.pdp-summary { font-size: 1.25rem; color: var(--ink-2); }
.buy { display: flex; flex-wrap: wrap; gap: 16px; align-items: end; margin: 28px 0 20px; }
.buy label { display: block; font-weight: 700; margin-bottom: 8px; }
.stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--ink-2); border-radius: 999px; background: var(--surface); height: 52px; }
.stepper button { width: 48px; height: 48px; border: 0; background: none; border-radius: 50%; cursor: pointer; font-size: 1.25rem; display: grid; place-items: center; }
.stepper button:hover { background: var(--plastic-soft); }
.stepper input { width: 3ch; border: 0; background: none; text-align: center; font: 500 1.25rem var(--font-mono); color: var(--ink); -moz-appearance: textfield; }
.stepper input::-webkit-inner-spin-button, .stepper input::-webkit-outer-spin-button { -webkit-appearance: none; }
.buy .btn { flex: 1 1 220px; }
.pdp-assure { list-style: none; margin: 0 0 32px; padding: 20px 24px; border-radius: var(--radius); background: var(--plastic-soft); display: grid; gap: 12px; }
.pdp-assure li { display: flex; gap: 12px; align-items: start; font-size: 1.0625rem; }
.pdp-assure i { color: var(--cobalt); font-size: 1.375rem; flex: none; }
.pdp-block { border-top: 1.5px solid var(--line); padding-top: 28px; margin-top: 28px; }
.pdp-block h2 { font-size: 1.5rem; }
.features { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.features li { display: flex; gap: 12px; align-items: start; }
.features i { color: var(--cobalt); font-size: 1.375rem; flex: none; }
.advice { display: flex; gap: 12px; align-items: start; color: var(--ink-2); font-size: 1rem; margin-top: 24px; }
.advice i { font-size: 1.375rem; flex: none; }
@media (prefers-color-scheme: dark) { .pdp-assure i, .features i { color: var(--plastic); } }

/* Cart */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: clamp(32px, 5vw, 64px); align-items: start; }
.cart-lines { list-style: none; margin: 0; padding: 0; border-top: 1.5px solid var(--line); }
.cart-line { display: grid; grid-template-columns: 112px 1fr auto; gap: 8px 24px; align-items: center; padding: 24px 0; border-bottom: 1.5px solid var(--line); }
.cart-line img { width: 112px; height: 112px; object-fit: cover; border-radius: var(--radius-sm); background: var(--plate); grid-row: span 2; }
.cart-line h2 { font-size: 1.25rem; margin: 0; }
.cart-line h2 a { text-decoration: none; }
.cart-line h2 a:hover { text-decoration: underline; }
.cart-unit { color: var(--ink-2); font: 500 1rem var(--font-mono); }
.cart-line-total { font: 500 1.25rem var(--font-mono); text-align: right; }
.cart-controls { display: flex; gap: 16px; align-items: center; grid-column: 2 / -1; }
.cart-controls .stepper { height: 44px; }
.cart-controls .stepper button { width: 40px; height: 40px; }
.link-remove { border: 0; background: none; padding: 8px 4px; color: var(--ink-2); font-weight: 700; font-size: 1rem; cursor: pointer; text-decoration: underline; text-underline-offset: 0.2em; }
.link-remove:hover { color: var(--error); }
.summary { position: sticky; top: calc(var(--nav-h) + 24px); background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 28px; }
.summary h2 { font-size: 1.5rem; }
.summary dl { margin: 0 0 24px; display: grid; grid-template-columns: 1fr auto; gap: 12px 0; }
.summary dt { padding-right: 16px; }
.summary dt { color: var(--ink-2); }
.summary dd { margin: 0; font: 500 1.0625rem var(--font-mono); text-align: right; }
.summary dt.total, .summary dd.total { color: var(--ink); font-weight: 700; font-size: 1.25rem; padding-top: 12px; border-top: 1.5px solid var(--line); }
.summary .btn { width: 100%; }
.summary-note { display: flex; gap: 10px; color: var(--ink-2); font-size: 0.9375rem; margin: 16px 0 0; }
.summary-note i { flex: none; font-size: 1.25rem; color: var(--cobalt); }
.cart-empty { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: center; max-width: 760px; }
.cart-empty svg { width: 100%; height: auto; }
.cart-empty .ring { fill: var(--plastic-soft) !important; stroke: var(--line) !important; }
.cart-empty .tick, .cart-empty .tick-minor, .cart-empty .ghost, .cart-empty .sweep { stroke: var(--cobalt) !important; }
.cart-empty .tick-label { fill: var(--ink-2) !important; }
@media (prefers-color-scheme: dark) { .summary-note i { color: var(--plastic); } }

/* Toast + fly-to-cart */
.toast {
  position: fixed; left: 50%; bottom: 24px; z-index: 90; transform: translate(-50%, 140%);
  display: flex; align-items: center; gap: 12px; max-width: calc(100vw - 32px);
  padding: 14px 18px 14px 16px; border-radius: 999px; background: var(--ink); color: var(--paper);
  box-shadow: 0 16px 40px -16px rgba(16, 22, 43, 0.6); font-weight: 700;
  transition: transform 0.5s var(--ease-out);
}
.toast.is-on { transform: translate(-50%, 0); }
.toast i { color: var(--orange); font-size: 1.5rem; }
.toast a { color: var(--paper); white-space: nowrap; margin-left: 8px; }
.fly-thumb { position: fixed; z-index: 95; border-radius: 50%; object-fit: cover; pointer-events: none; box-shadow: 0 10px 24px -10px rgba(16, 22, 43, 0.5); }

/* Checkout */
.checkout { grid-template-columns: 1fr 400px; }
.form-section { border: 0; margin: 0 0 40px; padding: 0; min-width: 0; }
.form-section legend { display: flex; align-items: center; gap: 12px; padding: 0; margin-bottom: 20px; font: 700 1.5rem/1.2 var(--font-display); letter-spacing: -0.01em; }
.form-section legend .opt { font: 400 1rem var(--font-body); color: var(--ink-2); }
.step-dot { flex: none; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--cobalt); color: var(--on-cobalt); font: 500 1rem var(--font-mono); }
.form-section-note { color: var(--ink-2); margin: -8px 0 20px; }
.check { display: flex; align-items: center; gap: 12px; min-height: 44px; font-weight: 700; cursor: pointer; }
.check input { width: 24px; height: 24px; margin: 0; accent-color: var(--cobalt); cursor: pointer; }
.mini-lines { list-style: none; margin: 0 0 20px; padding: 0 0 8px; border-bottom: 1.5px solid var(--line); display: grid; gap: 16px; }
.mini-lines li { display: grid; grid-template-columns: 56px 1fr auto; gap: 14px; align-items: center; font-weight: 700; font-size: 1rem; }
.mini-lines img { width: 56px; height: 56px; border-radius: var(--radius-sm); object-fit: cover; background: var(--plate); }
.mini-qty { display: block; font: 400 0.9375rem var(--font-body); color: var(--ink-2); }
.mini-lines .mono { font-weight: 500; }
.summary-legal { font-size: 0.9375rem; color: var(--ink-2); margin: 12px 0 0; }
.summary-legal a { color: var(--ink); }
.checkout-summary .form-status { margin: 16px 0 0; }

/* Order confirmation */
.order-number { margin: 24px 0 0; display: inline-flex; align-items: baseline; gap: 12px; padding: 10px 20px; border-radius: 999px; background: var(--cobalt-deep); color: var(--on-cobalt-2); }
.order-number strong { color: var(--on-cobalt); font-size: 1.375rem; letter-spacing: 0.02em; }
.confirm-layout { display: grid; grid-template-columns: 1fr 400px; gap: clamp(32px, 5vw, 64px); align-items: start; }
.next-steps { list-style: none; margin: 8px 0 32px; padding: 0; }
.next-steps li { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding-bottom: 28px; }
.next-steps li:not(:last-child)::after { content: ""; position: absolute; left: 23px; top: 52px; bottom: 4px; border-left: 2px dotted var(--cobalt); }
.next-steps li > i { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--cobalt); color: var(--cobalt); font-size: 1.375rem; background: var(--paper); }
.next-steps li.is-done > i { background: var(--cobalt); color: var(--on-cobalt); }
.next-steps h3 { margin: 10px 0 6px; font-size: 1.25rem; }
.next-steps p { color: var(--ink-2); margin: 0; }
.confirm-help { color: var(--ink-2); }
.confirm-help a { color: var(--cobalt); font-weight: 700; }
@media (prefers-color-scheme: dark) {
  .next-steps li > i { border-color: var(--plastic); color: var(--plastic); }
  .next-steps li.is-done > i { background: var(--plastic); color: #10162b; }
  .next-steps li:not(:last-child)::after { border-color: var(--plastic); }
  .confirm-help a { color: var(--plastic); }
}

@media (max-width: 1024px) { .catalog { grid-template-columns: 1fr 1fr; } .checkout, .confirm-layout { grid-template-columns: 1fr 340px; } }
@media (max-width: 880px) { .checkout, .confirm-layout { grid-template-columns: 1fr; } }
@media (max-width: 880px) {
  .pdp, .cart-layout { grid-template-columns: 1fr; }
  .pdp-media, .summary { position: static; }
  .pdp-media { max-width: 520px; }
}
@media (max-width: 640px) {
  .catalog { grid-template-columns: 1fr; }
  .cart-line { grid-template-columns: 80px 1fr; }
  .cart-line img { width: 80px; height: 80px; }
  .cart-line-total { text-align: left; }
  .cart-controls { grid-column: 1 / -1; justify-content: space-between; }
  .cart-empty { grid-template-columns: 1fr; }
  .cart-empty svg { max-width: 160px; }
}

/* Motion: content is visible by default; JS adds .will-reveal only when motion is allowed */
.will-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.will-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .product-card { transform: none !important; }
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .path-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .nav-toggle { display: grid; place-items: center; }
  .site-nav {
    position: absolute; left: 0; right: 0; top: var(--nav-h);
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 12px 16px 20px;
    display: none;
  }
  .site-nav.is-open { display: block; }
  .nav-list { flex-direction: column; }
  .nav-list a { padding: 14px 16px; font-size: 1.125rem; }
  .hero-grid { grid-template-columns: 1fr; padding-block: 40px 24px; min-height: 0; }
  .gonio { max-width: 460px; }
  .care-map, .families, .close { grid-template-columns: 1fr; }
  .care-map-aside { position: static; }
  .dial { max-width: 300px; }
  .voices { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .shelf { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product:first-child { grid-column: auto; grid-row: auto; }
  .product:first-child .product-info h3 { font-size: 1.0625rem; }
  .product:first-child .product-media img { aspect-ratio: 1; }
  .path-svg { display: none; }
  .path-steps { gap: 0; margin-top: 0; }
  .path-steps li { position: relative; padding: 0 0 24px 36px; border-left: 2px dotted var(--cobalt); margin-left: 10px; }
  .path-steps li:last-child { border-left-color: transparent; }
  .path-steps li::before {
    content: ""; position: absolute; left: -11px; top: 2px; width: 20px; height: 20px;
    border-radius: 50%; background: var(--paper); border: 3px solid var(--cobalt);
  }
  .product-info { flex-direction: column; align-items: start; gap: 6px; padding: 14px 16px; }
  .product-info :is(h2, h3) { font-size: 1.0625rem; }
  .path-steps, .reasons, .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 100%; }
  .logo-word small { display: none; }
}
