:root {
  --bg: #f3f4f6;
  --bg-2: #e8eaee;
  --surface: #fbfbfc;
  --ink: #1c1c1e;
  --muted: #5c5c66;
  --line: #d9dbe1;
  --accent: #e85a71;
  --accent-ink: #fffafb;
  --accent-deep: #c43d56;
  --blush: #fde8ec;
  --foot: #1a1a1d;
  --foot-text: #ececef;
  --hero: #efe8e4;
  --hero-ink: #1c1c1e;
  --hero-muted: #5c5c66;
  --radius: 16px;
  --radius-sm: 10px;
  --pill: 999px;
  --nav-h: 68px;
  --max: 1280px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 18px 40px rgb(28 28 30 / 0.08);
  --z-nav: 40;
  --z-overlay: 50;
  --z-modal: 60;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #161618;
    --bg-2: #1e1e22;
    --surface: #1c1c20;
    --ink: #f2f2f4;
    --muted: #b4b4be;
    --line: #2e2e34;
    --blush: #3a2228;
    --foot: #101012;
    --foot-text: #ececef;
    --hero: #241c1e;
    --hero-ink: #f4f0f1;
    --hero-muted: #c9b6b9;
    --shadow: 0 18px 40px rgb(0 0 0 / 0.35);
  }
}

[data-theme="dark"] {
  --bg: #161618;
  --bg-2: #1e1e22;
  --surface: #1c1c20;
  --ink: #f2f2f4;
  --muted: #b4b4be;
  --line: #2e2e34;
  --blush: #3a2228;
  --foot: #101012;
  --foot-text: #ececef;
  --hero: #241c1e;
  --hero-ink: #f4f0f1;
  --hero-muted: #c9b6b9;
  --shadow: 0 18px 40px rgb(0 0 0 / 0.35);
}

[data-theme="light"] {
  --bg: #f3f4f6;
  --bg-2: #e8eaee;
  --surface: #fbfbfc;
  --ink: #1c1c1e;
  --muted: #5c5c66;
  --line: #d9dbe1;
  --blush: #fde8ec;
  --foot: #1a1a1d;
  --foot-text: #ececef;
  --hero: #efe8e4;
  --hero-ink: #1c1c1e;
  --hero-muted: #5c5c66;
  --shadow: 0 18px 40px rgb(28 28 30 / 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Satoshi", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.011em;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}
.skip:focus {
  left: 12px;
  z-index: 80;
  background: var(--surface);
  padding: 8px 12px;
  border-radius: 8px;
}

/* Announcement */
.announce {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--foot);
  color: var(--foot-text);
  font-size: 12.5px;
  letter-spacing: 0.04em;
}
.announce a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 22px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-right {
  justify-content: flex-end;
}
.logo {
  font-weight: 900;
  letter-spacing: 0.18em;
  font-size: 15px;
  text-transform: uppercase;
}
.nav a:not(.btn):not(.logo) {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}
.nav a:not(.btn):not(.logo):hover,
.nav a.is-on {
  color: var(--ink);
}
.icon-btn {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--pill);
  color: var(--ink);
}
.icon-btn:hover {
  background: var(--bg-2);
}
.menu-btn {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  border-radius: var(--pill);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease);
}
.btn:active {
  transform: translateY(1px) scale(0.98);
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-primary:hover {
  background: var(--accent-deep);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--surface);
}
.btn-light {
  background: var(--surface);
  color: var(--ink);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: calc(100dvh - var(--nav-h) - 36px);
  background: var(--hero);
  color: var(--hero-ink);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 56px 56px;
  max-width: 560px;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.4vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 900;
  color: var(--hero-ink);
}
.hero p {
  margin-top: 16px;
  font-size: 1.15rem;
  color: var(--hero-muted);
  max-width: 36ch;
}
.hero .btn-ghost {
  color: var(--hero-ink);
  box-shadow: inset 0 0 0 1.5px var(--hero-ink);
}
.hero .btn-ghost:hover {
  background: var(--hero-ink);
  color: var(--hero);
}
.col-hero .hero-media img {
  object-position: center;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.hero-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* Collection hero */
.col-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--hero);
  color: var(--hero-ink);
  min-height: 420px;
}
.col-hero h1 {
  color: var(--hero-ink);
}
.col-hero p {
  color: var(--hero-muted);
}
.col-hero .hero-copy {
  padding: 40px 48px;
}
.col-hero h1 {
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 900;
}

/* Split tiles */
.duo {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
  padding: 12px;
}
.duo a {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #f7f7f8;
}
.duo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease);
}
.duo a:hover img {
  transform: scale(1.04);
}
.duo .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 0.05), rgb(18 18 20 / 0.62));
}
.duo .label {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 1;
}
.duo h2 {
  font-size: 2rem;
  letter-spacing: -0.03em;
}
.duo span {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
}

/* Section heads */
.section {
  padding: 72px 0 40px;
}
.section h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
  font-weight: 900;
}
.section .lead {
  margin-top: 10px;
  color: var(--muted);
  max-width: 52ch;
}

/* Product grid - ZitSticka family */
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 8px;
  flex-wrap: wrap;
}
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  height: 34px;
  padding: 0 14px;
  border-radius: var(--pill);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.chip.is-on,
