:root {
  --bg: oklch(97.5% 0.014 155);
  --surface: oklch(99.5% 0.004 150);
  --fg: oklch(22% 0.035 155);
  --muted: oklch(40% 0.028 155);
  --border: oklch(86% 0.025 150);
  --accent: oklch(42% 0.095 160);
  --accent-soft: oklch(92% 0.035 155);
  --accent-deep: oklch(32% 0.08 160);
  --warm: oklch(94% 0.03 85);
  --success: oklch(45% 0.1 150);
  --danger: oklch(48% 0.14 25);
  --shadow: 0 12px 40px oklch(22% 0.04 155 / 0.1);
  --radius: 16px;
  --font-display: "Source Serif 4", "Iowan Old Style", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --nav-h: 4.5rem;
  --touch: 3.25rem;
  --max: 72rem;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--surface);
  padding: 0.75rem 1rem;
}
.skip:focus { left: 1rem; top: 1rem; }
.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: color-mix(in oklch, var(--surface) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent-soft), color-mix(in oklch, var(--accent) 35%, white));
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 1.35rem; height: 1.35rem; color: var(--accent-deep); }
.nav-links {
  display: none;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.nav-links a:hover { color: var(--fg); }
.nav-actions { display: flex; align-items: center; gap: 0.65rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--touch);
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s cubic-bezier(0.23, 1, 0.32, 1), background 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: oklch(99% 0.01 155);
  box-shadow: 0 8px 22px oklch(42% 0.095 160 / 0.28);
}
.btn-primary:hover { background: var(--accent-deep); }
.btn-secondary {
  background: var(--surface);
  border-color: var(--border);
  color: var(--fg);
}
.btn-secondary:hover { border-color: var(--muted); }
.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: var(--fg);
  min-width: var(--touch);
  padding-inline: 0.85rem;
}
.btn-cart {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  min-width: var(--touch);
  min-height: var(--touch);
  border-radius: 999px;
  padding: 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  cursor: pointer;
}
.cart-badge {
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--accent);
  color: oklch(99% 0.01 155);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-grid;
  place-items: center;
  font-variant-numeric: tabular-nums;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 5.5rem);
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
}
.eyebrow {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.2vw, 3.65rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 0 0 1rem;
  max-width: 14ch;
}
.hero-lead {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 38ch;
  margin: 0 0 1.75rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.75rem; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.trust-row li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 500;
}
.trust-row svg { width: 1.25rem; height: 1.25rem; color: var(--accent); flex-shrink: 0; }
.hero-stage {
  position: relative;
  min-height: 22rem;
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(ellipse 70% 60% at 50% 70%, color-mix(in oklch, var(--accent) 18%, transparent), transparent 70%),
    linear-gradient(165deg, var(--warm), var(--surface) 55%, var(--accent-soft));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  overflow: hidden;
  perspective: 900px;
}
.stage-caption {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  max-width: min(16rem, calc(100% - 2.2rem));
  background: color-mix(in oklch, var(--surface) 92%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 0.95rem;
  font-size: 1rem;
  box-shadow: 0 8px 20px oklch(22% 0.03 155 / 0.08);
}
.stage-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}
.stage-caption span { color: var(--muted); font-size: 0.95rem; }
.mint-scene {
  width: min(88%, 20rem);
  height: 18rem;
  position: relative;
  transform-style: preserve-3d;
  animation: scene-float 7s ease-in-out infinite;
}
@keyframes scene-float {
  0%, 100% { transform: rotateX(12deg) rotateY(-18deg) translateY(0); }
  50% { transform: rotateX(16deg) rotateY(-8deg) translateY(-10px); }
}
.pot {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  width: 7.5rem;
  height: 5.2rem;
  margin-left: -3.75rem;
  background: linear-gradient(180deg, oklch(72% 0.05 55), oklch(58% 0.06 50));
  border-radius: 0.4rem 0.4rem 1.4rem 1.4rem;
  transform: translateZ(20px);
  box-shadow: 0 14px 28px oklch(22% 0.04 155 / 0.18);
}
.pot::before {
  content: "";
  position: absolute;
  left: -0.45rem;
  right: -0.45rem;
  top: 0;
  height: 1.1rem;
  background: oklch(68% 0.055 52);
  border-radius: 0.35rem;
}
.soil {
  position: absolute;
  left: 0.4rem;
  right: 0.4rem;
  top: 0.85rem;
  height: 1rem;
  background: oklch(35% 0.04 50);
  border-radius: 50%;
}
.leaf {
  position: absolute;
  width: 4.6rem;
  height: 7.2rem;
  left: 50%;
  bottom: 5.4rem;
  margin-left: -2.3rem;
  transform-origin: 50% 100%;
  transform-style: preserve-3d;
}
.leaf-shape {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 55% 70% at 45% 40%, oklch(72% 0.14 150), transparent 60%),
    linear-gradient(160deg, oklch(62% 0.14 155), oklch(42% 0.11 160));
  border-radius: 80% 0 80% 0;
  box-shadow: inset -8px -10px 18px oklch(30% 0.08 160 / 0.25);
  position: relative;
}
.leaf-shape::after {
  content: "";
  position: absolute;
  inset: 12% 46% 8% 48%;
  background: oklch(35% 0.08 155 / 0.45);
  border-radius: 999px;
}
.leaf-a { transform: translateZ(40px) rotateZ(-18deg) rotateY(-12deg); animation: leaf-sway 5.5s ease-in-out infinite; }
.leaf-b { transform: translateZ(55px) rotateZ(8deg) rotateY(18deg) scale(0.92); animation: leaf-sway 6.2s ease-in-out infinite reverse; bottom: 5.8rem; }
.leaf-c { transform: translateZ(28px) rotateZ(28deg) rotateY(-6deg) scale(0.78); animation: leaf-sway 4.8s ease-in-out infinite 0.4s; bottom: 5rem; width: 3.8rem; height: 6rem; margin-left: -1.9rem; }
@keyframes leaf-sway {
  0%, 100% { rotate: 0deg; }
  50% { rotate: 4deg; }
}
@media (prefers-reduced-motion: reduce) {
  .mint-scene, .leaf-a, .leaf-b, .leaf-c { animation: none; }
}
.section { padding: clamp(3rem, 7vw, 5rem) 0; }
.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.45rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.65rem;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 48ch;
}
.products-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s cubic-bezier(0.23, 1, 0.32, 1), transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.product-visual {
  aspect-ratio: 4/3;
  background:
    radial-gradient(circle at 30% 30%, color-mix(in oklch, var(--accent) 16%, white), transparent 55%),
    linear-gradient(145deg, var(--warm), var(--accent-soft));
  position: relative;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--border);
}
.product-visual .pv-icon {
  width: 5.5rem;
  height: 5.5rem;
  color: var(--accent-deep);
  opacity: 0.92;
}
.product-body {
  padding: 1.25rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}
