/*
 * Concept 23 — "Founder Voice v6" (based on Concept 22, Avenir Next)
 * Round 15: the deliverable gets its own section, "What you leave with",
 * placed BEFORE the four-step process: a lead sentence (the map is one page,
 * the value is the work behind it), a navy "page" panel with the example
 * map stacked above two list columns (short list / not now), a five-item
 * "In the Opportunity Map" deliverables list, and a tier footnote.
 * Concept 22 — "Founder Voice v5" (based on Concept 21, Avenir Next)
 * Round 14: the Opportunity Map made concrete for one fictional company (a
 * 60-person technical installer): eight numbered use cases on the matrix,
 * a ranked short list with build time in weeks beside it, and a "Not now,
 * and why" block; legend under the figure; outcome line as the lead.
 * Concept 21 — "Founder Voice v4" (based on Concept 20, Avenir Next)
 * Round 13: founder photo to the RIGHT of the credibility copy on desktop
 * (heading back on the page's left edge); the photo stays first in the DOM
 * so on mobile it still sits above the heading, left-aligned and smaller.
 * Chip wording "Shipped AI products myself".
 * Concept 20 — "Founder Voice v3" (based on Concept 19, Avenir Next)
 * Round 12: inline-SVG Opportunity Map visual carries the orange of the
 * (renamed) "How an engagement runs" band; credibility moved up under the
 * problem quote with a larger photo and four specific chips; build/advise
 * line under the tiers; one orange element TYPE per section, no two
 * neighbours alike (FAQ rules → ink hairlines + orange markers, flagship
 * tier → orange outline + badge, step squares → white on the main page).
 * Round 11: at least one orange element per section (standing rule),
 * hamburger navigation, orange credential chips, orange item rules,
 * steady logo ticker (8 groups, same px speed).
 * Round 8 content pivot implemented as a new concept:
 *   - first-person copy throughout (c18.* translation keys)
 *   - new "problem" section: the client quote + the three failure modes
 *   - new "three ways in" tier section (Quickscan / Opportunity Map /
 *     Execution Plan) on a light sky band, flagship badged
 *   - new FAQ section (ruled two-column items)
 * Design language carries over from 17: squared Dutch-Modernist planes,
 * 3px ink separation bars, roundness only from the otter, logo marquee.
 * Standalone stylesheet (no @import) so this concept is a fixed snapshot.
 */

body {
  --ct-sans: "Avenir Next", Avenir, "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-family: var(--ct-sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

.wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(2.75rem, 6vw, 4.75rem) 1.5rem;
}

/* Hard separation bars between every section. */
.hero,
.problem,
.values,
.tiers,
.outcome,
.map,
.cred,
.faq,
.final,
.otterband {
  border-bottom: 3px solid var(--ink);
}

/* ---- Header (solid, sticky, never see-through) ---------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
}

.brand {
  display: flex;
  align-items: center; /* vertically centers the wordmark on the logo's middle */
  gap: 0.7rem;
  text-decoration: none;
}

.brand__icon {
  width: 72px;
  height: 72px;
}

.brand__text {
  display: flex;
  flex-direction: column;
  justify-content: center; /* keep the name/tag block centered on the logo */
  line-height: 1.05;
}

.brand__name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.brand__ai {
  color: var(--deep-orange);
}

.brand__tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 0.15rem;
}

.lang-switch {
  display: flex;
  align-items: center; /* centers the EN/NL group on the header's middle */
  gap: 0.4rem;
}

.lang-switch button {
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  padding: 0.28rem 0.7rem;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.lang-switch button[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

/* ---- Buttons (squared, uppercase labels) ---------------------------- */

.button {
  display: inline-block;
  background: var(--orange);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.75rem;
  border: 2px solid transparent;
}

.button:hover {
  background: #e88a12;
}

.button--on-orange {
  background: var(--ink);
  color: var(--paper);
}

.button--on-orange:hover {
  background: var(--navy);
  color: var(--white);
}

/* ---- Shared heading + label type ------------------------------------ */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--navy);
}

