/* ==========================================================================
   Myšky Výroba — design system
   ========================================================================== */

:root {
  /* warm craft palette */
  --cream: #fbf7f1;
  --cream-2: #f4ece1;
  --paper: #ffffff;
  --clay: #b4644a;
  --clay-dark: #96503a;
  --clay-soft: #e9d2c7;
  --moss: #6a7358;
  --ink: #2e2622;
  --ink-2: #5b4f47;
  --ink-3: #8a7c72;
  --line: #e6dbcd;
  --gold: #c9a227;

  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius-s: 8px;
  --radius: 14px;
  --radius-l: 24px;
  --shadow-s: 0 1px 2px rgba(46, 38, 34, .06), 0 2px 8px rgba(46, 38, 34, .04);
  --shadow: 0 4px 12px rgba(46, 38, 34, .07), 0 12px 32px rgba(46, 38, 34, .07);
  --shadow-l: 0 12px 28px rgba(46, 38, 34, .12), 0 32px 64px rgba(46, 38, 34, .12);

  --wrap: 1200px;
  --gap: clamp(1rem, 2.5vw, 2rem);
  --header-h: 72px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: var(--clay-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
ul[class] { list-style: none; padding: 0; }

:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ---------- typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.015em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.25rem, 1.4rem + 3.9vw, 4rem); }
h2 { font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 1rem + .9vw, 1.6rem); }
p { text-wrap: pretty; }

.lead { font-size: clamp(1.05rem, 1rem + .35vw, 1.25rem); color: var(--ink-2); }
.muted { color: var(--ink-3); }

/* ---------- layout ---------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--paper { background: var(--paper); }
.section--cream2 { background: var(--cream-2); }

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: .85rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: .9rem;
}
.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: currentColor;
}
.center .eyebrow::after {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: currentColor;
}

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--clay);
  --btn-fg: #fff;
  --btn-bd: var(--clay);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .8rem 1.5rem;
  border: 1.5px solid var(--btn-bd);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background-color .18s var(--ease), color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line); }
.btn--ghost:hover { --btn-bd: var(--clay); --btn-fg: var(--clay-dark); }
.btn--dark { --btn-bg: var(--ink); --btn-bd: var(--ink); }
.btn--small { padding: .55rem 1.05rem; font-size: .875rem; }
.btn svg { width: 1.1em; height: 1.1em; flex: none; }

/* ---------- skip link ---------- */
.skip {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  padding: .7rem 1.2rem;
  background: var(--ink);
  color: #fff;
  border-radius: 0 0 var(--radius-s) var(--radius-s);
  text-decoration: none;
  transition: top .2s var(--ease);
}
.skip:focus { top: 0; }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 241, .86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.header.is-stuck { border-bottom-color: var(--line); box-shadow: var(--shadow-s); }
.header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-right: auto;
}
.brand img { width: 40px; height: 40px; object-fit: contain; }
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  position: relative;
  padding: .55rem .8rem;
  border-radius: var(--radius-s);
  color: var(--ink-2);
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .18s var(--ease), background-color .18s var(--ease);
}
.nav a:hover { color: var(--ink); background: rgba(180, 100, 74, .08); }
.nav a[aria-current="page"] { color: var(--clay-dark); font-weight: 600; }

/* dropdown */
.nav__dd { position: relative; }
.nav__dd > button {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .55rem .8rem;
  border: 0;
  border-radius: var(--radius-s);
  background: none;
  color: var(--ink-2);
  font-size: .95rem;
  font-weight: 500;
  transition: color .18s var(--ease), background-color .18s var(--ease);
}
.nav__dd > button:hover { color: var(--ink); background: rgba(180, 100, 74, .08); }
.nav__dd > button svg { width: .7em; height: .7em; transition: transform .2s var(--ease); }
.nav__dd > button[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav__menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  translate: -50% 0;
  min-width: 240px;
  padding: .5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-l);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.nav__dd > button[aria-expanded="true"] + .nav__menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .6rem .8rem;
  border-radius: var(--radius-s);
  color: var(--ink-2);
  font-size: .92rem;
}
.nav__menu a span { font-size: .78rem; color: var(--ink-3); font-variant-numeric: tabular-nums; }

