:root {
  --color-primary: #22548C;
  --color-primary-dark: #173C68;
  --color-secondary: #16375C;
  --color-accent: #B45520;
  --color-accent-dark: #93441A;
  --color-accent-soft: #F5E3D5;
  --color-bg: #FBF9F5;
  --color-bg-alt: #F0EAE0;
  --color-surface: #FFFFFF;
  --color-text: #16202B;
  --color-text-muted: #55606D;
  --color-border: #E3DACD;
  --color-dark: #14202E;
  --color-dark-soft: #1E2E42;
  --color-on-dark: #EFEAE2;
  --color-on-dark-muted: #B9C2CC;
  --color-warn-bg: #FBEBD8;
  --color-warn-text: #8A4B12;
  --color-error-bg: #FDEDEC;
  --color-error-text: #C0392B;
  --font-heading: 'Outfit', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(20, 32, 46, .07);
  --shadow-md: 0 6px 18px rgba(20, 32, 46, .09);
  --shadow-lg: 0 18px 40px rgba(20, 32, 46, .13);
  --container: 1200px;
  --gap: 24px;
  --pad-y: 60px;
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--color-primary); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--color-accent-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0 0 .5em;
}

p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.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;
}

main > section {
  background: var(--color-bg);
  padding: var(--pad-y) 0;
  position: relative;
}

.section-alt { background: var(--color-bg-alt); }

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 70ch;
  margin: 0 0 8px;
}

/* ---------- buttons ---------- */
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  padding: 14px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color .22s ease, color .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.btn-primary { background: var(--color-accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--color-accent-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-secondary { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-secondary:hover { background: var(--color-primary); color: #fff; }

.btn-ghost { background: rgba(255, 255, 255, .55); color: var(--color-secondary); border-color: var(--color-secondary); }
.btn-ghost:hover { background: var(--color-secondary); color: #fff; border-color: var(--color-secondary); }

.btn-sm { padding: 9px 16px; font-size: .9rem; }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }

.newsletter-band .btn-ghost,
.stickybar .btn-ghost,
.cookiebar .btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .6); }
.newsletter-band .btn-ghost:hover,
.stickybar .btn-ghost:hover,
.cookiebar .btn-ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; }

/* ---------- header ---------- */
.masthead {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 249, 245, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.masthead__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 68px;
}

.masthead__logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: .06em;
  color: var(--color-secondary);
  text-decoration: none;
  margin-right: auto;
}

.masthead__nav ul { list-style: none; display: flex; gap: 22px; }
.masthead__nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: .98rem;
  color: var(--color-text);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.masthead__nav a:hover { color: var(--color-accent-dark); border-bottom-color: var(--color-accent); }

.masthead__cta { display: flex; }

.masthead__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.masthead__burger span { display: block; height: 2px; width: 20px; margin: 0 auto; background: var(--color-text); transition: transform .2s ease, opacity .2s ease; }

/* ---------- hero ---------- */
.hero {
  background: linear-gradient(135deg, #F6F1E8 0%, #FBF9F5 55%, #EFE7DA 100%);
  padding: 54px 0 74px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 46px;
  background-repeat: no-repeat;
  background-size: 100% 46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 46' preserveAspectRatio='none'%3E%3Cpath d='M0 30 C 240 0 480 46 720 30 C 960 14 1200 0 1440 22 L1440 46 L0 46 Z' fill='%23FBF9F5'/%3E%3C/svg%3E");
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__copy { max-width: 640px; }

.hero__eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 10px;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.15rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.hero__sub { font-size: 1.16rem; color: var(--color-text); max-width: 56ch; }

.hero__marks { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 26px; }
.hero__mark {
  font-family: var(--font-heading);
  font-size: .88rem;
  font-weight: 600;
  color: var(--color-text);
  background: rgba(255, 255, 255, .8);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 7px 14px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* ---------- assure strip ---------- */
.assure__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.assure__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.assure__num {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--color-accent-dark);
  line-height: 1.1;
}

.assure__label { font-size: .93rem; color: var(--color-text-muted); }

/* ---------- benefits (why) ---------- */
.why { position: relative; }
.why::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(22, 32, 43, .07) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .55;
  pointer-events: none;
}
.why > .container { position: relative; z-index: 1; }

.why__head { margin-bottom: 34px; }

.why__list { list-style: none; display: grid; grid-template-columns: 1fr; gap: 22px; counter-reset: why; }

.why-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.why-item__num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  opacity: .85;
}