.chip:hover {
  background: var(--ink);
  color: var(--surface);
  box-shadow: none;
}
.count {
  font-size: 13px;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px 16px;
  padding-bottom: 72px;
}
.card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.card-media {
  background: var(--surface);
  border-radius: var(--radius);
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  position: relative;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.card:hover .card-media img {
  transform: scale(1.045);
}
.card h3 {
  margin-top: 12px;
  font-size: 15px;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.card p {
  margin-top: 4px;
  font-size: 13.5px;
  color: var(--muted);
}
.card .meta {
  margin-top: 6px;
  font-size: 12.5px;
  font-weight: 600;
}

/* How */
.how {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
  padding: 12px 0 72px;
}
.how-media {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  min-height: 360px;
}
.how-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.how-list {
  display: grid;
  gap: 0;
}
.how-item {
  padding: 22px 4px;
  border-top: 1px solid var(--line);
}
.how-item:last-child {
  border-bottom: 1px solid var(--line);
}
.how-item strong {
  display: block;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}
.how-item p {
  margin-top: 6px;
  color: var(--muted);
  max-width: 46ch;
}

/* Wellness rail */
.rail-wrap {
  overflow: auto;
  padding: 20px 0 72px;
  scrollbar-width: thin;
}
.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 240px;
  gap: 14px;
}
.rail .card-media {
  aspect-ratio: 1 / 1.15;
}

/* Compact band */
.band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: var(--blush);
}
.band-media {
  position: relative;
  min-height: 360px;
}
.band-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.band-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px;
}
.band h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
  font-weight: 900;
}
.band p {
  margin-top: 14px;
  color: var(--muted);
  max-width: 40ch;
}
.band .btn {
  margin-top: 24px;
  width: fit-content;
}

/* Footer */
.foot {
  background: var(--foot);
  color: var(--foot-text);
  padding: 56px 0 28px;
  margin-top: 0;
}
.foot a {
  color: #c8c8d0;
}
.foot a:hover {
  color: #fff;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.foot .logo {
  color: #fff;
}
.foot p {
  margin-top: 12px;
  color: #b0b0b8;
  max-width: 36ch;
  font-size: 14px;
}
.foot h3 {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #fff;
}
.foot ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  font-size: 14px;
}
.legal {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgb(255 255 255 / 0.12);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #9a9aa4;
}

/* Product page */
.pdp {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  padding: 36px 0 80px;
  align-items: start;
}
.gallery {
  display: grid;
  gap: 10px;
}
.gallery-main {
  background: var(--surface);
  border-radius: var(--radius);
  aspect-ratio: 1 / 1.02;
  overflow: hidden;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.thumbs button {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: inset 0 0 0 1px var(--line);
  padding: 0;
}
.thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumbs button.is-on {
  box-shadow: inset 0 0 0 2px var(--ink);
}
.pdp-copy h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  font-weight: 900;
}
.pdp-copy .tagline {
  margin-top: 8px;
  color: var(--muted);
  font-size: 1.05rem;
}
.pdp-copy .body {
  margin-top: 18px;
  max-width: 52ch;
}
.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}
.fact {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.fact small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.fact b {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  letter-spacing: -0.02em;
}
.pdp-actions {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.sku-block {
  padding: 0 0 80px;
}
.sku-block h2 {
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.sku-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}
.sku-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--surface);
  border-radius: var(--radius-sm);
}

/* About */
.about-hero {
  padding: 56px 0 12px;
}
.about-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
  font-weight: 900;
  max-width: 16ch;
}
.about-hero p {
  margin-top: 16px;
  max-width: 52ch;
  color: var(--muted);
}
.mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 10px;
  padding: 28px 0 20px;
}
.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--surface);
}
.mosaic img:first-child {
  grid-row: 1 / span 2;
}
.prose {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 24px 0 80px;
}
.prose p {
  color: var(--muted);
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  padding: 48px 0 90px;
}
.contact h1 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
  font-weight: 900;
}
.contact .lede {
  margin-top: 12px;
  color: var(--muted);
  max-width: 40ch;
}
.form {
  display: grid;
  gap: 14px;
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius);
}
.field {
  display: grid;
  gap: 6px;
}
.field label {
  font-size: 13px;
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  height: 46px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--bg);
}
.field input::placeholder,
.field textarea::placeholder {
  color: #6a6a74;
}
.field textarea {
  height: 140px;
  padding: 12px 14px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.form .btn {
  width: fit-content;
  margin-top: 6px;
}
.form-ok {
  display: none;
  padding: 18px;
  background: var(--blush);
  border-radius: 10px;
  font-weight: 600;
}
.form.is-ok .form-ok {
  display: block;
}
.form.is-ok .stack {
  display: none;
}

/* Drawer */
.drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: rgb(18 18 20 / 0.46);
}
.drawer.is-open {
  display: block;
}
.drawer nav {
  width: min(320px, 86vw);
  height: 100%;
  background: var(--surface);
  padding: 24px 20px;
  display: grid;
  align-content: start;
  gap: 16px;
}
.drawer a {
  font-size: 1.15rem;
  font-weight: 700;
}

.empty {
  padding: 40px 0 80px;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .sku-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 860px) {
  .nav {
    grid-template-columns: auto 1fr auto;
  }
  .nav-links {
    display: none;
  }
  .menu-btn {
    display: grid;
  }
  .nav-right .btn {
    display: none;
  }
  .hero,
  .col-hero,
  .duo,
  .how,
  .band,
  .pdp,
  .contact,
  .prose,
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 0;
  }
  .hero-copy,
  .col-hero .hero-copy,
  .band-copy {
    padding: 32px 20px 28px;
  }
  .hero-media,
  .col-hero .hero-media {
    min-height: 320px;
    aspect-ratio: 4 / 3;
  }
  .hero-media img,
  .col-hero .hero-media img {
    position: relative;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 10px;
  }
  .duo a {
    min-height: 260px;
  }
  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px;
  }
  .mosaic img:first-child {
    grid-row: auto;
    grid-column: 1 / -1;
    height: 220px;
  }
  .sku-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .wrap {
    width: min(var(--max), calc(100% - 28px));
  }
}

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

@media (prefers-reduced-transparency: reduce) {
  .nav {
    background: var(--surface);
    backdrop-filter: none;
  }
}
