:root {
  --bg: oklch(0.985 0.004 85);
  --bg-2: oklch(0.965 0.006 80);
  --ink: oklch(0.19 0.005 60);
  --ink-2: oklch(0.32 0.005 60);
  --ink-3: oklch(0.48 0.005 60);
  --rule: oklch(0.86 0.006 80);
  --rule-2: oklch(0.92 0.006 80);
  --accent: oklch(0.58 0.13 45);
  --accent-2: oklch(0.72 0.09 45);
  --ink-on-dark: oklch(0.93 0.006 80);
  --dark: oklch(0.18 0.004 60);
  --dark-2: oklch(0.24 0.004 60);
  --dark-rule: oklch(0.30 0.004 60);
  --max: 1440px;
  --gutter: 48px;
  --serif: "Newsreader", "Cormorant Garamond", Georgia, serif;
  --sans: "Schibsted Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "ss02";
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img { max-width: 100%; display: block; }

.nv-app { min-height: 100vh; }

/* -------- Nav -------- */
.nv-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}
.nv-nav.is-scrolled {
  background: color-mix(in oklch, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--rule);
}
.nv-nav__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 18px var(--gutter);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
}
.nv-nav__brand { display: flex; align-items: center; gap: 10px; }
.nv-nav__name { font-family: var(--serif); font-size: 22px; letter-spacing: 0.01em; font-weight: 500; }
.nv-nav__links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; justify-content: center; }
.nv-nav__links a { font-size: 14px; color: var(--ink-2); transition: color .15s; }
.nv-nav__links a:hover { color: var(--ink); }
.nv-nav__ctas { display: flex; gap: 16px; align-items: center; justify-content: flex-end; }
.nv-nav__link { font-size: 14px; color: var(--ink-2); }
.nv-nav__link:hover { color: var(--ink); }