.why-item__body { min-width: 0; }
.why-item__title { font-size: 1.16rem; font-weight: 700; margin-bottom: 8px; }
.why-item__text { margin: 0; color: var(--color-text-muted); }

/* ---------- products ---------- */
.shelf__head { margin-bottom: 34px; }

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.product-card__media {
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 14px;
}
.product-card__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; padding: 10px; }

.product-card__title {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}

.product-card__rating {
  font-family: var(--font-heading);
  font-size: .92rem;
  font-weight: 600;
  color: var(--color-accent-dark);
  margin-bottom: 10px;
}
.product-card__reviews { color: var(--color-text-muted); font-weight: 400; }

.product-card__description {
  font-size: .95rem;
  color: var(--color-text-muted);
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__description.is-expanded { -webkit-line-clamp: unset; overflow: visible; }

.product-card__more {
  align-self: flex-start;
  background: none;
  border: 0;
  padding: 0 0 10px;
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.product-card__more:hover { color: var(--color-accent-dark); }

.product-card__highlights, .product-card-bullets {
  list-style: none;
  margin: 0 0 16px;
  display: grid;
  gap: 7px;
}
.product-card__highlights li, .product-card-bullets li {
  position: relative;
  padding-left: 18px;
  font-size: .9rem;
  color: var(--color-text);
}
.product-card__highlights li::before, .product-card-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 7px; height: 7px;
  border-radius: 2px;
  background: var(--color-accent);
}

.product-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color .22s ease;
}
.product-card__cta:hover { background: var(--color-primary-dark); color: #fff; }

.product-badge {
  display: inline-block;
  border-radius: 999px;
  padding: 4px 10px;
  font-family: var(--font-heading);
  font-size: .8125rem;
  font-weight: 600;
  background: var(--color-warn-bg);
  color: var(--color-warn-text);
  margin-bottom: 10px;
}
.product-badge--restock { background: #E4EDF8; color: var(--color-primary-dark); }
.product-card--unavailable .product-card__media img { filter: grayscale(.55); }
.product-card--unavailable .product-card__title { color: var(--color-text-muted); }

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 34px;
}
.category-chip {
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-size: .92rem;
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-surface);
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.category-chip:hover { background: var(--color-accent-soft); border-color: var(--color-accent); color: var(--color-accent-dark); }
.category-chips__all { padding: 8px 18px; font-size: .92rem; }

/* ---------- features (inside) ---------- */
.inside__head { margin-bottom: 40px; }
.inside__stack { display: grid; gap: 46px; }

.inside-block { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: center; }
.inside-block__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.inside-block__title { font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-weight: 700; }
.inside-block__text { color: var(--color-text-muted); }
.inside-block__points { list-style: none; display: grid; gap: 10px; margin-bottom: 22px; }
.inside-block__point {
  position: relative;
  padding-left: 22px;
  font-size: .97rem;
}
.inside-block__point::before {
  content: "";
  position: absolute;
  left: 0; top: .68em;
  width: 10px; height: 2px;
  background: var(--color-accent);
}

/* ---------- reviews (voice) ---------- */
.voice__head { margin-bottom: 34px; }
.voice__list { list-style: none; display: grid; grid-template-columns: 1fr; gap: 22px; }

.voice-quote {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.voice-quote__stars { color: var(--color-accent); letter-spacing: .12em; font-size: 1.05rem; margin-bottom: 10px; }

.voice-quote__text {
  margin: 0 0 14px;
  border: 0;
  padding: 0;
  color: var(--color-text);
  font-size: 1.02rem;
}
.voice-quote__text::first-letter {
  float: left;
  font-family: var(--font-heading);
  font-size: 3.1rem;
  line-height: .82;
  font-weight: 700;
  color: var(--color-primary);
  padding: 6px 10px 0 0;
}

.voice-quote__meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 0; font-size: .87rem; }
.voice-quote__name { font-family: var(--font-heading); font-weight: 700; color: var(--color-text); }
.voice-quote__badge {
  background: var(--color-accent-soft);
  color: var(--color-warn-text);
  border-radius: 999px;
  padding: 3px 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .78rem;
}
.voice-quote__prod { color: var(--color-text-muted); }

/* ---------- information gain (data) ---------- */
.data__head { margin-bottom: 30px; }
.data__list { display: grid; grid-template-columns: 1fr; gap: 0; margin: 0; }

.data-entry {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 22px 0;
  border-top: 1px solid var(--color-border);
}
.data-entry:last-child { border-bottom: 1px solid var(--color-border); }

.data-entry__term { margin: 0; }
.data-entry__num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1.15;
}
.data-entry__def { margin: 0; }
.data-entry__claim { margin-bottom: 8px; }
.data-entry__gap { color: var(--color-text-muted); font-size: .96rem; margin-bottom: 6px; }
.data-entry__proof {
  margin: 0;
  font-family: var(--font-heading);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ---------- about (story) ---------- */
.story__grid, .story-page__grid { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: start; }
.story__media img, .story-page__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.story__body, .story-page__body { min-width: 0; }
.story__prose p { color: var(--color-text); }
.story__prose p + p { margin-top: 4px; }
.story__link { margin-top: 8px; }

/* ---------- how it works (path) ---------- */
.path { position: relative; }
.path::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(22, 32, 43, .05) 0 1px, transparent 1px 16px);
  pointer-events: none;
}
.path > .container { position: relative; z-index: 1; }
.path__head { margin-bottom: 34px; }
.path__steps { list-style: none; display: grid; grid-template-columns: 1fr; gap: 20px; }

