:root {
  --bg: oklch(98% 0.004 240);
  --surface: oklch(100% 0 0);
  --fg: oklch(20% 0.02 240);
  --muted: oklch(50% 0.018 240);
  --border: oklch(90% 0.006 240);
  --accent: oklch(56% 0.12 170);
  --accent-deep: oklch(42% 0.10 170);
  --accent-soft: oklch(94% 0.03 170);
  --warm: oklch(96% 0.015 85);
  --success: oklch(52% 0.12 150);
  --danger: oklch(50% 0.16 25);
  --shadow: 0 12px 40px oklch(20% 0.02 240 / 0.08);
  --shadow-lg: 0 24px 60px oklch(20% 0.02 240 / 0.12);
  --radius: 16px;
  --radius-sm: 12px;
  --font-display: "Source Serif 4", "Iowan Old Style", Charter, Georgia, serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --max: 1120px;
  --nav-h: 72px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; letter-spacing: -0.01em; }
p { margin: 0 0 1em; max-width: 65ch; }
.muted { color: var(--muted); }
.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  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, color 0.18s, border-color 0.18s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: oklch(99% 0.01 170);
  box-shadow: 0 8px 24px oklch(56% 0.12 170 / 0.28);
}
.btn-primary:hover {
  background: var(--accent-deep);
  box-shadow: 0 10px 28px oklch(42% 0.10 170 / 0.32);
}
.btn-secondary {
  background: var(--surface);
  color: var(--fg);
  border-color: var(--border);
}
.btn-secondary:hover {
  border-color: color-mix(in oklch, var(--fg) 25%, var(--border));
  background: var(--bg);
}
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
  min-height: 44px;
  padding-inline: 0.5rem;
}
.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(14px);
  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;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 30%, oklch(78% 0.08 170), transparent 55%),
    linear-gradient(145deg, var(--accent), var(--accent-deep));
  box-shadow: 0 6px 16px oklch(56% 0.12 170 / 0.25);
  position: relative;
  transform: perspective(200px) rotateY(-8deg) rotateX(6deg);
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1.5px solid oklch(100% 0 0 / 0.45);
  border-radius: 6px;
}
.logo-text { font-family: var(--font-display); font-size: 1.2rem; }
.logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-weight: 550;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover,
.nav-links a.is-active {
  color: var(--fg);
  background: var(--warm);
}
.nav-cta { margin-left: 0.5rem; }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
}
.page { display: none; }
.page.is-active { display: block; animation: pageIn 0.35s cubic-bezier(0.23, 1, 0.32, 1); }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-copy p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.trust-row strong {
  display: block;
  color: var(--fg);
  font-weight: 600;
  font-size: 0.95rem;
}
.hero-stage {
  perspective: 1200px;
  min-height: 420px;
  display: grid;
  place-items: center;
  position: relative;
}
.hero-stage::before {
  content: "";
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  filter: blur(8px);
  z-index: 0;
}
.stage-card {
  position: relative;
  z-index: 1;
  width: min(100%, 380px);
  aspect-ratio: 1 / 1.08;
  transform-style: preserve-3d;
  transform: rotateY(-18deg) rotateX(10deg);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  animation: floatY 6s ease-in-out infinite;
}
.stage-card:hover {
  transform: rotateY(-8deg) rotateX(4deg) scale(1.02);
}
@keyframes floatY {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}
.stage-face {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateZ(28px);
}
.stage-face-inner {
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
}
.stage-visual {
  position: relative;
  overflow: hidden;
  background: var(--warm);
}
.stage-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}
.stage-meta {
  padding: 1.15rem 1.35rem 1.35rem;
  background: var(--surface);
}
.stage-meta .price {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--fg);
}
.stage-meta .label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.stage-shadow {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -8%;
  height: 28px;
  background: radial-gradient(ellipse, oklch(20% 0.02 240 / 0.18), transparent 70%);
  filter: blur(4px);
  transform: translateZ(-40px);
}
.section {
  padding: clamp(2.75rem, 6vw, 4.5rem) 0;
}
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.section-head p { margin: 0; color: var(--muted); }
.cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.cat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.25s;
  transform-style: preserve-3d;
}
.cat-card:hover {
  transform: translateY(-4px) rotateX(2deg);
  box-shadow: var(--shadow);
}
.cat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--warm);
  display: grid;
  place-items: center;
  color: var(--fg);
  margin-bottom: 1rem;
}
.cat-card h3 { margin-bottom: 0.25rem; font-size: 1.1rem; }
.cat-card p { margin: 0; font-size: 0.92rem; color: var(--muted); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.28s;
  transform-style: preserve-3d;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px) rotateX(3deg);
  box-shadow: var(--shadow);
}
.product-media {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: var(--warm);
  perspective: 700px;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02) rotateX(0deg);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
