:root {
  --bg: #17140f;
  --panel: rgba(21, 18, 13, 0.9);
  --card: rgba(255, 255, 255, 0.06);
  --surface: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.12);
  --ink: #f2efe9;
  --muted: #b8ae9c;
  --accent: #4da66a;
  --accent-2: #8fbf8a;
  --accent-3: #c9a97e;
  --glow: 0 30px 90px rgba(77, 166, 106, 0.25), 0 24px 70px rgba(201, 169, 126, 0.2);
  --radius: 18px;
}

* { box-sizing: border-box; }

html { overflow-x: hidden; }
body {
  margin: 0;
  font-family: 'Space Grotesk', 'Manrope', system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(circle at 18% 20%, rgba(77, 166, 106, 0.16), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(201, 169, 126, 0.18), transparent 34%),
    radial-gradient(circle at 58% 80%, rgba(143, 191, 138, 0.16), transparent 30%),
    var(--bg);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

.atmosphere {
  position: fixed;
  inset: 0;
  background:
    conic-gradient(from 110deg, rgba(77, 166, 106, 0.2), transparent 40%, rgba(201, 169, 126, 0.24)),
    radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.06), transparent 36%);
  filter: blur(110px);
  opacity: 0.82;
  pointer-events: none;
  z-index: 0;
}

.bubble-field {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.bubble-field .bubble {
  position: absolute;
  width: var(--size, 16px);
  height: var(--size, 16px);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.65), rgba(77, 166, 106, 0.45));
  mix-blend-mode: screen;
  opacity: 0.7;
  animation: rise var(--duration, 14s) ease-in-out infinite;
  filter: blur(0.4px);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 7vw;
  backdrop-filter: blur(18px);
  background: rgba(17, 14, 10, 0.82);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.brand {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links { display: flex; gap: 16px; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.nav-links a:hover { background: rgba(255, 255, 255, 0.08); color: var(--ink); transform: translateY(-2px); }

.pill {
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(77, 166, 106, 0.28), rgba(201, 169, 126, 0.28));
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: var(--glow);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  padding: 110px 7vw 90px;
  position: relative;
  z-index: 1;
  align-items: center;
}

.hero-split {
  min-height: 90vh;
  padding: 120px 6vw 100px;
  grid-template-columns: 1fr;
  justify-items: center;
  overflow: hidden;
}
.hero-pane {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.hero-one {
  width: 50%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
  background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('assets/hero-left.jpg');
  z-index: 1;
}
.hero-two {
  right: 0;
  left: auto;
  width: 68%;
  height: 100%;
  background-image: linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.12)), url('assets/hero-right.jpg');
  z-index: 0;
}
.hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 740px;
  text-align: center;
  background: rgba(17, 14, 10, 0.35);
  padding: 28px 20px;
  border-radius: 18px;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.38);
}
.header-title {
  margin: 0 0 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  display: grid;
  gap: 4px;
}
.header-primary {
  font-weight: 700;
}
.header-sub {
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.12em;
}

.hero-copy {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 3.4vw, 3.9rem);
  margin: 10px 0 16px;
  line-height: 1.05;
}

.hero-copy .lede { color: var(--muted); max-width: 640px; margin: 0 auto; }

.hero-actions { display: flex; gap: 12px; margin-top: 26px; align-items: center; flex-wrap: wrap; justify-content: center; }

.primary, .ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.primary {
  background: linear-gradient(135deg, #4da66a, #8fbf8a, #c9a97e);
  color: #0f0d09;
  box-shadow: var(--glow);
}
.primary:hover { transform: translateY(-2px); }

.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  border: 1px solid var(--border);
}
.ghost:hover { background: rgba(255, 255, 255, 0.12); }

.hero-visual {
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}

.ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--glow);
  filter: blur(0.4px);
  animation: breathe 10s ease-in-out infinite;
}
.ring-a { animation-delay: 0.4s; }
.ring-b { width: 260px; height: 260px; animation-delay: 1.2s; opacity: 0.7; }

.blob {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(77,166,106,0.4), rgba(201,169,126,0.26));
  filter: blur(18px);
  mix-blend-mode: screen;
  animation: drift 14s ease-in-out infinite;
}
.blob-a { width: 240px; height: 240px; animation-duration: 16s; }
.blob-b { animation-duration: 12s; animation-delay: 1s; }