/* -------- Buttons -------- */
.nv-btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 48px; padding: 0 22px;
  border-radius: 999px;
  font-size: 14px; letter-spacing: 0.01em; font-weight: 500;
  transition: background .18s, color .18s, transform .18s;
  white-space: nowrap;
}
.nv-btn--sm { height: 38px; padding: 0 16px; font-size: 13px; }
.nv-btn--dark { background: var(--ink); color: var(--bg); }
.nv-btn--dark:hover { background: #000; }
.nv-btn--light { background: var(--bg); color: var(--ink); }
.nv-btn--light:hover { background: #fff; }
.nv-btn--ghost { color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.nv-btn--ghost:hover { background: var(--ink); color: var(--bg); }
.nv-btn[disabled] { opacity: 0.7; cursor: default; }
.nv-arrow { display: inline-block; transition: transform .2s; }
.nv-btn:hover .nv-arrow { transform: translateX(3px); }

/* -------- Typography -------- */
.nv-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 5.6vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.nv-display em { font-style: italic; font-weight: 400; color: var(--accent); }
.nv-display--md { font-size: clamp(32px, 3.6vw, 56px); }
.nv-display--xl { font-size: clamp(56px, 8vw, 140px); line-height: 0.98; }
.nv-lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.45;
  color: var(--ink-2);
  margin: 0 0 16px;
  max-width: 62ch;
  text-wrap: pretty;
}
.nv-note { font-size: 15px; color: var(--ink-3); margin: 0 0 22px; max-width: 58ch; }
.nv-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* -------- Section shell -------- */
.nv-section {
  padding: 120px var(--gutter);
  max-width: var(--max); margin: 0 auto;
  position: relative;
}
.nv-section--dark {
  background: var(--dark); color: var(--ink-on-dark);
  max-width: none; margin: 0;
  padding-left: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  padding-right: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
}
.nv-section--dark .nv-lede { color: color-mix(in oklch, var(--ink-on-dark) 80%, transparent); }
.nv-section--dark .nv-note { color: color-mix(in oklch, var(--ink-on-dark) 60%, transparent); }
.nv-section--dark .nv-eyebrow { color: color-mix(in oklch, var(--ink-on-dark) 60%, transparent); }

.nv-section__grid {
  display: grid; grid-template-columns: 200px 1fr; gap: 64px;
  align-items: start;
  padding-bottom: 64px;
  border-top: 1px solid var(--rule);
  padding-top: 28px;
}
.nv-section--dark .nv-section__grid { border-top-color: var(--dark-rule); }
.nv-section__lead { position: sticky; top: 100px; }

/* -------- Hero -------- */
.nv-hero {
  padding: 140px var(--gutter) 80px;
  max-width: var(--max);
  margin: 0 auto;
  container-type: inline-size;
}
.nv-hero__meta {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3);
  padding-bottom: 24px; border-bottom: 1px solid var(--rule);
}
.nv-hero__title {
  font-family: var(--serif);
  font-weight: 400;
  /* Auto-shrinks to the content width so the three nowrap lines below never
     wrap to a fourth line. cqw = 1% of the hero's content-box width. */
  font-size: min(9.2cqw, 132px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 48px 0 56px;
}
.nv-hero__title span { display: block; white-space: nowrap; }
.nv-hero__title em { font-style: italic; color: var(--accent); }
.nv-hero__split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end;
}
.nv-hero__lede {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(18px, 1.5vw, 22px); line-height: 1.45;
  color: var(--ink-2); margin: 0; max-width: 44ch;
}
.nv-hero__cta { display: flex; gap: 14px; justify-self: end; flex-wrap: wrap; }
.nv-hero__stats {
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.nv-kv__k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; }
.nv-kv__v { font-family: var(--serif); font-size: 19px; color: var(--ink); font-weight: 400; }

/* -------- Promise -------- */
.nv-promise .nv-display { font-size: clamp(40px, 5.2vw, 88px); }

/* -------- Fixtures -------- */
.nv-fixtures__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-top: 16px;
}
.nv-fix { margin: 0; }
.nv-fix__cap {
  display: grid; grid-template-columns: 60px 1fr auto; gap: 16px;
  padding-top: 12px; align-items: baseline;
}
.nv-fix__n { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; color: var(--ink-3); }
.nv-fix__t { font-family: var(--serif); font-size: 18px; }
.nv-fix__s { font-size: 13px; color: var(--ink-3); }
.nv-fixtures__stats {
  margin-top: 80px; padding-top: 40px;
  border-top: 1px solid var(--rule);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
}
.nv-stat__n { font-family: var(--serif); font-size: clamp(48px, 5vw, 96px); line-height: 1; letter-spacing: -0.02em; }
.nv-stat__l { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-top: 12px; }

/* -------- Two ways -------- */
.nv-twoways__tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--rule); border: 1px solid var(--rule); margin-bottom: 32px; }
.nv-tab {
  display: flex; align-items: baseline; gap: 14px;
  padding: 28px 28px; background: var(--bg); text-align: left;
  transition: background .15s, color .15s;
}
.nv-tab:hover { background: var(--bg-2); }
.nv-tab.is-on { background: var(--ink); color: var(--bg); }
.nv-tab__n { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; opacity: 0.6; }
.nv-tab__t { font-family: var(--serif); font-size: 24px; }
.nv-twoways__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.nv-twoways__copy { padding-top: 8px; }
.nv-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.nv-list li {
  padding: 14px 0; border-top: 1px solid var(--rule);
  font-family: var(--serif); font-size: 18px;
  display: flex; justify-content: space-between; align-items: center;
}
.nv-list li::after { content: "→"; color: var(--ink-3); font-family: var(--sans); }

