/* =========================================================
   De Zonneboer — logo-driven palette
   Forest green · sun gold · warm cream · deep ink
   ========================================================= */
:root {
  --forest: #1e3d28;
  --forest-mid: #2f5c3a;
  --forest-soft: #4a7a4e;
  --leaf: #6b9a4a;
  --gold: #e0b24a;
  --gold-deep: #c4922a;
  --gold-soft: rgba(224, 178, 74, 0.18);
  --cream: #f6f1e4;
  --cream-deep: #ebe4d2;
  --ink: #0e1812;
  --ink-soft: #3d4a40;
  --muted: #6a756c;
  --white: #ffffff;
  --line: rgba(30, 61, 40, 0.12);
  --line-gold: rgba(224, 178, 74, 0.45);
  --header-h: 80px;
  --max: 1180px;
  --radius: 4px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 60px rgba(14, 24, 18, 0.14);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--forest);
  color: #fff;
  padding: 8px 12px;
  z-index: 300;
}
.skip:focus { left: 8px; top: 8px; }

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

/* —— Brand lockup (real transparent logo, no green frame) —— */
.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  position: relative;
  z-index: 2;
  line-height: 0;
}
.brand__logo {
  display: block;
  width: auto;
  height: 52px;
  max-width: min(168px, 38vw);
  object-fit: contain;
  object-position: left center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.25));
  transition: filter 0.3s, transform 0.3s var(--ease);
}
.brand:hover .brand__logo {
  transform: scale(1.03);
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.3));
}
.header.is-scrolled .brand__logo {
  filter: drop-shadow(0 2px 8px rgba(14, 24, 18, 0.12));
}
.brand__logo--footer {
  height: 56px;
  max-width: 180px;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.4));
}

/* —— Header / Navbar —— */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 14px 0 0;
  background: transparent;
  transition: padding 0.35s var(--ease);
}
.header.is-scrolled { padding-top: 10px; }

.header__bar {
  height: 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 0 14px 0 12px;
  border-radius: 999px;
  background: rgba(14, 24, 18, 0.55);
  border: 1px solid rgba(224, 178, 74, 0.28);
  box-shadow:
    0 12px 40px rgba(14, 24, 18, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  transition:
    background 0.35s var(--ease),
    border-color 0.35s,
    box-shadow 0.35s,
    height 0.35s;
}
.header.is-scrolled .header__bar {
  height: 64px;
  background: rgba(246, 241, 228, 0.94);
  border-color: rgba(30, 61, 40, 0.12);
  box-shadow:
    0 14px 40px rgba(14, 24, 18, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.header__center {
  display: flex;
  justify-content: center;
  min-width: 0;
}
.header__end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(224, 178, 74, 0.14);
  transition: background 0.3s, border-color 0.3s;
}
.header.is-scrolled .nav {
  background: rgba(30, 61, 40, 0.05);
  border-color: rgba(30, 61, 40, 0.08);
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 550;
  letter-spacing: 0.02em;
  color: rgba(246, 241, 228, 0.88);
  border-radius: 999px;
  transition: color 0.25s, background 0.25s, transform 0.2s;
  white-space: nowrap;
}
.header.is-scrolled .nav a { color: var(--ink-soft); }

.nav a span {
  position: relative;
  z-index: 1;
}

/* Gold underline grow */
.nav a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 7px;
  height: 1.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease);
  opacity: 0.9;
}
.nav a:not(.nav__cta):hover {
  color: var(--gold);
  background: rgba(224, 178, 74, 0.1);
}
.header.is-scrolled .nav a:not(.nav__cta):hover {
  color: var(--forest);
  background: rgba(30, 61, 40, 0.07);
}
.nav a:not(.nav__cta):hover::after { transform: scaleX(1); }

.nav__cta {
  margin-left: 4px !important;
  padding: 10px 18px !important;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%) !important;
  color: var(--ink) !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  box-shadow:
    0 6px 18px rgba(196, 146, 42, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.nav__cta:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  color: var(--ink) !important;
}
.nav__cta::after { display: none !important; }

.header__mail {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  border: 1px solid rgba(224, 178, 74, 0.35);
  background: rgba(224, 178, 74, 0.08);
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}
.header__mail:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.header.is-scrolled .header__mail {
  color: var(--forest);
  border-color: rgba(30, 61, 40, 0.15);
  background: rgba(30, 61, 40, 0.05);
}
.header.is-scrolled .header__mail:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(224, 178, 74, 0.35);
  border-radius: 50%;
  background: rgba(224, 178, 74, 0.08);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}
.burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.25s var(--ease), opacity 0.2s, background 0.25s;
}
.header.is-scrolled .burger {
  border-color: rgba(30, 61, 40, 0.15);
  background: rgba(30, 61, 40, 0.05);
}
.header.is-scrolled .burger span { background: var(--forest); }
.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu backdrop — only used ≤960px */
.header__backdrop {
  display: none;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(94vh, 880px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 40px) 0 72px;
  color: var(--cream);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.02);
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(14, 24, 18, 0.88) 0%, rgba(30, 61, 40, 0.72) 42%, rgba(14, 24, 18, 0.35) 100%),
    linear-gradient(0deg, rgba(14, 24, 18, 0.7) 0%, transparent 42%);
}
.hero__frame {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow--dark { color: var(--gold-deep); }

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.75rem, 6.5vw, 4.4rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 14px 0 18px;
  color: #fff;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.hero__lead {
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(246, 241, 228, 0.88);
  max-width: 34em;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.2s, filter 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(196, 146, 42, 0.35);
}
.btn--gold:hover { filter: brightness(1.06); }
.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(224, 178, 74, 0.55);
}
.btn--outline:hover {
  border-color: var(--gold);
  background: rgba(224, 178, 74, 0.1);
}
.btn--forest {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 10px 28px rgba(30, 61, 40, 0.28);
}
.btn--forest:hover { background: var(--forest-mid); }
.btn--full { width: 100%; }

/* —— Trust strip —— */
.strip {
  background: var(--forest);
  color: var(--cream);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(224, 178, 74, 0.2);
}
.strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 22px 0;
}
.strip__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  font-size: 0.92rem;
  font-weight: 500;
}
.strip__item strong {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.strip__item span { color: rgba(246, 241, 228, 0.88); }

/* —— Sections —— */
.section { padding: 100px 0; }
.section--forest {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(224, 178, 74, 0.12), transparent 50%),
    linear-gradient(180deg, var(--forest) 0%, #162e1f 100%);
  color: var(--cream);
}
.section--cream { background: var(--cream-deep); }
.section__head { max-width: 38rem; margin-bottom: 48px; }
.section__head--light .lede { color: rgba(246, 241, 228, 0.78); }
.section__head h2,
.about__copy h2,
.contact__copy h2,
.cta h2 {
  font-family: var(--display);
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 12px 0 14px;
}
.lede {
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 36em;
}

/* Wish grid */
.wish-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.wish {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--forest);
  box-shadow: var(--shadow);
}
.wish img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.wish__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 18px;
  background:
    linear-gradient(0deg, rgba(14, 24, 18, 0.88) 0%, rgba(14, 24, 18, 0.15) 55%, transparent 100%);
  border: 1px solid transparent;
  transition: border-color 0.25s;
}
.wish__num {
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.wish__title {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
}
.wish:hover img { transform: scale(1.06); }
.wish:hover .wish__overlay { border-color: rgba(224, 178, 74, 0.35); }

/* Products */
.products { display: grid; gap: 28px; }
.product {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(224, 178, 74, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(6px);
}
.product--flip { direction: rtl; }
.product--flip > * { direction: ltr; }
.product__media {
  display: block;
  min-height: 320px;
  background: #1a2e20;
}
.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  transition: transform 0.7s var(--ease);
}
.product:hover .product__media img { transform: scale(1.04); }
.product__body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.product__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.product__body h3 {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.product__body h3 a {
  color: inherit;
  transition: color 0.2s;
}
.product__body h3 a:hover { color: var(--gold); }
.product__body p {
  color: rgba(246, 241, 228, 0.78);
  font-weight: 300;
  line-height: 1.65;
  font-size: 1.02rem;
}
.link-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.link-gold:hover { color: #f0c96a; }
.link-gold span { transition: transform 0.2s; }
.link-gold:hover span { transform: translateX(4px); }

/* About */
.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 720px;
}
.about--solo { margin-inline: 0; }
.about--centered {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}
.about--centered .about__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about--centered .lede {
  margin-inline: auto;
}
.about--centered .ticks {
  text-align: left;
  max-width: 28rem;
  margin-inline: auto;
}
.section__head--center {
  text-align: center;
  margin-inline: auto;
}
.section__head--center .lede {
  margin-inline: auto;
}

/* Process / werkwijze */
.section--process {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  counter-reset: none;
  margin-top: 8px;
}
.process__step {
  position: relative;
  padding: 22px 18px;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  min-height: 100%;
}
.process__num {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.process__step h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
}
.process__step p {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* Honeypot + form extras */
.hp {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.field--check {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.field--check input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--forest);
}
.field--check span {
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-soft);
}
.form__note {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  margin-top: 4px;
}
.form__note a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form__error {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: #fdecea;
  color: #8a1f11;
  font-size: 0.9rem;
  border: 1px solid #f5c2c0;
}

@media (max-width: 1024px) {
  .process { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .process { grid-template-columns: 1fr; }
}
.ticks {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.ticks li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
}
.ticks li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.4em;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  box-shadow: 0 0 0 4px var(--gold-soft);
  flex-shrink: 0;
}

/* CTA */
.cta {
  background:
    linear-gradient(120deg, var(--forest) 0%, #243f2d 50%, var(--forest-mid) 100%);
  color: var(--cream);
  padding: 72px 0;
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(224, 178, 74, 0.2);
}
.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.cta p:not(.eyebrow) {
  color: rgba(246, 241, 228, 0.8);
  font-weight: 300;
  margin-top: 4px;
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.contact__meta {
  margin-top: 28px;
  display: grid;
  gap: 8px;
}
.contact__meta a {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--forest);
}
.contact__meta a:hover { color: var(--gold-deep); }
.contact__meta span { color: var(--muted); font-size: 0.95rem; }

.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}
.field { display: grid; gap: 7px; }
.field span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.field em { font-style: normal; font-weight: 400; text-transform: none; letter-spacing: 0; }
.field input,
.field textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px var(--gold-soft);
}

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(246, 241, 228, 0.7);
  padding: 36px 0;
  border-top: 1px solid rgba(224, 178, 74, 0.2);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 0.9rem; }