.path-step {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.path-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.path-step__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.path-step__text { margin: 0; color: var(--color-text-muted); font-size: .97rem; }

/* ---------- what you get (arc) ---------- */
.arc__head { margin-bottom: 34px; }
.arc__track { list-style: none; display: grid; grid-template-columns: 1fr; gap: 0; }

.arc-mark {
  position: relative;
  padding: 0 0 26px 30px;
  border-left: 2px solid var(--color-border);
}
.arc-mark:last-child { border-left-color: transparent; padding-bottom: 0; }
.arc-mark::before {
  content: "";
  position: absolute;
  left: -9px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 3px solid var(--color-bg);
}
.arc-mark__when {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-secondary);
  margin-bottom: 6px;
}
.arc-mark__text { margin: 0; color: var(--color-text-muted); }
.arc__closer {
  margin: 26px 0 0;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text);
}

/* ---------- who it's for (fit) ---------- */
.fit__head { margin-bottom: 34px; }
.fit__grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.fit-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.fit-card__title { font-size: 1.08rem; font-weight: 700; margin-bottom: 8px; }
.fit-card__text { margin: 0; color: var(--color-text-muted); }

.fit__not {
  margin-top: 30px;
  background: var(--color-accent-soft);
  border-radius: var(--radius-md);
  padding: 24px;
}
.fit__not-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; color: var(--color-warn-text); }
.fit__not-list { list-style: none; display: grid; gap: 12px; }
.fit__not-item { position: relative; padding-left: 26px; color: var(--color-text); }
.fit__not-item::before {
  content: "\2716";
  position: absolute;
  left: 0; top: 0;
  color: var(--color-warn-text);
  font-size: .9rem;
}