/* ---- Hero (navy plane, squared) ------------------------------------- */

.hero {
  background: var(--navy);
  color: var(--white);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--white);
  max-width: 22ch;
  margin-bottom: 1.6rem;
}

.hero__copy {
  max-width: 52ch;
  font-size: 1.06rem;
  color: #d9e4f2;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
}

.hero :focus-visible {
  outline-color: var(--orange);
}

/* Review-phase note on draft subpages (placeholder copy marker). */
.hero__note {
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9fb6d2;
}

/* ---- Problem (white plane, oversized client quote) ------------------ */

.problem {
  background: var(--white);
}

.problem__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}

.problem__quote {
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
  max-width: 34ch;
  border-left: 6px solid var(--orange);
  padding-left: clamp(1rem, 2.5vw, 1.5rem);
  margin: 1.75rem 0 2rem;
}

.problem__body {
  max-width: 62ch;
  color: #2e2933;
}

/* ---- Values (white plane, orange-ruled columns) --------------------- */

.values {
  background: var(--white);
}

.values h2 {
  margin-bottom: 2.25rem;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}

.value {
  border-top: 3px solid var(--orange);
  padding-top: 1rem;
}

.value h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  max-width: 18ch;
  margin-bottom: 0.55rem;
}

.value p {
  font-size: 0.95rem;
  color: #2e2933;
  max-width: 34ch;
}

/* Link from a value column to a dedicated service page. */
.value__more {
  display: inline-block;
  margin-top: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 0.15rem;
}

.value__more:hover {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

/* ---- Tiers (light sky band, white cards, flagship badge) ------------ */

.tiers {
  background: rgba(89, 157, 218, 0.16);
}

.tiers__intro {
  max-width: 48ch;
  color: #2e2933;
  margin: 1rem 0 2.5rem;
}

.tiers__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.tier {
  position: relative;
  background: var(--white);
  border-top: 3px solid var(--ink);
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.tier--flagship {
  border: 3px solid var(--orange);
}

.tier__badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.65rem;
}

/* Muted variant for offerings that are not bookable yet. */
.tier__badge--dev {
  background: var(--navy);
  color: var(--white);
}

.tier h3 {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

.tier__meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--blue);
}

.tier p:not(.tier__meta):not(.tier__badge) {
  font-size: 0.95rem;
  color: #2e2933;
}

/* ---- Map (navy band; orange square + label on one line) ------------- */

.map {
  background: var(--navy);
  color: var(--white);
}

.map h2 {
  color: var(--white);
}

.map__intro {
  color: var(--sky);
  max-width: 42ch;
  margin: 1rem 0 3rem;
}

.map__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.map__steps li {
  counter-increment: step;
  border-top: 3px solid var(--orange);
  padding-top: 1.1rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "num label"
    ".   body";
  column-gap: 0.75rem;
  row-gap: 0.55rem;
  align-items: center;
}

.map__steps li::before {
  content: counter(step);
  grid-area: num;
  display: inline-grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
}

.map__steps h3 {
  grid-area: label;
  align-self: center;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.map__steps p {
  grid-area: body;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #cfdef0;
  margin: 0;
}

.map__outcome {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--blue);
  max-width: 40rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.map :focus-visible {
  outline-color: var(--orange);
}

/* Main-page variant (.map--run): steps keep the Concept 19 orange rules and
   number squares (founder preference, Round 12b); the SVG plot adds to it. */

.run__result {
  margin-top: 3.25rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--blue);
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 2.5rem 3rem;
  align-items: center;
}

