@font-face { font-family: 'Montserrat'; font-weight: 400; font-display: swap; src: url('/fonts/montserrat-400.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-weight: 500; font-display: swap; src: url('/fonts/montserrat-500.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-weight: 600; font-display: swap; src: url('/fonts/montserrat-600.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-weight: 700; font-display: swap; src: url('/fonts/montserrat-700.woff2') format('woff2'); }

:root {
  --bg: #FAF8F4;
  --bg-2: #F3EFE7;
  --white: #fff;
  --fg: #2C2A26;
  --muted: #6E6A62;
  --border: #E4DFD5;
  --input-border: #B8B2A9;
  --primary: #23372E;
  --primary-2: #16241D;
  --hero-bg: #131517;
  --accent: #B4552C;
  --accent-2: #953F1C;
  --accent-text: #AA4F27;
  --error: #8A3612;
  --error-bg: #FBEAE3;
  --error-border: #E5B9A5;
  --radius: 12px;
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -6px rgba(0, 0, 0, .1);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .06);
  --nav-h: 64px;
  --fs-s: .875rem;
  --fs-m: 1rem;
  --fs-l: 1.75rem;
  --fs-h1: clamp(1.875rem, 1.2rem + 2.6vw, 3.5rem);
  --lh-tight: 1.15;
  --lh-body: 1.6;
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-6: 48px;
  --section-y: 64px;
  @media (min-width: 768px) { --fs-m: 1.125rem; --fs-l: 2.25rem; --section-y: 96px }
}

* { box-sizing: border-box }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
  &:has(dialog[open], .mobile-menu.active) { overflow: hidden }
  @media (max-width: 879px) { scroll-padding-bottom: 88px }
  @media (max-height: 450px) { scroll-padding-bottom: var(--sp-2) }
}

body {
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: var(--fs-m);
  line-height: var(--lh-body);
  background: var(--bg);
  color: var(--fg);
  overflow-wrap: anywhere;
}

img { display: block; max-width: 100%; height: auto }
picture { display: contents }
a { color: inherit; text-decoration: none }
::selection { background: var(--accent); color: #fff }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px }
:is(input, select, textarea, button, summary, [tabindex]) { scroll-margin-block: var(--sp-2) }
section[id] { scroll-margin-block: 0 }
:is(.nav, .mobile-menu) { -webkit-user-select: none; user-select: none }

:is(h1, h2, h3) { margin: 0; line-height: var(--lh-tight); text-wrap: balance }
h1 { font-size: var(--fs-h1); font-weight: 700; letter-spacing: -.01em; line-height: 1.08 }
h2 { font-size: var(--fs-l); font-weight: 700; color: var(--primary); margin-bottom: var(--sp-3) }
h3 { font-size: var(--fs-m); font-weight: 600; color: var(--primary); line-height: 1.3; margin-bottom: var(--sp-1) }
p { margin: 0 0 var(--sp-2); text-wrap: pretty; &:last-child { margin-bottom: 0 } }
strong { font-weight: 600 }

.container { max-width: 1152px; margin: 0 auto; padding: 0 16px }
.narrow { max-width: 820px }
p.narrow, .card p, .faq .answer { max-width: 60ch }

.section { padding: var(--section-y) 0 }
.section-bone { background: var(--bg-2) }
.section-white { background: var(--white) }
.lede { color: var(--muted); max-width: 720px; margin-bottom: var(--sp-4) }
.eyebrow {
  font-size: var(--fs-s);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-text);
  font-weight: 600;
  margin: 0 0 12px;
  &:is(h2) { margin-bottom: var(--sp-3) }
}
.note { font-size: var(--fs-s); color: var(--muted); margin: var(--sp-3) 0 0 }
:is(.text-link, :where(.section, .page-text) p a:not(.btn)) { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; font-weight: 500; &:hover { color: var(--accent-text) } }
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  &:focus {
    left: 8px;
    top: 8px;
    z-index: 200;
    background: var(--white);
    color: var(--primary);
    padding: 8px 14px;
    border-radius: 8px;
  }
}