.spark {
  position: absolute;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, rgba(255,255,255,0.9), rgba(255,255,255,0));
  border-radius: 50%;
  filter: blur(0.8px);
  animation: float 6s ease-in-out infinite;
}
.spark-1 { top: 20%; left: 22%; animation-delay: 0.4s; }
.spark-2 { bottom: 18%; right: 24%; animation-delay: 1s; }

.why-section { overflow: hidden; }
.why-modern { overflow: hidden; }
.why-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: center;
  margin-top: 24px;
}

.why-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}
.why-row h3 { margin: 0 0 6px; }
.why-row p { margin: 0; color: var(--muted); }

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(77, 166, 106, 0.22), rgba(201, 169, 126, 0.22));
  box-shadow: var(--glow);
  font-size: 1.2rem;
}

.why-pills { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.pill-lite {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--ink);
  font-weight: 600;
}

.why-visual {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
  isolation: isolate;
  padding: 10px;
}

.image-stack {
  position: relative;
  width: min(820px, 92vw);
  max-width: 100%;
  padding-top: 60%;
  margin: 0 auto;
}

.image-stack .block {
  position: absolute;
  width: 30%;
  height: 100%;
  perspective: 1200px;
}

.image-stack .block:nth-of-type(1) {
  height: 82%;
  top: 9%;
  left: 16%;
  width: 16%;
}

.image-stack .block:nth-of-type(2) {
  top: 0;
  left: 35%;
}

.image-stack .block:nth-of-type(3) {
  height: 82%;
  top: 9%;
  left: 64%;
  width: 16%;
}

.image-stack .side {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url('https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=1200&q=80');
  background-size: auto 100%;
  background-repeat: no-repeat;
  box-shadow: -1vw .5vw 1vw rgba(0, 0, 0, .35);
}

.image-stack .side.-main {
  height: 100%;
  width: 100%;
  transform: rotateY(28deg);
  transform-origin: 0 50%;
  border-radius: 16px;
  overflow: hidden;
}

.image-stack .side.-left {
  height: 100%;
  width: 22%;
  transform-origin: 0 50%;
  transform: rotateY(-58deg) translateX(-100%);
  filter: brightness(35%);
  border-radius: 12px 0 0 12px;
}

.image-stack .block:nth-of-type(1) .side.-main {
  background-position: 4% 50%;
  background-size: auto 130%;
}
.image-stack .block:nth-of-type(1) .side.-left {
  background-position: 0 50%;
  background-size: auto 130%;
}

.image-stack .block:nth-of-type(2) .side.-main {
  background-position: 50% 0;
}
.image-stack .block:nth-of-type(2) .side.-left {
  background-position: 28.5% 0;
}

.image-stack .block:nth-of-type(2) .side {
  background-image: url('assets/section.jpeg');
}

.image-stack .block:nth-of-type(3) .side.-main {
  background-position: 96% 50%;
  background-size: auto 130%;
}
.image-stack .block:nth-of-type(3) .side.-left {
  background-position: 78% 50%;
  background-size: auto 130%;
}

.why-stats {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: grid;
  gap: 6px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid var(--border);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}
.why-stats div { display: flex; gap: 8px; align-items: baseline; color: var(--ink); }
.why-stats strong { font-size: 1.1rem; }
.why-stats span { color: var(--muted); font-size: 0.9rem; }

.section { padding: 64px 7vw; position: relative; z-index: 1; }
.section-header { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; flex-wrap: wrap; }
.section-header.spaced { align-items: center; }
.section-header h2,
.section-header .eyebrow,
.section-header .lede {
  text-align: center;
  width: 100%;
}

.section h2 { margin: 8px 0 8px; font-size: clamp(1.8rem, 2.4vw, 2.6rem); }
.lede { font-size: 1rem; color: var(--muted); max-width: 620px; }
.lede.subtle { color: var(--muted); }
.eyebrow { letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.78rem; color: var(--muted); margin: 0; }

.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-top: 10px; }
.why-card {
  padding: 18px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}
.why-card h3 { margin-top: 0; margin-bottom: 10px; }
.why-card p { margin: 0; color: var(--muted); }

.filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.filters button {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  padding: 10px 14px;
  cursor: pointer;
  color: var(--muted);
  font-weight: 600;
  transition: all 0.15s ease;
}
.filters button.active { background: linear-gradient(120deg, rgba(77, 166, 106, 0.22), rgba(201, 169, 126, 0.22)); color: var(--ink); box-shadow: var(--glow); }