.run__result .map__outcome {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.oppmap {
  margin: 0;
}

.oppmap__svg {
  display: block;
  width: 100%;
  height: auto;
  font-family: var(--font-mono);
}

.oppmap__caption {
  margin-top: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9fb6d2;
}

.oppmap__q--now {
  fill: rgba(252, 150, 34, 0.12);
}

.oppmap__grid {
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 1;
  stroke-dasharray: 4 5;
}

.oppmap__axis {
  stroke: var(--sky);
  stroke-width: 2;
}

.oppmap__arrow {
  fill: var(--sky);
}

.oppmap__axis-label {
  fill: var(--sky);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.oppmap__qlabel {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.oppmap__qlabel--now {
  fill: var(--orange);
}

.oppmap__qlabel--later {
  fill: var(--sky);
}

.oppmap__qlabel--ignore {
  fill: #8fa3b8;
}

.oppmap__dot text {
  font-size: 12px;
  font-weight: 700;
}

.oppmap__dot--now circle {
  fill: var(--orange);
}

.oppmap__dot--now text {
  fill: var(--ink);
}

.oppmap__dot--later circle {
  fill: var(--navy);
  stroke: var(--sky);
  stroke-width: 2.5;
}

.oppmap__dot--later text {
  fill: var(--white);
}

.oppmap__dot--ignore circle {
  fill: none;
  stroke: #8fa3b8;
  stroke-width: 2;
}

.oppmap__dot--ignore path {
  stroke: #8fa3b8;
  stroke-width: 2;
  stroke-linecap: square;
}

.oppmap__ring {
  fill: none !important;
  stroke: var(--white) !important;
  stroke-width: 1.5 !important;
  stroke-dasharray: 3 3;
}

/* Concrete map (22): outcome line leads, list sits beside the figure. */
.map__outcome--lead {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--blue);
}

.run__result--list {
  margin-top: 2rem;
  padding-top: 0;
  border-top: 0;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: start;
}

.oppmap__dot-tag {
  fill: #8fa3b8;
  font-size: 11px;
  font-weight: 700;
}

.shortlist__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 0.9rem;
}

.shortlist__label--not {
  color: #8fa3b8;
  margin-top: 1.75rem;
}

.shortlist__ranked {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: rank;
}

.shortlist__ranked--not {
  counter-reset: rank 5;
}

.shortlist__ranked li {
  counter-increment: rank;
  display: grid;
  grid-template-columns: 1.9rem minmax(0, 1fr);
  column-gap: 0.75rem;
  row-gap: 0.15rem;
  align-items: baseline;
  padding: 0.6rem 0;
  border-top: 1px solid rgba(89, 157, 218, 0.35);
}

.shortlist__ranked li:last-child {
  border-bottom: 1px solid rgba(89, 157, 218, 0.35);
}

.shortlist__ranked li::before {
  content: counter(rank);
  grid-row: 1 / span 2;
  align-self: start;
  display: inline-grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
}

.shortlist__ranked--not li::before {
  background: transparent;
  color: #8fa3b8;
  box-shadow: inset 0 0 0 2px #8fa3b8;
}

.shortlist__name {
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.3;
  color: var(--white);
}

.shortlist__meta {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: #cfdef0;
}

.shortlist__ranked--not .shortlist__name {
  color: #cfdef0;
}

.oppmap__legend {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cfdef0;
}

.oppmap__legend-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.oppmap__legend-item::before {
  content: "";
  flex: 0 0 auto;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
}

.oppmap__legend-item--now::before {
  background: var(--orange);
}

.oppmap__legend-item--later::before {
  background: var(--navy);
  box-shadow: inset 0 0 0 2px var(--sky);
}

.oppmap__legend-item--ignore::before {
  box-shadow: inset 0 0 0 2px #8fa3b8;
}

.oppmap__legend-item--flag::before {
  border: 1.5px dashed var(--white);
}

/* ---- Credibility (split grid, centered photo, trusted-by row) ------- */

.cred__grid {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
  grid-template-areas: "body aside";
  gap: 3rem;
  align-items: start;
}

/* Photo is first in the DOM (mobile order) but sits right on desktop. */
.cred__aside {
  grid-area: aside;
  padding-top: 0.35rem; /* optically align the disc top with the h2 cap height */
}

.cred__body {
  grid-area: body;
}

.cred h2 {
  max-width: 22ch;
  margin-bottom: 1.25rem;
}

.cred__copy {
  color: #2e2933;
  max-width: 40rem;
}

.cred__photo {
  width: min(260px, 100%);
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 50%;
  border: 4px solid var(--navy);
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.cred__proof {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cred__proof li {
  background: var(--orange);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
}

.cred__trusted {
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid #ddd9e0;
}

.cred__trusted-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.25rem;
}

/* The three marks scroll as a slow, seamless ticker. Two identical logo
   groups sit in the track; the whole track shifts by exactly one group
   (-50%) and loops, so the motion never visibly resets. Edges fade with a
   mask; hover/focus pauses it so a logo can be read. */
.logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.logo-marquee__track {
  display: flex;
  width: max-content;
  animation: logo-scroll 64s linear infinite;
}

.logo-marquee:hover .logo-marquee__track,
.logo-marquee:focus-within .logo-marquee__track {
  animation-play-state: paused;
}

.logo-row {
  list-style: none;
  margin: 0;
  /* trailing pad == internal gap so the -50% loop is seamless */
  padding: 0 2.75rem 0 0;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 2.75rem;
}

.logo-row img {
  height: 30px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.6;
  transition: filter 200ms ease, opacity 200ms ease;
}

.logo-row img:hover {
  filter: none;
  opacity: 1;
}

/* The Hague Tech is a square mark; nudge it up so it optically matches the
   two wide wordmarks. */
.logo-row__square {
  height: 44px !important;
}

@keyframes logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .logo-marquee__track {
    animation: none;
    flex-wrap: wrap;
    gap: 1.25rem 0;
  }

  /* no motion → drop the duplicate group, show a plain static row */
  .logo-marquee__track ul[aria-hidden="true"] {
    display: none;
  }
}

/* ---- Outcome / deliverable (white plane, navy page panel) ------------- */

.outcome {
  background: var(--white);
}

.outcome__lead {
  max-width: 60ch;
  color: #2e2933;
  margin: 1rem 0 2.5rem;
}

.outcome__panel {
  background: var(--navy);
  color: var(--white);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.outcome__panel .run__result--stack {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.outcome__panel .oppmap__svg {
  max-width: 640px;
  margin: 0 auto;
}

.outcome__panel .oppmap__legend {
  justify-items: start;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(4, auto);
  justify-content: space-between;
}

.outcome__panel .oppmap__caption {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.shortlist--two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--blue);
}

.shortlist--two .shortlist__label--not {
  margin-top: 0;
}

.outcome__label {
  margin-top: 2.75rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}

.outcome__list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.75rem;
}

.outcome__list li {
  border-top: 1px solid var(--ink);
  padding-top: 0.85rem;
}

.outcome__list h4 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.outcome__list p {
  font-size: 0.9rem;
  color: #2e2933;
}

.outcome__tiers {
  margin-top: 2rem;
  max-width: 60ch;
  font-size: 0.92rem;
  color: #2e2933;
}

/* ---- FAQ (white plane, ruled two-column items) ----------------------- */

.faq {
  background: var(--white);
}

.faq h2 {
  margin-bottom: 2.25rem;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.25rem 3rem;
}

.faq__item {
  border-top: 1px solid var(--ink);
  padding-top: 1rem;
}

.faq__item h3 {
  position: relative;
  padding-left: 1.4rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  max-width: 32ch;
  margin-bottom: 0.55rem;
}

/* The section's one orange element: a small square marker per question. */
.faq__item h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 0.6rem;
  height: 0.6rem;
  background: var(--orange);
}

