/* ==========================================================================
   BRYN · Page Styles
   Organized in section order matching index.html. blog.html reuses the
   nav, hero and footer blocks.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.nav.is-solid {
  background-color: rgba(255,253,247,0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--color-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  height: 80px;
  transition: height var(--transition-base);
}

.nav.is-solid .nav__inner {
  height: 64px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--color-forest);
  flex-shrink: 0;
}

.nav__logo-mark {
  height: 34px;
  width: auto;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: var(--tracking-brand);
  line-height: 1;
  padding-top: 3px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.6vw, 2.25rem);
}

.nav__link {
  position: relative;
  display: inline-block;
  padding-block: 0.4rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--color-forest);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--color-brass);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition-base);
}

.nav__link:hover::after,
.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

/* CTA block that only exists inside the open mobile menu */
.nav__menu-cta {
  display: none;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  height: 1.5px;
  background: var(--color-forest);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* The links plus the CTA need ~1100px; below that the menu collapses */
@media (max-width: 1100px) {
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--sp-2) var(--sp-6) var(--sp-6);
    background: var(--color-ivory);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__link {
    display: block;
    padding-block: 0.95rem;
    border-bottom: 1px solid var(--color-border);
  }

  .nav__link::after {
    display: none;
  }

  .nav__menu-cta {
    display: block;
    padding-top: var(--sp-6);
  }

  .nav__menu-cta .btn {
    width: 100%;
  }

  .nav__menu-tel {
    display: block;
    margin-top: var(--sp-4);
    text-align: center;
    font-size: var(--text-sm);
    color: var(--color-text-mid);
  }

  .nav__toggle {
    display: flex;
  }
}

/* The header CTA stays visible on phones; it only gets more compact */
@media (max-width: 480px) {
  .nav__actions {
    gap: var(--sp-2);
  }

  .nav__actions .btn {
    padding: 0.65rem 0.75rem;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }
}

@media (max-width: 380px) {
  .nav__logo-text {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Hero (also used for the blog placeholder)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background-color: var(--color-forest-dark);
}

.hero__media {
  position: absolute;
  inset: -8% 0 -8% 0;
  z-index: -2;
  will-change: transform;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
  transform-origin: 62% 58%;
  animation: hero-drift 44s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to   { transform: scale(1.10) translate3d(-1.2%, -0.8%, 0); }
}

/* Ivory glow behind the text block keeps the forest copy readable over the ridges */
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 62% 58% at 50% 48%, rgba(255,253,247,0.80), rgba(255,253,247,0.45) 55%, rgba(255,253,247,0) 78%),
    linear-gradient(180deg,
      rgba(255,253,247,0.45) 0%,
      rgba(255,253,247,0.15) 50%,
      rgba(255,253,247,0) 65%,
      rgba(13,32,28,0.50) 100%);
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 112px var(--sp-6) 150px;
  color: var(--color-forest);
}

.hero__mark {
  height: clamp(52px, 6vw, 72px);
  width: auto;
  margin-bottom: var(--sp-5);
}

.hero__tagline {
  margin-bottom: var(--sp-5);
  font-size: clamp(0.72rem, 1.2vw, 0.85rem);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-forest);
}

.hero__headline {
  max-width: 17ch;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.2vw, 5rem);
  line-height: 1.05;
  color: var(--color-forest);
  text-wrap: balance;
}

.hero__headline span {
  display: block;
}

/* Home hero: one question, a little wider so it breaks in two or three lines */
.hero__headline--question {
  max-width: 20ch;
}

/* No lead paragraph on the home hero: the buttons follow the rule directly */
.hero__rule + .hero__actions {
  margin-top: var(--sp-3);
}

.hero__rule {
  display: block;
  width: 76px;
  height: 2px;
  margin: var(--sp-6) 0 var(--sp-5);
  background: var(--color-brass);
}

.hero__lead {
  max-width: 36rem;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--color-text);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}

/* Outline button over a photo needs its own ground to stay readable */
.hero .btn--outline {
  background-color: rgba(255,253,247,0.88);
}