/* nav */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  min-height: 64px;
  display: flex;
  align-items: center;
  transition: background .2s ease, box-shadow .2s ease;
  /* opaque once scrolled: a translucent blurred bar let the page show through under the iOS 26 toolbar,
     reported by the owner on 2026-09-18 as a see-through band above the header */
  &:is(.scrolled, .menu-open) {
    background: #FAF8F4;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
  }
  .container { width: 100% }
}
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 64px; padding-block: 8px }
.brand {
  display: flex;
  align-items: center;
  min-height: 44px;
  flex-shrink: 0;
  white-space: nowrap;
  gap: 8px;
  color: #F4F1EA;
  font-weight: 700;
  font-size: var(--fs-m);
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s;
  span { font-weight: 400; opacity: .75 }
  .nav:is(.scrolled, .menu-open) & { color: var(--primary) }
}
.menu {
  display: none;
  flex: 1;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 26px;
  color: #F4F1EA;
  font-size: var(--fs-s);
  font-weight: 500;
  transition: color .2s;
  a { display: flex; align-items: center; min-height: 44px; white-space: nowrap; transition: color .2s; &:hover { color: #C9D9CE } }
  .nav:is(.scrolled, .menu-open) & { color: var(--primary); a:hover { color: var(--accent) } }
  @media (min-width: 880px) { display: flex }
}
.nav-right { display: flex; align-items: center; gap: 14px }

.lang {
  appearance: none;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .35);
  color: #F4F1EA;
  border-radius: 9999px;
  padding: 5px 28px 5px 12px;
  font: inherit;
  font-size: var(--fs-s);
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 14px) 52%, calc(100% - 9px) 52%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  .nav:is(.scrolled, .menu-open) & {
    background-color: rgba(35, 55, 46, .06);
    border-color: var(--border);
    color: var(--primary);
  }
  option { color: #2C2A26; background: #fff }
  &[data-translations="none"] { display: none }
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  padding: 14px 10px;
  cursor: pointer;
  color: #F4F1EA;
  z-index: 110;
  .nav:is(.scrolled, .menu-open) & { color: var(--primary) }
  span { display: block; height: 2px; width: 100%; background: currentColor; transition: transform .3s, opacity .3s }
  &.active span {
    &:nth-child(1) { transform: translateY(7px) rotate(45deg) }
    &:nth-child(2) { opacity: 0 }
    &:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }
  }
  @media (min-width: 880px) { display: none }
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(250, 248, 244, .98);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 8px 24px 40px;
  z-index: 90;
  overflow-y: auto;
  overscroll-behavior: contain;
  &.active { display: block }
  a {
    display: block;
    padding: 15px 0;
    color: var(--primary);
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    &:last-child { color: var(--accent-text); border-bottom: 0 }
  }
  @media (min-width: 880px) { display: none !important }
}

