/* Northgate & Vale — specimen stylesheet. Editorial, quiet: warm paper, ink-blue
   type, an oxblood accent used once per screen, hairline rules, wide margins. */

@font-face { font-family: 'Fraunces'; src: url('/assets/fonts/specimen/fraunces-wght.woff2') format('woff2'); font-weight: 100 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Fraunces'; src: url('/assets/fonts/specimen/fraunces-wght-italic.woff2') format('woff2'); font-weight: 100 900; font-style: italic; font-display: swap; }
@font-face { font-family: 'Inter Tight'; src: url('/assets/fonts/specimen/inter-tight-wght.woff2') format('woff2'); font-weight: 100 900; font-style: normal; font-display: swap; }

.spec-northgate-vale {
  --paper: #F5F0E6;
  --paper-2: #ECE5D6;
  --paper-3: #E3DAC8;
  --ink: #111D35;
  --ink-2: #3A4762;
  --ink-3: #6F7A93;
  --line: rgba(17, 29, 53, 0.16);
  --line-strong: rgba(17, 29, 53, 0.42);
  --ox: #6B1E2D;
  --serif: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', 'Book Antiqua', Georgia, serif;
  --sans: 'Inter Tight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --gutter: clamp(20px, 5.5vw, 88px);
  --max: 1360px;
  --nav-h: 60px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern', 'liga';
}
.spec-northgate-vale #spec-main { background: var(--paper); overflow-x: clip; }
.spec-northgate-vale *, .spec-northgate-vale *::before, .spec-northgate-vale *::after { box-sizing: border-box; }
.spec-northgate-vale :where(img) { display: block; max-width: 100%; height: auto; }
.spec-northgate-vale :where(h1, h2, h3, p, ol, ul, dl, figure) { margin: 0; }
.spec-northgate-vale :where(ol, ul) { padding: 0; list-style: none; }
.spec-northgate-vale :where(a) { color: inherit; text-decoration: none; }
.spec-northgate-vale :focus-visible { outline: 2px solid var(--ox); outline-offset: 4px; border-radius: 2px; }
.spec-northgate-vale ::selection { background: var(--ink); color: var(--paper); }
.spec-northgate-vale [id] { scroll-margin-top: calc(var(--nav-h) + 64px); }

/* ---- layout primitives ------------------------------------------------- */
.nv-wrap { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }
.nv-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(16px, 2.4vw, 36px); }
.nv-sec { padding-block: clamp(72px, 10vw, 148px); }
.nv-sec + .nv-sec { border-top: 1px solid var(--line); }

/* running head: the one oxblood mark on most screens */
.nv-kicker { display: flex; align-items: center; gap: 14px; font-family: var(--sans); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ox); margin-bottom: clamp(22px, 3vw, 40px); }
.nv-kicker::before { content: ''; width: 34px; height: 1px; background: currentColor; }
.nv-kicker .nv-kicker-n { color: var(--ink-3); letter-spacing: 0.12em; }

.nv-h2 { font-family: var(--serif); font-weight: 350; font-size: clamp(2rem, 4.2vw, 3.5rem); line-height: 1.06; letter-spacing: -0.015em; text-wrap: balance; }
.nv-h2 em, .nv-h1 em { font-style: italic; font-weight: 320; }
.nv-h3 { font-family: var(--serif); font-weight: 450; font-size: clamp(1.25rem, 1.7vw, 1.55rem); line-height: 1.22; letter-spacing: -0.01em; }
.nv-lede { font-size: clamp(1.15rem, 1.5vw, 1.4rem); line-height: 1.5; font-weight: 380; color: var(--ink); text-wrap: pretty; }
.nv-body { color: var(--ink-2); text-wrap: pretty; }
.nv-body + .nv-body { margin-top: 1em; }
.nv-small { font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.02em; color: var(--ink-3); }