.product-card:hover .product-media img {
  transform: scale(1.06) rotateX(2deg);
}
.product-body {
  padding: 1.1rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.product-body h3 {
  font-size: 1.08rem;
  margin: 0;
}
.product-body p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  flex: 1;
}
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.65rem;
}
.price {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 1.1rem;
}
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px oklch(20% 0.02 240 / 0.08);
}
.band {
  background: var(--surface);
  border-block: 1px solid var(--border);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.step {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
}
.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.35;
}
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.why-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transform: perspective(900px) rotateY(-4deg);
}
.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.why-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.85rem;
  align-items: start;
}
.why-list .dot {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--warm);
  color: var(--fg);
  display: grid;
  place-items: center;
}
.cta-block {
  background:
    radial-gradient(circle at 85% 20%, oklch(88% 0.05 170 / 0.55), transparent 40%),
    linear-gradient(135deg, var(--surface), var(--accent-soft));
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.cta-block p { margin: 0; color: var(--muted); }
.page-hero {
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface), var(--bg));
}
.page-hero p { color: var(--muted); margin: 0; }
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 1.75rem;
}
.chip {
  min-height: 42px;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  font-weight: 550;
  font-size: 0.92rem;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.chip.is-active,
.chip:hover {
  background: var(--warm);
  color: var(--fg);
  border-color: color-mix(in oklch, var(--fg) 18%, var(--border));
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0 3.5rem;
  align-items: start;
}
.detail-stage {
  perspective: 1000px;
  min-height: 420px;
}
.detail-box {
  height: 100%;
  min-height: 420px;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--border);
  background: var(--warm);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}
.detail-box:hover { transform: rotateY(0deg) rotateX(0deg); }
.detail-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}
.detail-info .price-lg {
  font-size: 1.75rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  margin: 0.5rem 0 1rem;
  color: var(--fg);
}
.detail-info ul {
  margin: 0 0 1.5rem;
  padding-left: 1.15rem;
  color: var(--muted);
}
.detail-info li { margin-bottom: 0.4rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 2.5rem 0 3.5rem;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.contact-card h3 { margin-bottom: 0.75rem; }
.contact-card p, .contact-card a {
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.contact-card a:hover { color: var(--fg); text-decoration: underline; text-underline-offset: 3px; }
.nap-line {
  font-size: 1.05rem;
  color: var(--fg) !important;
  font-weight: 550;
}
.legal {
  padding: 2.5rem 0 4rem;
  max-width: 72ch;
}
.legal h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.65rem;
}
.legal p, .legal li {
  color: var(--muted);
  font-size: 0.98rem;
}
.legal ul { padding-left: 1.2rem; }
.site-footer {
  background: oklch(18% 0.02 240);
  color: oklch(92% 0.01 240);
  padding: 3rem 0 1.5rem;
  margin-top: 1rem;
}
.site-footer a { color: oklch(86% 0.02 240); }
.site-footer a:hover { color: oklch(98% 0 0); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo-text { color: oklch(98% 0 0); }
.footer-brand p {
  color: oklch(72% 0.02 240);
  font-size: 0.95rem;
  margin-top: 0.75rem;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: oklch(68% 0.02 240);
  margin-bottom: 0.9rem;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  font-size: 0.95rem;
}
.footer-bottom {
  border-top: 1px solid oklch(100% 0 0 / 0.08);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: oklch(68% 0.02 240);
}
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: 560px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.15rem 1.25rem;
  display: none;
}
.cookie-banner.is-visible { display: block; animation: pageIn 0.3s ease; }
.cookie-banner p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}
.toast {
  position: fixed;
  top: calc(var(--nav-h) + 12px);
  right: 1rem;
  z-index: 50;
  background: var(--fg);
  color: var(--surface);
  padding: 0.85rem 1.15rem;
  border-radius: 12px;
  font-weight: 550;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s, transform 0.25s;
}
.toast.is-on {
  opacity: 1;
  transform: translateY(0);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
@media (max-width: 960px) {
  .hero-grid,
  .why-grid,
  .detail-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stage-card { transform: rotateY(-10deg) rotateX(6deg); }
  .why-panel { transform: none; }
}
@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1.25rem;
    display: none;
    gap: 0.25rem;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { width: 100%; }
  .nav-cta { margin-left: 0; margin-top: 0.5rem; }
  .nav-cta .btn { width: 100%; }
  .cats,
  .product-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stage { min-height: 340px; }
}