/* ---------- comparison (pick) ---------- */
.pick { position: relative; }
.pick::before {
  content: "";
  position: absolute; inset: 0;
  background-repeat: repeat-x;
  background-position: center top;
  opacity: .5;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='30' viewBox='0 0 240 30'%3E%3Cpath d='M0 15 C 30 0 60 30 90 15 C 120 0 150 30 180 15 C 210 0 240 30 240 15' fill='none' stroke='%2316202B' stroke-opacity='0.06' stroke-width='2'/%3E%3C/svg%3E");
}
.pick > .container { position: relative; z-index: 1; }
.pick__head { margin-bottom: 30px; }
.pick__wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--color-border); background: var(--color-surface); }
.pick__table { width: 100%; border-collapse: collapse; min-width: 720px; font-size: .95rem; }
.pick__table th, .pick__table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--color-border); vertical-align: top; }
.pick__table thead th {
  font-family: var(--font-heading);
  font-size: .92rem;
  background: var(--color-bg-alt);
  color: var(--color-text);
}
.pick__table tbody tr:nth-child(even) { background: rgba(240, 234, 224, .45); }
.pick__crit { font-family: var(--font-heading); font-weight: 600; width: 24%; }
.pick__own { background: rgba(34, 84, 140, .07); font-weight: 600; }
.pick__table thead .pick__own { background: rgba(34, 84, 140, .14); }
.pick__note { margin: 16px 0 0; color: var(--color-text-muted); font-size: .95rem; }

/* ---------- fears (risk) ---------- */
.risk__head { margin-bottom: 30px; }
.risk__list { list-style: none; display: grid; gap: 0; }
.risk-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 22px 0;
  border-top: 1px solid var(--color-border);
}
.risk-row:last-child { border-bottom: 1px solid var(--color-border); }
.risk-row__worry {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.04rem;
  color: var(--color-warn-text);
}
.risk-row__answer { margin: 0; color: var(--color-text); }

/* ---------- gallery (shots) ---------- */
.shots__head { margin-bottom: 30px; }
.shots__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.shots__item { margin: 0; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.shots__img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; cursor: zoom-in; transition: transform .3s ease; }
.shots__item:hover .shots__img { transform: scale(1.03); }
.shots__cap { padding: 12px 14px; font-size: .88rem; color: var(--color-text-muted); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(20, 32, 46, .92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 30px;
}
.lightbox__img { max-width: min(94vw, 900px); max-height: 78vh; border-radius: var(--radius-md); }
.lightbox__cap { color: var(--color-on-dark); font-size: .95rem; margin: 0; text-align: center; }
.lightbox__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .4);
  background: transparent;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox__close:hover { background: rgba(255, 255, 255, .14); }

/* ---------- FAQ (ask) ---------- */
.ask { position: relative; }
.ask::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .6;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='24' viewBox='0 0 180 24'%3E%3Cpath d='M0 12 C 22 2 45 22 68 12 C 90 2 113 22 135 12 C 158 2 180 22 180 12' fill='none' stroke='%2316202B' stroke-opacity='0.05' stroke-width='1.5'/%3E%3C/svg%3E");
}
.ask > .container { position: relative; z-index: 1; }
.ask__head { margin-bottom: 26px; }
.ask__list, .ask__more { display: grid; gap: 12px; }
.ask__more { margin-top: 12px; }

.ask-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 4px 20px;
  box-shadow: var(--shadow-sm);
}
.ask-item > summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.02rem;
  padding: 16px 34px 16px 0;
  position: relative;
}
.ask-item > summary::-webkit-details-marker { display: none; }
.ask-item > summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--color-accent);
  line-height: 1;
}
.ask-item[open] > summary::after { content: "\2013"; }
.ask-item__q { color: var(--color-text); }
.ask-item__a { padding: 0 0 16px; color: var(--color-text-muted); border-top: 1px solid var(--color-border); padding-top: 14px; }
.ask-item__a p { margin: 0; }