/* hero: the whole photo, never a crop and never a tint, on a neutral dark band */
.hero {
  min-height: 92vh;
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  background: var(--hero-bg);
  color: #fff;
  padding-top: var(--nav-h);
  h1 {
    margin: 0 auto var(--sp-2);
    max-width: 900px;
    color: #fff;
    @media (min-width: 900px) { font-size: clamp(1.875rem, 1rem + 2.4vw, 3rem); margin-left: 0; margin-right: 0 }
  }
}
.hero-grid {
  flex: 1;
  display: grid;
  gap: var(--sp-4);
  align-content: center;
  padding-bottom: var(--sp-4);
  @media (min-width: 900px) { grid-template-columns: 1fr 1fr; align-items: center; gap: var(--sp-6); padding-block: var(--sp-4) }
}
.hero-media {
  order: -1;
  margin: 0 -16px;
  img {
    width: 100%;
    height: auto;
    max-height: 62svh;
    object-fit: contain;
    @media (min-width: 900px) { max-height: none; border-radius: var(--radius) }
  }
  @media (min-width: 900px) { order: 0; margin: 0 }
}
.hero-inner { text-align: center; @media (min-width: 900px) { text-align: left } }
.hero-sub {
  max-width: 680px;
  margin: 0 auto var(--sp-3);
  opacity: .94;
  @media (min-width: 900px) { margin-left: 0; margin-right: 0 }
}
/* the price basis line, sentence case, one link to Shipping, no note under it since 2026-09-18 */
.hero-price {
  max-width: 680px;
  font-size: var(--fs-s);
  font-weight: 600;
  margin: 0 auto var(--sp-4);
  color: #EBDCCF;
  a { color: inherit; text-decoration: underline; text-underline-offset: 3px; &:hover { color: #fff } }
  @media (min-width: 900px) { margin-left: 0; margin-right: 0 }
}

/* the one Instagram link under the hero */
.featured {
  padding: var(--sp-2) 0 36px;
  text-align: center;
  a { display: inline-flex; align-items: center; gap: 10px; max-width: 100%; min-height: 44px; color: #F4F1EA; font-size: var(--fs-s); font-weight: 500; letter-spacing: .02em; transition: color .2s; &:hover { color: #C9D9CE } }
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 9999px;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 600;
  border: 1px solid var(--accent);
  cursor: pointer;
  text-align: center;
  transition: background .25s, border-color .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 10px 24px rgba(180, 85, 44, .22);
  &:hover { background: var(--accent-2); border-color: var(--accent-2); transform: translateY(-1px) }
  &:disabled { opacity: .7; cursor: default; transform: none }
  @media (hover: none), (pointer: coarse) { &:hover { transform: none } }
}
.btn-glass {
  background: rgba(252, 250, 244, .94);
  color: var(--primary-2);
  border-color: rgba(255, 255, 255, .5);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
  &:hover { background: #fff; border-color: #fff }
}
.btn-block { width: 100% }
:is(.cta-row, .link-line) { margin: var(--sp-4) 0 0 }

/* generic blocks */
.split {
  display: grid;
  gap: var(--sp-4);
  align-items: start;
  @media (min-width: 900px) { grid-template-columns: 1fr 1fr; gap: var(--sp-6) }
  &.split-wide { @media (min-width: 900px) { grid-template-columns: 1.1fr .9fr } }
  &.split-lists { @media (min-width: 760px) { grid-template-columns: 1fr 1fr } }
}

/* a lone card spans the grid at every width, the count-aware pattern of yurt-websites */
.cards {
  display: grid;
  gap: var(--sp-2);
  grid-template-columns: 1fr;
  @media (min-width: 640px) { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3) }
  &.cards-3 { @media (min-width: 980px) { grid-template-columns: repeat(3, 1fr) } }
  &:has(> :only-child) { grid-template-columns: 1fr }
}

:is(.card, .form-wrap) {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-3);
}
.card {
  box-shadow: var(--shadow-sm);
  p { color: var(--muted) }
  .big {
    display: block;
    font-size: var(--fs-l);
    font-weight: 700;
    color: var(--primary);
    line-height: var(--lh-tight);
    font-variant-numeric: tabular-nums;
    margin-bottom: 4px;
  }
  .big-sub {
    display: block;
    font-size: var(--fs-s);
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent-text);
    font-weight: 600;
    margin-bottom: var(--sp-2);
  }
}
.card-accent { border-color: rgba(180, 85, 44, .45); box-shadow: 0 8px 22px rgba(180, 85, 44, .1) }
.callout { margin: var(--sp-4) 0; p { color: var(--fg); max-width: none } }
#nomados .cards {
  margin-bottom: var(--sp-4);
  p { color: var(--fg) }
  @media (max-width: 979px) { grid-template-columns: 1fr }
}

/* the two builds, each a heading, text beside its configuration card, then its story grid */
.build { margin-top: var(--sp-6); .split { margin-bottom: var(--sp-4) } }
.build-h { font-size: 1.375rem; margin-bottom: var(--sp-3); @media (min-width: 768px) { font-size: 1.625rem } }

ul:is(.ticks, .plain) {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-3);
  li { position: relative; padding-left: 22px; margin-bottom: 6px; &::before { position: absolute; left: 0; top: 0; font-weight: 700 } }
}
ul.ticks li::before { content: "+"; color: var(--accent) }
ul.plain li::before { content: ""; top: .7em; width: 5px; height: 5px; border-radius: 1px; background: var(--accent) }

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
  li {
    counter-increment: step;
    position: relative;
    padding-left: 48px;
    margin-bottom: var(--sp-3);
    &:last-child { margin-bottom: 0 }
    &::before {
      content: counter(step);
      position: absolute;
      left: 0;
      top: -3px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--primary);
      color: #fff;
      display: grid;
      place-items: center;
      font-size: var(--fs-s);
      font-weight: 700;
    }
  }
  h3 { margin-bottom: 2px }
  p { margin: 0; color: var(--muted) }
}

.ladder {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  li {
    display: flex;
    align-items: baseline;
    gap: 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
  }
  b { flex: 0 0 52px; color: var(--accent-text); font-variant-numeric: tabular-nums }
}

