/* ==========================================================================
   Premium Kontenery — site styles
   ========================================================================== */

/* --- tokens ------------------------------------------------------------- */
:root {
  --ink:        #14161a;
  --ink-soft:   #3d434d;
  --ink-mute:   #6b7280;
  --paper:      #ffffff;
  --sand:       #f6f5f2;
  --sand-deep:  #ebe8e2;
  --line:       #e2ded7;
  --accent:     #e2901f;
  --accent-dk:  #c2760f;

  --wrap: 1240px;
  --gut: clamp(20px, 5vw, 48px);
  --sect: clamp(72px, 10vw, 136px);

  --r-sm: 4px;
  --r-md: 8px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --head: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto,
          "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--head);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.022em;
}

h1 { font-size: clamp(2.35rem, 6vw, 4.15rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); letter-spacing: -0.014em; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--accent); color: #fff; }

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 14px 22px;
}
.skip:focus { left: 8px; top: 8px; }

/* --- layout ------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.wrap--narrow { max-width: 860px; }

.sect { padding-block: var(--sect); }
.sect--tight { padding-block: clamp(52px, 7vw, 88px); }
.sect--sand { background: var(--sand); }
.sect--ink { background: var(--ink); color: #b9bec7; }
.sect--ink h2, .sect--ink h3 { color: #fff; }

/* --- section headers ---------------------------------------------------- */
.eyebrow {
  display: block;
  margin-bottom: 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--accent);
}
.sect--ink .eyebrow { color: var(--accent); }

.lede {
  max-width: 62ch;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--ink-mute);
}
.sect--ink .lede { color: #99a0ab; }

.head {
  display: grid;
  gap: clamp(18px, 3vw, 40px);
  margin-bottom: clamp(40px, 6vw, 68px);
}
@media (min-width: 900px) {
  .head--split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: end; }
  .head--split .lede { justify-self: end; }
}

/* --- buttons ------------------------------------------------------------ */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  --btn-bd: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border: 1px solid var(--btn-bd);
  border-radius: var(--r-sm);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.btn:hover { --btn-bg: var(--accent); --btn-bd: var(--accent); transform: translateY(-2px); }