.faq__item p {
  padding-left: 1.4rem;
}

.faq__item p {
  font-size: 0.95rem;
  color: #2e2933;
  max-width: 48ch;
}

/* ---- Final CTA (orange plane) --------------------------------------- */

.final {
  background: var(--orange);
  color: var(--ink);
}

.final__inner {
  max-width: 46rem;
}

.final h2 {
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.final__copy {
  max-width: 34rem;
  margin-bottom: 2rem;
  color: #2a1c08;
}

.final__reassurance {
  margin-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: #3a2a10;
}

.final :focus-visible {
  outline-color: var(--navy);
}

/* ---- Otter feature strip (closing, reduced height) ------------------ */

.otterband {
  background: var(--paper);
  display: flex;
  justify-content: center;
  padding: clamp(1.5rem, 3.5vw, 2.25rem) 1.5rem;
  overflow: hidden;
}

.otterband__art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 240px;
}

.otterband__art::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(89, 157, 218, 0.22);
  transform: translate(-2rem, -1.25rem);
}

.otterband__art::after {
  content: "";
  position: absolute;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: rgba(252, 150, 34, 0.3);
  right: 8%;
  bottom: 6%;
}

.otterband__logo {
  position: relative;
  z-index: 1;
  width: min(240px, 66vw);
  height: auto;
}

