:root {
  --bg: #2b1e16;
  --bg-soft: #211710;
  --gold: #c39b5e;
  --text: #f2e6d5;
  --muted: #ccb89c;
  --line: rgba(195, 155, 94, 0.25);
  --line-strong: rgba(195, 155, 94, 0.42);
  /* Contentkolom: breder dan voorheen, nog steeds geen full-bleed */
  --site-max: 66rem;
  --gutter: 1rem;
  --hdr-pad-y: 0.52rem;
  --hdr-inner-min-h: 2.35rem;
  /* Ruimte tussen viewport-top en header (“zwevende” balk) */
  --site-header-float: 0.55rem;
  --site-header-stack: calc(
    env(safe-area-inset-top, 0px) + var(--site-header-float) + (var(--hdr-pad-y) * 2) + var(--hdr-inner-min-h)
  );
}

* {
  box-sizing: border-box;
}

html {
  background-color: var(--bg);
}

html,
body {
  margin: 0;
  padding: 0;
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  /* Transparant: vaste .ambient-bg ligt erachter (geen effen bruin over de foto) */
  background-color: transparent;
}

/*
 * Verticale master 3840×7000 (proceduraal, VitaGrain-achtige toon) + GSAP scrub op background-position.
 */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-color: #0a0807;
  background-image: url("assets/granumvivo-ambient-vitagrain-tone-3840x7000.jpg");
  background-repeat: no-repeat;
  background-position: 50% 0%;
  background-size: cover;
  transform: translateZ(0);
  backface-visibility: hidden;
}

h1,
h2 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.8vw, 3rem);
}

p,
li {
  color: var(--muted);
  line-height: 1.7;
}

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

img {
  width: 100%;
  display: block;
  object-fit: cover;
  image-rendering: auto;
  backface-visibility: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 100;
  padding: 0.55rem 0.9rem;
  background: var(--gold);
  color: #1b130d;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--text);
  outline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.menu-toggle:focus-visible {
  outline-offset: 4px;
}

/* Zwevende balk: ruimte boven safe-area, licht donker transparant + blur; gouden lijnen met zij-fade */
.site-header {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + var(--site-header-float));
  left: 0;
  right: 0;
  z-index: 60;
  padding-top: var(--hdr-pad-y);
  padding-bottom: var(--hdr-pad-y);
  border: 0;
  /* Hooguit ~5% dekking — vrijwel alleen blur leest de balk af */
  background: linear-gradient(
    180deg,
    rgba(18, 14, 12, 0.04) 0%,
    rgba(14, 11, 9, 0.05) 55%,
    rgba(12, 9, 8, 0.05) 100%
  );
  backdrop-filter: blur(18px) saturate(1.04);
  -webkit-backdrop-filter: blur(18px) saturate(1.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(195, 155, 94, 0.12) 12%,
    rgba(195, 155, 94, 0.5) 28%,
    rgba(195, 155, 94, 0.58) 50%,
    rgba(195, 155, 94, 0.5) 72%,
    rgba(195, 155, 94, 0.12) 88%,
    transparent 100%
  );
}

.site-header::before {
  top: 0;
}

.site-header::after {
  bottom: 0;
}

.site-header__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.65rem 0.85rem;
  min-height: var(--hdr-inner-min-h);
}