/* —— Responsive —— */
@media (max-width: 1024px) {
  .wish-grid { grid-template-columns: repeat(2, 1fr); }
  .product,
  .product--flip,
  .contact {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .strip__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  /* Logo left + burger right — both stay inside the pill bar */
  .header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 110;
  }
  .header__center {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    z-index: 120;
    min-width: 0;
    pointer-events: none; /* don't block taps when menu is closed */
  }
  .header.is-menu-open .header__center {
    pointer-events: auto;
  }
  .header__end {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
  }
  .brand {
    flex-shrink: 0;
  }
  .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
    padding: 12px;
    border-radius: 20px;
    background: rgba(14, 24, 18, 0.96);
    border: 1px solid rgba(224, 178, 74, 0.28);
    box-shadow: 0 20px 50px rgba(14, 24, 18, 0.4);
    transform: translateY(-6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.28s var(--ease),
      opacity 0.22s ease,
      visibility 0.22s;
  }
  .header.is-scrolled .nav {
    background: rgba(246, 241, 228, 0.98);
    border-color: rgba(30, 61, 40, 0.12);
    box-shadow: 0 18px 44px rgba(14, 24, 18, 0.16);
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav a {
    justify-content: flex-start;
    padding: 14px 16px;
    border-radius: 12px;
    color: rgba(246, 241, 228, 0.92);
    min-height: 48px;
  }
  .header.is-scrolled .nav a {
    color: var(--ink-soft);
  }
  .nav a:not(.nav__cta)::after { display: none; }
  .nav a:not(.nav__cta):active {
    background: rgba(224, 178, 74, 0.12);
  }
  .header.is-scrolled .nav a:not(.nav__cta):active {
    background: rgba(30, 61, 40, 0.08);
  }
  .nav__cta {
    margin-left: 0 !important;
    margin-top: 4px;
    text-align: center;
    justify-content: center;
  }
  .burger {
    display: flex;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
  }
  .header__mail { display: none; }

  /* Dim page behind open menu */
  .header__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 90;
    margin: 0;
    padding: 0;
    background: rgba(14, 24, 18, 0.4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    border: 0;
    transition: opacity 0.25s ease, visibility 0.25s;
  }
  .header.is-menu-open .header__backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  body.is-nav-open {
    overflow: hidden;
    touch-action: none;
  }
}

@media (max-width: 768px) {
  :root { --header-h: 84px; }
  .wrap { width: min(100% - 32px, var(--max)); }
  .header { padding-top: 10px; }
  .header__bar {
    height: 60px;
    padding: 0 8px 0 10px;
  }
  .brand__logo { height: 44px; max-width: 132px; }
  .burger {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 82vh;
    padding-bottom: 48px;
  }
  .section { padding: 72px 0; }
  .product__body { padding: 28px 22px; }
  .strip__inner { grid-template-columns: 1fr; padding: 12px 0; }
  .form { padding: 22px 18px; }

  .page-hero { min-height: 58vh; padding-bottom: 40px; }
  .page-hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .product-detail { gap: 28px; }
  .type-grid { grid-template-columns: 1fr; }
  .funnel-steps { grid-template-columns: 1fr; }
  .proza__grid { grid-template-columns: 1fr; }
  .hub-card { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__nav { gap: 12px 16px; }
  .type-chips { gap: 6px; }
}

/* =========================================================
   Landing pages — category & type funnel
   ========================================================= */
.page-landing .header { /* same fixed header */ }

.page-hero {
  position: relative;
  min-height: min(68vh, 620px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 28px) 0 56px;
  color: var(--cream);
  overflow: hidden;
}
.page-hero--short { min-height: min(48vh, 420px); }
.page-hero--product { min-height: min(62vh, 560px); }
.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(14, 24, 18, 0.9) 0%, rgba(30, 61, 40, 0.75) 48%, rgba(14, 24, 18, 0.4) 100%),
    linear-gradient(0deg, rgba(14, 24, 18, 0.72) 0%, transparent 50%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.page-hero__lead {
  font-size: 1.06rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(246, 241, 228, 0.88);
  max-width: 36em;
  margin-bottom: 8px;
}

.crumbs {
  margin-bottom: 18px;
}
.crumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
  font-size: 0.82rem;
  color: rgba(246, 241, 228, 0.65);
}
.crumbs li:not(:last-child)::after {
  content: "/";
  margin: 0 8px;
  opacity: 0.5;
}
.crumbs a {
  color: rgba(246, 241, 228, 0.85);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.crumbs a:hover { color: var(--gold); }
.crumbs li[aria-current="page"] { color: var(--gold); }

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--ink);
}