/* ---- Footer (ink, with legal line) ---------------------------------- */

.site-footer {
  background: var(--ink);
  color: var(--paper);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 2rem;
  align-items: baseline;
}

.site-footer p {
  font-size: 0.9rem;
}

.site-footer__links {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}

.site-footer a {
  color: var(--sky);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.site-footer a:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.site-footer :focus-visible {
  outline-color: var(--orange);
}

.site-footer__legal {
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(248, 250, 248, 0.16);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: #b7b2bd;
}

.site-footer__legal span:not(:last-child)::after {
  content: "·";
  margin-left: 0.5rem;
  color: #6a6570;
}

/* ---- Responsive ------------------------------------------------------ */

@media (max-width: 900px) {
  .values__grid,
  .tiers__grid {
    grid-template-columns: 1fr;
  }

  .faq__grid {
    grid-template-columns: 1fr;
  }

  .map__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cred__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "aside"
      "body";
    gap: 1.75rem;
  }

  .cred__aside {
    padding-top: 0;
  }

  .cred__photo {
    width: 180px;
    margin: 0;
  }

  .run__result {
    grid-template-columns: 1fr;
  }

  .outcome__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .outcome__panel .oppmap__legend {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: start;
  }

  .site-footer__links {
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .otterband__art::before {
    width: 220px;
    height: 220px;
    transform: translate(-1rem, -0.75rem);
  }

  .otterband__art::after {
    width: 78px;
    height: 78px;
  }

  .otterband__logo {
    width: min(185px, 58vw);
  }
}

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

  .shortlist--two,
  .outcome__list {
    grid-template-columns: 1fr;
  }
}

/* ---- Header controls + hamburger menu (Concept 19) ------------------- */

.site-header__controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 5px;
  width: 46px;
  height: 42px;
  padding: 0 11px;
  background: var(--paper);
  border: 2px solid var(--ink);
}

.menu-toggle__bar {
  display: block;
  height: 3px;
  background: var(--ink);
}

.menu-toggle[aria-expanded="true"] {
  background: var(--ink);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar {
  background: var(--paper);
}

.site-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
}

.site-menu ul {
  list-style: none;
  margin: 0;
  padding: 0.75rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.site-menu a {
  display: inline-block;
  padding: 0.5rem 0 0.35rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 3px solid transparent;
}

.site-menu a:hover {
  color: var(--ink);
  border-bottom-color: var(--orange);
}

/* ---- "And after the plan?" line under the ladder --------------------- */

.tiers__after {
  margin-top: 2.5rem;
  max-width: 60ch;
  font-size: 0.95rem;
  color: #2e2933;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.tiers__after-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ---- Orange item-rule variant (practical-details cards) -------------- */

.tiers--orange .tier {
  border-top-color: var(--orange);
}