.layout-max {
  width: 100%;
  max-width: var(--site-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  margin: 0 auto;
  background: rgba(242, 230, 213, 0.85);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-left {
  grid-column: 1;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.header-mark {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.92;
}

.nav-main {
  display: none;
  align-items: center;
  gap: 1.05rem;
  font-size: 0.82rem;
  font-weight: 500;
}

.nav-main > a {
  opacity: 0.92;
  white-space: nowrap;
}

.nav-main > a:hover {
  color: var(--gold);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > summary {
  list-style: none;
  cursor: pointer;
  opacity: 0.92;
  font-weight: 500;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.32rem;
  white-space: nowrap;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 0.32rem;
  height: 0.32rem;
  margin: 0;
  border-right: 1px solid var(--muted);
  border-bottom: 1px solid var(--muted);
  transform: rotate(45deg) translateY(-0.06em);
  opacity: 0.75;
}

.nav-dropdown[open] > summary {
  color: var(--gold);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  min-width: 11.5rem;
  padding: 0.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  background: rgba(18, 12, 9, 0.96);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.dropdown-panel a {
  padding: 0.45rem 0.55rem;
  border-radius: 6px;
  font-size: 0.86rem;
  color: var(--muted);
}

.dropdown-panel a:hover {
  color: var(--gold);
  background: rgba(195, 155, 94, 0.08);
}

.header-logo {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
}

.header-logo img {
  height: clamp(22px, 2.65vw, 32px);
  width: auto;
  max-width: min(58vw, 200px);
  object-fit: contain;
}

.header-right {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  min-height: 2.35rem;
  padding: 0.28rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  opacity: 0.9;
}

.btn-contact {
  padding: 0.45rem 0.88rem;
  min-height: 2.35rem;
  font-size: 0.82rem;
  border-radius: 999px;
}

.nav-drawer {
  position: fixed;
  top: var(--site-header-stack);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 59;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem var(--gutter) 1.5rem;
  max-width: none;
  width: 100%;
  background: #100c09;
  border-bottom: 1px solid var(--line);
  overflow-y: auto;
}

/* Author `display:flex` wins over the native `[hidden]` rule — keep drawer off-screen until open */
.nav-drawer[hidden] {
  display: none !important;
}

.nav-drawer:not([hidden]) {
  display: flex;
}

.nav-drawer a {
  padding: 0.85rem 0.35rem;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(195, 155, 94, 0.12);
  color: var(--text);
}

.nav-drawer a:last-child {
  border-bottom: 0;
}

body.nav-open {
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #d8b17b, #b38849);
  color: #1b130d;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  padding: 0.52rem 0.95rem;
  font-size: 0.9rem;
}

.panel {
  min-height: 100vh;
  padding: calc(var(--site-header-stack) + 0.85rem) var(--gutter) 2.5rem;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.inner {
  max-width: var(--site-max);
  margin: 0 auto;
  width: 100%;
}

.prose {
  max-width: 52ch;
  margin: 0 auto;
}

.text-flow .prose {
  text-align: left;
}

.text-flow .eyebrow {
  text-align: left;
}

.text-flow .prose a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.text-flow .prose a:hover {
  color: var(--text);
}

.spotlight {
  text-align: center;
}

.spotlight-inner {
  max-width: 44rem;
  margin: 0 auto;
}

.spotlight-symbol {
  margin: 0 0 0.75rem;
}

.spotlight-symbol img {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  object-fit: contain;
}

.spotlight .eyebrow {
  text-align: center;
}

.spotlight h2 {
  text-align: center;
}

.spotlight-lead {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--muted);
  line-height: 1.75;
}

.spotlight-lead strong {
  color: rgba(242, 230, 213, 0.92);
  font-weight: 600;
}

.ingredient-list {
  margin: 1rem 0 0.5rem;
}

.ingredient-list li {
  margin-bottom: 0.35rem;
}

.ingredient-note {
  margin: 1.5rem 0 0;
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(204, 184, 156, 0.85);
  text-align: center;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

.panel-ingredients {
  overflow: visible;
}

.ingredients-stage {
  position: relative;
  width: 100%;
}

.ingredients-stage__surface {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: min(100vh, 56rem);
  padding-block: 0.5rem;
  will-change: transform;
}

.ingredients-stage__surface.ingredients-is-entering .ingredient-card__frame {
  animation: none;
}

.panel-ingredients .ingredients-inner {
  text-align: center;
}

.ingredients-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.ingredients-rule {
  flex: 1;
  max-width: 6rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.65;
}

.ingredients-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.ingredients-lead {
  margin: 0 auto 0.25rem;
  max-width: 48ch;
  color: var(--muted);
  line-height: 1.65;
  font-size: clamp(0.92rem, 2vw, 1.02rem);
}

@keyframes ingredient-bob {
  0%,
  100% {
    transform: translateY(0) rotate(-0.6deg);
  }
  50% {
    transform: translateY(-7px) rotate(0.6deg);
  }
}

.ingredients-grid {
  display: grid;
  gap: 0.85rem 0.65rem;
  margin-top: 1.75rem;
  align-items: end;
  justify-items: center;
}

.ingredients-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.ingredient-card {
  position: relative;
  width: 100%;
  max-width: 10.5rem;
  margin: 0 auto;
  padding: 0.35rem 0.15rem 0.5rem;
  border-radius: 12px;
  outline: none;
  cursor: default;
}

.ingredient-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.ingredient-card__frame {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 4.5rem;
  animation: ingredient-bob 4.2s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.38s);
}

@media (prefers-reduced-motion: reduce) {
  .ingredient-card__frame {
    animation: none;
  }
}

.ingredient-card__frame img {
  width: 100%;
  max-width: 8.75rem;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  image-rendering: auto;
}

.ingredient-card__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(242, 230, 213, 0.88);
}

.ingredient-card__detail {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.35rem);
  transform: translateX(-50%) translateY(6px);
  width: min(16rem, 72vw);
  padding: 0.65rem 0.75rem;
  text-align: left;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted);
  background: #16100d;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s;
  z-index: 8;
}

.ingredient-card__detail p {
  margin: 0;
  color: rgba(242, 230, 213, 0.9);
}

.ingredient-card__detail strong {
  color: var(--gold);
}

.ingredient-card:hover .ingredient-card__detail,
.ingredient-card:focus-within .ingredient-card__detail {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 720px) {
  .ingredient-card__detail {
    left: 50%;
    right: auto;
    bottom: auto;
    top: calc(100% + 0.35rem);
    transform: translateX(-50%) translateY(-4px);
  }

  .ingredient-card:hover .ingredient-card__detail,
  .ingredient-card:focus-within .ingredient-card__detail {
    transform: translateX(-50%) translateY(0);
  }
}

@media (max-width: 720px) {
  .ingredients-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 24rem;
  }
}

@media (max-width: 380px) {
  .ingredients-grid--six {
    grid-template-columns: 1fr;
    max-width: 15rem;
  }
}

.panel.hero {
  padding: 0;
  min-height: unset;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
}

/* Eerste scherm: hero + “Wat is” — bovenzone vult resterende hoogte (VitaGrain-achtige verhouding) */
.hero-fold {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--site-header-stack));
  min-height: calc(100svh - var(--site-header-stack));
  width: 100%;
}