/* -------- Floorplan (dark) -------- */
.nv-floorplan__views {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.nv-view-cap {
  display: flex; justify-content: space-between; padding-top: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: color-mix(in oklch, var(--ink-on-dark) 55%, transparent);
}
.nv-view-cap span:first-child { color: var(--ink-on-dark); }

/* -------- Pillars -------- */
.nv-pillars__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--rule);
}
.nv-pillar { padding: 32px 24px 40px; border-right: 1px solid var(--rule); }
.nv-pillar:last-child { border-right: none; }
.nv-pillar__n { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: var(--ink-3); margin-bottom: 48px; }
.nv-pillar__t { font-family: var(--serif); font-weight: 400; font-size: 26px; line-height: 1.15; margin: 0 0 12px; letter-spacing: -0.01em; }
.nv-pillar__s { font-family: var(--serif); font-size: 17px; color: var(--ink-2); margin: 0 0 16px; }
.nv-pillar__d { font-size: 14px; color: var(--ink-3); margin: 0; }

/* -------- Social proof -------- */
.nv-social { padding: 80px var(--gutter); }
.nv-social__line { padding: 32px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.nv-social__line .nv-display { margin: 0; max-width: 16ch; }
.nv-social__logos {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 24px;
  padding: 40px 0 0;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em;
  color: var(--ink-3);
}
.nv-social__logo { padding: 10px 0; opacity: 0.75; transition: opacity .15s; }
.nv-social__logo:hover { opacity: 1; color: var(--ink); }

/* -------- Compare -------- */
.nv-compare__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.nv-plan { padding: 32px 24px 32px; border-right: 1px solid var(--rule); display: flex; flex-direction: column; }
.nv-plan:last-child { border-right: none; }
.nv-plan--featured { background: var(--ink); color: var(--bg); margin: -1px 0; }
.nv-plan--featured .nv-plan__body { color: color-mix(in oklch, var(--bg) 75%, transparent); }
.nv-plan--featured .nv-plan__meta span { color: color-mix(in oklch, var(--bg) 65%, transparent); }
.nv-plan--featured .nv-plan__n { color: var(--accent-2); }
.nv-plan--featured .nv-tick { color: var(--accent-2); }
.nv-plan__head { margin-bottom: 24px; }
.nv-plan__n { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: var(--ink-3); }
.nv-plan__t { font-family: var(--serif); font-weight: 400; font-size: 30px; letter-spacing: -0.01em; margin: 12px 0 12px; line-height: 1.05; }
.nv-plan__meta { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); padding-bottom: 14px; border-bottom: 1px solid var(--rule); }
.nv-plan--featured .nv-plan__meta { border-bottom-color: var(--dark-rule); }
.nv-plan__body { font-size: 14px; line-height: 1.55; color: var(--ink-2); margin: 18px 0 18px; }
.nv-plan__feats { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.nv-plan__feats li { font-size: 14px; display: flex; gap: 10px; }
.nv-tick { color: var(--accent); font-family: var(--mono); font-weight: 600; }
.nv-plan__cta { margin-top: auto; font-size: 13px; font-family: var(--mono); letter-spacing: 0.1em; text-transform: uppercase; color: inherit; padding-top: 14px; border-top: 1px solid var(--rule); }
.nv-plan--featured .nv-plan__cta { border-top-color: var(--dark-rule); }
.nv-plan__cta:hover .nv-arrow { transform: translateX(3px); }
.nv-compare__foot { padding-top: 32px; display: flex; justify-content: center; }

/* -------- Simple (timeline) -------- */
.nv-timeline {
  margin: 16px 0 56px;
  padding: 32px 8px 8px;
}
.nv-timeline__track {
  position: relative; height: 40px;
}
.nv-timeline__bar {
  position: absolute; top: 50%; left: 0; right: 0; height: 1px;
  background: var(--rule);
}
.nv-timeline__node {
  position: absolute; top: 50%; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.nv-timeline__dot {
  width: 12px; height: 12px; border-radius: 50%; background: var(--ink);
  box-shadow: 0 0 0 6px var(--bg);
}
.nv-timeline__time {
  position: absolute; top: 22px; white-space: nowrap;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3);
}
.nv-timeline__labels { display: none; }

.nv-simple__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--rule);
}
.nv-step { padding: 28px 24px 32px; border-right: 1px solid var(--rule); }
.nv-step:last-child { border-right: none; }
.nv-step__head { display: flex; justify-content: space-between; margin-bottom: 36px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }
.nv-step__t { font-family: var(--serif); font-weight: 400; font-size: 24px; line-height: 1.15; margin: 0 0 12px; letter-spacing: -0.005em; }
.nv-step__body { font-size: 14px; line-height: 1.55; color: var(--ink-2); margin: 0; }