/* gallery */
.gallery {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  figure { display: grid; margin: 0; overflow: hidden; border-radius: 10px; background: var(--bg-2); &:hover img { transform: scale(1.04) } }
  a { grid-area: 1 / 1; display: block; height: 100%; overflow: hidden; &:focus-visible { outline-offset: -3px } }
  img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 2; transition: transform .5s ease }
  figcaption {
    grid-area: 1 / 1;
    align-self: end;
    z-index: 1;
    padding: 26px 12px 10px;
    background: linear-gradient(to top, rgba(16, 26, 21, .88), rgba(16, 26, 21, .6) calc(100% - 18px), transparent);
    color: #fff;
    font-size: var(--fs-s);
    letter-spacing: .02em;
    pointer-events: none;
  }
  .wide { grid-column: span 2 }
  @media (min-width: 760px) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    .tall img { aspect-ratio: 3 / 4 }
  }
}

/* lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  touch-action: pan-y;
  &[open] { display: grid; place-items: center }
  &::backdrop { background: rgba(16, 26, 21, .95) }
}
.lightbox-figure {
  margin: 0;
  width: 100%;
  max-width: 1400px;
  padding: 64px 16px 20px;
  display: grid;
  gap: 12px;
  justify-items: center;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  figcaption { display: flex; gap: 16px; align-items: baseline; font-size: var(--fs-s); color: #E6E1D7; text-align: center }
  @media (min-width: 768px) { padding: 72px 88px 28px }
}
#lightbox-img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 140px);
  max-height: calc(100dvh - 140px);
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
}
.lightbox-count { opacity: .6; font-variant-numeric: tabular-nums; white-space: nowrap }
.lightbox-btn {
  position: fixed;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(16, 26, 21, .6);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  transition: background .2s, border-color .2s;
  &:hover { background: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .6) }
  &:focus-visible { outline-color: #fff }
}
.lightbox-close { top: 14px; right: 14px; @media (min-width: 768px) { top: 20px; right: 20px } }
:is(.lightbox-prev, .lightbox-next) { top: 50%; transform: translateY(-50%) }
.lightbox-prev { left: 10px; @media (min-width: 768px) { left: 20px } }
.lightbox-next { right: 10px; @media (min-width: 768px) { right: 20px } }

/* faq */
.faq {
  max-width: 820px;
  details { border-bottom: 1px solid var(--border) }
  summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 40px 18px 0;
    font-weight: 600;
    color: var(--primary);
    position: relative;
    line-height: 1.35;
    &::-webkit-details-marker { display: none }
    &::after {
      content: "";
      position: absolute;
      right: 8px;
      top: calc(50% - 8px);
      width: 9px;
      height: 9px;
      border-right: 2px solid var(--accent);
      border-bottom: 2px solid var(--accent);
      transform: rotate(45deg);
      transition: transform .2s;
    }
    &:hover { color: var(--accent) }
    &:focus-visible { outline-offset: -3px; border-radius: 6px }
  }
  details[open] summary::after { transform: rotate(-135deg); top: calc(50% - 3px) }
  .answer { padding: 0 40px var(--sp-3) 0; color: var(--muted) }
}

/* form */
.form-wrap { box-shadow: var(--shadow-lg); @media (min-width: 768px) { padding: var(--sp-4) } }
.field {
  margin-bottom: var(--sp-2);
  label {
    display: block;
    font-size: var(--fs-s);
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
  }
  :is(input, select, textarea) {
    display: block;
    width: 100%;
    font: inherit;
    color: var(--fg);
    background: var(--bg);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    padding: 11px 13px;
    transition: border-color .2s, box-shadow .2s;
    &:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(180, 85, 44, .18);
    }
  }
  select {
    appearance: none;
    padding-right: 40px;
    background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
    background-position: calc(100% - 19px) 55%, calc(100% - 14px) 55%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
  }
  textarea { min-height: 120px; resize: vertical }
  .note { margin: 0 0 var(--sp-1) }
  [aria-invalid="true"] {
    border-color: var(--error);
    background: #FFFCFA;
    &:focus { box-shadow: 0 0 0 3px rgba(138, 54, 18, .16); border-color: var(--error) }
  }
}
/* the one checkbox: a plain sentence beside the box, not the uppercase field label */
.field-check label {
  display: flex; align-items: center; gap: 10px; min-height: 44px;
  text-transform: none; letter-spacing: 0; font-size: var(--fs-m); font-weight: 500; color: var(--fg);
  input { width: 18px; height: 18px; flex: none; margin: 0; padding: 0; accent-color: var(--accent) }
}
.field-error { font-size: var(--fs-s); color: var(--error); margin: 6px 0 0 }
.field-pair { display: grid; column-gap: var(--sp-2); @media (min-width: 620px) { grid-template-columns: 1fr 1fr } }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden }
.form-body { .is-sent & { display: none } }
.form-msg {
  display: none;
  margin-bottom: var(--sp-2);
  padding: 12px 14px;
  border-radius: 8px;
  font-size: var(--fs-s);
  &.error { display: block; background: var(--error-bg); border: 1px solid var(--error-border); color: var(--error) }
}
.thanks {
  display: none;
  text-align: center;
  padding: var(--sp-3) 4px;
  h3 { font-size: var(--fs-l); margin-bottom: var(--sp-1); outline: none }
  p { color: var(--muted) }
  .is-sent & { display: block }
}
.thanks-mark {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--sp-2);
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
}