.product-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.product-search input {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-weight: 600;
  min-width: 220px;
}
.product-search input::placeholder { color: var(--muted); }
.product-search input:focus {
  outline: 2px solid rgba(77, 166, 106, 0.35);
  border-color: rgba(77, 166, 106, 0.55);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
  width: 100%;
}

.product-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.hidden { display: none !important; }

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
  isolation: isolate;
}
.product-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
  border-color: rgba(255, 255, 255, 0.2);
}

.card-glow {
  position: absolute;
  inset: 10% 8%;
  background: radial-gradient(circle at 20% 20%, rgba(77, 166, 106, 0.22), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(201, 169, 126, 0.2), transparent 48%);
  filter: blur(28px);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}
.product-card:hover .card-glow { opacity: 1; }

.product-visual {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: radial-gradient(circle at 40% 30%, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 16px 30px rgba(0, 0, 0, 0.35);
  z-index: 1;
}
.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 1;
  flex: 1;
}
.product-footer {
  margin-top: auto;
  display: grid;
  gap: 10px;
}
.product-body h3 { margin: 6px 0 2px; }
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}
.product-inline {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-card .badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(201, 169, 126, 0.2);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.75rem;
  border: 1px solid var(--border);
}

.product-card h3 { margin: 6px 0 2px; }
.product-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.product-card .price { display: block; margin: 0; font-weight: 800; color: var(--ink); }

.card-actions { display: flex; gap: 10px; align-items: center; }
.card-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 700;
}
.card-actions .add {
  background: linear-gradient(120deg, #4da66a, #8fbf8a, #c9a97e);
  color: #0f0d09;
  box-shadow: var(--glow);
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}
.card-actions .add:hover { transform: translateY(-2px) scale(1.01); box-shadow: 0 14px 30px rgba(77, 166, 106, 0.35); }

.price-mobile { display: none; }
.price-desktop { display: block; }

.toggle-desc {
  display: none;
  align-self: flex-start;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.product-card.desc-collapsed .product-desc { display: none; }

.cart-panel {
  position: fixed;
  right: 0;
  top: 0;
  width: min(360px, 90vw);
  height: 100vh;
  background: var(--panel);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
  padding: 22px;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 50;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(14px);
}
.cart-panel.open { transform: translateX(0); }

.cart-header { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.cart-items { list-style: none; padding: 0; margin: 18px 0; flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}
.cart-item h4 { margin: 0; }
.cart-item .meta { margin: 0; color: var(--muted); font-size: 0.85rem; }
.qty-controls { display: flex; gap: 8px; align-items: center; }
.qty-controls button {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--ink);
  cursor: pointer;
}

.cart-footer { border-top: 1px solid var(--border); padding-top: 14px; }
.totals { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; color: var(--muted); }
.totals strong { color: var(--ink); font-size: 1.2rem; }

.block { width: 100%; }
.meta { color: var(--muted); font-size: 0.88rem; }

.backdrop {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  z-index: 40;
}
.backdrop.show { display: grid; }

.icon {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  border-radius: 10px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.1rem;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
  padding: 16px;
}
.modal-backdrop.show { display: flex; }
.modal-panel {
  width: min(420px, 100%);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}
.modal-header { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.modal-form { display: grid; gap: 10px; }
.modal-form label { display: grid; gap: 6px; color: var(--muted); font-weight: 600; }
.modal-form input, .modal-form select {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-weight: 600;
}
.modal-form input:focus, .modal-form select:focus {
  outline: 2px solid rgba(77, 166, 106, 0.4);
  border-color: rgba(77, 166, 106, 0.6);
}
.form-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}
.form-summary div { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.form-summary span { color: var(--muted); font-weight: 600; }
.form-summary strong { color: var(--ink); font-size: 1.05rem; }
.form-note { margin: 4px 0 0; color: var(--muted); font-size: 0.9rem; }
.form-error { margin: 0; color: #ffb3b3; font-weight: 700; min-height: 18px; }

.about { display: grid; place-items: center; }

.about-modern { position: relative; }
.about-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  align-items: start;
  margin-top: 16px;
}
.about-visual {
  display: grid;
  gap: 14px;
  align-content: start;
}
.about-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.about-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.32);
  border: 1px solid var(--border);
  min-height: 220px;
}
.about-photo {
  background-size: cover;
  background-position: center;
}
.about-photo-a { background-image: url('assets/about1.jpeg'); }
.about-photo-b { background-image: url('assets/about2.jpeg'); filter: hue-rotate(-8deg) saturate(1.1); }
.about-pillars { display: flex; gap: 8px; flex-wrap: wrap; }

.about-panel {
  background: linear-gradient(140deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.32);
  display: grid;
  gap: 14px;
  align-self: start;
  min-height: 451px;
}
.about-panel-head h3 { margin: 0 0 6px; }
.about-panel-head p { margin: 0; }
.about-points { display: grid; gap: 12px; }
.about-point { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; }
.about-point h4 { margin: 0 0 4px; }
.about-point p { margin: 0; color: var(--muted); }
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(120deg, #4da66a, #c9a97e);
  box-shadow: 0 0 0 6px rgba(255,255,255,0.06);
  margin-top: 4px;
}
.about-cta { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .about-modern-grid { grid-template-columns: 1fr; }
  .about-card { min-height: 180px; }
}

.footer {
  padding: 26px 7vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  align-items: start;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: rgba(17, 14, 10, 0.92);
  backdrop-filter: blur(12px);
}
.foot-brand p { margin: 8px 0; max-width: 260px; }
.foot-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.foot-links { display: grid; gap: 8px; }
.foot-links h4 { margin: 0 0 6px; color: var(--ink); }
.foot-links a { color: var(--muted); text-decoration: none; font-weight: 600; }
.foot-links a:hover { color: var(--ink); }
.footer-meta { display: none; }

.eyebrow + h2 { margin-top: 6px; }
.subtle { color: var(--muted); }

.reveal {
  opacity: 0;
  transform: translateX(var(--reveal-offset, 0));
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: transform, opacity;
}
.reveal-left { --reveal-offset: -40px; }
.reveal-right { --reveal-offset: 40px; }
.reveal.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 720px) {
  .nav { padding: 14px 6vw; }
  .nav-links { display: none; }
  .hero { padding-top: 80px; }
  .cart-panel { width: 100vw; }
}