.ask__more-btn {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}
.ask__more-btn:hover { background: var(--color-primary); color: #fff; }

/* ---------- newsletter ---------- */
.newsletter-band {
  background: var(--color-primary);
  color: #fff;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.newsletter-band::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .5) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .5) 0 1px, transparent 1px 5px);
}
.newsletter-band__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; text-align: center; }
.newsletter-band .section-title { color: #fff; }
.newsletter-band .section-subtitle { color: rgba(255, 255, 255, .88); margin: 0 auto 22px; }
.newsletter-band__form { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.newsletter-band__input {
  flex: 1 1 260px;
  max-width: 380px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .96);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
}
.newsletter-band__fine { margin: 16px 0 0; font-size: .85rem; color: rgba(255, 255, 255, .82); }

.newsletter-message, .form-message {
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: .875rem;
  text-align: left;
}
.newsletter-message--error, .form-message--error {
  color: var(--color-error-text);
  background: var(--color-error-bg);
  border: 1px solid var(--color-error-text);
}

/* ---------- footer ---------- */
.sitefoot {
  background: var(--color-dark);
  color: var(--color-on-dark);
  padding: 58px 0 26px;
  position: relative;
}
.sitefoot::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -34px;
  height: 35px;
  background-repeat: no-repeat;
  background-size: 100% 35px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 35' preserveAspectRatio='none'%3E%3Cpath d='M0 18 C 260 35 520 0 780 12 C 1040 24 1240 35 1440 20 L1440 35 L0 35 Z' fill='%2314202E'/%3E%3C/svg%3E");
}
.sitefoot__grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
.sitefoot__col { min-width: 0; }
.sitefoot__logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: .06em;
  display: block;
  margin-bottom: 12px;
}
.sitefoot__blurb { color: var(--color-on-dark-muted); font-size: .95rem; }
.sitefoot__addr { font-style: normal; color: var(--color-on-dark-muted); font-size: .93rem; line-height: 1.7; }
.sitefoot__addr a { color: var(--color-on-dark); }
.sitefoot__hours { color: var(--color-on-dark-muted); font-size: .9rem; margin-top: 10px; }
.sitefoot__title { font-family: var(--font-heading); font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.sitefoot__links, .sitefoot__social { list-style: none; display: grid; gap: 10px; }
.sitefoot__links a, .sitefoot__social a { color: var(--color-on-dark-muted); text-decoration: none; font-size: .95rem; }
.sitefoot__links a:hover, .sitefoot__social a:hover { color: #fff; text-decoration: underline; }
.footer__languages { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.footer__languages:empty { display: none; }
.sitefoot__bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.footer__copyright { color: var(--color-on-dark-muted); font-size: .9rem; margin-bottom: 6px; }
.sitefoot__bottom p { color: var(--color-on-dark-muted); font-size: .8rem; line-height: 1.6; margin: 0; }

/* ---------- cookie + sticky ---------- */
.cookiebar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 110;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px;
  background: var(--color-dark);
  color: var(--color-on-dark);
  box-shadow: 0 -6px 20px rgba(20, 32, 46, .25);
}
.cookiebar__text { margin: 0; font-size: .9rem; color: var(--color-on-dark); }
.cookiebar__text a { color: #fff; }
.cookiebar__actions { display: flex; gap: 10px; }

.stickybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 46px 12px 18px;
  background: rgba(20, 32, 46, .93);
  backdrop-filter: blur(8px);
  color: var(--color-on-dark);
}
.stickybar__text { margin: 0; font-family: var(--font-heading); font-size: .95rem; color: var(--color-on-dark); }
.stickybar__cta { white-space: nowrap; }
.stickybar__close {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .35);
  background: transparent;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}
.stickybar__close:hover { background: rgba(255, 255, 255, .14); }

/* ---------- inner pages ---------- */
.page main > section { padding: 44px 0 var(--pad-y); }
.page--about .story-page, .page--contact .reach, .page--legal .legal { padding-top: 34px; }

.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: .88rem; color: var(--color-text-muted); margin-bottom: 18px; }
.crumbs a { color: var(--color-text-muted); text-decoration: none; }
.crumbs a:hover { color: var(--color-accent-dark); }
.crumbs a::after { content: " \203A"; color: var(--color-border); }
.crumbs__here { color: var(--color-text); }

.page-head { max-width: 760px; margin-bottom: 34px; }
.page-head__title { font-size: clamp(1.9rem, 4.4vw, 2.8rem); font-weight: 800; margin-bottom: 12px; }
.page-head__sub { color: var(--color-text-muted); font-size: 1.05rem; }
.page-head__back {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
}
.page-head__back:hover { text-decoration: underline; }

.values__head { margin-bottom: 30px; }
.values__grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.value-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.value-card__title { font-size: 1.06rem; font-weight: 700; margin-bottom: 8px; }
.value-card__text { margin: 0; color: var(--color-text-muted); }