/* Funnel steps */
.funnel-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.funnel-step {
  padding: 20px 18px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
}
.funnel-step span {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--gold-deep);
  font-weight: 600;
}
.funnel-step strong {
  display: block;
  margin: 6px 0 6px;
  font-size: 1rem;
  color: var(--ink);
}
.funnel-step p {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.5;
}
.funnel-steps--light .funnel-step {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(224, 178, 74, 0.22);
  color: var(--cream);
}
.funnel-steps--light .funnel-step strong { color: #fff; }
.funnel-steps--light .funnel-step p { color: rgba(246, 241, 228, 0.75); }
.funnel-steps--light .funnel-step span { color: var(--gold); }

/* Type cards */
.type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.type-grid--3 { grid-template-columns: repeat(3, 1fr); }
.type-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(14, 24, 18, 0.08);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  color: inherit;
}
.type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(14, 24, 18, 0.14);
}
.type-card__media {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--forest);
  overflow: hidden;
}
.type-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.type-card:hover .type-card__media img { transform: scale(1.05); }
.type-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
}
.type-card__body {
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.type-card__body h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.type-card__body > p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.5;
}
.type-card__list {
  list-style: none;
  margin: 6px 0 8px;
  display: grid;
  gap: 4px;
  font-size: 0.88rem;
  color: var(--muted);
}
.type-card__list li {
  padding-left: 14px;
  position: relative;
}
.type-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.type-card .link-gold { margin-top: auto; }

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 40px;
  align-items: start;
}
.product-detail__aside {
  display: grid;
  gap: 16px;
  position: sticky;
  top: calc(var(--header-h) + 12px);
}
.spec-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
}
.spec-card--soft {
  background: var(--cream-deep);
  box-shadow: none;
}
.spec-card h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 14px;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.spec-table th,
.spec-table td {
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.spec-table th {
  width: 38%;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.spec-table td { color: var(--ink); font-weight: 500; }
.ticks--compact { margin-top: 0; gap: 10px; }
.ticks--compact li { font-size: 0.95rem; }

.proza__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 40px;
  align-items: start;
}
.proza__copy p {
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* FAQ */
.faq-list { display: grid; gap: 10px; max-width: 800px; }
.faq {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 18px;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 600;
  color: var(--forest);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--gold-deep);
  flex-shrink: 0;
}
.faq[open] summary::after { content: "–"; }
.faq p {
  padding: 0 0 16px;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.65;
}

/* Hub */
.hub-list { display: grid; gap: 28px; }
.hub-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(14, 24, 18, 0.08);
}
.hub-card__media {
  display: block;
  min-height: 240px;
  background: var(--forest);
}
.hub-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
}
.hub-card__body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.hub-card__body h2 {
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--forest);
}
.hub-card__body h2 a:hover { color: var(--gold-deep); }
.hub-card__body > p {
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.6;
}
.hub-card__types {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}
.hub-card__types a {
  color: var(--forest);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hub-card__types a:hover { color: var(--gold-deep); }

/* Homepage type chips under products */
.type-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.type-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(246, 241, 228, 0.9);
  border: 1px solid rgba(224, 178, 74, 0.35);
  background: rgba(224, 178, 74, 0.08);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.type-chip:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 0.88rem;
}
.footer__nav a {
  color: rgba(246, 241, 228, 0.7);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--gold); }