/* sticky call to action, phones and small tablets only */
.sticky-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(250, 248, 244, .96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, .08);
  transform: translateY(105%);
  visibility: hidden;
  transition: transform .25s ease, visibility 0s linear .25s;
  &.is-visible { transform: none; visibility: visible; transition-delay: 0s }
  .btn { flex: 1; min-height: 44px; padding: 10px 18px; box-shadow: none; @media (min-width: 480px) { flex: 0 0 auto } }
  @media (min-width: 880px), (max-height: 450px) { display: none }
}
.sticky-price { display: none; font-weight: 700; color: var(--primary); font-variant-numeric: tabular-nums; white-space: nowrap; @media (min-width: 480px) { display: block } }

/* footer */
footer {
  background: var(--primary-2);
  color: #CFD8D1;
  padding: var(--sp-6) 0 var(--sp-3);
  font-size: var(--fs-s);
  a { text-decoration: underline; text-underline-offset: 3px; &:hover { color: #fff } }
  :focus-visible { outline-color: #fff }
}
.footer-brand {
  color: #fff;
  font-weight: 700;
  font-size: var(--fs-m);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  span { font-weight: 400; opacity: .7 }
}
:is(.footer-id, .footer-bottom) p { margin: 0 0 6px }
.footer-bottom {
  margin-top: var(--sp-4);
  padding-top: var(--sp-2);
  border-top: 1px solid rgba(255, 255, 255, .12);
  opacity: .62;
}

/* simple page shell for /no-contact and the 404 page */
.page-shell {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) 0 60px;
  background: var(--bg-2);
}
.page-card {
  max-width: 560px;
  margin: 0 auto;
  h1 { color: var(--primary); font-size: var(--fs-l); margin-bottom: var(--sp-2) }
  .form-wrap { margin: var(--sp-3) 0 }
}
/* the privacy page: a text page on the same shell, wider than the form card */
.page-text {
  max-width: 720px;
  h2 { color: var(--primary); font-size: var(--fs-m); font-weight: 700; margin: var(--sp-3) 0 var(--sp-1) }
  p { margin: 0 0 var(--sp-2) }
}

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

@media (forced-colors: active) {
  :is(.field select, .lang) { appearance: auto }
}

@media print {
  :is(.nav, .mobile-menu, .sticky-cta, .skip, .lightbox, .hamburger, .lang, .cta-row, .form-wrap button, .featured) { display: none !important }
  body { background: #fff; color: #000; font-size: 11pt }
  .hero { min-height: 0; padding: 0 0 24px; background: none; color: #000; h1 { color: #000; text-align: left; font-size: 24pt } }
  .hero-grid { display: block; padding: 0 }
  .hero-media { display: none }
  .hero-inner { color: #000; text-align: left }
  .hero-sub { margin-left: 0; opacity: 1 }
  .hero-price { color: #000; margin-bottom: 0 }
  .section { padding: 18px 0; break-inside: avoid }
  :is(.section-bone, .section-white) { background: none }
  .gallery { gap: 8px; figure { display: block } a { height: auto } figcaption { position: static; background: none; color: #000; padding: 4px 0 0 } img { transform: none !important } }
  .card { box-shadow: none; break-inside: avoid }
  .link-line .btn { min-height: 0; padding: 0; border: 0; background: none; box-shadow: none; color: #000; text-decoration: underline }
  .faq .answer { display: block }
  footer { background: none; color: #000; padding: 12px 0 }
  .footer-brand { color: #000 }
  a { text-decoration: underline }
}
