:root {
  --ink: #1c1b1a;
  --ink-soft: #6b6763;
  --line: #ece7e0;
  --paper: #ffffff;
  --cream: #f8f5f0;
  --lime: #c9f24d;
  --lime-deep: #b6e02f;
  --radius: 28px;
  --radius-sm: 18px;
  --shadow: 0 20px 50px -24px rgba(60, 40, 20, .28);
  --shadow-sm: 0 10px 30px -18px rgba(60, 40, 20, .30);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .brand { font-family: 'Space Grotesk', 'Inter', sans-serif; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { width: min(1180px, 92vw); margin-inline: auto; }
.pt0 { padding-top: 0; }

/* ---------- Header ---------- */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { font-size: 1.5rem; font-weight: 700; display: flex; align-items: center; gap: .5rem; }
.brand .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--lime-deep); display: inline-block; }
.nav-links { display: flex; gap: 2rem; font-size: .95rem; font-weight: 500; color: var(--ink-soft); }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--ink); color: #fff; padding: .6rem 1.15rem;
  border-radius: 999px; font-size: .9rem; font-weight: 500; cursor: pointer; border: none;
}
.nav-cta:hover { transform: translateY(-1px); }
@media (max-width: 820px) { .nav-links { display: none; } }

/* ---------- Hero ---------- */
.hero { padding: clamp(1.5rem, 4vw, 3rem) 0 2rem; }
.hero-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1.05fr 1fr;
  align-items: center;
  min-height: 440px;
}
.hero-copy { padding: clamp(2rem, 4.5vw, 4rem); position: relative; z-index: 2; }
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-soft);
  background: #fff; border: 1px solid var(--line);
  padding: .4rem .85rem; border-radius: 999px; margin-bottom: 1.4rem;
}
.hero h1 { font-size: clamp(2.3rem, 5.2vw, 3.9rem); font-weight: 700; line-height: 1.03; }
.hero h1 em { font-style: normal; color: #d98a3d; }
.hero p { margin: 1.2rem 0 2rem; color: var(--ink-soft); font-size: 1.06rem; max-width: 30ch; }
.btn-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.btn-lime {
  background: var(--lime); color: #1c1b1a; font-weight: 600;
  padding: .95rem 1.7rem; border-radius: 999px; font-size: 1rem;
  box-shadow: 0 12px 26px -12px rgba(182,224,47,.9);
  transition: transform .15s ease; cursor: pointer; border: none;
}
.btn-lime:hover { transform: translateY(-2px); }
.btn-ghost { font-weight: 500; color: var(--ink); display: inline-flex; align-items: center; gap: .4rem; cursor: pointer; background: none; border: none; font-size: 1rem; font-family: inherit; }
.btn-ghost:hover { color: #d98a3d; }

.hero-visual { position: relative; height: 100%; min-height: 440px; }
.blob {
  position: absolute; inset: 0; margin: auto;
  width: 118%; height: 92%; top: 4%; left: -6%;
  background: radial-gradient(60% 60% at 50% 45%, #ffcf7a 0%, #ffb15e 45%, #ff9d54 100%);
  border-radius: 46% 54% 55% 45% / 52% 44% 56% 48%;
  filter: blur(2px);
  transition: background .6s ease;
}
.hero-visual img {
  position: absolute; inset: 0; margin: auto;
  width: 86%; height: auto; object-fit: contain;
  z-index: 2; filter: drop-shadow(0 30px 40px rgba(120,70,20,.28));
}
/* carousel slide transition (JS toggles .swap) */
.hero-prod { transition: transform .5s cubic-bezier(.34, 1.15, .5, 1), opacity .32s ease; }
.hero-prod.swap { opacity: 0; transform: translateX(64px) scale(.92); }

/* left copy fade during slide change */
.hero-copy { transition: opacity .28s ease; }
.hero-copy.fade { opacity: 0; }

/* buy row */
.hero-buy { display: flex; align-items: center; gap: 1.2rem; margin: 1.4rem 0 1.8rem; }
.hero-buy .price { font-size: 1.55rem; }

/* carousel nav */
.carousel-nav { display: flex; align-items: center; gap: 1rem; }
.cnav {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; cursor: pointer; font-size: 1.35rem; color: var(--ink);
  display: grid; place-items: center; font-family: inherit; line-height: 1;
  transition: transform .15s ease, background .15s ease;
}
.cnav:hover { transform: translateY(-2px); background: var(--cream); }
.cnav.next { background: var(--ink); color: #fff; border: none; box-shadow: 0 10px 22px -10px rgba(28,27,26,.7); }
.cnav.next:hover { background: #000; }
.dots { display: flex; align-items: center; gap: .5rem; }
.dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--line);
  cursor: pointer; padding: 0; border: none; transition: all .25s ease;
}
.dot.active { background: var(--ink); width: 24px; border-radius: 5px; }
@media (max-width: 820px) {
  .hero-card { grid-template-columns: 1fr; }
  .hero-visual { min-height: 320px; order: 2; }
  .hero-copy { order: 1; text-align: center; }
  .hero p { margin-inline: auto; }
  .hero-buy, .carousel-nav { justify-content: center; }
}

/* ---------- Section heads ---------- */
.sec { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.2rem; gap: 1rem; flex-wrap: wrap; }
.sec-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 700; }
.sec-head p { color: var(--ink-soft); margin-top: .35rem; }
.see-all { color: var(--ink-soft); font-weight: 500; font-size: .95rem; cursor: pointer; background: none; border: none; font-family: inherit; }
.see-all:hover { color: var(--ink); }

/* ---------- Categories ---------- */
.cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.cat {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  background: var(--cream); aspect-ratio: 4/3; box-shadow: var(--shadow-sm);
  transition: transform .2s ease;
}
.cat:hover { transform: translateY(-4px); }
.cat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cat span {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  background: #fff; padding: .5rem 1rem; border-radius: 999px;
  font-weight: 600; font-size: .95rem; box-shadow: var(--shadow-sm);
}
@media (max-width: 700px) { .cats { grid-template-columns: 1fr; } }

/* ---------- Products ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card .ph { background: var(--cream); aspect-ratio: 1/1; display: grid; place-items: center; }
.card .ph img { width: 82%; height: 82%; object-fit: contain; mix-blend-mode: multiply; }
.card-body { padding: 1.1rem 1.2rem 1.3rem; }
.card .tag { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.card h3 { font-size: 1.12rem; font-weight: 600; margin: .3rem 0 .7rem; }
.card .row { display: flex; align-items: center; justify-content: space-between; }
.price { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.2rem; }
.add {
  background: var(--lime); color: #1c1b1a; font-weight: 600; border: none;
  padding: .55rem 1.1rem; border-radius: 999px; font-size: .9rem; cursor: pointer;
  transition: transform .15s ease; font-family: inherit;
}
.add:hover { transform: translateY(-2px); background: var(--lime-deep); }
@media (max-width: 900px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid { grid-template-columns: 1fr; } }

/* ---------- Product Animation Spotlight (dark) ---------- */
.spotlight { background: #141312; color: #fff; padding: clamp(3rem, 7vw, 5.5rem) 0; overflow: hidden; }
.spotlight-inner { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.eyebrow-dark {
  display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--lime); border: 1px solid rgba(255,255,255,.16);
  padding: .4rem .85rem; border-radius: 999px; margin-bottom: 1.4rem;
}
.spotlight h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.02; font-weight: 700; }
.spotlight p { color: #b9b4ad; margin: 1.2rem 0 2rem; font-size: 1.05rem; max-width: 46ch; }
.spotlight p strong { color: #fff; font-weight: 600; }
.spotlight-media {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.85);
}
.spotlight-media video { width: 100%; display: block; object-fit: cover; background: #0c0b0a; aspect-ratio: 16 / 9; }
.spotlight-badge {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  background: rgba(20,19,18,.7); backdrop-filter: blur(6px); color: #fff;
  padding: .45rem 1rem; border-radius: 999px; font-size: .85rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,.14);
}
@media (max-width: 820px) {
  .spotlight-inner { grid-template-columns: 1fr; }
  .spotlight-copy { text-align: center; }
  .spotlight p { margin-inline: auto; }
}

/* ---------- Footer trust badges (small, centered) ---------- */
.trust-mini {
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap;
  gap: .5rem 1.4rem; margin: 1.8rem 0 1.2rem; padding-top: 1.8rem; border-top: 1px solid var(--line); width: 100%;
}
.trust-mini span { display: inline-flex; align-items: center; gap: .4rem; font-size: .84rem; color: var(--ink-soft); font-weight: 500; }

/* ---------- Back link (inquiry header) ---------- */
.back-link { color: var(--ink-soft); font-weight: 500; font-size: .95rem; }
.back-link:hover { color: var(--ink); }

/* ---------- Inquiry (fill-up) page ---------- */
.inq-wrap {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center; padding: clamp(2.5rem, 6vw, 5rem) 0; min-height: calc(100vh - 68px);
}
.inq-left h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.02; font-weight: 700; margin-top: .4rem; }
.inq-left > p { color: var(--ink-soft); font-size: 1.08rem; margin: 1.2rem 0 1.6rem; max-width: 42ch; }
.inq-ctx {
  display: inline-block; background: var(--cream); border: 1px solid var(--line);
  border-radius: 999px; padding: .55rem 1.1rem; font-size: .92rem; color: var(--ink-soft); margin-bottom: 1.6rem;
}
.inq-ctx strong { color: var(--ink); }
.inq-points { list-style: none; display: grid; gap: .8rem; }
.inq-points li { display: flex; align-items: center; gap: .7rem; color: var(--ink-soft); font-size: .96rem; }
.inq-points li span { font-size: 1.1rem; }

.inq-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.6rem, 3.5vw, 2.4rem); box-shadow: var(--shadow);
}
.inq-card h2 { font-size: 1.5rem; font-weight: 700; }
.inq-sub { color: var(--ink-soft); font-size: .92rem; margin: .3rem 0 1.4rem; }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.1rem; }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .8rem; font-weight: 600; color: var(--ink-soft); margin-bottom: .35rem; }
.field input, .field textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: .78rem .9rem;
  font-size: .98rem; font-family: inherit; color: var(--ink); background: var(--cream);
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--lime-deep); background: #fff; }
.field textarea { resize: vertical; min-height: 90px; }
.inq-card .submit {
  width: 100%; margin-top: 1.4rem; background: var(--ink); color: #fff; border: none;
  padding: 1rem; border-radius: 999px; font-weight: 600; font-size: 1rem; cursor: pointer;
  font-family: inherit; transition: transform .15s ease;
}
.inq-card .submit:hover { transform: translateY(-2px); }
.inq-card .submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.inq-card .submit.as-link { display: inline-block; text-align: center; text-decoration: none; width: auto; padding: .9rem 2rem; }
.inq-card .note { font-size: .82rem; color: var(--ink-soft); margin-top: 1rem; text-align: center; }
.inq-done { text-align: center; }
.inq-done .big { font-size: 3rem; margin-bottom: .5rem; }
.status { font-size: .92rem; margin-top: .9rem; text-align: center; min-height: 1.2em; }
.status.ok { color: #2e8b57; }
.status.err { color: #c0392b; }
@media (max-width: 860px) {
  .inq-wrap { grid-template-columns: 1fr; gap: 2rem; min-height: 0; }
  .fgrid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
footer { padding: 3.5rem 0 3rem; border-top: 1px solid var(--line); margin-top: 4rem; }
.foot-center { display: flex; flex-direction: column; align-items: center; text-align: center; }
.foot-center .brand { font-size: 1.6rem; }
.foot-tag { color: var(--ink-soft); font-size: .95rem; margin-top: .35rem; }
.foot-contact {
  display: inline-flex; align-items: center; gap: .5rem; background: var(--ink); color: #fff;
  padding: .85rem 1.8rem; border-radius: 999px; font-weight: 600; cursor: pointer; border: none;
  font-family: inherit; font-size: 1rem; margin-top: 1.7rem; transition: transform .15s ease;
}
.foot-contact:hover { transform: translateY(-2px); }
.copy { text-align: center; color: var(--ink); font-size: .88rem; font-weight: 700; }

/* ---------- Inquiry Modal ---------- */
.modal-back {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(28,27,26,.55); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 1.2rem;
}
.modal-back.open { display: flex; }
.modal {
  background: #fff; border-radius: var(--radius); width: min(440px, 100%);
  padding: clamp(1.6rem, 4vw, 2.2rem); box-shadow: var(--shadow); position: relative;
  animation: pop .18s ease;
}
@keyframes pop { from { transform: translateY(10px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
.modal h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: .3rem; }
.modal .sub { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1.3rem; }
.modal label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink-soft); margin: .9rem 0 .35rem; }
.modal input, .modal textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px;
  padding: .75rem .9rem; font-size: .98rem; font-family: inherit; color: var(--ink);
  background: var(--cream); transition: border-color .15s ease;
}
.modal input:focus, .modal textarea:focus { outline: none; border-color: var(--lime-deep); }
.modal textarea { resize: vertical; min-height: 80px; }
.modal .submit {
  width: 100%; margin-top: 1.3rem; background: var(--ink); color: #fff;
  border: none; padding: .95rem; border-radius: 999px; font-weight: 600; font-size: 1rem;
  cursor: pointer; font-family: inherit; transition: transform .15s ease;
}
.modal .submit:hover { transform: translateY(-2px); }
.modal .submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.modal .close {
  position: absolute; top: 1rem; right: 1.1rem; background: none; border: none;
  font-size: 1.5rem; color: var(--ink-soft); cursor: pointer; line-height: 1;
}
.modal .note { font-size: .8rem; color: var(--ink-soft); margin-top: .9rem; text-align: center; }
.modal .status { font-size: .92rem; margin-top: .9rem; text-align: center; min-height: 1.2em; }
.modal .status.ok { color: #2e8b57; }
.modal .status.err { color: #c0392b; }
/* honeypot — visually hidden, off-screen, not display:none (so bots fill it) */
.hp { position: absolute !important; left: -9999px !important; top: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.modal-done { text-align: center; }
.modal-done .big { font-size: 2.6rem; }