.btn svg { flex: none; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--accent { --btn-bg: var(--accent); --btn-bd: var(--accent); }
.btn--accent:hover { --btn-bg: var(--accent-dk); --btn-bd: var(--accent-dk); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line); }
.btn--ghost:hover { --btn-fg: #fff; }

.btn--light { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: #fff; }
.btn--light:hover { --btn-fg: #fff; }

.btn--ondark { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.34); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* text link with arrow */
.tlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.94rem; color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  transition: color 0.22s var(--ease), border-color 0.22s var(--ease);
}
.tlink:hover { color: var(--accent); border-color: var(--accent); }
.tlink svg { transition: transform 0.22s var(--ease); }
.tlink:hover svg { transform: translateX(4px); }

/* --- header ------------------------------------------------------------- */
.hdr {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  transition: background 0.32s var(--ease), box-shadow 0.32s var(--ease),
              border-color 0.32s var(--ease);
  border-bottom: 1px solid transparent;
}
.hdr__in {
  display: flex;
  align-items: center;
  gap: 26px;
  height: 78px;
}
.hdr__logo { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.hdr__logo img { width: 38px; height: auto; }
.hdr__name {
  display: grid;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.15;
  color: #fff;
  text-transform: uppercase;
  transition: color 0.32s var(--ease);
}
.hdr__name span {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--accent);
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 13px;
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  border-radius: var(--r-sm);
  transition: color 0.22s var(--ease), background 0.22s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: #fff; background: rgba(255, 255, 255, 0.12); }

.hdr__cta { padding: 12px 22px; font-size: 0.88rem; }

/* --- language switcher -------------------------------------------------- */
.lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.lang a {
  padding: 5px 6px;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  border-radius: 3px;
  transition: color 0.22s var(--ease);
}
.lang a:hover { color: #fff; }
.lang a[aria-current="true"] { color: #fff; }
.lang span { color: rgba(255, 255, 255, 0.3); }

.hdr.is-solid .lang a { color: var(--ink-mute); }
.hdr.is-solid .lang a:hover,
.hdr.is-solid .lang a[aria-current="true"] { color: var(--ink); }
.hdr.is-solid .lang span { color: var(--line); }

/* scrolled / inner-page state */
.hdr.is-solid {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
}
.hdr.is-solid .hdr__name { color: var(--ink); }
.hdr.is-solid .nav a { color: var(--ink-soft); }
.hdr.is-solid .nav a:hover,
.hdr.is-solid .nav a[aria-current="page"] { color: var(--ink); background: var(--sand-deep); }

.burger {
  display: none;
  width: 44px; height: 44px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--r-sm);
  background: transparent;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 19px; height: 1.5px;
  margin: 4px auto;
  background: #fff;
  transition: transform 0.28s var(--ease), opacity 0.2s var(--ease);
}
.hdr.is-solid .burger { border-color: var(--line); }
.hdr.is-solid .burger span { background: var(--ink); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* The horizontal nav plus switcher plus CTA needs ~1190px in English and
   ~1145px in German; below this the drawer takes over so the CTA never clips. */
@media (max-width: 1240px) {
  .burger { display: block; }
  .nav {
    position: fixed;
    inset: 78px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px var(--gut) 26px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.26s var(--ease), transform 0.26s var(--ease), visibility 0.26s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav a,
  .nav a[aria-current="page"],
  .hdr.is-solid .nav a,
  .hdr.is-solid .nav a[aria-current="page"] {
    padding: 15px 4px;
    color: var(--ink);
    font-size: 1.02rem;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: none;
  }
  .nav a[aria-current="page"],
  .hdr.is-solid .nav a[aria-current="page"] { color: var(--accent-dk); font-weight: 600; }
  .nav a:hover, .hdr.is-solid .nav a:hover { background: none; color: var(--accent); }
  .lang { font-size: 0.78rem; margin-left: auto; }
}

/* Below this width the sticky bottom bar carries the CTA instead. */
@media (max-width: 760px) {
  .hdr__cta { display: none; }
}

/* --- hero --------------------------------------------------------------- */
.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(92vh, 860px);
  padding-top: 150px;
  padding-bottom: clamp(56px, 8vw, 96px);
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0; z-index: -2;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg,
              rgba(10, 12, 15, 0.72) 0%,
              rgba(10, 12, 15, 0.36) 34%,
              rgba(10, 12, 15, 0.78) 100%);
}
.hero__in { max-width: 880px; color: #fff; }
.hero h1 { color: #fff; text-wrap: balance; }
.hero__sub {
  max-width: 56ch;
  margin-top: 24px;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  color: rgba(255, 255, 255, 0.86);
}
.hero .btn-row { margin-top: 38px; }

/* compact hero for inner pages */
.hero--page { min-height: min(66vh, 560px); }
.hero--page h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }

.crumb {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 20px;
  font-size: 0.84rem;
  color: rgba(255,255,255,.72);
  text-decoration: none;
}
.crumb:hover { color: #fff; }

/* facts strip under hero */
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  border-top: 1px solid var(--line);
}
.facts > div {
  padding: clamp(28px, 4vw, 44px) clamp(18px, 2.6vw, 34px);
  border-right: 1px solid var(--line);
}
.facts > div:last-child { border-right: 0; }
.facts dt {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.facts dd {
  margin: 6px 0 0;
  font-size: 0.88rem;
  color: var(--ink-mute);
}

/* --- feature grid ------------------------------------------------------- */
.grid { display: grid; gap: clamp(20px, 3vw, 34px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(272px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }

.feat {
  padding: clamp(28px, 3vw, 38px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
              border-color 0.3s var(--ease);
}
.sect--sand .feat { background: var(--paper); }
.feat:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 18px 44px -22px rgba(20, 22, 26, 0.34);
}
.feat__num {
  display: block;
  margin-bottom: 20px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.feat h3 { margin-bottom: 12px; }
.feat p { font-size: 0.96rem; color: var(--ink-mute); }

/* --- product cards ------------------------------------------------------ */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--ink);
  text-decoration: none;
  isolation: isolate;
  min-height: 430px;
}
.card img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.card::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(175deg, rgba(10,12,15,0) 28%, rgba(10,12,15,.86) 100%);
  transition: background 0.4s var(--ease);
}
.card:hover img { transform: scale(1.055); }
.card:hover::after { background: linear-gradient(175deg, rgba(10,12,15,.12) 20%, rgba(10,12,15,.9) 100%); }
.card__body { margin-top: auto; padding: clamp(24px, 3vw, 32px); color: #fff; }
.card__body h3 { color: #fff; margin-bottom: 8px; }
.card__body p { font-size: 0.93rem; color: rgba(255,255,255,.76); margin-bottom: 16px; }
.card__go {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.87rem; font-weight: 600; color: var(--accent);
}
.card:hover .card__go svg { transform: translateX(4px); }
.card__go svg { transition: transform 0.25s var(--ease); }

/* --- split media/text --------------------------------------------------- */
.split {
  display: grid;
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split--flip .split__media { order: 2; }
}
.split__media img {
  width: 100%;
  border-radius: var(--r-md);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.split__media--tall img { aspect-ratio: 3 / 4; }
.split__media--free img { aspect-ratio: auto; }
.split h2 { margin-bottom: 22px; }

/* checklist */
.ticks { margin: 26px 0 0; padding: 0; list-style: none; display: grid; gap: 13px; }
.ticks li {
  position: relative;
  padding-left: 32px;
  font-size: 0.97rem;
}
.ticks li::before {
  content: "";
  position: absolute; left: 0; top: 0.52em;
  width: 15px; height: 8px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.ticks strong { color: var(--ink); font-weight: 600; }
.sect--ink .ticks strong { color: #fff; }

/* --- spec table --------------------------------------------------------- */
.specs { display: grid; gap: 0; }
.specs > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.specs dt { font-size: 0.95rem; color: var(--ink-mute); }
.specs dd { margin: 0; font-size: 0.95rem; font-weight: 600; color: var(--ink); text-align: right; }
.sect--ink .specs > div { border-color: rgba(255,255,255,.14); }
.sect--ink .specs dt { color: #99a0ab; }
.sect--ink .specs dd { color: #fff; }

/* --- size chips --------------------------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.chips li {
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--paper);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  transition: border-color 0.22s var(--ease), color 0.22s var(--ease);
}
.chips li:hover { border-color: var(--accent); color: var(--accent-dk); }

/* --- note / callout ----------------------------------------------------- */
.note {
  padding: clamp(22px, 3vw, 30px);
  border-left: 3px solid var(--accent);
  background: var(--sand);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 0.95rem;
}
.note strong { color: var(--ink); }
.sect--ink .note { background: rgba(255,255,255,.05); }
.sect--ink .note strong { color: #fff; }

/* --- process steps ------------------------------------------------------ */
.steps { counter-reset: s; display: grid; gap: clamp(20px, 3vw, 30px); }
.step {
  counter-increment: s;
  position: relative;
  padding: clamp(26px, 3vw, 34px) clamp(26px, 3vw, 34px) clamp(26px, 3vw, 34px)
           clamp(74px, 8vw, 92px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-md);
}
.step::before {
  content: counter(s, decimal-leading-zero);
  position: absolute;
  left: clamp(26px, 3vw, 34px);
  top: clamp(26px, 3vw, 34px);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
}
.step h3 { margin-bottom: 8px; font-size: 1.12rem; }
.step p { font-size: 0.95rem; margin: 0; }

/* --- gallery ------------------------------------------------------------ */
.gal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.gal button {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--sand-deep);
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
}
.gal img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
}
.gal button:hover img { transform: scale(1.06); }

/* lightbox */
.lb {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(8, 9, 11, 0.94);
  opacity: 0; visibility: hidden;
  transition: opacity 0.28s var(--ease), visibility 0.28s;
}
.lb.is-open { opacity: 1; visibility: visible; }
.lb img {
  max-width: 100%; max-height: 86vh;
  object-fit: contain;
  border-radius: var(--r-sm);
}
.lb__btn {
  position: absolute;
  display: grid; place-items: center;
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.22s var(--ease);
}
.lb__btn:hover { background: rgba(255,255,255,.18); }
.lb__close { top: 20px; right: 20px; }
.lb__prev { left: clamp(10px, 3vw, 32px); top: 50%; transform: translateY(-50%); }
.lb__next { right: clamp(10px, 3vw, 32px); top: 50%; transform: translateY(-50%); }
.lb__count {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  font-size: 0.85rem; color: rgba(255,255,255,.66);
}

/* --- FAQ ---------------------------------------------------------------- */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  margin-left: auto;
  width: 11px; height: 11px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg) translate(-3px, -3px);
  transition: transform 0.28s var(--ease);
}
.faq details[open] summary::after { transform: rotate(225deg) translate(-3px, -3px); }
.faq__a { padding: 0 0 26px; max-width: 74ch; font-size: 0.98rem; color: var(--ink-mute); }

/* --- CTA band ----------------------------------------------------------- */
.band {
  position: relative;
  padding-block: clamp(64px, 9vw, 116px);
  background: var(--ink);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.band__media { position: absolute; inset: 0; z-index: -2; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(12,14,17,.94) 34%, rgba(12,14,17,.66) 100%);
}
.band h2 { color: #fff; max-width: 20ch; }
.band p { margin-top: 20px; max-width: 54ch; color: rgba(255,255,255,.8); }
.band .btn-row { margin-top: 34px; }

/* --- form --------------------------------------------------------------- */
.form { display: grid; gap: 22px; }
.form__row { display: grid; gap: 22px; }
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }

.field { display: grid; gap: 8px; }
.field label {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.field .req { color: var(--accent); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 15px 16px;
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.field textarea { resize: vertical; min-height: 138px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(226, 144, 31, 0.16);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: #c8402f; }

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--ink-mute);
}
.consent input { flex: none; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent); }
.consent a { color: var(--ink); }

/* honeypot — must stay reachable-free for bots but hidden for humans */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form__note { font-size: 0.85rem; color: var(--ink-mute); }

.form__msg {
  display: none;
  padding: 15px 18px;
  border-radius: var(--r-sm);
  font-size: 0.93rem;
}
.form__msg.is-shown { display: block; }
.form__msg.is-ok { background: #edf7ee; border: 1px solid #b9dcbd; color: #1f6427; }
.form__msg.is-err { background: #fdefed; border: 1px solid #f0c2bb; color: #a02f1f; }

/* contact detail list */
.cinfo { display: grid; gap: 26px; }
.cinfo__item { display: grid; gap: 4px; }
.cinfo__k {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
}
.cinfo__v { font-size: 1.06rem; font-weight: 600; color: var(--ink); text-decoration: none; word-break: break-word; }
a.cinfo__v:hover { color: var(--accent); }

/* --- footer ------------------------------------------------------------- */
.foot { padding-block: clamp(56px, 7vw, 84px) 32px; background: var(--ink); color: #8b929d; font-size: 0.92rem; }
.foot__top {
  display: grid;
  gap: clamp(34px, 5vw, 56px);
  padding-bottom: clamp(38px, 5vw, 56px);
  border-bottom: 1px solid rgba(255,255,255,.11);
}
@media (min-width: 800px) { .foot__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.foot__brand { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; text-decoration: none; }
.foot__brand img { width: 40px; }
.foot__brand strong { color: #fff; font-size: 1rem; letter-spacing: 0.05em; text-transform: uppercase; }
.foot h4 {
  margin-bottom: 16px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: #fff;
}
.foot ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 11px; }
.foot a { color: #8b929d; text-decoration: none; transition: color 0.22s var(--ease); }
.foot a:hover { color: var(--accent); }
.foot__bot {
  display: flex; flex-wrap: wrap; gap: 12px 26px;
  justify-content: space-between; align-items: center;
  padding-top: 26px;
  font-size: 0.85rem;
}
.foot__legal { display: flex; flex-wrap: wrap; gap: 20px; }

/* --- mobile sticky CTA -------------------------------------------------- */
.mcta {
  position: fixed;
  inset: auto 0 0;
  z-index: 80;
  display: none;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.32s var(--ease);
}
.mcta.is-shown { transform: none; }
.mcta a {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 10px;
  background: var(--paper);
  font-size: 0.9rem; font-weight: 600; color: var(--ink);
  text-decoration: none;
}
.mcta a.is-primary { background: var(--accent); color: #fff; }
@media (max-width: 760px) {
  .mcta { display: flex; }
  body { padding-bottom: 54px; }
}

/* --- reveal on scroll ---------------------------------------------------
   Scoped to .js so that without JavaScript every section stays visible
   rather than being stuck at opacity 0. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* --- prose (legal pages) ------------------------------------------------ */
.prose { max-width: 76ch; }
.prose h2 { margin: 52px 0 18px; font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.prose h3 { margin: 32px 0 12px; font-size: 1.08rem; }
.prose h2:first-child { margin-top: 0; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent-dk); }
.todo {
  display: inline-block;
  padding: 2px 9px;
  border-radius: var(--r-sm);
  background: #fff4e0;
  border: 1px dashed var(--accent);
  color: var(--accent-dk);
  font-size: 0.86rem;
  font-weight: 600;
}