.product-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.25;
}
.product-en {
  font-size: 0.95rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.product-desc {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  flex: 1;
}
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.35rem;
}
.price {
  font-weight: 600;
  font-size: 1.35rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.price small {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}
.split-section {
  background: var(--surface);
  border-block: 1px solid var(--border);
}
.split-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 860px) {
  .split-grid { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
}
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
}
.feature-list .ico {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
}
.feature-list .ico svg { width: 1.35rem; height: 1.35rem; }
.feature-list strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}
.feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: 0; }
.step-num {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 2px solid var(--accent);
  color: var(--accent-deep);
  font-weight: 600;
  font-size: 1.15rem;
  display: grid;
  place-items: center;
  font-variant-numeric: tabular-nums;
}
.step h3 {
  margin: 0 0 0.3rem;
  font-size: 1.2rem;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}
.step p { margin: 0; color: var(--muted); }
.quote-block {
  margin: 0;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  color: oklch(98% 0.01 155);
  box-shadow: var(--shadow);
}
.quote-block p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin: 0 0 1rem;
  max-width: 28ch;
}
.quote-block cite {
  font-style: normal;
  font-size: 1.05rem;
  opacity: 0.88;
}
.site-footer {
  padding: 3rem 0 6.5rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
  font-size: 1.05rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.footer-copy { color: var(--muted); margin: 0 0 1rem; max-width: 36ch; }
.footer-nap {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.footer-nap a { color: var(--fg); text-decoration: underline; text-underline-offset: 3px; }
.footer h3 {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.footer-links a {
  text-decoration: none;
  color: var(--fg);
  font-weight: 500;
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
}
.footer-links a:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.98rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
}
.drawer-backdrop,
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: oklch(18% 0.03 155 / 0.45);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.drawer-backdrop.open,
.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 26rem);
  height: 100%;
  background: var(--surface);
  z-index: 60;
  box-shadow: -12px 0 40px oklch(22% 0.04 155 / 0.15);
  transform: translateX(105%);
  transition: transform 0.22s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.drawer-head,
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.drawer-head h2,
.modal-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.015em;
}
.icon-close {
  width: var(--touch);
  height: var(--touch);
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.icon-close svg { width: 1.25rem; height: 1.25rem; }
.drawer-body {
  flex: 1;
  overflow: auto;
  padding: 1rem 1.25rem;
}
.cart-empty {
  color: var(--muted);
  text-align: center;
  padding: 2.5rem 1rem;
  font-size: 1.1rem;
}
.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-item h3 {
  margin: 0;
  font-size: 1.1rem;
  font-family: var(--font-display);
}
.cart-item .line-price {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.qty-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  grid-column: 1 / -1;
}
.qty-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 600;
}
.qty-val {
  min-width: 2rem;
  text-align: center;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.item-remove {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  min-height: 2.75rem;
  font-size: 1rem;
}
.drawer-foot {
  padding: 1.15rem 1.25rem 1.4rem;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 0.85rem;
}
.total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1.2rem;
  font-weight: 600;
}
.total-row span:last-child {
  font-size: 1.45rem;
  font-variant-numeric: tabular-nums;
}
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 1rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s cubic-bezier(0.23, 1, 0.32, 1);
}
.checkout-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-panel {
  width: min(100%, 34rem);
  max-height: min(92vh, 48rem);
  overflow: auto;
  background: var(--surface);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transform: scale(0.96);
  transition: transform 0.18s cubic-bezier(0.23, 1, 0.32, 1);
}
.checkout-modal.open .modal-panel { transform: scale(1); }
.modal-body { padding: 1.25rem; }
.form-grid {
  display: grid;
  gap: 1rem;
}
.field label {
  display: block;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: var(--touch);
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
}
.field textarea { min-height: 6rem; resize: vertical; }
.field-hint {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}
.form-note {
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 1.02rem;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}
.success-box {
  display: none;
  text-align: center;
  padding: 1.5rem 0.5rem 0.5rem;
}
.success-box.show { display: block; }
.success-box h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 0 0 0.5rem;
}
.success-box p { color: var(--muted); margin: 0 0 1.25rem; }
.legal-page {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--bg);
  overflow: auto;
  padding: 2rem 0 4rem;
}
.legal-page.open { display: block; }
.legal-inner {
  width: min(100% - 2rem, 48rem);
  margin-inline: auto;
}
.legal-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
.legal-inner h2 {
  font-size: 1.25rem;
  margin: 1.75rem 0 0.5rem;
}
.legal-inner p, .legal-inner li {
  color: var(--muted);
  max-width: 65ch;
}
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  max-width: 36rem;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner p {
  margin: 0 0 0.9rem;
  font-size: 1.05rem;
  color: var(--muted);
}
.cookie-banner a { color: var(--fg); font-weight: 600; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.55rem; }
body.drawer-open { overflow: hidden; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.hero-stage.has-photo {
  padding: 0;
  display: block;
  min-height: 22rem;
}
.hero-stage.has-photo .hero-photo {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  display: block;
}
.hero-stage.has-photo .stage-caption {
  z-index: 2;
}
.product-visual {
  padding: 0;
  overflow: hidden;
}
.product-visual .pv-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4/3;
}
.why-visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.why-visual img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.quote-block + .why-visual, .why-visual + .section-head { margin-top: 0; }