.header__actions { display: flex; align-items: center; gap: .5rem; }
.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink-2);
  text-decoration: none;
  transition: color .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease);
}
.icon-btn:hover { color: var(--clay-dark); border-color: var(--clay-soft); transform: translateY(-2px); }
.icon-btn svg { width: 18px; height: 18px; }

/* hamburger */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  padding: 0;
  place-items: center;
}
.burger span {
  display: block;
  width: 18px;
  height: 1.75px;
  margin: 3px auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(4.75px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4.75px) rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: grid; }
  .header__actions .icon-btn--hide { display: none; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: .15rem;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    padding: 1rem 1.25rem 2rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-l);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a, .nav__dd > button { width: 100%; padding: .8rem .9rem; font-size: 1.02rem; }
  .nav__dd > button { justify-content: space-between; }
  .nav__menu {
    position: static;
    translate: none;
    transform: none;
    min-width: 0;
    margin: .25rem 0 .5rem;
    border-radius: var(--radius-s);
    box-shadow: none;
    background: rgba(255, 255, 255, .6);
    display: none;
  }
  .nav__dd > button[aria-expanded="true"] + .nav__menu { display: block; }
  .nav .btn { margin-top: .75rem; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; overflow: hidden; padding-block: clamp(3rem, 6vw, 5.5rem); }
.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 720px;
  max-height: 720px;
  background: radial-gradient(circle, rgba(233, 210, 199, .55), transparent 68%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.hero__title strong { color: var(--clay); font-weight: 600; }
.hero__text { margin-top: 1.25rem; max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.hero__meta div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.1;
  color: var(--clay);
}
.hero__meta div span { font-size: .85rem; color: var(--ink-3); }

.hero__collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.hero__collage figure {
  overflow: hidden;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
  background: var(--cream-2);
}
.hero__collage img { width: 100%; height: 100%; object-fit: cover; }
.hero__collage figure:nth-child(1) { aspect-ratio: 4/5; }
.hero__collage figure:nth-child(2) { aspect-ratio: 4/5; margin-top: 2.5rem; }
.hero__collage figure:nth-child(3) { aspect-ratio: 4/3; grid-column: span 2; }

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__collage { order: -1; grid-template-columns: repeat(3, 1fr); }
  .hero__collage figure:nth-child(1),
  .hero__collage figure:nth-child(2),
  .hero__collage figure:nth-child(3) { aspect-ratio: 1; grid-column: auto; margin: 0; }
}