.hero-fold__top {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 0;
  min-height: 0;
  padding: 0.5rem var(--gutter) 1.35rem;
}

.hero-fold__intro {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  padding: 1.35rem var(--gutter) 1.15rem;
  border-top: 0;
  background: transparent;
}

.hero-fold__intro .spotlight-inner {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-fold__intro .spotlight-symbol {
  margin-bottom: 0.65rem;
}

.hero-fold__intro .spotlight-symbol img {
  width: 64px;
  height: 64px;
  max-width: none;
  object-fit: contain;
}

.hero-fold__intro h2 {
  font-size: clamp(1.5rem, 3.1vw, 2.35rem);
  margin-bottom: 0.65rem;
}

.hero-fold__intro .spotlight-lead {
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  line-height: 1.65;
}

.hero-scene h1 {
  font-size: clamp(2rem, 4.2vw, 3.65rem);
}

.hero-scene {
  position: relative;
  flex: 1;
  min-height: 0;
  display: grid;
  gap: 1rem 1.35rem;
  align-items: center;
  justify-items: stretch;
  overflow: visible;
  max-width: var(--site-max);
  margin: 0 auto;
  width: 100%;
  padding: calc(var(--site-header-stack) + 0.35rem) var(--gutter) 0.35rem;
  background: transparent;
  backdrop-filter: none;
  grid-template-columns: 1fr;
}

.scroll-cue {
  display: block;
  align-self: flex-start;
  margin: 1.05rem 0 0;
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(242, 230, 213, 0.5);
  z-index: 4;
}

.scroll-cue__wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.38rem;
}

.scroll-cue__row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.scroll-cue__label {
  letter-spacing: 0.42em;
}

.scroll-cue__chev {
  display: block;
  width: 0.42rem;
  height: 0.42rem;
  border-right: 1px solid rgba(195, 155, 94, 0.45);
  border-bottom: 1px solid rgba(195, 155, 94, 0.45);
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.75;
}

.scroll-line {
  width: 2.25rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(195, 155, 94, 0.55), transparent);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: none;
  z-index: 0;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

/* Hero: kolom links uitgelijnd; geheel staat in gecentreerde max-width (.hero-scene) */
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 36rem;
  width: 100%;
  margin: 0;
  justify-self: start;
}

.hero-copy h1 {
  margin-top: 0;
}

.eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.74rem;
}

.hero-copy p {
  max-width: 36ch;
  margin-left: 0;
  margin-right: 0;
}

.hero-tagline {
  margin: 0 0 1.35rem;
  font-size: clamp(1rem, 2.1vw, 1.15rem);
  font-weight: 500;
  color: rgba(242, 230, 213, 0.88);
}