@media (max-width: 1024px) {
  .type-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .product-detail {
    grid-template-columns: 1fr;
  }
  .product-detail__aside { position: static; }
  .proza__grid { grid-template-columns: 1fr; }
  .hub-card { grid-template-columns: 1fr; }
  .funnel-steps { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .type-grid,
  .type-grid--3 { grid-template-columns: 1fr; }
}

/* =========================================================
   Carousel / slideshow
   ========================================================= */
.gallery-stage {
  max-width: 960px;
}
.gallery-stage--product {
  max-width: 1000px;
  margin-inline: auto;
}

.carousel {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: var(--forest);
  box-shadow: var(--shadow);
  border: 1px solid rgba(224, 178, 74, 0.22);
  aspect-ratio: 16 / 10;
  user-select: none;
}
.carousel__track {
  position: absolute;
  inset: 0;
}
.carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s var(--ease), visibility 0.55s;
}
.carousel__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.carousel__btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(224, 178, 74, 0.45);
  border-radius: 50%;
  background: rgba(14, 24, 18, 0.55);
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.2s;
}
.carousel__btn:hover {
  background: rgba(224, 178, 74, 0.9);
  color: var(--ink);
}
.carousel__btn--prev { left: 14px; }
.carousel__btn--next { right: 14px; }
.carousel__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.carousel__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(246, 241, 228, 0.4);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
.carousel__dot.is-active {
  background: var(--gold);
  transform: scale(1.25);
}
.carousel__count {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(14, 24, 18, 0.55);
  color: var(--cream);
  backdrop-filter: blur(8px);
}

/* Type card thumbs */
.type-card__thumbs {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.type-card__thumb {
  flex: 1;
  height: 42px;
  border-radius: 3px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.type-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hub mini type grid with photos */
.hub-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
  margin: 8px 0 12px;
}
.hub-mini {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  transition: transform 0.2s, border-color 0.2s;
  color: inherit;
}
.hub-mini:hover {
  transform: translateY(-2px);
  border-color: rgba(224, 178, 74, 0.55);
}
.hub-mini img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--forest);
}
.hub-mini span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0 8px 8px;
  line-height: 1.25;
  color: var(--forest);
}

/* Homepage visual type strip */
.type-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(148px, 180px);
  gap: 12px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  margin-top: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.type-strip::-webkit-scrollbar { height: 6px; }
.type-strip::-webkit-scrollbar-thumb {
  background: rgba(224, 178, 74, 0.55);
  border-radius: 99px;
}
.type-tile {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(14, 24, 18, 0.35);
  border: 1px solid rgba(224, 178, 74, 0.28);
  color: var(--cream);
  transition: transform 0.2s, border-color 0.2s;
  min-height: 100%;
}
.type-tile:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.type-tile__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #162e1f;
}
.type-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.type-tile:hover .type-tile__media img { transform: scale(1.06); }
.type-tile__body {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.type-tile__body strong {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.25;
}
.type-tile__body span {
  font-size: 0.72rem;
  color: rgba(246, 241, 228, 0.65);
  font-weight: 400;
}

@media (max-width: 768px) {
  .carousel { aspect-ratio: 5/4; }
  .carousel__btn {
    width: 38px;
    height: 38px;
    font-size: 1.35rem;
  }
  .type-card__thumbs { display: none; }
}

/* deploy 20260804b */