/* ---------- trust strip ---------- */
.strip { background: var(--ink); color: #f3ece3; }
.strip__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem 2rem;
  padding-block: 2.25rem;
}
.strip__item { display: flex; gap: .9rem; align-items: flex-start; }
.strip__item svg { width: 22px; height: 22px; flex: none; margin-top: .2rem; color: var(--clay-soft); }
.strip__item strong { display: block; font-size: .98rem; }
.strip__item p { font-size: .875rem; color: #bbaea3; margin-top: .15rem; }

/* ==========================================================================
   Category cards
   ========================================================================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: var(--paper);
  text-decoration: none;
  color: inherit;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--clay-soft); }
.cat-card__img { aspect-ratio: 4/3; overflow: hidden; background: var(--cream-2); }
.cat-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.cat-card:hover .cat-card__img img { transform: scale(1.05); }
.cat-card__body { padding: 1.15rem 1.25rem 1.35rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.cat-card__body h3 { font-size: 1.22rem; }
.cat-card__body p { font-size: .9rem; color: var(--ink-3); }
.cat-card__more {
  margin-top: auto;
  padding-top: .8rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--clay-dark);
}
.cat-card__more svg { width: 1em; height: 1em; transition: transform .2s var(--ease); }
.cat-card:hover .cat-card__more svg { transform: translateX(4px); }
.badge {
  position: absolute;
  top: .85rem;
  right: .85rem;
  padding: .28rem .7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(6px);
  font-size: .75rem;
  font-weight: 600;
  color: var(--ink-2);
  box-shadow: var(--shadow-s);
}

/* ==========================================================================
   Product catalogue
   ========================================================================== */
.toolbar {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  padding-block: .9rem;
  background: rgba(251, 247, 241, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.toolbar__row { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; }
.search {
  position: relative;
  flex: 1 1 260px;
  max-width: 380px;
}
.search svg {
  position: absolute;
  left: .9rem;
  top: 50%;
  translate: 0 -50%;
  width: 17px;
  height: 17px;
  color: var(--ink-3);
  pointer-events: none;
}
.search input {
  width: 100%;
  padding: .7rem 2.4rem .7rem 2.6rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: .95rem;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.search input:focus { border-color: var(--clay); outline: none; box-shadow: 0 0 0 4px rgba(180, 100, 74, .12); }
.search__clear {
  position: absolute;
  right: .5rem;
  top: 50%;
  translate: 0 -50%;
  display: none;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1;
}
.search input:not(:placeholder-shown) ~ .search__clear { display: grid; }

.chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.chip {
  padding: .5rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: .875rem;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  transition: all .18s var(--ease);
}
.chip:hover { border-color: var(--clay-soft); color: var(--clay-dark); }
.chip[aria-pressed="true"], .chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.toolbar__count { margin-left: auto; font-size: .875rem; color: var(--ink-3); }
.select {
  padding: .6rem 2rem .6rem .9rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--paper) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%238a7c72' stroke-width='1.8'%3E%3Cpath d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E") no-repeat right .9rem center/12px;
  font-size: .875rem;
  appearance: none;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
}
.product {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.product:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--clay-soft); }
.product.is-hidden { display: none; }
.product__media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--cream-2);
  aspect-ratio: 1;
  overflow: hidden;
  cursor: zoom-in;
}
.product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product:hover .product__media img { transform: scale(1.04); }
.product__zoom {
  position: absolute;
  right: .6rem;
  bottom: .6rem;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.product__zoom svg { width: 16px; height: 16px; }
.product:hover .product__zoom, .product__media:focus-visible .product__zoom { opacity: 1; transform: translateY(0); }
.product__code {
  position: absolute;
  top: .6rem;
  left: .6rem;
  padding: .2rem .55rem;
  border-radius: 999px;
  background: rgba(46, 38, 34, .78);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  backdrop-filter: blur(4px);
}
.product__body { padding: .85rem 1rem 1rem; display: flex; flex-direction: column; gap: .2rem; flex: 1; }
.product__name { font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; line-height: 1.25; }
.product__variant { font-size: .82rem; color: var(--ink-3); }
.product__price {
  margin-top: auto;
  padding-top: .55rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--clay-dark);
  font-variant-numeric: tabular-nums;
}
.product__price--ask { color: var(--ink-3); font-weight: 500; font-size: .875rem; }

.empty {
  display: none;
  text-align: center;
  padding: 4rem 1rem;
  color: var(--ink-3);
}
.empty.is-visible { display: block; }
.empty svg { width: 40px; height: 40px; margin: 0 auto 1rem; color: var(--clay-soft); }

/* ---------- category section on catalogue ---------- */
.cat-section + .cat-section { margin-top: clamp(2.5rem, 5vw, 4rem); }
.cat-section.is-hidden { display: none; }
.cat-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .5rem 1rem;
  padding-bottom: .9rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.cat-section__head h2 { font-size: clamp(1.4rem, 1.1rem + 1.1vw, 1.9rem); }
.cat-section__head p { font-size: .9rem; color: var(--ink-3); max-width: 60ch; flex-basis: 100%; }

/* ==========================================================================
   Lightbox
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: rgba(24, 19, 16, .94);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), visibility .25s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  color: #f3ece3;
}
.lightbox__counter { font-size: .85rem; color: #b6a89d; font-variant-numeric: tabular-nums; margin-right: auto; }
.lightbox__btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  transition: background-color .18s var(--ease), transform .18s var(--ease);
}
.lightbox__btn:hover { background: rgba(255, 255, 255, .16); transform: scale(1.05); }
.lightbox__btn svg { width: 20px; height: 20px; }
.lightbox__stage {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0 clamp(.75rem, 4vw, 4.5rem);
  min-height: 0;
}
.lightbox__stage img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-s);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .5);
  animation: lb-in .3s var(--ease);
}
@keyframes lb-in { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: none; } }
.lightbox__nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
.lightbox__nav--prev { left: clamp(.25rem, 1.5vw, 1.25rem); }
.lightbox__nav--next { right: clamp(.25rem, 1.5vw, 1.25rem); }
.lightbox__info {
  padding: 1.1rem 1.5rem 1.75rem;
  text-align: center;
  color: #f3ece3;
}
.lightbox__info h3 { font-size: 1.2rem; }
.lightbox__info p { font-size: .9rem; color: #b6a89d; margin-top: .2rem; }
.lightbox__info .lightbox__price { color: var(--clay-soft); font-weight: 600; margin-top: .4rem; }

/* ==========================================================================
   Steps / how to order
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  counter-reset: step;
}
.step { position: relative; padding-top: 3.25rem; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--clay);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}
.step h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.step p { font-size: .92rem; color: var(--ink-2); }

/* ==========================================================================
   About
   ========================================================================== */
