:root {
  --ink: #172330;
  --muted: #66717e;
  --blue: #20364d;
  --sand: #f5efe4;
  --warm: #fffaf1;
  --paper: #ffffff;
  --accent: #c98d38;
  --accent-dark: #9b6422;
  --line: rgba(23, 35, 48, .12);
  --shadow: 0 22px 55px rgba(23, 35, 48, .14);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--warm);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid rgba(201, 141, 56, .55); outline-offset: 3px; }
.skip-link { position: fixed; top: -80px; left: 16px; z-index: 1000; padding: 10px 14px; background: var(--blue); color: #fff; border-radius: var(--radius); }
.skip-link:focus { top: 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 35, 48, .1);
  transition: box-shadow .25s ease, transform .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 14px 38px rgba(23, 35, 48, .14); }
.topbar {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  padding: 9px clamp(18px, 5vw, 72px);
  background: var(--blue);
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.topbar a { font-weight: 800; color: #fff; }
.topbar span { color: rgba(255, 255, 255, .72); }
.topbar a:hover { color: #ffd796; }
.topbar > * {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}
.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 38px);
  min-height: 96px;
  padding: 0 clamp(18px, 5vw, 72px);
}
.site-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 70px;
  min-width: 226px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid rgba(23, 35, 48, .1);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(23, 35, 48, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.site-logo:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(23, 35, 48, .12);
}
.site-logo img {
  display: block;
  width: auto;
  height: clamp(46px, 4.6vw, 60px);
  max-width: 194px;
  object-fit: contain;
}
.site-nav { display: flex; align-items: center; justify-content: center; gap: 5px; }
.nav-item { position: relative; }
.nav-item > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 11px;
  border-radius: var(--radius);
  font-weight: 700;
  color: var(--blue);
}
.nav-item > a:hover, .nav-item:focus-within > a { background: rgba(32, 54, 77, .08); }
.has-dropdown > a::after { content: ""; width: 6px; height: 6px; margin-left: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  padding: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: .2s ease;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; transform: translateY(0); pointer-events: auto; }
.dropdown a { display: block; padding: 10px 12px; border-radius: 6px; color: var(--blue); font-weight: 650; }
.dropdown a:hover { background: var(--sand); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(32, 54, 77, .2);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.nav-cta:hover {
  transform: translateY(-2px);
  background: #16283a;
  box-shadow: 0 16px 34px rgba(32, 54, 77, .26);
}
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: var(--blue); border-radius: var(--radius); padding: 12px; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: #fff; transition: .2s ease; }

.hero {
  position: relative;
  min-height: calc(100svh - 112px);
  display: grid;
  align-items: end;
  padding: clamp(72px, 12vh, 140px) clamp(18px, 5vw, 72px) 44px;
  overflow: hidden;
  color: #fff;
}
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15, 27, 40, .86), rgba(15, 27, 40, .48) 48%, rgba(15, 27, 40, .18)); }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-content { position: relative; z-index: 1; max-width: 860px; }
.eyebrow { margin: 0 0 10px; color: var(--accent); font-weight: 850; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; }
.hero .eyebrow, .final-cta .eyebrow { color: #ffd796; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: 0; }
h1 { font-size: clamp(42px, 7vw, 78px); max-width: 920px; }
h2 { font-size: clamp(30px, 4vw, 48px); }
h3 { font-size: 22px; }
.hero p:not(.eyebrow) { max-width: 720px; margin: 22px 0 0; font-size: clamp(18px, 2vw, 22px); color: rgba(255, 255, 255, .9); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary { background: var(--blue); color: #fff; }
.btn-ghost { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .32); }
.btn-light { background: #fff; color: var(--blue); }
.btn-outline-light { border-color: rgba(255, 255, 255, .58); color: #fff; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: -34px clamp(18px, 5vw, 72px) 0;
  position: relative;
  z-index: 3;
  background: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.trust-strip div { background: var(--paper); padding: 24px; }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip strong { font-size: 18px; color: var(--blue); }
.trust-strip span { color: var(--muted); margin-top: 4px; }

.section { padding: clamp(66px, 9vw, 116px) clamp(18px, 5vw, 72px); }
.section-heading { max-width: 780px; margin-bottom: 34px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.product-card a {
  display: grid;
  grid-template-rows: 250px 1fr;
  height: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(23, 35, 48, .08);
  transition: transform .22s ease, box-shadow .22s ease;
}
.product-card a:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-card figure { margin: 0; overflow: hidden; }
.product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-card a:hover img, .image-panel:hover img { transform: scale(1.05); }
.product-card div { padding: 22px; }
.product-card p { color: var(--muted); margin: 10px 0 18px; }
.product-card span { color: var(--accent-dark); font-weight: 850; }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; background: var(--sand); }
.split-copy p:not(.eyebrow), .local p, .story p, .detail-copy p { color: var(--muted); font-size: 18px; max-width: 760px; }
.steps { display: grid; gap: 14px; }
.steps div { display: grid; grid-template-columns: 64px 1fr; align-items: center; gap: 18px; padding: 18px; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); }
.steps span { color: var(--accent-dark); font-weight: 900; }
.steps strong { font-size: 19px; }
.local { background: var(--blue); color: #fff; }
.local p { color: rgba(255, 255, 255, .8); }
.duo { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.image-panel { position: relative; min-height: 420px; border-radius: var(--radius); overflow: hidden; color: #fff; }
.image-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(15, 27, 40, .78)); }
.image-panel img { width: 100%; height: 100%; object-fit: cover; transition: .45s ease; }
.image-panel span { position: absolute; left: 28px; bottom: 24px; z-index: 1; font-size: clamp(28px, 4vw, 44px); font-weight: 900; }
.brands { background: var(--sand); }
.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.brand-card {
  min-height: 112px;
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(23, 35, 48, .09);
  box-shadow: 0 12px 30px rgba(23, 35, 48, .07);
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-card img {
  max-width: 100%;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
}

.subhero, .product-hero, .contact-hero {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: 46px;
  align-items: center;
  background: var(--sand);
}
.subhero img, .product-hero figure img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.subhero-copy p:not(.eyebrow), .product-copy p:not(.eyebrow), .contact-hero p { color: var(--muted); font-size: 19px; max-width: 760px; }
.product-hero { background: #fff; }
.product-hero figure { margin: 0; }
.product-hero.compact { background: var(--sand); }
.product-detail { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.model-box, .map-card, .contact-form {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(23, 35, 48, .08);
}
.model-box ul { margin: 18px 0 0; padding-left: 20px; color: var(--muted); }
.mini-links, .option-grid, .values, .contact-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
.mini-links a, .option-card, .value, .contact-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(23, 35, 48, .08);
}
.mini-links a, .option-card a, .contact-card strong { color: var(--blue); font-weight: 900; }
.option-card p, .value span, .contact-card small { color: var(--muted); }
.option-card h2 { font-size: 26px; }
.value strong, .contact-card span, .contact-card strong, .contact-card small { display: block; }
.value strong { font-size: 22px; }
.story { max-width: 960px; }
.contact-hero { display: block; background: var(--blue); color: #fff; }
.contact-hero p { color: rgba(255, 255, 255, .82); }
.contact-grid { grid-template-columns: repeat(3, 1fr); }
.form-section { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: start; }
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 7px; color: var(--blue); font-weight: 800; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: #fff;
}
.form-note { margin: 0; color: var(--muted); font-size: 14px; }
.map-card { min-height: 360px; background: linear-gradient(135deg, rgba(32, 54, 77, .93), rgba(32, 54, 77, .72)), url("Bilder/victoire-joncheray-3orDl3RyfIo-unsplash-scaled.webp") center / cover; color: #fff; }
.map-card p { color: rgba(255, 255, 255, .82); }
.plain-page { max-width: 860px; padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 72px); }
.plain-page p { color: var(--muted); font-size: 18px; }

.faq { background: #fff; }
.faq-list { display: grid; gap: 10px; max-width: 960px; }
details { border: 1px solid var(--line); border-radius: var(--radius); background: var(--warm); padding: 0 18px; }
summary { cursor: pointer; padding: 18px 0; font-weight: 900; color: var(--blue); }
details p { margin: 0 0 18px; color: var(--muted); }
.final-cta {
  margin: clamp(44px, 6vw, 72px) clamp(18px, 5vw, 72px);
  padding: clamp(32px, 5vw, 56px);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.final-cta p:not(.eyebrow) { color: rgba(255, 255, 255, .82); max-width: 700px; }
.site-footer {
  padding: 72px clamp(18px, 5vw, 72px) 108px;
  background: radial-gradient(circle at top left, rgba(201, 141, 56, .16), transparent 34%), #111b26;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.65fr) repeat(4, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}
.site-footer h2 {
  position: relative;
  font-size: 17px;
  margin-bottom: 16px;
  padding-bottom: 10px;
}
.site-footer h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}
.site-footer a, .site-footer p { display: block; color: rgba(255, 255, 255, .74); margin: 0 0 9px; }
.site-footer a { width: fit-content; transition: color .2s ease, transform .2s ease; }
.site-footer a:hover { color: #fff; transform: translateX(2px); }
.footer-brand {
  padding-right: 18px;
}
.footer-brand p {
  max-width: 380px;
  margin-top: 20px;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
}
.footer-brand-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  min-height: 96px;
  min-width: 278px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .22);
}
.footer-brand-card img {
  width: auto;
  height: 64px;
  max-width: 230px;
  object-fit: contain;
  margin: 0;
}
.site-footer img { margin-bottom: 0; }
.mobile-cta { display: none; }

.product-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  background: var(--sand);
}
.fact-block {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(23, 35, 48, .08);
}
.fact-block h2 { font-size: 24px; margin-bottom: 14px; }
.fact-block ul { margin: 0; padding-left: 20px; color: var(--muted); }
.fact-block li + li { margin-top: 8px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list span {
  padding: 8px 11px;
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  font-weight: 800;
}
.model-section { background: #fff; }
.model-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.model-card {
  display: grid;
  grid-template-rows: 220px 1fr;
  overflow: hidden;
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(23, 35, 48, .08);
}
.model-card img { width: 100%; height: 100%; object-fit: cover; }
.model-card div { padding: 22px; }
.model-card p { color: var(--muted); }
.model-card a, .model-box a { color: var(--accent-dark); font-weight: 900; }
.option-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.document-section {
  background: #fff;
  margin-top: clamp(24px, 4vw, 48px);
}
.document-section__intro {
  max-width: 720px;
  margin-bottom: 30px;
}
.document-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.document-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 238px;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(23, 35, 48, .1);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(23, 35, 48, .07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.document-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 141, 56, .32);
}
.document-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 30px;
  margin-bottom: 18px;
}
.document-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(201, 141, 56, .14);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
}
.document-card__type {
  color: rgba(23, 35, 48, .62);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.document-card__body { flex: 1; }
.document-card__body h3 {
  min-height: 54px;
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.3;
}
.document-card__body p {
  margin: 0;
  color: rgba(23, 35, 48, .72);
  font-size: .95rem;
  line-height: 1.55;
}
.document-card__actions {
  margin-top: auto;
  padding-top: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
}
.document-card__button {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 850;
  text-align: center;
  transition: transform .2s ease, background .2s ease;
}
.document-card__button:hover {
  transform: translateY(-2px);
  background: #17283b;
}
.model-docs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 16px;
}
.model-docs a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue);
  font-weight: 850;
  font-size: 14px;
}

.inspiration-section { background: var(--sand); }
.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.inspiration-card {
  display: grid;
  grid-template-columns: minmax(220px, .82fr) 1fr;
  min-height: 310px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(23, 35, 48, .08);
  transition: transform .22s ease, box-shadow .22s ease;
}
.inspiration-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.inspiration-card img { width: 100%; height: 100%; object-fit: cover; }
.inspiration-card div { display: flex; flex-direction: column; padding: 24px; }
.inspiration-card span {
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
}
.inspiration-card p { color: var(--muted); }
.inspiration-card .btn { width: fit-content; margin-top: auto; }

.inspiration-hero {
  position: relative;
  min-height: calc(92svh - 112px);
  display: grid;
  align-items: end;
  padding: clamp(72px, 12vh, 140px) clamp(18px, 5vw, 72px) 48px;
  overflow: hidden;
  color: #fff;
}
.inspiration-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15, 27, 40, .86), rgba(15, 27, 40, .46), rgba(15, 27, 40, .18)); }
.inspiration-hero__media { position: absolute; inset: 0; }
.inspiration-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.inspiration-hero__content { position: relative; z-index: 1; max-width: 880px; }
.inspiration-hero__content p:not(.eyebrow) { max-width: 760px; margin: 22px 0 0; font-size: clamp(18px, 2vw, 22px); color: rgba(255, 255, 255, .9); }
.inspiration-story { display: grid; gap: 34px; background: #fff; }
.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}
.story-row.is-reversed img { order: 2; }
.story-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.story-row p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.gallery-section { background: var(--sand); }
.inspiration-gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  grid-auto-rows: 230px;
  gap: 18px;
}
.inspiration-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(23, 35, 48, .08);
}
.inspiration-gallery figure:nth-child(1) { grid-row: span 2; }
.inspiration-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.inspiration-gallery figure:hover img { transform: scale(1.04); }
.advice-band {
  margin: clamp(44px, 6vw, 72px) clamp(18px, 5vw, 72px);
  padding: clamp(30px, 5vw, 54px);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.advice-band p:not(.eyebrow) { max-width: 760px; color: rgba(255, 255, 255, .82); }
.original-pdf { background: #fff; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .topbar { display: none; }
  .nav-shell { grid-template-columns: auto auto; justify-content: space-between; min-height: 84px; }
  .site-logo { min-height: 64px; min-width: 204px; padding: 9px 14px; }
  .site-logo img { height: 48px; max-width: 174px; }
  .menu-toggle { display: block; }
  .nav-cta { display: none; }
  .site-nav {
    position: fixed;
    top: 70px;
    left: 12px;
    right: 12px;
    display: grid;
    justify-content: stretch;
    gap: 4px;
    max-height: calc(100svh - 92px);
    overflow: auto;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
  }
  body.menu-open .site-nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-item > a { justify-content: space-between; width: 100%; }
  .dropdown { position: static; opacity: 1; transform: none; pointer-events: auto; min-width: auto; box-shadow: none; border: 0; padding: 0 0 6px 12px; background: transparent; }
  .hero { min-height: 760px; padding-top: 92px; }
  .hero::after { background: linear-gradient(180deg, rgba(15, 27, 40, .55), rgba(15, 27, 40, .86)); }
  .brand-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.35fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
  .trust-strip, .card-grid, .split, .duo, .subhero, .product-hero, .product-detail, .mini-links, .option-grid, .values, .contact-grid, .form-section, .product-facts, .model-card-grid, .document-grid, .inspiration-grid { grid-template-columns: 1fr 1fr; }
  .inspiration-card { grid-template-columns: 1fr; }
  .inspiration-card img { aspect-ratio: 16 / 10; }
  .story-row { grid-template-columns: 1fr; }
  .story-row.is-reversed img { order: 0; }
  .inspiration-gallery { grid-template-columns: 1fr 1fr; }
  .product-detail { align-items: stretch; }
}

@media (max-width: 680px) {
  body { padding-bottom: 62px; }
  .nav-shell { min-height: 76px; padding-left: 14px; padding-right: 14px; }
  .site-logo { min-height: 58px; min-width: 174px; padding: 8px 12px; }
  .site-logo img { height: 42px; max-width: 150px; }
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .hero { min-height: 680px; padding-bottom: 28px; }
  .button-row, .final-cta { align-items: stretch; }
  .btn { width: 100%; }
  .brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-card { min-height: 104px; padding: 18px; }
  .trust-strip, .card-grid, .split, .duo, .subhero, .product-hero, .product-detail, .mini-links, .option-grid, .values, .contact-grid, .form-section, .footer-grid, .product-facts, .model-card-grid, .document-grid, .inspiration-grid, .inspiration-gallery { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-brand-card { width: 100%; min-width: 0; min-height: 88px; padding: 18px; }
  .footer-brand-card img { height: 58px; max-width: 214px; }
  .document-card { min-height: auto; }
  .document-card__body h3 { min-height: 0; }
  .document-card__actions a, .inspiration-card .btn { width: 100%; justify-content: center; }
  .trust-strip { margin-top: 0; border-radius: 0; }
  .section { padding-top: 56px; padding-bottom: 56px; }
  .product-card a { grid-template-rows: 220px 1fr; }
  .image-panel { min-height: 320px; }
  .subhero, .product-hero { padding-top: 44px; }
  .final-cta, .advice-band { flex-direction: column; margin-left: 0; margin-right: 0; border-radius: 0; align-items: stretch; }
  .inspiration-hero { min-height: 680px; padding-top: 92px; }
  .inspiration-hero::after { background: linear-gradient(180deg, rgba(15, 27, 40, .54), rgba(15, 27, 40, .86)); }
  .inspiration-gallery { grid-auto-rows: 250px; }
  .inspiration-gallery figure:nth-child(1) { grid-row: auto; }
  .site-footer { padding-bottom: 84px; }
  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 28px rgba(23, 35, 48, .12);
  }
  .mobile-cta a { display: grid; place-items: center; min-height: 58px; color: var(--blue); font-weight: 900; border-right: 1px solid var(--line); }
  .mobile-cta a:last-child { border-right: 0; background: var(--accent); color: #fff; }
}