/* buttons + links */
.nv-btn { display: inline-flex; align-items: center; gap: 12px; font-family: var(--sans); font-size: 0.86rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; padding: 16px 26px; border: 1px solid var(--ink); color: var(--ink); background: transparent; position: relative; isolation: isolate; overflow: hidden; transition: color 0.45s var(--ease); cursor: pointer; }
.nv-btn::before { content: ''; position: absolute; inset: 0; background: var(--ink); transform: translateY(101%); transition: transform 0.5s var(--ease); z-index: -1; }
.nv-btn:hover { color: var(--paper); }
.nv-btn:hover::before { transform: translateY(0); }
.nv-btn svg { width: 16px; height: 16px; transition: transform 0.45s var(--ease); }
.nv-btn:hover svg { transform: translateX(4px); }
.nv-btn-solid { background: var(--ink); color: var(--paper); }
.nv-btn-solid::before { background: var(--ox); }
.nv-link { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 0.86rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); padding-bottom: 4px; background: linear-gradient(currentColor, currentColor) no-repeat 0 100% / 100% 1px; transition: background-size 0.45s var(--ease), color 0.3s; }
.nv-link:hover { background-size: 34% 1px; color: var(--ink-2); }

/* ---- sticky in-page nav (sits beneath the Ozwebnet bar) --------------- */
.nv-nav { position: sticky; top: var(--nv-bar, 44px); z-index: 800; background: rgba(245, 240, 230, 0.86); -webkit-backdrop-filter: blur(14px) saturate(1.2); backdrop-filter: blur(14px) saturate(1.2); border-bottom: 1px solid var(--line); }
.nv-nav-in { display: flex; align-items: center; justify-content: space-between; min-height: var(--nav-h); gap: 24px; }
.nv-brand { display: inline-flex; align-items: baseline; gap: 14px; }
.nv-brand-mark { font-family: var(--sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; color: var(--ink); border: 1px solid var(--line-strong); padding: 5px 7px 4px; line-height: 1; }
.nv-brand-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 450; letter-spacing: -0.005em; white-space: nowrap; }
.nv-brand-name em { font-style: italic; font-weight: 350; }
.nv-menu { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 36px); }
.nv-menu a { font-family: var(--sans); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); padding: 6px 0; position: relative; transition: color 0.3s; }
.nv-menu a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease); }
.nv-menu a:hover, .nv-menu a.is-active { color: var(--ink); }
.nv-menu a:hover::after, .nv-menu a.is-active::after { transform: scaleX(1); }
.nv-menu .nv-nav-cta { color: var(--ink); border: 1px solid var(--ink); padding: 9px 16px; transition: background 0.35s, color 0.35s; }
.nv-menu .nv-nav-cta::after { display: none; }
.nv-menu .nv-nav-cta:hover { background: var(--ink); color: var(--paper); }
.nv-menu-btn { display: none; font-family: var(--sans); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; background: none; border: 1px solid var(--line-strong); color: var(--ink); padding: 9px 14px; cursor: pointer; }
.nv-menu-btn[aria-expanded="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ---- 00 hero ------------------------------------------------------------- */
.nv-hero { padding-top: clamp(56px, 8vw, 120px); }
.nv-eyebrow { font-family: var(--sans); font-size: 0.74rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); margin-bottom: clamp(28px, 4vw, 56px); display: flex; align-items: center; gap: 18px; }
.nv-eyebrow::before { content: ''; width: 34px; height: 1px; background: var(--line-strong); }
.nv-hero-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(16px, 2.4vw, 36px); align-items: end; row-gap: 48px; }
.nv-h1 { grid-column: 1 / span 8; font-family: var(--serif); font-weight: 300; font-size: clamp(2.9rem, 7.2vw, 6.6rem); line-height: 0.98; letter-spacing: -0.025em; text-wrap: balance; }
.nv-h1 em { color: var(--ox); font-weight: 320; }
.nv-index { grid-column: 10 / span 3; border-top: 1px solid var(--line-strong); padding-top: 16px; }
.nv-index-head { font-family: var(--sans); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.nv-index li + li { border-top: 1px solid var(--line); }
.nv-index a { display: grid; grid-template-columns: 34px 1fr auto; align-items: baseline; gap: 10px; padding: 10px 0; font-family: var(--serif); font-size: 1.05rem; font-weight: 420; transition: padding-left 0.4s var(--ease), color 0.3s; }
.nv-index a span:first-child { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.1em; color: var(--ink-3); }
.nv-index a span:last-child { font-family: var(--sans); font-size: 0.8rem; color: var(--ink-3); opacity: 0; transform: translateX(-6px); transition: opacity 0.35s, transform 0.4s var(--ease); }
.nv-index a:hover { padding-left: 6px; }
.nv-index a:hover span:last-child { opacity: 1; transform: none; }
.nv-hero-foot { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(16px, 2.4vw, 36px); margin-top: clamp(48px, 6vw, 88px); padding-top: clamp(28px, 3vw, 40px); border-top: 1px solid var(--line); align-items: start; }
.nv-hero-foot .nv-lede { grid-column: 1 / span 6; }
.nv-cta-row { grid-column: 8 / span 5; display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; justify-self: end; padding-top: 6px; }

/* full-bleed plates */
.nv-bleed { margin-top: clamp(56px, 7vw, 104px); }
.nv-bleed img { width: 100%; height: auto; aspect-ratio: 1536 / 1024; object-fit: cover; }
.nv-bleed-tall img { aspect-ratio: 21 / 9; object-position: 50% 55%; }
.nv-bleed figcaption { display: flex; justify-content: space-between; gap: 24px; padding: 14px 0 0; font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.04em; color: var(--ink-3); }
.nv-bleed figcaption span:last-child { text-align: right; }
.nv-bleed figcaption i { font-style: normal; color: var(--ox); }
.nv-plate { overflow: hidden; background: var(--paper-3); }
.nv-plate img { transform: scale(1.03); transition: transform 1.6s var(--ease); }
.nv-plate.in img { transform: none; }

/* ---- 01 practice ---------------------------------------------------------- */
.nv-practice .nv-grid { row-gap: 40px; }
.nv-practice-lead { grid-column: 1 / span 4; position: sticky; top: calc(var(--nav-h) + 64px); align-self: start; }
.nv-practice-lead .nv-body { margin-top: 24px; max-width: 34ch; }
.nv-practice-list { grid-column: 6 / span 7; border-top: 1px solid var(--line-strong); }
.nv-pa { display: grid; grid-template-columns: 56px 1fr; column-gap: 20px; padding: clamp(26px, 3vw, 38px) 0; border-bottom: 1px solid var(--line); position: relative; }
.nv-pa::before { content: ''; position: absolute; left: 0; bottom: -1px; height: 1px; width: 0; background: var(--ink); transition: width 0.7s var(--ease); }
.nv-pa:hover::before { width: 100%; }
.nv-pa-n { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.12em; color: var(--ink-3); padding-top: 0.55em; }
.nv-pa .nv-h3 { transition: transform 0.5s var(--ease); }
.nv-pa:hover .nv-h3 { transform: translateX(6px); }
.nv-pa .nv-body { margin-top: 12px; max-width: 62ch; }
.nv-pa-tags { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 16px; font-family: var(--sans); font-size: 0.76rem; letter-spacing: 0.05em; color: var(--ink-3); }
.nv-pa-tags li::before { content: '·'; margin-right: 8px; color: var(--line-strong); }
.nv-pa-tags li:first-child::before { display: none; }

/* ---- 02 approach (band) ---------------------------------------------------- */
.nv-approach { background: var(--paper-2); border-top: 1px solid var(--line); }
.nv-approach .nv-grid { row-gap: 40px; align-items: start; }
.nv-approach-head { grid-column: 1 / span 12; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(16px, 2.4vw, 36px); margin-bottom: clamp(36px, 5vw, 72px); }
.nv-approach-head .nv-h2 { grid-column: 1 / span 7; }
.nv-approach-head .nv-body { grid-column: 9 / span 4; padding-top: 10px; }
.nv-approach-fig { grid-column: 1 / span 5; position: sticky; top: calc(var(--nav-h) + 64px); }
.nv-approach-fig img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.nv-approach-fig figcaption { padding-top: 12px; font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.04em; color: var(--ink-3); }
.nv-principles { grid-column: 7 / span 6; }
.nv-principle { border-top: 1px solid var(--line-strong); padding: clamp(28px, 3vw, 40px) 0 clamp(32px, 3.4vw, 48px); display: grid; grid-template-columns: 56px 1fr; column-gap: 20px; }
.nv-principle-n { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 1.6rem; line-height: 1; color: var(--ink-3); padding-top: 2px; }
.nv-principle .nv-h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); font-weight: 380; }
.nv-principle .nv-body { margin-top: 16px; }
.nv-principle .nv-aside { margin-top: 18px; padding-left: 16px; border-left: 1px solid var(--line-strong); font-style: italic; color: var(--ink-2); font-size: 1rem; }

