:root {
  --bg: oklch(97.5% 0.012 125);
  --surface: oklch(99.2% 0.006 110);
  --fg: oklch(24% 0.028 145);
  --muted: oklch(46% 0.022 145);
  --border: oklch(88% 0.018 130);
  --accent: oklch(40% 0.078 148);
  --accent-soft: oklch(94% 0.03 140);
  --warm: oklch(92% 0.028 85);
  --depth-1: 0 2px 8px oklch(24% 0.03 145 / 0.06);
  --depth-2: 0 12px 32px oklch(24% 0.03 145 / 0.10);
  --depth-3: 0 28px 56px oklch(24% 0.04 145 / 0.14);
  --font-display: 'Libre Baskerville', 'Iowan Old Style', Charter, Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --radius: 14px;
  --max: 1120px;
  --nav-h: 72px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
button, input, select, textarea { font: inherit; }
.wrap { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.1rem, 4.8vw, 3.35rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.25rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.01em; }
.lede { font-size: 1.125rem; color: var(--muted); max-width: 38ch; line-height: 1.55; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.18s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.18s, background 0.18s, border-color 0.18s;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: oklch(98% 0.01 130);
  box-shadow: var(--depth-1), inset 0 1px 0 oklch(100% 0 0 / 0.12);
}
.btn-primary:hover { box-shadow: var(--depth-2); filter: brightness(1.05); }
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--fg);
}
.btn-ghost:hover { border-color: var(--fg); background: var(--surface); }
.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(14px) saturate(1.2);
  background: oklch(97.5% 0.012 125 / 0.86);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}
.logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-decoration: none;
}
.logo-mark {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.logo-sub {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta { display: none; }
@media (min-width: 880px) {
  .nav-cta { display: inline-flex; }
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--fg);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--fg);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
@media (max-width: 879px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--depth-2);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.18s;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li a {
    display: block;
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--border);
    color: var(--fg);
  }
}
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
  isolation: isolate;
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy .eyebrow { margin-bottom: 1rem; }
.hero-copy h1 { margin-bottom: 1.1rem; max-width: 14ch; }
.hero-copy .lede { margin-bottom: 1.75rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.trust-item strong {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.trust-item span {
  font-size: 0.85rem;
  color: var(--muted);
}
.hero-stage {
  position: relative;
  min-height: 380px;
  perspective: 1200px;
  transform-style: preserve-3d;
}
.layer {
  position: absolute;
  border-radius: var(--radius);
  will-change: transform;
  transform-style: preserve-3d;
}
.layer-back {
  inset: 6% 4% 2% 8%;
  overflow: hidden;
  box-shadow: var(--depth-1);
  transform: translateZ(-40px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
}
.layer-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.92) brightness(1.02);
}
.layer-mid {
  inset: 16% 16% 20% 20%;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--depth-2);
  transform: translateZ(20px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  overflow: hidden;
}
.layer-mid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.layer-front {
  right: 4%;
  bottom: 6%;
  width: 48%;
  aspect-ratio: 4/5;
  border: 1px solid var(--border);
  box-shadow: var(--depth-3);
  transform: translateZ(60px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.layer-front img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.scene-label {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 1rem 1.05rem 1.05rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: oklch(98% 0.01 130);
  background: linear-gradient(180deg, transparent, oklch(18% 0.03 145 / 0.78));
}
.scene-label small {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: oklch(92% 0.02 130 / 0.9);
  letter-spacing: 0.02em;
}
.float-chip {
  position: absolute;
  left: 6%;
  top: 12%;
  z-index: 3;
  padding: 0.65rem 0.9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--depth-2);
  transform: translateZ(80px);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.float-chip span {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 0.15rem;
}
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-head {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
  max-width: 40rem;
}
.section-head .eyebrow { margin-bottom: 0.15rem; }
.section-head p { color: var(--muted); max-width: 52ch; }
.catalog-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
}
.product-card {
  --tx: 0deg;
  --ty: 0deg;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  box-shadow: var(--depth-1);
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(var(--tx)) rotateY(var(--ty));
  transition: box-shadow 0.25s cubic-bezier(0.23, 1, 0.32, 1), transform 0.12s ease-out;
  will-change: transform;
}
.product-card:hover { box-shadow: var(--depth-3); }
.product-visual {
  position: relative;
  aspect-ratio: 5/4;
  overflow: hidden;
  transform: translateZ(24px);
  background: oklch(92% 0.02 130);
}
.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
.product-card:hover .product-visual img {
  transform: scale(1.04);
}
.product-body {
  padding: 1.15rem 1.2rem 1.3rem;
  display: grid;
  gap: 0.55rem;
  transform: translateZ(18px);
}
.product-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}
.product-body h3 { font-size: 1.15rem; }
.product-body p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.35rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}
.price {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.price small {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.product-meta .btn { min-height: 44px; padding-inline: 1.1rem; font-size: 0.92rem; }
.band {
  background: var(--fg);
  color: oklch(97% 0.01 130);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
.band-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .band-grid { grid-template-columns: 1.2fr 1fr; align-items: center; gap: 3rem; }
}
.band h2 { color: inherit; margin: 0.5rem 0 0.85rem; }
.band p { color: oklch(88% 0.02 130); max-width: 42ch; }
.band .eyebrow { color: oklch(78% 0.06 140); }
.band-points {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}
.band-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.9rem 1rem;
  border: 1px solid oklch(100% 0 0 / 0.12);
  border-radius: 12px;
  background: oklch(100% 0 0 / 0.04);
}
.band-ico {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: oklch(100% 0 0 / 0.08);
  display: grid;
  place-items: center;
}
.band-ico svg { width: 18px; height: 18px; stroke: oklch(92% 0.02 130); fill: none; stroke-width: 1.6; }
.band-points strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  letter-spacing: 0.01em;
}
.band-points span { font-size: 0.9rem; color: oklch(82% 0.02 130); }
.why {
  background:
    linear-gradient(180deg, var(--warm), var(--bg) 55%);
}
.why-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem 1.5rem;
  box-shadow: var(--depth-1);
}
.why-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 0.75rem;
  opacity: 0.35;
}
.why-card h3 { margin-bottom: 0.5rem; }
.why-card p { color: var(--muted); font-size: 0.98rem; }
.order-section {
  position: relative;
}
.order-shell {
  display: grid;
  gap: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--depth-2);
  overflow: hidden;
}
@media (min-width: 900px) {
  .order-shell { grid-template-columns: 0.95fr 1.05fr; }
}
.order-aside {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background:
    linear-gradient(165deg, oklch(94% 0.03 130), oklch(91% 0.04 100));
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.order-aside h2 { max-width: 12ch; }
.order-aside p { color: var(--muted); max-width: 32ch; }
.order-steps {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin-top: auto;
}
.order-steps li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.7rem;
  align-items: start;
  font-size: 0.95rem;
}
.step-n {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.order-form {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: grid;
  gap: 1rem;
}
.form-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 560px) {
  .form-row.two { grid-template-columns: 1fr 1fr; }
}
.field { display: grid; gap: 0.4rem; }
.field label {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 11px;
  background: var(--bg);
  color: var(--fg);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: oklch(55% 0.06 148);
  box-shadow: 0 0 0 3px oklch(55% 0.06 148 / 0.15);
}
.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.25rem;
}
.form-success {
  display: none;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid oklch(80% 0.05 145);
  color: var(--fg);
  font-size: 0.98rem;
}
.form-success.show { display: block; }
.faq-list {
  display: grid;
  gap: 0.65rem;
  max-width: 720px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--muted);
  line-height: 1;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p {
  padding: 0 1.15rem 1.1rem;
  color: var(--muted);
  max-width: 62ch;
}
.legal-block {
  display: none;
  padding-top: 1rem;
}
.legal-block:target,
.legal-block.active {
  display: block;
}
.legal-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  max-width: 720px;
  box-shadow: var(--depth-1);
}
.legal-panel h2 { margin-bottom: 0.85rem; font-size: 1.45rem; }
.legal-panel p, .legal-panel li {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 0.65rem;
  max-width: 65ch;
}
.legal-panel ul { padding-left: 1.2rem; margin-bottom: 0.75rem; }
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 1.5rem;
  background: oklch(96% 0.01 125);
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}
.footer-brand .logo-mark { margin-bottom: 0.5rem; }
.footer-brand p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 32ch;
  margin-bottom: 1rem;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  color: var(--muted);
}
.footer-col ul { list-style: none; display: grid; gap: 0.5rem; }
.footer-col a {
  text-decoration: none;
  color: var(--fg);
  font-size: 0.95rem;
}
.footer-col a:hover { text-decoration: underline; }
.footer-nap {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}
.footer-nap strong { color: var(--fg); font-weight: 600; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  max-width: 420px;
  margin-left: auto;
  padding: 1.1rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--depth-3);
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.9rem;
  line-height: 1.45;
}
.cookie-banner a { color: var(--fg); }
.cookie-actions { display: flex; gap: 0.55rem; flex-wrap: wrap; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .product-card, .layer, .hero-stage { transform: none !important; }
}


.legal-page {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 5rem);
}
.legal-page .legal-panel {
  display: block;
  max-width: 720px;
}
.legal-page .legal-panel h1 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.page-hero-mini {
  padding: 2rem 0 0;
}
.page-hero-mini h1 {
  margin-bottom: 0.5rem;
}
.page-hero-mini p {
  color: var(--muted);
  max-width: 48ch;
}