.hero .btn--outline:hover {
  background-color: var(--color-forest);
}

.hero__phonetic {
  position: absolute;
  right: clamp(16px, 4vw, 48px);
  bottom: clamp(20px, 4vw, 40px);
  font-family: var(--font-body), 'Noto Sans', 'Segoe UI', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--color-ivory);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  translate: -50% 0;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--color-ivory);
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 46px;
  background: linear-gradient(var(--color-ivory), rgba(255,253,247,0));
  transform-origin: top center;
  animation: scroll-cue 2.6s var(--ease-out) 3;
}

@keyframes scroll-cue {
  0%   { transform: scaleY(0); opacity: 0; }
  30%  { opacity: 1; }
  65%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

@media (max-width: 480px) {
  .hero__content { padding: 96px var(--sp-4) 120px; }
  .hero__actions { width: 100%; max-width: 340px; }
  .hero__actions .btn { width: 100%; }
  .hero__scroll { display: none; }
}

/* --------------------------------------------------------------------------
   Shared section frame
   -------------------------------------------------------------------------- */
.section {
  position: relative;
  padding-block: clamp(4.5rem, 10vw, 8rem);
}

/* Second line of a two-part heading, e.g. "Organisaties zien een berg." */
.heading__sub {
  display: block;
  margin-top: var(--sp-3);
  font-size: clamp(1.4rem, 2.6vw, 1.95rem);
  line-height: 1.3;
  color: var(--color-brass-dark);
}

.nowrap {
  white-space: nowrap;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-brass-dark);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color var(--transition-fast);
}

.text-link:hover {
  color: var(--color-forest);
}

/* --------------------------------------------------------------------------
   2 · Story · "Herken je dit?"
   -------------------------------------------------------------------------- */
.story {
  background: var(--color-ivory);
  overflow: hidden;
}

.story__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.story__text > p,
.story__text [data-stagger] p {
  max-width: 34em;
  margin-bottom: var(--sp-4);
  font-size: var(--text-md);
  color: var(--color-text-mid);
}

.story__list {
  margin: var(--sp-6) 0;
  padding-left: var(--sp-6);
  border-left: 2px solid var(--color-brass-light);
}

.story__list li {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.45;
  color: var(--color-forest);
}

/* The line every zaakvoerder recognises: underline it in brass */
.highlight {
  color: inherit;
  background: linear-gradient(transparent 62%, rgba(169,134,84,0.28) 62%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.story__text .story__kicker {
  margin-top: var(--sp-6);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-forest);
}

.story__media {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-stone);
}

.story__media img {
  position: absolute;
  inset: -8% 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  object-position: 72% 50%;
}

@media (max-width: 860px) {
  .story__grid { grid-template-columns: 1fr; }
  .story__media { aspect-ratio: 16 / 11; }
}

/* Keep the page short on phones: the story reads fine without the photo */
@media (max-width: 600px) {
  .story__media { display: none; }
}

/* --------------------------------------------------------------------------
   3 · Pillars · "Wat is BRYN?"
   -------------------------------------------------------------------------- */
.pillars {
  background: var(--color-forest);
  color: var(--color-ivory);
  overflow: hidden;
  isolation: isolate;
}

.pillars__topo {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  color: var(--color-brass);
  opacity: 0.14;
  pointer-events: none;
}

/* Fits one screen: tighter padding, title and intro side by side */
.pillars {
  padding-block: clamp(3.5rem, 6vw, 4.5rem);
}

.pillars__intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--sp-10);
  align-items: end;
}

.pillars__intro .rule {
  margin-bottom: 0;
}

.pillars__intro .pillars__caption {
  margin-top: var(--sp-3);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  color: var(--color-brass-light);
}

@media (max-width: 860px) {
  .pillars__intro { grid-template-columns: 1fr; gap: 0; }
  .pillars__intro .rule { margin-bottom: var(--sp-6); }
}

.pillars__intro p {
  font-size: var(--text-md);
  color: rgba(255,253,247,0.85);
}