/* ---- 03 people ------------------------------------------------------------- */
.nv-people .nv-grid { row-gap: 40px; }
.nv-people-lead { grid-column: 1 / span 5; }
.nv-people-lead .nv-body { margin-top: 24px; max-width: 40ch; }
.nv-roles { grid-column: 7 / span 6; }
.nv-role { display: grid; grid-template-columns: 1fr 2fr; column-gap: 28px; padding: clamp(26px, 3vw, 36px) 0; border-top: 1px solid var(--line); }
.nv-role:first-child { border-top-color: var(--line-strong); }
.nv-role:last-child { border-bottom: 1px solid var(--line); }
.nv-role .nv-h3 { font-size: 1.3rem; }
.nv-role-sub { display: block; margin-top: 8px; font-family: var(--sans); font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); }
.nv-role .nv-body { font-size: 1rem; }
.nv-people-note { margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--line-strong); max-width: 40ch; }
.nv-people-note .nv-h3 { font-size: 1.15rem; font-weight: 420; }
.nv-people-note .nv-body { margin-top: 10px; font-size: 1rem; }

/* ---- 04 notes -------------------------------------------------------------- */
.nv-notes-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(36px, 5vw, 64px); }
.nv-notes-head .nv-small { max-width: 40ch; }
.nv-notes-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 clamp(24px, 3vw, 48px); border-top: 1px solid var(--line-strong); }
.nv-note { padding: 28px 0 36px; border-bottom: 1px solid var(--line); position: relative; display: flex; flex-direction: column; gap: 14px; }
.nv-note + .nv-note::before { content: ''; position: absolute; left: calc(-1 * clamp(24px, 3vw, 48px) / 2); top: 28px; bottom: 36px; width: 1px; background: var(--line); }
.nv-note-meta { display: flex; justify-content: space-between; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.nv-note-meta b { font-weight: 500; color: var(--ink); }
.nv-note .nv-h3 { font-size: clamp(1.35rem, 1.8vw, 1.75rem); font-weight: 380; line-height: 1.15; }
.nv-note .nv-body { font-size: 1rem; }
.nv-note-foot { margin-top: auto; padding-top: 10px; font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.04em; color: var(--ink-3); }

/* ---- 05 first conversation -------------------------------------------------- */
.nv-first .nv-grid { row-gap: 40px; align-items: start; }
.nv-first-copy { grid-column: 1 / span 6; }
.nv-first-copy .nv-body { margin-top: 24px; max-width: 46ch; }
.nv-steps { margin-top: clamp(36px, 4vw, 56px); border-top: 1px solid var(--line-strong); counter-reset: step; }
.nv-step { display: grid; grid-template-columns: 56px 1fr; column-gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.nv-step-n { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 1.5rem; line-height: 1; color: var(--ink-3); padding-top: 3px; }
.nv-step .nv-h3 { font-size: 1.25rem; }
.nv-step .nv-body { margin-top: 8px; font-size: 1rem; max-width: 52ch; }
.nv-first-fig { grid-column: 8 / span 5; position: sticky; top: calc(var(--nav-h) + 64px); }
.nv-first-fig img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; }
.nv-first-fig figcaption { padding-top: 12px; font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.04em; color: var(--ink-3); display: flex; justify-content: space-between; gap: 16px; }
.nv-first-cta { margin-top: 32px; }

/* ---- 06 enquiry -------------------------------------------------------------- */
.nv-enquiry { padding-top: 0; }
.nv-sec + .nv-enquiry { border-top: 0; }
.nv-enquiry .nv-bleed { margin-top: 0; }
.nv-enquiry-body { padding-top: clamp(56px, 7vw, 104px); }
.nv-enquiry .nv-grid { row-gap: 40px; align-items: start; }
.nv-enquiry-copy { grid-column: 1 / span 5; }
.nv-enquiry-copy .nv-body { margin-top: 24px; max-width: 38ch; }
.nv-locality { margin-top: 36px; border-top: 1px solid var(--line-strong); }
.nv-locality div { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
.nv-locality dt { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); padding-top: 5px; }
.nv-locality dd { margin: 0; color: var(--ink-2); }
.nv-form { grid-column: 7 / span 6; }
.nv-field { display: grid; gap: 10px; padding: 18px 0 20px; border-bottom: 1px solid var(--line); }
.nv-form { border-top: 1px solid var(--line-strong); }
.nv-field label { font-family: var(--sans); font-size: 0.74rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.nv-field input, .nv-field select, .nv-field textarea { width: 100%; font-family: var(--serif); font-size: 1.1rem; color: var(--ink); background: transparent; border: 0; padding: 4px 0; outline: none; border-radius: 0; -webkit-appearance: none; appearance: none; }
.nv-field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.nv-field input::placeholder, .nv-field textarea::placeholder { color: var(--ink-3); opacity: 0.75; font-style: italic; }
.nv-field select { background-image: linear-gradient(45deg, transparent 50%, var(--ink-3) 50%), linear-gradient(135deg, var(--ink-3) 50%, transparent 50%); background-position: calc(100% - 12px) 55%, calc(100% - 6px) 55%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 30px; cursor: pointer; }
.nv-field:focus-within label { color: var(--ox); }
.nv-field:focus-within { border-bottom-color: var(--ink); }
.nv-form-row { display: grid; grid-template-columns: 1fr 1fr; column-gap: 32px; }
.nv-form-foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 28px; }
.nv-form-note { font-family: var(--sans); font-size: 0.82rem; color: var(--ink-3); max-width: 34ch; line-height: 1.45; }
.nv-form-msg { display: none; margin-top: 22px; padding: 16px 18px; border: 1px solid var(--line-strong); font-size: 1rem; color: var(--ink-2); background: var(--paper-2); }
.nv-form-msg.is-shown { display: block; }
.nv-form-msg b { color: var(--ox); font-weight: 500; }

/* ---- specimen footer -------------------------------------------------------- */
.nv-foot { border-top: 1px solid var(--line-strong); padding: 40px 0 56px; }
.nv-foot .nv-wrap { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(16px, 2.4vw, 36px); row-gap: 28px; align-items: start; }
.nv-foot-brand { grid-column: 1 / span 4; }
.nv-foot-brand .nv-brand-name { font-size: 1.5rem; }
.nv-foot-brand p { margin-top: 10px; }
.nv-foot-nav { grid-column: 6 / span 4; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.nv-foot-nav a { font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-2); transition: color 0.3s; }
.nv-foot-nav a:hover { color: var(--ox); }
.nv-foot-meta { grid-column: 10 / span 3; text-align: right; }
.nv-foot-meta a { color: var(--ink); border-bottom: 1px solid var(--line-strong); }

/* ---- motion ------------------------------------------------------------------ */
.nv-js .rv { opacity: 0; transform: translateY(22px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.nv-js .rv.in { opacity: 1; transform: none; }
.nv-js .rv-d1 { transition-delay: 0.1s; }
.nv-js .rv-d2 { transition-delay: 0.2s; }
.nv-js .rv-d3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .spec-northgate-vale *, .spec-northgate-vale *::before, .spec-northgate-vale *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .nv-js .rv { opacity: 1; transform: none; }
  .nv-plate img { transform: none; }
}

/* ---- responsive ---------------------------------------------------------------- */
@media (max-width: 1100px) {
  .nv-h1 { grid-column: 1 / span 12; }
  .nv-index { grid-column: 1 / span 6; }
  .nv-hero-foot .nv-lede { grid-column: 1 / span 8; }
  .nv-cta-row { grid-column: 1 / span 12; justify-self: start; padding-top: 8px; }
  .nv-practice-lead { grid-column: 1 / span 12; position: static; }
  .nv-practice-list { grid-column: 1 / span 12; }
  .nv-approach-head .nv-h2 { grid-column: 1 / span 9; }
  .nv-approach-head .nv-body { grid-column: 1 / span 8; padding-top: 0; margin-top: 20px; }
  .nv-approach-fig { grid-column: 1 / span 12; position: static; }
  .nv-approach-fig img { aspect-ratio: 16 / 9; }
  .nv-principles { grid-column: 1 / span 12; }
  .nv-people-lead, .nv-roles { grid-column: 1 / span 12; }
  .nv-people-note { max-width: 60ch; margin-top: 32px; }
  .nv-first-copy { grid-column: 1 / span 7; }
  .nv-first-fig { grid-column: 9 / span 4; }
  .nv-enquiry-copy { grid-column: 1 / span 12; }
  .nv-form { grid-column: 1 / span 12; }
  .nv-foot-brand { grid-column: 1 / span 6; }
  .nv-foot-nav { grid-column: 7 / span 6; }
  .nv-foot-meta { grid-column: 1 / span 12; text-align: left; }
}
@media (max-width: 760px) {
  .spec-northgate-vale { font-size: 1rem; }
  .nv-menu-btn { display: inline-block; }
  .nv-menu { display: none; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line-strong); padding: 8px var(--gutter) 20px; }
  .nv-menu.is-open { display: flex; }
  .nv-menu a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
  .nv-menu a::after { display: none; }
  .nv-menu .nv-nav-cta { margin-top: 16px; text-align: center; padding: 14px; border-bottom: 1px solid var(--ink); }
  .nv-brand-mark { display: none; }
  .nv-h1 { font-size: clamp(2.75rem, 12.5vw, 4rem); }
  .nv-index { grid-column: 1 / span 12; }
  .nv-hero-grid { row-gap: 40px; }
  .nv-hero-foot .nv-lede { grid-column: 1 / span 12; }
  .nv-bleed img { aspect-ratio: 4 / 5; }
  .nv-bleed-tall img { aspect-ratio: 4 / 3; }
  .nv-bleed figcaption { flex-direction: column; gap: 4px; }
  .nv-bleed figcaption span:last-child { text-align: left; }
  .nv-pa { grid-template-columns: 1fr; row-gap: 8px; }
  .nv-pa-n { padding-top: 0; }
  .nv-pa:hover .nv-h3 { transform: none; }
  .nv-principle { grid-template-columns: 1fr; row-gap: 10px; }
  .nv-role { grid-template-columns: 1fr; row-gap: 12px; }
  .nv-notes-grid { grid-template-columns: 1fr; border-top: 0; }
  .nv-note { border-top: 1px solid var(--line-strong); border-bottom: 0; padding: 24px 0 32px; }
  .nv-note + .nv-note::before { display: none; }
  .nv-first-copy { grid-column: 1 / span 12; }
  .nv-first-fig { grid-column: 1 / span 12; position: static; }
  .nv-first-fig img { aspect-ratio: 4 / 5; }
  .nv-step { grid-template-columns: 1fr; row-gap: 6px; }
  .nv-locality div { grid-template-columns: 1fr; gap: 4px; }
  .nv-form-row { grid-template-columns: 1fr; column-gap: 0; }
  .nv-foot-brand, .nv-foot-nav { grid-column: 1 / span 12; }
  .nv-foot-nav { grid-template-columns: 1fr 1fr; }
}