/* -------- Confidence -------- */
.nv-confidence__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--rule); }
.nv-guarantee { padding: 40px 32px 40px; border-right: 1px solid var(--rule); }
.nv-guarantee:last-child { border-right: none; }
.nv-guarantee__n { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: var(--accent); margin-bottom: 32px; }
.nv-guarantee__t { font-family: var(--serif); font-weight: 400; font-size: 32px; letter-spacing: -0.01em; margin: 0 0 16px; }
.nv-guarantee__body { font-size: 16px; color: var(--ink-2); margin: 0; max-width: 48ch; }

/* -------- Indoor / Outdoor -------- */
.nv-io__toggle {
  display: inline-flex; gap: 2px;
  padding: 4px; background: var(--dark-2);
  border-radius: 999px; margin-bottom: 32px;
}
.nv-io__tab {
  padding: 10px 24px; border-radius: 999px;
  font-size: 13px; letter-spacing: 0.05em; color: color-mix(in oklch, var(--ink-on-dark) 60%, transparent);
  transition: background .15s, color .15s;
}
.nv-io__tab.is-on { background: var(--bg); color: var(--ink); }
.nv-io__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }
.nv-io__spec { padding-top: 8px; }
.nv-io__kv { padding-bottom: 20px; border-bottom: 1px solid var(--dark-rule); margin-bottom: 24px; }
.nv-io__kv .nv-kv__k { color: color-mix(in oklch, var(--ink-on-dark) 60%, transparent); }
.nv-io__kv .nv-kv__v { color: var(--ink-on-dark); font-size: 22px; }
.nv-io__list { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 12px; }
.nv-io__list li { display: flex; gap: 12px; font-size: 15px; color: color-mix(in oklch, var(--ink-on-dark) 85%, transparent); }

/* -------- Final CTA -------- */
.nv-final {
  max-width: var(--max); margin: 0 auto;
  padding: 140px var(--gutter) 120px;
  border-top: 1px solid var(--rule);
}
.nv-final__inner { max-width: 1100px; }
.nv-final .nv-lede { margin-bottom: 56px; max-width: 52ch; }
.nv-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px;
  border-top: 1px solid var(--rule); padding-top: 32px;
}
.nv-field { display: flex; flex-direction: column; gap: 10px; padding: 20px 0; border-bottom: 1px solid var(--rule); }
.nv-field--wide { grid-column: 1 / -1; }
.nv-field__k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.nv-field input, .nv-field select {
  background: transparent; border: 0; outline: 0;
  font-family: var(--serif); font-size: 24px; color: var(--ink);
  padding: 4px 0;
}
.nv-field input::placeholder { color: color-mix(in oklch, var(--ink) 28%, transparent); }
.nv-field__submit { grid-column: 1 / -1; justify-self: start; margin-top: 32px; }
.nv-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.nv-form__msg { grid-column: 1 / -1; margin-top: 18px; font-size: 15px; }
.nv-form__msg--err { color: #b94a2a; }
.nv-form__msg--ok { color: var(--ink-2); }
.nv-final__contact a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.15s ease; }
.nv-final__contact a:hover { border-bottom-color: currentColor; }
.nv-final__contact {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 80px; padding-top: 24px; border-top: 1px solid var(--rule);
}