/* The mountain: an irregular SVG silhouette cut into four levels plus the
   summit (viewBox 0 -60 1000 760, base at y=700). The stage is as tall as
   the art (--mh), sized so the whole section fits one screen; the art is
   centered and the notes sit left and right of it. Each .layer is a
   full-stage overlay whose name and note are placed with --xn / --yn
   (fractions of the art box, set inline in the HTML). */
.mountain {
  --mh: max(320px, min(460px, calc(100svh - 400px), calc((100vw - 540px) * 0.76)));
  --aw: calc(var(--mh) * 1000 / 760);
  position: relative;
  height: var(--mh);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.mountain__art {
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--aw);
  height: var(--mh);
  translate: -50% 0;
  overflow: visible;
  filter: drop-shadow(0 18px 24px rgba(8, 20, 17, 0.35));
}

.mtn-shade   { fill: #000; opacity: 0.16; }
.mtn-snow    { fill: var(--color-stone); }
.mtn-terrace { stroke: rgba(205, 180, 140, 0.8); stroke-width: 3; }

.mtn-leader line {
  stroke: var(--color-brass-light);
  stroke-width: 2;
  stroke-dasharray: 2 8;
  stroke-linecap: round;
}

.mtn-leader circle {
  fill: var(--color-brass-light);
}

.mountain__trail-line {
  fill: none;
  stroke: var(--color-ivory);
  stroke-opacity: 0.75;
  stroke-width: 3.5;
  stroke-dasharray: 1.5 11;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* The mask path "walks" the dotted trail into view */
.mountain__trail-mask {
  fill: none;
  stroke: #fff;
  stroke-width: 40;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}

.mountain__flag {
  color: var(--color-brass);
  transform-box: fill-box;
  transform-origin: 0% 100%;
}

.layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.layer > * {
  pointer-events: auto;
}

/* The name sits inside its level */
.layer__name {
  position: absolute;
  top: calc(var(--mh) * var(--yn));
  left: calc(50% - var(--aw) / 2 + var(--aw) * var(--xn));
  translate: -50% -50%;
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-ivory);
}

.layer__num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--color-brass-light);
}

/* The note sits beside its level, on the side its pointer runs to */
.layer__note {
  position: absolute;
  top: calc(var(--mh) * var(--yn));
  width: calc(50% - var(--aw) / 2 - 1rem);
  max-width: 17rem;
  translate: 0 -50%;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255,253,247,0.88);
}

.layer__note--left {
  right: calc(50% + var(--aw) / 2 + 1rem);
  text-align: right;
}

.layer__note--right {
  left: calc(50% + var(--aw) / 2 + 1rem);
}

/* Build sequence: JS reveals the levels bottom-up with their names and
   notes, and adds .is-built; CSS then walks the trail and plants the flag */
.motion-ready .mtn-part,
.motion-ready .mtn-leader,
.motion-ready .layer__name,
.motion-ready .layer__note {
  opacity: 0;
}

.motion-ready .mountain__trail-mask {
  stroke-dashoffset: 1;
}

.motion-ready .mountain__flag {
  opacity: 0;
  transform: scale(0.3);
}

.mountain.is-built .mountain__trail-mask {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 2.4s cubic-bezier(0.45, 0, 0.2, 1) 1.5s;
}

.mountain.is-built .mountain__flag {
  opacity: 1;
  transform: none;
  transition: opacity 0.3s ease 3.8s, transform 0.7s var(--ease-out) 3.8s;
}

/* Only shown where the layers are too narrow for their texts */
.mountain-legend {
  display: none;
}

.mountain-legend li {
  padding-left: var(--sp-4);
  border-left: 2px solid var(--color-brass);
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,253,247,0.88);
}

.mountain-legend strong {
  display: block;
  margin-bottom: var(--sp-1);
  font-size: 0.78rem;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-ivory);
}

.mountain-legend strong span {
  margin-right: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--color-brass-light);
}

/* Tablet and phone: the art takes the full width, names stay inside the
   levels, notes and pointers make way for the legend list below */