@media (max-width: 540px) {
  .hero { padding: 72px 0 60px; justify-items: start; }
  .hero-split { padding: 90px 6vw 60px; min-height: 76vh; }
  .hero-pane { width: 100% !important; clip-path: none; opacity: 1; mix-blend-mode: normal; }
  .hero-copy { text-align: center; margin: 0 auto 0 0; width: 100%; }
  .hero-copy h1 { font-size: clamp(1.9rem, 6.4vw, 2.4rem); }
  .section { padding: 48px 6vw; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .product-card { padding: 14px; gap: 10px; }
  .product-visual { border-radius: 12px; }
  .product-body h3 { font-size: 1rem; }
  .product-card .price { font-size: 1rem; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .product-controls { width: 100%; justify-content: flex-start; }
  .filters {
    flex-wrap: wrap;
    overflow-x: visible;
    width: 100%;
    padding-bottom: 6px;
  }
  .filters button {
    white-space: nowrap;
    padding: 6px 10px;
    font-size: 0.82rem;
  }
  .product-search { width: 100%; }
  .product-search input { width: 100%; min-width: 0; }
  .modal-panel { width: 100%; max-width: 520px; margin: auto; padding: 16px; }
  .modal-form input, .modal-form select { padding: 10px; }
  .form-summary { grid-template-columns: 1fr; }
  .toggle-desc { display: inline-flex; }
  .product-inline {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 8px;
  }
  .price-mobile { display: inline-flex; }
  .price-desktop { display: none; }
  .product-meta .price { display: none; }
  .product-meta {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .card-actions { width: 100%; }
  .card-actions .add { width: 100%; }
  .footer { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-pillars { flex-wrap: nowrap; justify-content: space-between; }
  .why-pills { flex-wrap: nowrap; justify-content: space-between; }
  .pill-lite { padding: 6px 10px; font-size: 0.82rem; }
  .footer-meta {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
  }
  .foot-links { justify-self: end; text-align: right; }
  .foot-links:nth-of-type(3) { justify-self: start; text-align: left; }
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0px, 0); }
  50% { transform: translate3d(0, -10px, 6px); }
}

@keyframes drift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(12px, -10px, 0) scale(1.05); }
  100% { transform: translate3d(-10px, 12px, 0) scale(1); }
}

@keyframes rise {
  0% { transform: translateY(10vh) scale(0.8); opacity: 0; }
  50% { opacity: 0.7; }
  100% { transform: translateY(-110vh) scale(1.1); opacity: 0; }
}

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 0.9; }
}






