:root {
  --bg: oklch(96.5% 0.012 75);
  --surface: oklch(99% 0.006 80);
  --fg: oklch(19% 0.028 48);
  --muted: oklch(44% 0.022 50);
  --border: oklch(86% 0.018 72);
  --accent: oklch(52% 0.095 72);
  --accent-deep: oklch(38% 0.08 55);
  --espresso: oklch(22% 0.03 48);
  --cream: oklch(94% 0.02 85);
  --success: oklch(48% 0.1 145);
  --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --font-body: "Source Serif 4", "Iowan Old Style", Georgia, serif;
  --font-ui: "DM Sans", "Segoe UI", system-ui, sans-serif;
  --radius: 4px;
  --shadow: 0 18px 48px oklch(22% 0.03 48 / 0.12);
  --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: 18px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent-deep);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--espresso);
  color: var(--cream);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: color-mix(in oklch, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in oklch, var(--border) 70%, transparent);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--espresso);
}

.logo span {
  color: color-mix(in oklch, var(--espresso) 75%, var(--cream));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 510;
  letter-spacing: 0.02em;
}

.nav-links a {
  text-decoration: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface);
}

.lang-switch button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 550;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 0.75rem;
  min-height: 44px;
  cursor: pointer;
}

.lang-switch button[aria-pressed="true"] {
  background: var(--espresso);
  color: var(--cream);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 550;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.18s cubic-bezier(0.23, 1, 0.32, 1), background 0.18s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  color: oklch(98% 0.01 80);
  box-shadow: 0 10px 28px oklch(52% 0.095 72 / 0.28);
}

.btn-primary:hover {
  background: var(--accent-deep);
  color: oklch(98% 0.01 80);
  box-shadow: 0 12px 32px oklch(38% 0.08 55 / 0.28);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--fg);
}

.btn-ghost:hover {
  border-color: var(--fg);
}

.btn-solid {
  background: var(--espresso);
  color: var(--cream);
  box-shadow: 0 8px 22px oklch(22% 0.03 48 / 0.18);
}

.btn-solid:hover {
  background: oklch(28% 0.03 48);
  color: var(--cream);
}

.cart-btn {
  position: relative;
  min-width: 48px;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--fg);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: var(--espresso);
  color: var(--cream);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-count:empty,
.cart-count[data-empty="1"] {
  display: none;
}

.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 550;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 1.1rem;
  color: var(--espresso);
  max-width: 14ch;
}

.hero-lead {
  font-size: 1.15rem;
  line-height: 1.65;
  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: 1.25rem 1.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  color: var(--muted);
}

.trust-row li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.trust-row svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--espresso);
}

.hero-stage {
  perspective: 1200px;
  position: relative;
}

.hero-card-3d {
  position: relative;
  border-radius: 8px;
  transform-style: preserve-3d;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: var(--shadow);
  background: var(--surface);
  overflow: hidden;
  aspect-ratio: 16 / 11;
}

.hero-card-3d img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float {
  position: absolute;
  right: -4%;
  bottom: -8%;
  width: min(48%, 220px);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotateY(-12deg) rotateX(6deg) translateZ(40px);
  border: 1px solid color-mix(in oklch, var(--border) 60%, white);
  animation: floatY 5.5s ease-in-out infinite;
}

.hero-float img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

@keyframes floatY {
  0%, 100% { transform: rotateY(-12deg) rotateX(6deg) translateZ(40px) translateY(0); }
  50% { transform: rotateY(-12deg) rotateX(6deg) translateZ(40px) translateY(-10px); }
}

.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  color: var(--espresso);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 36ch;
  font-size: 1.05rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  perspective: 1400px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.28s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.28s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.product-card:hover {
  box-shadow: var(--shadow);
}

.product-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.product-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 550;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: color-mix(in oklch, var(--surface) 92%, transparent);
  backdrop-filter: blur(8px);
  color: var(--espresso);
  border: 1px solid color-mix(in oklch, var(--border) 70%, white);
  padding: 0.35rem 0.55rem;
  border-radius: 2px;
}

.product-body {
  padding: 1.15rem 1.2rem 1.3rem;
  display: grid;
  gap: 0.55rem;
}

.product-body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 42ch;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.price {
  font-family: var(--font-ui);
  font-size: 1.15rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--espresso);
}

.weight {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.story {
  background: var(--espresso);
  color: oklch(94% 0.015 80);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.story h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: oklch(96% 0.015 80);
}

.story p {
  margin: 0 0 1rem;
  color: oklch(82% 0.02 75);
  max-width: 48ch;
}

.story p:last-child {
  margin-bottom: 0;
}

.story-frame {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 60px oklch(10% 0.02 48 / 0.35);
  transform: perspective(1000px) rotateY(-4deg);
}

.story-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.4rem 1.35rem 1.5rem;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0 0 0.55rem;
  letter-spacing: -0.015em;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.why-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 0.9rem;
  color: var(--espresso);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  counter-reset: step;
}

.step {
  border-top: 1px solid var(--border);
  padding-top: 1.1rem;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 550;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  max-width: 32ch;
}

.cta-band {
  background: linear-gradient(160deg, oklch(24% 0.03 48), oklch(18% 0.025 48));
  color: oklch(95% 0.015 80);
  border-radius: 8px;
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.4rem;
  line-height: 1.15;
}

.cta-band p {
  margin: 0;
  color: oklch(82% 0.02 75);
  max-width: 40ch;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  background: color-mix(in oklch, var(--bg) 70%, var(--cream));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 0 0.6rem;
}

.footer-grid p,
.footer-grid address {
  margin: 0;
  font-style: normal;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.footer-grid h3 {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 550;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
  color: var(--espresso);
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-grid a {
  text-decoration: none;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.95rem;
}

.footer-grid a:hover {
  color: var(--fg);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  max-width: 520px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 1.15rem 1.2rem;
  display: none;
}

.cookie-banner.is-open {
  display: block;
}

.cookie-banner p {
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
}

.cart-drawer.is-open {
  pointer-events: auto;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: oklch(15% 0.02 48 / 0.4);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cart-drawer.is-open .cart-backdrop {
  opacity: 1;
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 400px);
  height: 100%;
  background: var(--surface);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}

.cart-drawer.is-open .cart-panel {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cart-head h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 0;
  font-weight: 600;
}

.icon-btn {
  border: 1px solid var(--border);
  background: transparent;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
}

.cart-items {
  flex: 1;
  overflow: auto;
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.cart-empty {
  color: var(--muted);
  font-size: 1rem;
  margin: 1rem 0;
}

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.cart-line img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--cream);
}

.cart-line h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.2rem;
  font-weight: 600;
}

.cart-line p {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: var(--muted);
}

.qty-row {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.4rem;
}

.qty-row button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 3px;
  cursor: pointer;
  font-size: 1rem;
  color: var(--fg);
}

.cart-foot {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1.05rem;
}

.legal-page {
  padding: 3rem 0 4rem;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 1.75rem 0 0.6rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  max-width: 68ch;
}

.legal-page ul {
  padding-left: 1.2rem;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  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;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

@media (max-width: 960px) {
  .hero-grid,
  .story-grid,
  .product-grid,
  .why-grid,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .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: 1rem 1.25rem 1.25rem;
    gap: 0.25rem;
    display: none;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.75rem 0.25rem;
    min-height: 44px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .story-grid,
  .product-grid,
  .why-grid,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-float {
    width: 42%;
    right: 4%;
    bottom: -4%;
  }

  .story-frame {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