.about {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.about__img { border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.about__img img { width: 100%; height: 100%; object-fit: cover; }
.about p + p { margin-top: 1rem; }
.about__sign {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--clay);
}
@media (max-width: 820px) { .about { grid-template-columns: 1fr; } }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 860px) { .contact { grid-template-columns: 1fr; } }

.contact-list { display: grid; gap: .35rem; margin-top: 1.75rem; }
.contact-list a, .contact-list div {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .8rem .95rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
  font-size: .95rem;
  transition: background-color .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease);
}
.contact-list a:hover { background: var(--paper); border-color: var(--line); transform: translateX(3px); }
.contact-list svg { width: 20px; height: 20px; color: var(--clay); flex: none; }
.contact-list small { display: block; font-size: .78rem; color: var(--ink-3); }

.form-card {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-s);
}
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  margin-bottom: .35rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-2);
}
.field .req { color: var(--clay); }
.field input, .field textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--cream);
  font-size: .95rem;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none;
  background: var(--paper);
  border-color: var(--clay);
  box-shadow: 0 0 0 4px rgba(180, 100, 74, .12);
}
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .8rem; color: var(--ink-3); margin-top: .9rem; }
.form-status {
  display: none;
  margin-bottom: 1rem;
  padding: .85rem 1rem;
  border-radius: var(--radius-s);
  font-size: .9rem;
}
.form-status.is-ok { display: block; background: #e8f2e4; color: #3c5a32; border: 1px solid #c6dfbd; }
.form-status.is-err { display: block; background: #fbe9e4; color: #8b3a22; border: 1px solid #f0cbbf; }
.btn.is-loading { opacity: .65; pointer-events: none; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--ink); color: #cdbfb4; padding-block: clamp(3rem, 5vw, 4.5rem) 2rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
.footer__brand p { font-size: .9rem; margin-top: .9rem; max-width: 38ch; }
.footer .brand { color: #fff; }
.footer .brand small { color: #9d8d81; }
.footer h4 { font-family: var(--font-body); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.footer ul { display: grid; gap: .55rem; }
.footer a { color: #cdbfb4; text-decoration: none; font-size: .9rem; transition: color .18s var(--ease); }
.footer a:hover { color: #fff; }
.footer__socials { display: flex; gap: .6rem; margin-top: 1.25rem; }
.footer__socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  transition: background-color .18s var(--ease), transform .18s var(--ease);
}
.footer__socials a:hover { background: rgba(255, 255, 255, .12); transform: translateY(-2px); }
.footer__socials svg { width: 18px; height: 18px; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  align-items: center;
  padding-top: 1.5rem;
  font-size: .82rem;
  color: #9d8d81;
}
.footer__bottom p:last-child { margin-left: auto; }

/* ---------- back to top ---------- */
.to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { color: var(--clay-dark); }
.to-top svg { width: 18px; height: 18px; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- page hero (subpages) ---------- */
.page-hero { padding-block: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.5rem); }
.crumbs { display: flex; flex-wrap: wrap; gap: .4rem; font-size: .82rem; color: var(--ink-3); margin-bottom: 1rem; }
.crumbs a { color: var(--ink-3); text-decoration: none; }
.crumbs a:hover { color: var(--clay-dark); text-decoration: underline; }
.page-hero p { margin-top: .9rem; max-width: 65ch; }

/* ---------- 404 ---------- */
.err { text-align: center; padding-block: clamp(4rem, 12vw, 9rem); }
.err__code { font-family: var(--font-display); font-size: clamp(4rem, 14vw, 9rem); line-height: 1; color: var(--clay-soft); }

/* ---------- print ---------- */
@media print {
  .header, .footer, .to-top, .toolbar, .lightbox, .hero__cta { display: none !important; }
  body { background: #fff; }
  .product { break-inside: avoid; border-color: #ccc; }
}