@media (max-width: 1024px) {
  .mountain {
    --aw: min(calc(100vw - 3rem), 640px);
    --mh: calc(var(--aw) * 760 / 1000);
  }
  .layer__note,
  .mtn-leader { display: none; }
  .layer__name { gap: 0.3rem; font-size: 0.64rem; }
  .layer__num { font-size: 1.05rem; }
  .mountain-legend { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); margin-top: var(--sp-8); }
}

@media (max-width: 600px) {
  .layer__name { font-size: 0.56rem; letter-spacing: 0.12em; }
  .layer__num { font-size: 0.95rem; }
  .mountain-legend { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   5 · Method · Hoe we werken (gesprek, SEE. PLAN. CLIMB., resultaat)
   -------------------------------------------------------------------------- */
.method {
  background: var(--color-ivory);
}

.method__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.method__head {
  position: sticky;
  top: 120px;
}

.method__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-forest);
}

.method__title span {
  display: block;
}

.method__title span:last-child {
  color: var(--color-brass);
}

.method__lead {
  max-width: 26rem;
  color: var(--color-text-mid);
  font-size: var(--text-md);
}

/* The climbing trail: a dashed track with a brass line that fills on scroll.
   The trail wrapper is the positioning context, so each step's offsetTop is
   measured against it in main.js. */
.method__trail {
  position: relative;
}

.method__track,
.method__progress {
  position: absolute;
  left: 31px;
  top: 32px;
  bottom: 32px;
  width: 2px;
}

.method__track {
  background: repeating-linear-gradient(180deg, var(--color-stone-2) 0 8px, transparent 8px 14px);
}

.method__progress {
  background: linear-gradient(180deg, var(--color-brass-light), var(--color-brass));
  transform-origin: top center;
}

.motion-ready .method__progress {
  transform: scaleY(0);
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--sp-6);
  padding-bottom: clamp(2.25rem, 4.5vw, 3rem);
}

.step:last-child {
  padding-bottom: 0;
}

.step__node {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-forest);
  color: var(--color-brass);
  box-shadow: 0 0 0 6px var(--color-ivory), 0 0 0 7px var(--color-brass);
  transition: background-color 500ms var(--ease-out), color 500ms var(--ease-out),
              box-shadow 500ms var(--ease-out), transform 500ms var(--ease-out);
}

.step__node svg {
  width: 30px;
  height: 30px;
}

.step--summit .step__node {
  background: var(--color-brass);
  color: var(--color-forest-deep);
}

.motion-ready .step:not(.is-active) .step__node {
  background: var(--color-stone);
  color: var(--color-brass-dark);
  box-shadow: 0 0 0 6px var(--color-ivory), 0 0 0 7px var(--color-stone-2);
  transform: scale(0.92);
}

.step__body {
  padding-top: 0.35rem;
  border-bottom: 1px solid var(--color-brass-light);
  padding-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.step:last-child .step__body {
  border-bottom: 0;
  padding-bottom: 0;
}

.step__num {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-brass-dark);
}

/* Titles are sentence case in the markup (screen readers read "See", not
   "S-E-E") and uppercased here to match the brochure */
.step__title {
  margin: 0.2rem 0 var(--sp-3);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-forest);
}

.step__text {
  max-width: 32rem;
  color: var(--color-text-mid);
  font-size: var(--text-md);
}

.step__goal {
  max-width: 30rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  line-height: 1.3;
  color: var(--color-forest);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}

.chip {
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--color-brass);
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-brass-dark);
}

.chip--now {
  background: var(--color-forest);
  border-color: var(--color-forest);
  color: var(--color-ivory);
}

@media (max-width: 860px) {
  .method__grid { grid-template-columns: 1fr; }
  .method__head { position: static; }
}

@media (max-width: 480px) {
  .step { grid-template-columns: 52px 1fr; gap: var(--sp-4); }
  .step__node { width: 52px; height: 52px; }
  .step__node svg { width: 24px; height: 24px; }
  .method__track, .method__progress { left: 25px; top: 26px; bottom: 26px; }
}

/* --------------------------------------------------------------------------
   6 · BRYN Climb Scan
   -------------------------------------------------------------------------- */