/* VitaGrain-achtig: rechthoekig, goud gradient, subtiele diepte i.p.v. pill */
.btn-hero {
  border-radius: 6px;
  padding: 0.65rem 1.65rem;
  background: linear-gradient(168deg, #e6cb9a 0%, #cfa76e 38%, #b8894e 72%, #9d7440 100%);
  border: 1px solid rgba(45, 32, 18, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 235, 0.35),
    0 10px 26px rgba(0, 0, 0, 0.38);
}

/* Brood als los PNG met alpha: geen “fotolijst”, wel zachte schaduw op de moodboard-bg */
.hero-visual {
  border: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: stretch;
  max-height: none;
}

.hero-visual img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(58vh, 560px);
  object-fit: contain;
  object-position: center;
  filter:
    drop-shadow(0 32px 56px rgba(0, 0, 0, 0.55))
    drop-shadow(0 14px 28px rgba(0, 0, 0, 0.38))
    drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.split {
  display: grid;
  align-items: center;
  gap: 1.5rem;
}

.copy,
.visual {
  max-width: var(--site-max);
  margin: 0 auto;
  width: 100%;
}

.visual {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.visual img {
  height: min(62vh, 520px);
}

/* Merksectie: logo “contain” + zachte goud-gloed (ScrollTrigger animeert --brand-glow) */
#brand .visual-brand {
  --brand-glow: 0;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.42),
    0 0 calc(38px * var(--brand-glow)) rgba(195, 155, 94, 0.32);
}

.visual-brand img {
  height: min(52vh, 440px);
  width: 100%;
  object-fit: contain;
  object-position: center;
  padding: 1.25rem 1.5rem;
}

.product-caption {
  margin: 0;
  padding: 0.55rem 0.85rem 0.75rem;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(204, 184, 156, 0.88);
  text-align: center;
  background: rgba(6, 5, 4, 0.45);
}

.copy ul {
  padding-left: 1.1rem;
}

.product-wrap {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.product-showcase {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.45);
}

.product-showcase img {
  width: 100%;
  height: auto;
  max-height: min(58vh, 520px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.cta .inner {
  text-align: center;
  max-width: 760px;
}

.btn-cta-mail {
  margin-bottom: 0.35rem;
}

.cta-or {
  margin: 1rem 0 0.85rem;
  font-size: 0.88rem;
  color: rgba(204, 184, 156, 0.9);
}

.cta-form {
  margin-top: 0.25rem;
  text-align: left;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
}

.form-field input,
.form-field textarea {
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(8, 6, 5, 0.55);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.form-field textarea {
  resize: vertical;
  min-height: 6rem;
}

.cta-form .btn {
  margin-top: 0.25rem;
  align-self: flex-start;
}

.form-status {
  min-height: 1.25rem;
  margin: 0;
  font-size: 0.88rem;
  color: var(--gold);
}

.form-status.is-error {
  color: #e8a598;
}

.panel.cta {
  background: transparent;
}

.site-footer {
  padding: 1.15rem 0;
  font-size: 0.86rem;
  color: var(--muted);
  background: #120d0a;
  border-top: 1px solid var(--line-strong);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
}

.site-footer a {
  color: var(--gold);
}

.site-footer a:hover {
  color: var(--text);
}

.footer-sep {
  margin: 0 0.35rem;
  opacity: 0.5;
}

.center {
  text-align: center;
}

@media (min-width: 600px) {
  :root {
    --gutter: 1.25rem;
  }
}

@media (min-width: 900px) {
  :root {
    --gutter: 1.35rem;
  }

  .nav-main {
    display: flex;
  }

  .btn-outline {
    padding: 0.56rem 1rem;
  }

  .hero-scene {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.28fr);
    align-items: center;
    gap: 1.25rem 1.75rem;
  }

  .hero-copy {
    align-self: center;
  }

  .hero-visual {
    justify-content: flex-end;
    align-self: end;
  }

  .hero-visual img {
    max-height: min(72vh, 720px);
    max-width: min(52vw, 680px);
  }

  .split,
  .product-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .split.reverse .copy {
    order: 2;
  }

  .split.reverse .visual {
    order: 1;
  }
}

@media (max-width: 899px) {
  .site-header__bar {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 1;
  }

  .header-left {
    display: none;
  }

  .header-logo {
    grid-column: 2;
  }

  .header-right {
    grid-column: 3;
  }

  .nav-main > a {
    font-size: 0.84rem;
  }
}

@media (max-width: 380px) {
  .header-logo img {
    max-width: min(52vw, 168px);
  }

  .lang-pill {
    min-width: 2.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