.reach__grid { display: grid; grid-template-columns: 1fr; gap: 34px; }
.reach__formwrap, .reach__facts { min-width: 0; }
.reach-form { display: grid; gap: 16px; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); }
.form-group { display: grid; gap: 6px; }
.form-group label { font-family: var(--font-heading); font-weight: 600; font-size: .93rem; color: var(--color-text); }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--color-primary); background: #fff; }
.reach__facts { display: grid; gap: 22px; align-content: start; }
.reach-fact { border-left: 3px solid var(--color-accent); padding-left: 16px; }
.reach-fact__label { font-family: var(--font-heading); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 6px; }
.reach-fact address { font-style: normal; line-height: 1.7; }
.reach-fact__hours { list-style: none; display: grid; gap: 4px; }

.legal__updated { color: var(--color-text-muted); font-size: .9rem; }
.legal__body { max-width: 78ch; }
.legal__block { margin-bottom: 30px; }
.legal__block h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.legal__block p { color: var(--color-text-muted); }

/* ---------- reveal ---------- */
.js-reveal .why-item,
.js-reveal .inside-block,
.js-reveal .voice-quote,
.js-reveal .data-entry,
.js-reveal .shots__item,
.js-reveal .path-step,
.js-reveal .fit-card,
.js-reveal .value-card {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .4s ease, transform .4s ease;
}
.js-reveal .visible { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (min-width: 600px) {
  .assure__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shots__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .path__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  :root { --pad-y: 76px; }
  body { font-size: 17.5px; }
  .container { padding: 0 32px; }
  .risk-row { grid-template-columns: 34% 1fr; gap: 26px; }
  .data-entry { grid-template-columns: 30% 1fr; gap: 26px; }
  .voice__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fit__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .values__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story__grid, .story-page__grid { grid-template-columns: 320px 1fr; gap: 40px; }
  .reach__grid { grid-template-columns: 1.15fr .85fr; gap: 44px; }
  .sitefoot__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .inside-block { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 38px; }
  .inside-block--flip .inside-block__media { order: 2; }
  .arc__track { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 34px; }
}

@media (min-width: 1024px) {
  .hero { padding: 74px 0 96px; }
  .hero__grid { grid-template-columns: 1.05fr .95fr; gap: 48px; }
  .products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .shots__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .why__list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .path__steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .values__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .sitefoot__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
  .arc__track { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .arc-mark { border-left: 0; border-top: 2px solid var(--color-border); padding: 26px 18px 0 0; }
  .arc-mark:last-child { border-top-color: var(--color-border); }
  .arc-mark::before { left: 0; top: -9px; }
}

@media (min-width: 1200px) {
  .products-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .story__grid, .story-page__grid { grid-template-columns: 380px 1fr; }
}

@media (max-width: 899px) {
  .masthead__burger { display: flex; }
  .masthead__cta { display: none; }
  .masthead__nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    display: none;
    padding: 14px 20px 20px;
  }
  .masthead__nav.is-open { display: block; }
  .masthead__nav ul { flex-direction: column; gap: 4px; }
  .masthead__nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--color-border); }
  .stickybar { padding-bottom: 14px; }
  .stickybar__cta { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .js-reveal .why-item, .js-reveal .inside-block, .js-reveal .voice-quote,
  .js-reveal .data-entry, .js-reveal .shots__item, .js-reveal .path-step,
  .js-reveal .fit-card, .js-reveal .value-card { opacity: 1; transform: none; }
}

/* ---------- section shells ---------- */
.assure { padding-top: 34px; padding-bottom: 34px; }
.shelf { scroll-margin-top: 80px; }
.inside { scroll-margin-top: 80px; }
.inside-block__body { min-width: 0; }
.voice { scroll-margin-top: 80px; }
.data { scroll-margin-top: 80px; }
.story { scroll-margin-top: 80px; }
.arc { scroll-margin-top: 80px; }
.fit { scroll-margin-top: 80px; }
.risk { scroll-margin-top: 80px; }
.shots { scroll-margin-top: 80px; }
.values { scroll-margin-top: 80px; }