.scan {
  isolation: isolate;
  overflow: hidden;
  background: var(--color-stone);
}

.scan__bg {
  position: absolute;
  inset: -10% 0;
  z-index: -3;
}

.scan__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 70%;
}

.scan::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg,
    rgba(255,253,247,0.95) 0%,
    rgba(255,253,247,0.86) 45%,
    rgba(255,253,247,0.70) 100%);
}

.scan__compass {
  position: absolute;
  left: 50%;
  top: 40%;
  z-index: -1;
  width: min(760px, 120vw);
  height: auto;
  aspect-ratio: 1;
  translate: -50% -50%;
  color: var(--color-brass);
  opacity: 0.2;
  pointer-events: none;
}

.scan__head {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}

.scan__head .eyebrow {
  justify-content: center;
}

.scan__head p {
  font-size: var(--text-md);
  color: var(--color-text-mid);
}

.scan__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.scan-card {
  padding: var(--sp-6);
  background: rgba(255,253,247,0.8);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(169,134,84,0.28);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.scan-card:hover {
  border-color: var(--color-brass);
  box-shadow: var(--shadow-md);
}

.scan-card__label {
  padding-bottom: var(--sp-3);
  margin-bottom: var(--sp-2);
  border-bottom: 1px solid var(--color-brass-light);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-forest);
}

.scan-card__list li {
  margin-top: var(--sp-3);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text);
}

.scan-card__list strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-brass-dark);
}

.scan__result {
  max-width: 42rem;
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
  text-align: center;
}

.scan__result-label {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-forest);
}

.scan__result-text {
  text-wrap: balance;
  margin: var(--sp-3) 0 var(--sp-3);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  line-height: 1.3;
  color: var(--color-forest);
}

.scan__result-after {
  color: var(--color-text-mid);
}

/* Tarieven: three engagement formats with a price indication */
.plans {
  margin-top: clamp(3.5rem, 7vw, 5rem);
  scroll-margin-top: 90px;
}

.plans__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  text-align: center;
  color: var(--color-forest);
}

.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-10);
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--sp-8) var(--sp-6);
  background: rgba(255,253,247,0.9);
  border: 1px solid rgba(169,134,84,0.3);
  border-radius: var(--radius-md);
}

.plan--featured {
  border: 2px solid var(--color-forest);
  box-shadow: var(--shadow-md);
}

.plan__badge {
  position: absolute;
  top: 0;
  left: var(--sp-6);
  translate: 0 -50%;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--color-forest);
  color: var(--color-ivory);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.plan__name {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-forest);
}

.plan__price {
  margin-top: var(--sp-3);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  line-height: 1.1;
  color: var(--color-forest);
}

.plan__price-note {
  margin-top: var(--sp-1);
  font-size: var(--text-sm);
  color: var(--color-text-mid);
}

.plan__text {
  flex: 1;
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--color-brass-light);
  color: var(--color-text-mid);
}

.plan__cta {
  align-self: flex-start;
  margin-top: var(--sp-6);
}

@media (max-width: 1024px) {
  .scan__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .plans__grid { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; }
}

@media (max-width: 600px) {
  .scan__grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   7 · Contact · "Let's meet."
   -------------------------------------------------------------------------- */
.meet {
  background: var(--color-forest-dark);
  color: var(--color-ivory);
}

.meet__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.meet__media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
}

.meet__img {
  position: absolute;
  inset: -10% 0;
  z-index: -2;
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: 50% 42%;
}

/* Dark scrim at the top carries the heading and intro over a bright sky */
.meet__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,
    rgba(13,32,28,0.82) 0%,
    rgba(13,32,28,0.62) 38%,
    rgba(13,32,28,0.12) 70%,
    rgba(13,32,28,0.45) 100%);
}

.meet__intro {
  padding: clamp(6.5rem, 12vw, 9rem) clamp(1.5rem, 5vw, 4rem) var(--sp-8);
}

.meet__intro .heading {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
}

.meet__intro p {
  max-width: 24rem;
  font-size: var(--text-lg);
  color: var(--color-ivory);
}