/* -------- Footer -------- */
.nv-footer {
  background: var(--ink); color: var(--ink-on-dark);
  padding: 80px var(--gutter) 40px;
}
.nv-footer__top {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 2fr; gap: 80px;
  padding-bottom: 60px; border-bottom: 1px solid var(--dark-rule);
}
.nv-footer__brand { color: var(--ink-on-dark); }
.nv-footer__tag { font-size: 14px; color: color-mix(in oklch, var(--ink-on-dark) 65%, transparent); max-width: 40ch; margin: 20px 0 0; }
.nv-footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.nv-footer__ck { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: color-mix(in oklch, var(--ink-on-dark) 55%, transparent); margin-bottom: 18px; }
.nv-footer__cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: color-mix(in oklch, var(--ink-on-dark) 85%, transparent); }
.nv-footer__cols a { color: inherit; text-decoration: none; transition: color 0.15s ease; }
.nv-footer__cols a:hover { color: var(--ink-on-dark); }
.nv-footer__bot {
  max-width: var(--max); margin: 0 auto;
  padding-top: 24px; display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: color-mix(in oklch, var(--ink-on-dark) 55%, transparent);
}

/* -------- Tweaks panel -------- */
.nv-tweaks {
  position: fixed; right: 20px; bottom: 20px; z-index: 100;
  background: var(--bg);
  border: 1px solid var(--rule); border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  width: 280px; overflow: hidden;
  font-size: 13px;
}
.nv-tweaks__head {
  padding: 12px 16px; border-bottom: 1px solid var(--rule);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3); display: flex; justify-content: space-between;
}
.nv-tweaks__body { padding: 12px 16px 16px; display: flex; flex-direction: column; gap: 14px; }
.nv-tweaks__row { display: flex; flex-direction: column; gap: 6px; }
.nv-tweaks__k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.nv-tweaks__opts { display: flex; gap: 4px; flex-wrap: wrap; }
.nv-tweaks__opt { flex: 1; padding: 6px 8px; border: 1px solid var(--rule); background: var(--bg); font-size: 12px; border-radius: 6px; min-width: 0; white-space: nowrap; }
.nv-tweaks__opt.is-on { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.nv-tweaks__swatch { width: 20px; height: 20px; border-radius: 4px; border: 1px solid var(--rule); }

/* -------- Responsive (tablet) -------- */
@media (max-width: 1100px) {
  .nv-section__grid { grid-template-columns: 1fr; gap: 20px; }
  .nv-section__lead { position: static; }
  .nv-fixtures__grid { grid-template-columns: repeat(2, 1fr); }
  .nv-fixtures__stats { grid-template-columns: repeat(3, 1fr); }
  .nv-pillars__grid, .nv-compare__grid, .nv-simple__grid { grid-template-columns: repeat(2, 1fr); }
  .nv-pillar:nth-child(2), .nv-plan:nth-child(2), .nv-step:nth-child(2) { border-right: none; }
  .nv-social__logos { grid-template-columns: repeat(4, 1fr); }
  .nv-confidence__grid { grid-template-columns: 1fr; }
  .nv-guarantee { border-right: none; border-bottom: 1px solid var(--rule); }
  .nv-io__grid, .nv-twoways__grid, .nv-floorplan__views, .nv-final__contact, .nv-hero__split, .nv-hero__stats { grid-template-columns: 1fr; gap: 24px; }
  .nv-hero__cta { justify-self: start; }
  .nv-footer__top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  /* On phones, let the hero wrap naturally rather than force one line per
     phrase (which would overflow at readable sizes). */
  .nv-hero__title { font-size: clamp(40px, 13vw, 72px); }
  .nv-hero__title span { display: inline; white-space: normal; }
  .nv-hero__title span::after { content: " "; }
}

/* US/UK region switcher (§12) */
.nv-region {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--rule);
  border-radius: 999px;
  overflow: hidden;
  background: var(--bg);
}
.nv-region__btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink-3);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.35em 0.7em;
  cursor: pointer;
  line-height: 1.4;
  transition: background 0.15s ease, color 0.15s ease;
}
.nv-region__btn + .nv-region__btn { border-left: 1px solid var(--rule); }
.nv-region__btn:hover { color: var(--ink); }
.nv-region__btn.is-on { background: var(--dark); color: var(--ink-on-dark); }
@media (max-width: 900px) {
  .nv-region { display: none; }
}