.meet__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 5vw, 5rem);
}

.meet__direct {
  margin-top: var(--sp-10);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,253,247,0.14);
}

.meet__direct-title {
  margin-bottom: var(--sp-4);
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-ivory);
}

.meet__details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-6);
}

.meet__detail {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  max-width: 100%;
  color: rgba(255,253,247,0.9);
  transition: color var(--transition-fast);
}

.meet__detail:hover {
  color: var(--color-brass-light);
}

.meet__detail-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(169,134,84,0.55);
  border-radius: 50%;
  color: var(--color-brass-light);
}

.meet__detail-icon svg {
  width: 20px;
  height: 20px;
}

.meet__detail span:last-child {
  overflow-wrap: anywhere;
}

/* Form on dark */
.form-note {
  margin-bottom: var(--sp-5);
  font-size: var(--text-sm);
  color: rgba(255,253,247,0.75);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4) var(--sp-5);
}

.form-grid > * {
  min-width: 0;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  margin-bottom: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brass-light);
}

.form-optional {
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255,253,247,0.7);
}

.required-star {
  margin-left: 2px;
  color: var(--color-brass-light);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,253,247,0.06);
  border: 1px solid rgba(255,253,247,0.4);
  border-radius: var(--radius-sm);
  color: var(--color-ivory);
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255,253,247,0.6);
}

.form-input:focus-visible,
.form-select:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid var(--color-brass-light);
  outline-offset: 2px;
  border-color: var(--color-brass);
  background: rgba(255,253,247,0.1);
}

.form-select option {
  color: var(--color-text);
  background: var(--color-ivory);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.form-input.is-invalid,
.form-select.is-invalid,
.form-textarea.is-invalid {
  border-color: var(--color-error-light);
}

.form-hint {
  display: block;
  margin-top: var(--sp-1);
  font-size: var(--text-xs);
  color: rgba(255,253,247,0.7);
}

.form-error {
  display: block;
  min-height: 1.1em;
  margin-top: var(--sp-1);
  font-size: var(--text-xs);
  color: var(--color-error-light);
}

.form-submit {
  margin-top: var(--sp-6);
}

.form-reassure {
  margin-top: var(--sp-4);
  font-size: var(--text-sm);
  line-height: 1.6;
  color: rgba(255,253,247,0.78);
}

.form-status {
  margin-top: var(--sp-5);
  padding: var(--sp-4) var(--sp-5);
  border: 1px solid var(--color-brass);
  border-radius: var(--radius-sm);
  background: rgba(169,134,84,0.12);
  color: var(--color-ivory);
}

.form-status:empty {
  display: none;
}

.form-status.is-error {
  border-color: var(--color-error-light);
  background: rgba(176,58,46,0.18);
}

/* Spam trap: off-screen rather than display:none, which some bots skip */
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status:focus {
  outline: 2px solid var(--color-brass-light);
  outline-offset: 2px;
}

/* Phones: a short photo band, then straight to the form */
@media (max-width: 960px) {
  .meet__grid { grid-template-columns: 1fr; min-height: 0; }
  .meet__media { min-height: 0; }
  .meet__intro { padding: var(--sp-16) var(--sp-4) var(--sp-8); }
  .meet__panel { padding: var(--sp-10) var(--sp-4) var(--sp-16); }
}

@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  padding-block: var(--sp-16) var(--sp-8);
  background: var(--color-forest-deep);
  color: rgba(255,253,247,0.75);
  font-size: 0.92rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: var(--sp-10);
}

.footer__logo {
  width: 132px;
  height: auto;
}

.footer__tagline {
  margin-top: var(--sp-5);
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-brass-light);
}

.footer__col-title {
  margin-bottom: var(--sp-4);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--color-brass-light);
}

.footer__link-list li + li {
  margin-top: var(--sp-2);
}

.footer__link {
  transition: color var(--transition-fast);
  overflow-wrap: anywhere;
}

.footer__link:hover {
  color: var(--color-ivory);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-top: var(--sp-12);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,253,247,0.12);
  font-size: 0.8rem;
}

.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
}

@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}
