/*
 * Structa Engineering — main stylesheet
 *
 * Ported verbatim from the Next.js build (src/app/globals.css). Tailwind was
 * only ever used for three utility classes, replaced below, so this file is
 * plain CSS with custom properties and carries no framework dependency.
 *
 * Fonts are loaded in header.php; the next/font CSS variables have been
 * swapped for the real family names.
 */

/* The only Tailwind utilities the templates used. */
.h-full { height: 100%; }
.min-h-full { min-height: 100%; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { min-width: 0; flex: 1 1 0%; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

:root {
  --v2-navy: #071e2b;
  --v2-navy-soft: #0d2d3d;
  --v2-blue: #0a6f9f;
  --v2-blue-deep: #07577d;
  --v2-steel: #5e7f90;
  --v2-sky: #b8d3df;
  --v2-mist: #e6edf0;
  --v2-paper: #f7f9fa;
  --v2-white: #ffffff;
  --v2-ink: #15262e;
  --v2-muted: #53666f;
  --v2-line: rgba(7, 30, 43, 0.14);
  --v2-line-light: rgba(255, 255, 255, 0.2);
  --v2-display: "Newsreader", Georgia, "Times New Roman", serif;
  --v2-body: "Manrope", "Segoe UI", Arial, sans-serif;
  --v2-mono: "IBM Plex Mono", ui-monospace, "Cascadia Mono", "Courier New", monospace;
  --v2-header: 78px;
  --v2-radius: 2px;
  --background: var(--v2-paper);
  --foreground: var(--v2-ink);
}


*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  overflow-x: hidden;
  background: var(--v2-paper);
  color: var(--v2-ink);
  font-family: var(--v2-body);
  font-size: 16px;
  line-height: 1.6;
}
body, button, input, textarea { font-family: var(--v2-body); }
button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--v2-blue); color: var(--v2-white); }
:focus-visible { outline: 3px solid var(--v2-blue); outline-offset: 4px; }

.v2-shell { width: min(1380px, calc(100% - 40px)); margin-inline: auto; }
.v2-section { padding-block: clamp(5rem, 9vw, 9rem); }
.v2-kicker,
.v2-eyebrow,
.breadcrumbs,
.v2-footer__label {
  font-family: var(--v2-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}
.v2-kicker { color: var(--v2-blue-deep); }
.v2-eyebrow { display: flex; align-items: center; gap: 0.8rem; color: var(--v2-blue-deep); }
.v2-eyebrow > span { width: 2.6rem; height: 1px; background: currentColor; flex: 0 0 auto; }
.v2-eyebrow--light { color: var(--v2-sky); }
.v2-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--v2-radius);
  cursor: pointer;
  font-family: var(--v2-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}
.v2-button:hover { transform: translateY(-2px); }
.v2-button svg,
.v2-text-link svg,
.v2-nav-cta svg,
.v2-service-list svg,
.v2-package-index svg,
.v2-work-card svg,
.v2-footer__project svg {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.6;
}
.v2-button--light { background: var(--v2-white); color: var(--v2-navy); }
.v2-button--light:hover { background: var(--v2-sky); }
.v2-button--navy { background: var(--v2-navy); color: var(--v2-white); }
.v2-button--navy:hover { background: var(--v2-blue-deep); }
.v2-button--outline { border-color: rgba(255,255,255,.55); background: rgba(7,30,43,.18); color: var(--v2-white); backdrop-filter: blur(10px); }
.v2-button--outline:hover { border-color: var(--v2-white); background: rgba(255,255,255,.1); }
.v2-button--outline-dark { border-color: rgba(7,30,43,.28); background: transparent; color: var(--v2-navy); }
.v2-button--outline-dark:hover { border-color: var(--v2-blue); color: var(--v2-blue-deep); }
.v2-text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.65rem;
  border-bottom: 1px solid currentColor;
  color: var(--v2-blue-deep);
  cursor: pointer;
  font-family: var(--v2-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 200ms ease, gap 200ms ease;
}
.v2-text-link:hover { color: var(--v2-blue); gap: 0.9rem; }
.v2-text-link--light { color: var(--v2-white); }

/* Motion system
   The hidden state is gated on `scripting: enabled`, so content is only ever
   hidden in a browser that can actually run the observer that reveals it.
   With JS off — or in a browser without this query — everything renders
   visible, and nothing is hidden from a crawler. Gating in CSS rather than via
   a class on <html> also avoids a hydration mismatch.
   Only opacity and transform animate: no layout, no CLS. */
.v2-reveal { min-width: 0; --reveal-delay: 0ms; }

@media (scripting: enabled) {
  .v2-reveal {
    opacity: 0;
    transition:
      opacity 520ms cubic-bezier(.2, .7, .2, 1) var(--reveal-delay),
      transform 520ms cubic-bezier(.2, .7, .2, 1) var(--reveal-delay);
    will-change: opacity, transform;

    /* Failsafe. If the observer never fires — a background tab, a screenshot
       tool, throttled rAF, slow or blocked JS — this reveals the content
       anyway after 3s, so nothing can be permanently invisible. The JS path
       normally wins long before this and cancels it via .is-visible. */
    animation: v2-reveal-failsafe 1ms linear 3s forwards;
  }
  @keyframes v2-reveal-failsafe {
    to { opacity: 1; transform: none; clip-path: none; }
  }
  .v2-reveal--rise { transform: translate3d(0, 26px, 0); }
  .v2-reveal--mask { transform: translate3d(0, 34px, 0); clip-path: inset(0 0 100% 0); transition-duration: 620ms; }
  .v2-reveal--fade { transform: none; }
  .v2-reveal.is-visible { animation: none; opacity: 1; transform: none; clip-path: inset(0 0 -20% 0); will-change: auto; }
  .v2-hero__image { animation: v2-hero-drift 26s ease-out both; }
}
@keyframes v2-hero-drift { from { transform: scale(1.01); } to { transform: scale(1.1); } }

.v2-parallax { position: relative; overflow: hidden; }
.v2-parallax__layer { height: 100%; }
/* Oversize the moving layer so its edges never enter the frame. */
.v2-parallax--image .v2-parallax__layer { position: absolute; inset: -12% 0; }
.v2-parallax--image img { width: 100%; height: 100%; object-fit: cover; }

.v2-scroll-progress {
  position: fixed;
  top: var(--v2-header);
  right: 0;
  left: 0;
  z-index: 69;
  height: 2px;
  background: var(--v2-blue);
  transform-origin: 0 50%;
  scale: 1 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* Header */
.v2-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  width: 100vw;
  max-width: 100vw;
  overflow-x: clip;
  height: var(--v2-header);
  color: var(--v2-white);
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.v2-header.is-solid { border-bottom: 1px solid var(--v2-line); background: rgba(247,249,250,.96); color: var(--v2-navy); box-shadow: 0 8px 28px rgba(7,30,43,.06); backdrop-filter: blur(18px); }
.v2-header.is-open { background: var(--v2-paper); color: var(--v2-navy); box-shadow: none; backdrop-filter: none; }
.v2-header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.v2-brand, .v2-footer__logo { min-height: 44px; display: inline-flex; align-items: center; gap: 0.7rem; }
.v2-brand img, .v2-footer__logo img { object-fit: contain; }
.v2-brand > span, .v2-footer__logo > span { display: grid; line-height: 1; }
/* Wordmark lockup: the two lines are sized so the mono subtitle sits just
   inside the width of the serif name. */
.v2-brand strong, .v2-footer__logo strong { font-family: var(--v2-display); font-size: 1.26rem; font-weight: 500; letter-spacing: .16em; }
.v2-brand small, .v2-footer__logo small { margin-top: .34rem; font-family: var(--v2-mono); font-size: .72rem; letter-spacing: .16em; }
.v2-desktop-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2.1rem); }
.v2-desktop-nav > a:not(.v2-nav-cta),
.v2-nav-group > a { position: relative; min-height: 44px; display: inline-flex; align-items: center; gap: .3rem; font-size: .82rem; font-weight: 600; }
.v2-desktop-nav > a:not(.v2-nav-cta)::after,
.v2-nav-group > a::after { position: absolute; right: 0; bottom: 7px; left: 0; height: 1px; background: currentColor; content: ""; transform: scaleX(0); transform-origin: right; transition: transform 220ms ease; }
.v2-desktop-nav > a:hover::after, .v2-desktop-nav > a[aria-current="page"]::after,
.v2-nav-group > a:hover::after, .v2-nav-group > a[aria-current="page"]::after,
.v2-nav-group.is-open > a::after { transform: scaleX(1); transform-origin: left; }

/* Desktop dropdown panels */
.v2-nav-group { position: relative; display: inline-flex; align-items: center; }
.v2-nav-group__chevron { width: .85rem; height: .85rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform 220ms ease; }
.v2-nav-group.is-open .v2-nav-group__chevron { transform: rotate(180deg); }
.v2-nav-panel { position: absolute; top: 100%; left: 50%; z-index: 5; padding-top: .9rem; transform: translateX(-50%); }
.v2-nav-panel__inner {
  width: max-content;
  max-width: min(430px, 90vw);
  display: grid;
  gap: 2px;
  padding: .55rem;
  border: 1px solid var(--v2-line);
  background: var(--v2-white);
  box-shadow: 0 24px 60px rgba(7, 30, 43, .16);
  animation: v2-nav-panel-in 200ms cubic-bezier(.2, .7, .2, 1);
}
@keyframes v2-nav-panel-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.v2-nav-panel__inner a { display: grid; gap: .2rem; padding: .7rem .85rem; color: var(--v2-ink); transition: background-color 180ms ease, color 180ms ease; }
.v2-nav-panel__inner a:hover, .v2-nav-panel__inner a:focus-visible { background: var(--v2-mist); color: var(--v2-blue-deep); }
.v2-nav-panel__inner a[aria-current="page"] { color: var(--v2-blue-deep); }
.v2-nav-panel__inner strong { font-size: .86rem; font-weight: 500; letter-spacing: -.006em; }
.v2-nav-panel__inner small { color: var(--v2-muted); font-size: .75rem; font-weight: 400; line-height: 1.4; }
.v2-nav-cta { display: inline-flex; min-height: 46px; align-items: center; gap: .7rem; padding: .7rem 1rem; background: var(--v2-blue); color: var(--v2-white); font-family: var(--v2-mono); font-size: .75rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; transition: background-color 200ms ease; }
.v2-nav-cta:hover { background: var(--v2-blue-deep); }
.v2-menu-toggle { display: none; width: 48px; height: 48px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.v2-menu-toggle span { display: block; width: 25px; height: 1px; margin: 7px auto; background: currentColor; transition: transform 220ms ease; }
.v2-header.is-open .v2-menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
.v2-header.is-open .v2-menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
.v2-mobile-nav { position: fixed; top: var(--v2-header); right: 0; bottom: auto; left: 0; z-index: 1; height: calc(100svh - var(--v2-header)); overflow-y: auto; background: var(--v2-paper); color: var(--v2-navy); }
.v2-mobile-nav__inner { display: grid; min-height: calc(100svh - var(--v2-header)); padding-block: 2rem 7rem; }
.v2-mobile-nav__links { display: grid; align-content: center; padding-block: 1rem 2rem; }
.v2-mobile-nav__section { border-bottom: 1px solid var(--v2-line); }
.v2-mobile-nav__row { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.v2-mobile-nav__row > a { display: flex; min-height: 58px; flex: 1; align-items: center; gap: 1rem; font-family: var(--v2-display); font-size: clamp(1.29rem, 6.08vw, 2.28rem); font-weight: 500; letter-spacing: -.014em; line-height: 1; }
.v2-mobile-nav__row small { width: 2.4rem; color: var(--v2-blue-deep); font-family: var(--v2-mono); font-size: .75rem; font-weight: 500; letter-spacing: .1em; }
.v2-mobile-nav__row > a[aria-current="page"] { color: var(--v2-blue-deep); }
.v2-mobile-nav__expand { display: grid; width: 48px; height: 48px; place-items: center; padding: 0; border: 1px solid var(--v2-line); background: transparent; cursor: pointer; }
.v2-mobile-nav__expand svg { width: 1.2rem; height: 1.2rem; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: transform 220ms ease; }
.v2-mobile-nav__expand.is-expanded svg { transform: rotate(180deg); }
.v2-mobile-nav__children { display: grid; padding: 0 0 1rem 2.4rem; }
.v2-mobile-nav__children a { display: flex; min-height: 48px; align-items: center; color: var(--v2-muted); font-size: .95rem; font-weight: 600; }
.v2-mobile-nav__children a[aria-current="page"] { color: var(--v2-blue-deep); }
.v2-mobile-nav__contact { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; color: var(--v2-muted); font-size: .78rem; }
.v2-mobile-nav__contact a { min-height: 44px; display: inline-flex; align-items: center; color: var(--v2-navy); font-weight: 700; }
.v2-mobile-nav__contact span { width: 100%; }

/* Home hero */
.v2-hero { position: relative; min-height: max(720px, 100svh); display: flex; align-items: flex-end; isolation: isolate; overflow: hidden; background: var(--v2-navy); color: var(--v2-white); }
/* The drift animation is declared in the motion block above. It begins at the
   painted scale, so the LCP frame is never delayed by it. */
.v2-hero__image { z-index: -3; object-fit: cover; object-position: 54% 50%; transform: scale(1.01); }
.v2-hero__veil { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(7,30,43,.94) 0%, rgba(7,30,43,.73) 39%, rgba(7,30,43,.18) 74%), linear-gradient(0deg, rgba(7,30,43,.85), transparent 46%); }
.v2-hero__grid { position: absolute; inset: 0; z-index: -1; opacity: .32; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 20vw 100%, 100% 20vh; mask-image: linear-gradient(90deg, #000, transparent 65%); }
.v2-hero__content { padding-top: calc(var(--v2-header) + 4rem); padding-bottom: 11.5rem; }
.v2-hero__content .v2-kicker { color: var(--v2-sky); }
.v2-hero h1 { max-width: 900px; margin: 1rem 0 0; font-family: var(--v2-display); font-size: clamp(2.43rem, 5.62vw, 5.7rem); font-weight: 500; letter-spacing: -.02em; line-height: 1.02; text-wrap: balance; }
.v2-hero__intro { max-width: 650px; margin: 1.5rem 0 0; color: rgba(255,255,255,.82); font-size: clamp(1rem, 1.4vw, 1.2rem); line-height: 1.65; }
.v2-hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.v2-hero__proof { position: absolute; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); border-top: 1px solid var(--v2-line-light); }
.v2-hero__proof > p, .v2-hero__proof > a { min-height: 115px; display: grid; align-content: center; padding: 1rem 2rem; border-right: 1px solid var(--v2-line-light); background: rgba(7,30,43,.38); backdrop-filter: blur(12px); }
.v2-hero__proof strong { font-family: var(--v2-display); font-size: clamp(1.35rem, 2.2vw, 2rem); letter-spacing: -.013em; line-height: 1; }
.v2-hero__proof span { margin-top: .45rem; color: rgba(255,255,255,.65); font-family: var(--v2-mono); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.v2-hero__sheet { position: absolute; top: 24%; right: 0; display: grid; gap: .4rem; padding: 1rem; border: 1px solid rgba(255,255,255,.28); border-right: 0; color: rgba(255,255,255,.75); font-family: var(--v2-mono); font-size: .75rem; letter-spacing: .14em; writing-mode: vertical-rl; }

/* Home sections */
.v2-intro__grid { display: grid; grid-template-columns: minmax(200px, .7fr) minmax(0, 2fr); gap: clamp(2rem, 7vw, 8rem); }
.v2-intro h2, .v2-service-story h2, .v2-walkthrough h2, .v2-why h2, .v2-section-head h2, .v2-library h2, .v2-packages h2, .v2-reviews h2, .v2-team-feature h2, .v2-faq h2, .v2-project-cta h2,
.v2-page-hero h1, .v2-about-feature h2, .v2-why-page__intro h2, .v2-proof-panel h2, .v2-service-detail h2, .v2-service-next h2, .v2-services-package-link h2, .v2-contact-grid h2 {
  margin: 0;
  font-family: var(--v2-display);
  font-weight: 500;
  letter-spacing: -.017em;
  line-height: .98;
  text-wrap: balance;
}
.v2-intro h2 { max-width: 1000px; font-size: clamp(2.05rem, 4.56vw, 4.71rem); }
.v2-intro h2 em { color: var(--v2-blue-deep); font-style: italic; font-weight: 400; }
.v2-intro__grid > div p:not(.v2-eyebrow) { max-width: 690px; margin: 2rem 0 1.25rem; color: var(--v2-muted); font-size: 1.06rem; }
.v2-service-story { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); background: var(--v2-white); }
.v2-service-story__visual { position: relative; min-height: 820px; overflow: hidden; }
.v2-service-story__media { position: absolute; inset: 0; }
.v2-service-story__visual img { object-fit: cover; }
.v2-service-story__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; }
.v2-service-story__caption { position: absolute; right: 0; bottom: 0; left: 0; display: flex; align-items: center; gap: 1rem; padding: 1.4rem; background: rgba(7,30,43,.9); color: var(--v2-white); }
.v2-service-story__caption span { color: var(--v2-sky); font-family: var(--v2-mono); }
.v2-service-story__caption p { margin: 0; }
.v2-service-story__register { padding: clamp(3rem, 6vw, 6rem); }
.v2-service-story__register h2 { max-width: 600px; margin-top: 1rem; font-size: clamp(2.05rem, 3.8vw, 4.1rem); }
.v2-service-list { margin-block: 2.5rem; border-top: 1px solid var(--v2-line); }
.v2-service-list a { display: grid; grid-template-columns: 70px minmax(0,1fr) auto; gap: 1rem; align-items: start; padding: 1.15rem 0; border-bottom: 1px solid var(--v2-line); transition: color 200ms ease, padding 200ms ease; }
.v2-service-list a:hover { padding-inline: .5rem; color: var(--v2-blue-deep); }
.v2-service-list a > span { padding-top: .25rem; color: var(--v2-blue-deep); font-family: var(--v2-mono); font-size: .75rem; }
.v2-service-list h3 { margin: 0; font-family: var(--v2-display); font-size: 1.25rem; letter-spacing: -.01em; }
.v2-service-list p { max-width: 560px; margin: .3rem 0 0; color: var(--v2-muted); font-size: .82rem; line-height: 1.5; }
.v2-service-list svg { margin-top: .25rem; }
.v2-walkthrough { background: var(--v2-mist); }
.v2-walkthrough__head { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 2rem; align-items: end; }
.v2-walkthrough__head h2 { font-size: clamp(1.9rem, 3.42vw, 3.65rem); }
.v2-walkthrough__head > p { margin: 0; color: var(--v2-muted); }
.v2-walkthrough__grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.2rem; margin-top: 3.5rem; perspective: 1600px; }
.v2-walkthrough__grid article { transition: translate 260ms ease; }
.v2-walkthrough__grid article:nth-child(2) { translate: 0 2.5rem; }
.v2-walkthrough__grid article:hover { translate: 0 -.35rem; }
.v2-walkthrough__grid article:nth-child(2):hover { translate: 0 2rem; }
.v2-walkthrough__image { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--v2-navy); }
.v2-walkthrough__image img { object-fit: cover; transition: transform 600ms ease; }
.v2-walkthrough article:hover img { transform: scale(1.03); }
.v2-walkthrough article > span { display: block; margin-top: 1rem; color: var(--v2-blue-deep); font-family: var(--v2-mono); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.v2-walkthrough h3 { margin: .5rem 0 0; font-family: var(--v2-display); font-size: clamp(1.4rem, 2vw, 2rem); letter-spacing: -.011em; line-height: 1.1; }
.v2-why { padding-block: clamp(5rem, 9vw, 9rem); background: var(--v2-navy); color: var(--v2-white); }
.v2-why__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 8vw, 8rem); }
.v2-why__lead { align-self: start; position: sticky; top: calc(var(--v2-header) + 2rem); }
.v2-why__lead h2 { margin-top: 1rem; font-size: clamp(2.28rem, 4.1vw, 4.33rem); }
.v2-why__lead > p { max-width: 580px; margin: 1.5rem 0 1.2rem; color: rgba(255,255,255,.68); }
.v2-why__list { margin: 0; padding: 0; list-style: none; }
.v2-why__list li { display: grid; grid-template-columns: 72px 1fr; gap: 1.2rem; padding: 2rem 0; border-top: 1px solid var(--v2-line-light); }
.v2-why__list > li > span { color: var(--v2-sky); font-family: var(--v2-mono); font-size: .75rem; }
.v2-why__list h3 { margin: 0; font-family: var(--v2-display); font-size: clamp(1.6rem, 2.6vw, 2.4rem); letter-spacing: -.013em; line-height: 1; }
.v2-why__list p { margin: .8rem 0 0; color: rgba(255,255,255,.64); }

/* Recognition ledger — a source-backed architectural register, not a trophy strip. */
.v2-recognition { overflow: hidden; background: var(--v2-mist); }
.v2-recognition__grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.v2-recognition__media { position: sticky; top: calc(var(--v2-header) + 2rem); }
.v2-recognition__media figure { position: relative; margin: 0; overflow: hidden; background: var(--v2-navy); }
.v2-recognition__feature::before, .v2-recognition__feature::after { position: absolute; z-index: 2; top: 55.5%; width: 76px; height: 76px; border-radius: 50%; background: rgba(8,10,12,.96); content: ""; transform: translateY(-50%); }
.v2-recognition__feature::before { left: -39px; }
.v2-recognition__feature::after { right: -39px; }
.v2-recognition__media img { width: 100%; height: auto; aspect-ratio: 1400/672; object-fit: cover; filter: saturate(.78) contrast(1.04); }
.v2-recognition__media figcaption { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem; border-top: 1px solid var(--v2-line-light); background: var(--v2-navy); color: rgba(255,255,255,.72); font-size: .75rem; }
.v2-recognition__media figcaption span { color: var(--v2-sky); font-family: var(--v2-mono); text-transform: uppercase; }
.v2-recognition__stamp { position: absolute; right: -1.3rem; bottom: -3.1rem; width: 9rem; height: 9rem; display: grid; place-content: center; border: 1px solid rgba(10,111,159,.42); border-radius: 50%; background: var(--v2-paper); color: var(--v2-navy); text-align: center; transform: rotate(-8deg); }
.v2-recognition__stamp::before { position: absolute; inset: .45rem; border: 1px dashed var(--v2-blue); border-radius: inherit; content: ""; }
.v2-recognition__stamp strong { font-family: var(--v2-display); font-size: 2.5rem; line-height: .8; }
.v2-recognition__stamp span { color: var(--v2-blue-deep); font-family: var(--v2-mono); font-size: .63rem; letter-spacing: .08em; line-height: 1.3; text-transform: uppercase; }
.v2-recognition__content h2 { margin: 1rem 0 0; font-family: var(--v2-display); font-size: clamp(2.28rem, 4.18vw, 4.41rem); font-weight: 500; letter-spacing: -.017em; line-height: .98; }
.v2-recognition__content h2 em { color: var(--v2-blue-deep); font-weight: 400; }
.v2-recognition__intro { max-width: 720px; margin: 1.6rem 0 2rem; color: var(--v2-muted); }
.v2-recognition__ledger { border-top: 1px solid var(--v2-line); }
.v2-recognition__ledger article { display: grid; grid-template-columns: minmax(0,1fr); gap: .65rem; padding: 1.45rem 0; border-bottom: 1px solid var(--v2-line); }
.v2-recognition__meta { display: grid; align-content: start; gap: .35rem; }
.v2-recognition__meta span { color: var(--v2-blue-deep); font-family: var(--v2-display); font-size: 1.7rem; }
.v2-recognition__meta small { color: var(--v2-muted); font-family: var(--v2-mono); font-size: .65rem; letter-spacing: .06em; text-transform: uppercase; }
.v2-recognition__ledger h3 { margin: 0; font-family: var(--v2-display); font-size: clamp(1.4rem, 2.1vw, 2rem); font-weight: 500; letter-spacing: -.012em; line-height: 1.08; }
.v2-recognition__ledger p { margin: .65rem 0; color: var(--v2-muted); font-size: .84rem; }
.v2-recognition__ledger a { display: inline-flex; align-items: center; gap: .55rem; color: var(--v2-blue-deep); font-family: var(--v2-mono); font-size: .68rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.v2-recognition__ledger svg { width: 1rem; fill: none; stroke: currentColor; stroke-width: 1.6; }
.v2-recognition__proof { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem; align-items: end; margin-top: 2rem; }
.v2-recognition__proof p { display: grid; margin: 0; }
.v2-recognition__proof strong { font-family: var(--v2-display); font-size: 2rem; }
.v2-recognition__proof span { color: var(--v2-muted); font-family: var(--v2-mono); font-size: .68rem; text-transform: uppercase; }
.v2-section-head { display: grid; grid-template-columns: 1.2fr .7fr; gap: 3rem; align-items: end; }
.v2-section-head h2 { max-width: 850px; margin-top: 1rem; font-size: clamp(2.28rem, 4.18vw, 4.41rem); }
.v2-section-head > p { margin: 0; color: var(--v2-muted); }
.v2-work__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.2rem; margin-top: 3.5rem; }
.v2-work-card { grid-column: span 5; }
.v2-work-card a { display: block; }
.v2-work-card:nth-child(1), .v2-work-card:nth-child(4) { grid-column: span 7; }
.v2-work-card a > div { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--v2-mist); }
.v2-work-card--square a > div, .v2-work-card--tall a > div { aspect-ratio: 4/4.6; }
.v2-work-card img { object-fit: cover; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.v2-work-card:hover img { transform: scale(1.035); }
.v2-work-card a > p { display: grid; grid-template-columns: 50px 1fr auto; gap: 1rem; align-items: center; margin: 0; padding: 1rem 0 1.5rem; border-bottom: 1px solid var(--v2-line); font-family: var(--v2-display); font-size: 1.25rem; font-weight: 500; letter-spacing: -.01em; }
.v2-work-card a > p > span { color: var(--v2-blue-deep); font-family: var(--v2-mono); font-size: .75rem; }
.v2-work__action { display: flex; justify-content: flex-end; margin-top: 2.5rem; }
.v2-library { position: relative; min-height: 760px; display: flex; align-items: center; isolation: isolate; overflow: hidden; color: var(--v2-white); }
.v2-library__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.v2-library__media img { object-fit: cover; }
.v2-library__veil { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(7,30,43,.95), rgba(7,30,43,.68) 48%, rgba(7,30,43,.1)); }
.v2-library__content { padding-block: 7rem; }
.v2-library__number { margin: 1rem 0 -1rem; font-family: var(--v2-display); font-size: clamp(4.56rem, 12.16vw, 11.4rem); font-weight: 600; letter-spacing: -.029em; line-height: 1.02; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.6); }
.v2-library h2 { max-width: 800px; margin-top: 2rem; font-size: clamp(2.13rem, 3.8vw, 3.95rem); }
.v2-library__content > p:not(.v2-library__number):not(.v2-eyebrow) { max-width: 620px; margin: 1.4rem 0 1.8rem; color: rgba(255,255,255,.75); }
.v2-packages__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.v2-packages__grid > div:first-child { position: sticky; top: calc(var(--v2-header) + 2rem); }
.v2-packages h2 { margin-top: 1rem; font-size: clamp(2.28rem, 3.8vw, 3.95rem); }
.v2-packages__grid > div:first-child > p:not(.v2-eyebrow) { color: var(--v2-muted); }
.v2-package-index { border-top: 1px solid var(--v2-line); }
.v2-package-index a { display: grid; grid-template-columns: 60px 1fr auto; gap: 1.2rem; align-items: center; padding: 2rem 0; border-bottom: 1px solid var(--v2-line); transition: padding 220ms ease, color 220ms ease; }
.v2-package-index a:hover { padding-inline: .6rem; color: var(--v2-blue-deep); }
.v2-package-index a > span { color: var(--v2-blue-deep); font-family: var(--v2-mono); font-size: .75rem; }
.v2-package-index h3 { margin: 0; font-family: var(--v2-display); font-size: clamp(1.52rem, 2.66vw, 2.43rem); letter-spacing: -.014em; line-height: 1; }
.v2-package-index p { margin: .5rem 0 0; color: var(--v2-muted); }
.v2-reviews { background: var(--v2-white); }
.v2-reviews__head { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; }
.v2-reviews h2 { margin-top: 1rem; font-size: clamp(2.28rem, 4.03vw, 4.18rem); }
.v2-review-score { min-width: 220px; display: flex; align-items: center; gap: 1rem; padding: 1.2rem; border: 1px solid var(--v2-line); }
.v2-review-score strong { font-family: var(--v2-display); font-size: 3.2rem; letter-spacing: -.019em; line-height: 1; }
.v2-review-score > span { color: var(--v2-blue); letter-spacing: .12em; }
.v2-review-score small { display: block; margin-top: .25rem; color: var(--v2-muted); font-family: var(--v2-mono); font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; }
.v2-review-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1px; margin-top: 3rem; background: var(--v2-line); border: 1px solid var(--v2-line); }
.v2-review-grid__item { display: flex; }
.v2-review-grid figure { flex: 1; min-height: 330px; display: flex; flex-direction: column; margin: 0; padding: 2rem; background: var(--v2-paper); }
.v2-review-grid figure > span { color: var(--v2-blue-deep); font-family: var(--v2-mono); font-size: .75rem; }
.v2-review-grid blockquote { flex: 1; margin: 2rem 0; font-family: var(--v2-display); font-size: clamp(1.5rem, 2.2vw, 2.2rem); letter-spacing: -.011em; line-height: 1.15; }
.v2-review-grid figcaption { font-weight: 700; }
.v2-review-grid figcaption small { display: block; color: var(--v2-muted); font-family: var(--v2-mono); font-size: .75rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.v2-reviews__link { margin-top: 2rem; }
.v2-team-feature { padding-block: clamp(5rem, 9vw, 9rem); background: var(--v2-navy); color: var(--v2-white); }
.v2-team-feature__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.v2-team-feature h2 { margin-top: 1rem; font-size: clamp(2.28rem, 3.8vw, 3.88rem); }
.v2-team-feature__grid > div:first-child > p:not(.v2-eyebrow) { color: rgba(255,255,255,.68); }
.v2-team-feature__people { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; align-items: end; }
.v2-team-feature__people a { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--v2-navy-soft); }
.v2-team-feature__people a:nth-child(2) { transform: translateY(-2rem); }
.v2-team-feature__people img { object-fit: cover; filter: saturate(.72); transition: filter 220ms ease, transform 500ms ease; }
.v2-team-feature__people a:hover img { filter: saturate(1); transform: scale(1.025); }
.v2-team-feature__people span { position: absolute; right: 0; bottom: 0; left: 0; display: grid; padding: 1rem; background: linear-gradient(transparent, rgba(7,30,43,.95)); }
.v2-team-feature__people strong { font-size: .85rem; }
.v2-team-feature__people small { color: rgba(255,255,255,.65); }
.v2-faq__grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(3rem, 8vw, 8rem); }
.v2-faq h2 { margin: 1rem 0 1.5rem; font-size: clamp(2.28rem, 3.8vw, 3.95rem); }
.v2-faq__items { border-top: 1px solid var(--v2-line); }
.v2-faq details { border-bottom: 1px solid var(--v2-line); }
.v2-faq summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 0; cursor: pointer; font-family: var(--v2-display); font-size: 1.25rem; font-weight: 500; letter-spacing: -.008em; list-style: none; }
.v2-faq summary::-webkit-details-marker { display: none; }
.v2-faq summary span { color: var(--v2-blue-deep); font-family: var(--v2-mono); font-size: 1.4rem; transition: transform 200ms ease; }
.v2-faq details[open] summary span { transform: rotate(45deg); }
.v2-faq details p { max-width: 720px; margin: 0; padding: 0 2rem 1.5rem 0; color: var(--v2-muted); }
.v2-project-cta { padding-block: clamp(4rem, 7vw, 7rem); background: var(--v2-blue-deep); color: var(--v2-white); }
.v2-project-cta--compact { padding-block: 4rem; }
.v2-project-cta__inner { display: grid; grid-template-columns: 1.4fr auto; gap: 3rem; align-items: end; }
.v2-project-cta h2 { max-width: 950px; margin-top: 1rem; font-size: clamp(2.05rem, 4.03vw, 4.33rem); }
.v2-project-cta--compact h2 { font-size: clamp(1.9rem, 3.42vw, 3.5rem); }
.v2-project-cta__actions { display: grid; justify-items: start; gap: 1rem; }

/* Inner page framework */
.v2-page, .v2-gallery-page { padding-top: var(--v2-header); }
.v2-page-hero { position: relative; min-height: 480px; display: flex; align-items: flex-end; isolation: isolate; overflow: hidden; background: var(--v2-navy); color: var(--v2-white); }
.v2-page-hero--offset { padding-top: var(--v2-header); }
.v2-page-hero--image { min-height: 650px; }
.v2-page-hero__image { z-index: -2; object-fit: cover; }
.v2-page-hero__veil { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(7,30,43,.95), rgba(7,30,43,.66) 58%, rgba(7,30,43,.18)), linear-gradient(0deg, rgba(7,30,43,.5), transparent); }
.v2-page-hero:not(.v2-page-hero--image) .v2-page-hero__veil { opacity: .4; background-image: linear-gradient(rgba(184,211,223,.11) 1px, transparent 1px), linear-gradient(90deg, rgba(184,211,223,.11) 1px, transparent 1px); background-size: 40px 40px; }
.v2-page-hero__content { padding-block: 3rem clamp(3.5rem, 7vw, 6.5rem); }
.v2-page-hero .v2-kicker { color: var(--v2-sky); }
.v2-page-hero h1 { max-width: 1050px; margin-top: 1rem; font-size: clamp(2.43rem, 5.32vw, 5.32rem); }
.v2-page-hero__intro { max-width: 770px; margin: 1.4rem 0 0; color: rgba(255,255,255,.74); font-size: 1.08rem; }
.breadcrumbs { margin-bottom: 2.4rem; color: rgba(255,255,255,.66); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li { min-height: 44px; display: inline-flex; align-items: center; }
.breadcrumbs li:not(:last-child)::after { margin-left: .45rem; content: "/"; }
.breadcrumbs a { min-height: inherit; display: inline-flex; align-items: center; }
.v2-page-body { padding-block: clamp(4.5rem, 8vw, 8rem); }
.v2-editorial-grid, .v2-why-page__intro { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(2rem, 7vw, 7rem); }
.v2-prose { color: var(--v2-muted); }
.v2-prose p { margin: 0 0 1.2rem; }
.v2-prose--lead { color: var(--v2-ink); font-family: var(--v2-display); font-size: clamp(1.5rem, 2.5vw, 2.25rem); letter-spacing: -.008em; line-height: 1.4; }
.v2-history { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 5rem; border: 1px solid var(--v2-line); background: var(--v2-line); }
.v2-history article { padding: 2rem; background: var(--v2-white); }
.v2-history span, .v2-principles span, .v2-reason-list > article > span { color: var(--v2-blue-deep); font-family: var(--v2-mono); font-size: .75rem; }
.v2-history h2, .v2-history h3, .v2-principles h2, .v2-principles h3, .v2-reason-list h2, .v2-reason-list h3, .v2-team-grid h2, .v2-services-grid h2, .v2-guides-grid h2 { margin: 1.3rem 0 .7rem; font-family: var(--v2-display); font-size: 1.7rem; letter-spacing: -.013em; line-height: 1.05; }
.v2-history p, .v2-principles p { margin: 0; color: var(--v2-muted); }
.v2-about-feature, .v2-service-next, .v2-proof-panel { display: grid; grid-template-columns: 1.05fr .95fr; margin-top: 6rem; background: var(--v2-mist); }
.v2-about-feature__image, .v2-service-next > div:first-child, .v2-proof-panel > div:first-child { position: relative; min-height: 560px; overflow: hidden; }
.v2-about-feature__image img, .v2-service-next img, .v2-proof-panel img { object-fit: cover; }
.v2-about-feature > div:last-child, .v2-service-next > div:last-child, .v2-proof-panel > div:last-child { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 6vw, 5rem); }
.v2-about-feature h2, .v2-service-next h2, .v2-proof-panel h2 { margin-top: 1rem; font-size: clamp(1.98rem, 3.34vw, 3.57rem); }
.v2-about-feature > div:last-child > p, .v2-service-next > div:last-child > p { color: var(--v2-muted); }
.v2-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 1.5rem 0; background: var(--v2-line); }
.v2-stat-row p { display: grid; margin: 0; padding: 1rem; background: var(--v2-paper); }
.v2-stat-row strong { font-family: var(--v2-display); font-size: 1.55rem; letter-spacing: -.013em; }
.v2-stat-row span { color: var(--v2-muted); font-size: .75rem; }
.v2-principles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 6rem; border: 1px solid var(--v2-line); background: var(--v2-line); }
.v2-principles article { padding: 1.7rem; background: var(--v2-paper); }
.v2-team-intro, .v2-package-page__intro, .v2-portfolio-intro, .v2-services-intro, .v2-guides-intro { display: grid; grid-template-columns: .7fr 1.3fr; gap: 3rem; align-items: start; margin-bottom: 3rem; }
.v2-team-intro > p, .v2-package-page__intro > p, .v2-portfolio-intro > p, .v2-services-intro > p, .v2-guides-intro > p { max-width: 690px; margin: 0; color: var(--v2-muted); }
.v2-team-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 3.5rem 1rem; }
.v2-team-card__image { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--v2-mist); }
.v2-team-card__image img { object-fit: cover; transition: transform 450ms ease; }
.v2-team-grid article:hover img { transform: scale(1.025); }
.v2-team-card__image span { position: absolute; right: 0; bottom: 0; padding: .6rem .8rem; background: var(--v2-navy); color: var(--v2-white); font-family: var(--v2-mono); font-size: .75rem; }
.v2-team-grid .v2-kicker { margin: 1rem 0 0; }
.v2-team-grid h2 { margin: .6rem 0 .2rem; font-size: 1.55rem; }
.v2-team-grid h3 { margin: 0; color: var(--v2-blue-deep); font-size: .9rem; }
.v2-team-grid article > p:last-child { margin: .7rem 0 0; color: var(--v2-muted); font-size: .82rem; }
.v2-team-portrait { margin: 0 0 clamp(4rem,8vw,7rem); }
.v2-team-portrait img { width: 100%; height: auto; display: block; }
.v2-team-portrait figcaption { margin-top: .8rem; color: var(--v2-muted); font-size: .75rem; }
.v2-team-directory-head { max-width: 820px; margin-bottom: 2.5rem; }
.v2-team-directory-head h2 { margin: 1rem 0 0; font-family: var(--v2-display); font-size: clamp(2.1rem,4vw,4rem); font-weight: 500; letter-spacing: -.017em; line-height: 1; text-wrap: balance; }
.v2-team-practice { margin-top: clamp(5rem,10vw,10rem); padding-top: clamp(4rem,7vw,7rem); border-top: 1px solid var(--v2-line); }
.v2-team-practice .v2-section-head { margin-bottom: 3rem; }
.v2-team-practice__grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
.v2-team-practice__grid figure { min-width: 0; margin: 0; background: var(--v2-mist); }
.v2-team-practice__grid img { width: 100%; height: clamp(420px,48vw,680px); display: block; object-fit: cover; }
.v2-team-practice__wide, .v2-team-practice__landscape { grid-column: 1/-1; }
.v2-team-practice__wide img { height: auto; aspect-ratio: 16/9; }
.v2-team-practice__landscape img { height: auto; aspect-ratio: 4/3; }
.v2-team-practice__grid figcaption { min-height: 58px; display: flex; align-items: center; padding: .85rem 1rem; color: var(--v2-muted); font-size: .75rem; line-height: 1.4; }
.v2-package-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.v2-package-cards article { display: flex; flex-direction: column; min-height: 720px; padding: clamp(1.5rem, 3vw, 2.5rem); border: 1px solid var(--v2-line); background: var(--v2-white); }
.v2-package-cards article.is-featured { background: var(--v2-navy); color: var(--v2-white); transform: translateY(-1.5rem); }
.v2-package-cards article.is-featured .v2-kicker { color: var(--v2-sky); }
.v2-package-cards h2 { margin: 1rem 0; font-family: var(--v2-display); font-size: clamp(2.13rem, 3.04vw, 3.19rem); letter-spacing: -.019em; line-height: 1; }
.v2-package-cards__price { display: grid; margin: 0 0 1rem; }
.v2-package-cards__price strong { font-family: var(--v2-display); font-size: 1.65rem; letter-spacing: -.013em; }
.v2-package-cards__price span { color: var(--v2-muted); font-size: .75rem; }
.v2-package-cards .is-featured .v2-package-cards__price span { color: rgba(255,255,255,.65); }
.v2-package-cards article > p:not(.v2-kicker):not(.v2-package-cards__price) { color: var(--v2-muted); }
.v2-package-cards article.is-featured > p:not(.v2-kicker):not(.v2-package-cards__price) { color: rgba(255,255,255,.68); }
.v2-package-cards ul { flex: 1; margin: 1.4rem 0 2rem; padding: 0; list-style: none; }
.v2-package-cards li { display: flex; gap: .7rem; padding: .55rem 0; border-bottom: 1px solid var(--v2-line); font-size: .84rem; }
.v2-package-cards .is-featured li { border-color: var(--v2-line-light); }
.v2-package-cards li span { color: var(--v2-blue); font-weight: 700; }
.v2-package-terms { max-width: 850px; margin: 2rem 0 0; color: var(--v2-muted); font-family: var(--v2-mono); font-size: .78rem; line-height: 1.7; }
.v2-package-page__intro a { color: var(--v2-blue-deep); text-decoration: underline; text-underline-offset: 3px; }
.v2-package-cards article { position: relative; }
.v2-package-cards__flag { position: absolute; top: 0; right: 0; margin: 0; padding: .45rem .8rem; background: var(--v2-blue); color: var(--v2-white); font-family: var(--v2-mono); font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.v2-package-cards__count { margin: 0 0 .4rem; font-family: var(--v2-mono); font-size: .78rem; }
.v2-package-cards__count strong { font-size: 1.1rem; }
.v2-package-cards__best { margin: 0 0 1.6rem; padding-top: 1.2rem; border-top: 1px solid var(--v2-line); font-size: .86rem; font-style: italic; }
.v2-package-cards .is-featured .v2-package-cards__best { border-color: var(--v2-line-light); }
.v2-package-cards li { align-items: flex-start; }
.v2-package-cards li svg { flex: 0 0 auto; margin-top: .15rem; }
.v2-package-cards li.is-excluded { color: var(--v2-muted); opacity: .62; }
.v2-package-cards .is-featured li.is-excluded { color: rgba(255,255,255,.6); }
.v2-package-cards .is-featured .v2-matrix__tick { stroke: var(--v2-sky); }
/* Reveal wrappers must not break the card grid. */
.v2-package-cards > .v2-reveal { display: flex; }
.v2-package-cards > .v2-reveal > article { flex: 1; }

/* Comparison matrix */
.v2-matrix { min-width: 0; max-width: 100%; margin-top: clamp(4rem, 8vw, 7rem); }
.v2-matrix h2, .v2-faq--page h2 { margin: 1rem 0 2rem; font-family: var(--v2-display); font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 500; letter-spacing: -.016em; line-height: 1.05; }
.v2-matrix__scroll { width: 100%; min-width: 0; max-width: 100%; overflow-x: auto; overscroll-behavior-inline: contain; border: 1px solid var(--v2-line); background: var(--v2-white); }
.v2-matrix table { width: 100%; min-width: 680px; border-collapse: collapse; }
.v2-matrix thead th { padding: 1.2rem 1rem; border-bottom: 1px solid var(--v2-line); background: var(--v2-paper); font-family: var(--v2-display); font-size: 1.4rem; font-weight: 500; text-align: center; }
.v2-matrix thead th:first-child { font-family: var(--v2-mono); font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-align: left; text-transform: uppercase; }
.v2-matrix thead th small { display: block; margin-top: .3rem; color: var(--v2-muted); font-family: var(--v2-mono); font-size: .75rem; font-weight: 500; letter-spacing: 0; }
.v2-matrix thead th.is-featured { background: var(--v2-navy); color: var(--v2-white); }
.v2-matrix thead th.is-featured small { color: var(--v2-sky); }
.v2-matrix tbody th { padding: 1rem; border-bottom: 1px solid var(--v2-line); font-size: .92rem; font-weight: 650; text-align: left; }
.v2-matrix tbody th small { display: block; max-width: 34ch; margin-top: .2rem; color: var(--v2-muted); font-size: .8rem; font-weight: 400; line-height: 1.45; }
.v2-matrix tbody td { padding: 1rem; border-bottom: 1px solid var(--v2-line); text-align: center; vertical-align: middle; }
.v2-matrix tbody td.is-featured { background: rgba(10, 111, 159, .05); }
.v2-matrix tbody tr:last-child th, .v2-matrix tbody tr:last-child td { border-bottom: 0; }
.v2-matrix__tick, .v2-matrix__cross { width: 1.15rem; height: 1.15rem; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.v2-matrix__tick { stroke: var(--v2-blue); }
.v2-matrix__cross { stroke: var(--v2-steel); opacity: .55; }
.v2-faq--page { margin-top: clamp(4rem, 8vw, 7rem); }
.v2-portfolio-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 2.5rem 1.2rem; }
.v2-portfolio-grid article { grid-column: span 5; }
.v2-portfolio-grid article:nth-child(3n+1) { grid-column: span 7; }
.v2-portfolio-grid article > a > div { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--v2-mist); }
.v2-portfolio-grid img { object-fit: cover; transition: transform 500ms ease; }
.v2-portfolio-grid article:hover img { transform: scale(1.025); }
.v2-portfolio-grid article > a > p { display: grid; grid-template-columns: 45px 1fr; margin: 0; padding: 1rem 0; border-bottom: 1px solid var(--v2-line); }
.v2-portfolio-grid article > a > p span { grid-row: 1/3; color: var(--v2-blue-deep); font-family: var(--v2-mono); font-size: .75rem; }
.v2-portfolio-grid article > a > p strong { font-family: var(--v2-display); font-size: 1.2rem; }
.v2-portfolio-grid article > a > p small { color: var(--v2-muted); }
.v2-contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 7vw, 7rem); }
.v2-contact-grid h2 { margin-top: 1rem; font-size: clamp(2.13rem, 3.65vw, 3.8rem); }
.v2-contact-list { margin-top: 2.5rem; border-top: 1px solid var(--v2-line); }
.v2-contact-list article { padding: 1.3rem 0; border-bottom: 1px solid var(--v2-line); }
.v2-contact-list span { color: var(--v2-blue-deep); font-family: var(--v2-mono); font-size: .75rem; text-transform: uppercase; }
.v2-contact-list p, .v2-contact-list a { display: block; margin: .4rem 0 0; font-size: 1rem; font-weight: 500; }
.v2-contact-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.8rem; }
.v2-contact-note { color: var(--v2-muted); font-size: .78rem; }
.v2-contact-grid iframe { width: 100%; min-height: 680px; border: 0; filter: grayscale(.35) contrast(1.02); }

/* Services, Why, Reviews */
.v2-services-grid, .v2-guides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem 1rem; }
.v2-services-grid a > div, .v2-guides-grid a > div { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--v2-mist); }
.v2-services-grid img, .v2-guides-grid img { object-fit: cover; transition: transform 500ms ease; }
.v2-services-grid a:hover img, .v2-guides-grid a:hover img { transform: scale(1.03); }
.v2-services-grid .v2-kicker, .v2-guides-grid .v2-kicker { margin: 1rem 0 0; }
.v2-services-grid h2, .v2-services-grid h3, .v2-guides-grid h2, .v2-guides-grid h3 { margin: .5rem 0; font-family: var(--v2-display); font-size: 1.7rem; font-weight: 500; letter-spacing: -.013em; line-height: 1.05; }
.v2-services-grid a > p:not(.v2-kicker), .v2-guides-grid a > p:not(.v2-kicker) { color: var(--v2-muted); font-size: .86rem; }
.v2-services-package-link { margin-top: 6rem; padding: clamp(2rem, 5vw, 5rem); background: var(--v2-mist); }
.v2-services-package-link h2 { max-width: 800px; font-size: clamp(1.9rem, 3.5vw, 3.65rem); }
.v2-services-package-link p { color: var(--v2-muted); }
.v2-service-detail { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(3rem, 8vw, 8rem); }
.v2-service-detail h2 { margin: 1rem 0; font-size: clamp(2.28rem, 3.8vw, 3.8rem); }
.v2-service-detail > div:first-child > p { max-width: 690px; color: var(--v2-muted); }
.v2-service-detail__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 2rem; }
.v2-service-detail__deliverables { padding: 2rem; background: var(--v2-mist); }
.v2-service-detail__deliverables ol { margin: 1.5rem 0 0; padding: 0; list-style: none; border-top: 1px solid var(--v2-line); }
.v2-service-detail__deliverables li { display: grid; grid-template-columns: 50px 1fr; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--v2-line); font-family: var(--v2-display); font-size: 1.2rem; font-weight: 500; }
.v2-service-detail__deliverables li span { color: var(--v2-blue-deep); font-family: var(--v2-mono); font-size: .75rem; font-weight: 500; }
.v2-service-next { margin-top: 6rem; }
.v2-why-page__intro h2 { font-size: clamp(2.28rem, 3.8vw, 3.88rem); }
.v2-why-page__intro p { color: var(--v2-muted); }
.v2-reason-list { margin-top: 5rem; border-top: 1px solid var(--v2-line); }
.v2-reason-list article { display: grid; grid-template-columns: 90px 1fr; gap: 2rem; padding: 2.5rem 0; border-bottom: 1px solid var(--v2-line); }
.v2-reason-list h2 { margin: 0; font-size: clamp(1.52rem, 2.66vw, 2.66rem); }
.v2-reason-list p { max-width: 850px; margin: .8rem 0 0; color: var(--v2-muted); }
.v2-proof-panel { background: var(--v2-navy); color: var(--v2-white); }
.v2-proof-panel > div:last-child > p { color: rgba(255,255,255,.68); }
.v2-verification-strip { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 5rem; border: 1px solid var(--v2-line); }
.v2-verification-strip > p, .v2-verification-strip > a { display: grid; margin: 0; padding: 1.5rem; border-right: 1px solid var(--v2-line); }
.v2-verification-strip strong { font-family: var(--v2-display); font-size: 1.8rem; letter-spacing: -.013em; }
.v2-verification-strip span { color: var(--v2-muted); font-size: .75rem; }
.v2-reviews-page__score { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-bottom: 3rem; border-bottom: 1px solid var(--v2-line); }
.v2-reviews-page__score > div { display: flex; align-items: center; gap: 1rem; }
.v2-reviews-page__score > div > span { font-family: var(--v2-display); font-size: clamp(3.8rem, 7.6vw, 6.84rem); font-weight: 600; letter-spacing: -.029em; line-height: 1.02; }
.v2-reviews-page__score p { color: var(--v2-blue); letter-spacing: .12em; }
.v2-reviews-page__score small { display: block; color: var(--v2-muted); font-family: var(--v2-mono); font-size: .75rem; text-transform: uppercase; }
.v2-review-grid--page { margin-top: 3rem; }
.v2-testimonial-feature { display: grid; grid-template-columns: 1fr 1fr; margin-top: 5rem; background: var(--v2-navy); color: var(--v2-white); }
.v2-testimonial-feature > div:first-child { position: relative; min-height: 680px; }
.v2-testimonial-feature img { object-fit: cover; }
.v2-testimonial-feature > div:last-child { padding: clamp(2rem, 5vw, 4rem); }
.v2-testimonial-feature figure { margin: 2rem 0 0; padding-top: 2rem; border-top: 1px solid var(--v2-line-light); }
.v2-testimonial-feature blockquote { margin: 0; font-family: var(--v2-display); font-size: clamp(1.3rem, 2vw, 1.9rem); letter-spacing: -.01em; line-height: 1.25; }
.v2-testimonial-feature figcaption { margin-top: .8rem; font-weight: 700; }
.v2-testimonial-feature figcaption small { display: block; color: rgba(255,255,255,.55); }
.v2-review-disclosure { color: var(--v2-muted); font-size: .75rem; }

/* About, authority proof, client wall and testimonial embeds */
.v2-authority-page, .v2-why-authority { display: grid; gap: clamp(5rem, 9vw, 9rem); }
.v2-authority-intro { display: grid; grid-template-columns: minmax(210px,.55fr) minmax(0,1.45fr); gap: clamp(2rem, 7vw, 7rem); }
.v2-authority-intro h2, .v2-about-recognition h2, .v2-expo-proof h2, .v2-global-proof h2, .v2-why-proof h2, .v2-video-testimonials h2, .v2-written-proof > h2, .v2-written-reviews-head h2 { margin: 0; font-family: var(--v2-display); font-size: clamp(2.1rem, 4vw, 4rem); font-weight: 500; letter-spacing: -.017em; line-height: 1; text-wrap: balance; }
.v2-authority-intro h2 em { color: var(--v2-blue-deep); font-weight: 400; }
.v2-authority-intro p { max-width: 780px; margin: 0 0 1.2rem; color: var(--v2-muted); font-size: 1.02rem; }
.v2-about-recognition { padding: clamp(2rem, 6vw, 5rem); background: var(--v2-navy); color: var(--v2-white); }
.v2-about-recognition__head { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: end; }
.v2-about-recognition__head h2 { margin-top: 1rem; }
.v2-about-recognition__head > p { margin: 0; color: rgba(255,255,255,.64); }
.v2-about-recognition__list { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1px; margin-top: 3rem; border: 1px solid var(--v2-line-light); background: var(--v2-line-light); }
.v2-about-recognition__list article { min-height: 360px; display: flex; flex-direction: column; padding: 1.7rem; background: var(--v2-navy-soft); }
.v2-about-recognition__list article > p:first-child { display: flex; justify-content: space-between; gap: 1rem; margin: 0; color: var(--v2-sky); font-family: var(--v2-mono); font-size: .66rem; letter-spacing: .05em; text-transform: uppercase; }
.v2-about-recognition__list article > p:first-child span { color: var(--v2-white); }
.v2-about-recognition__list h3 { margin: 2rem 0 1rem; font-family: var(--v2-display); font-size: clamp(1.45rem,2.1vw,2rem); font-weight: 500; line-height: 1.08; }
.v2-about-recognition__list article > p:not(:first-child) { color: rgba(255,255,255,.62); font-size: .84rem; }
.v2-about-recognition__list a { margin-top: auto; color: var(--v2-sky); font-family: var(--v2-mono); font-size: .68rem; font-weight: 600; text-transform: uppercase; }
.v2-about-recognition__list svg { width: 1rem; fill: none; stroke: currentColor; stroke-width: 1.6; vertical-align: middle; }
.v2-expo-proof { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,7vw,7rem); padding-block: clamp(3rem,6vw,5rem); border-block: 1px solid var(--v2-line); }
.v2-expo-proof h2 { margin-top: 1rem; font-size: clamp(2rem,3.5vw,3.4rem); }
.v2-expo-proof > div:last-child > p { margin-top: 0; color: var(--v2-muted); }
.v2-client-proof .v2-section-head { margin-bottom: 3rem; }
.v2-client-wall { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: .8rem; }
.v2-client-logo { min-width: 0; display: grid; grid-template-rows: 168px minmax(54px,auto); margin: 0; border: 1px solid var(--v2-line); background: var(--v2-white); }
.v2-client-logo__media { min-width: 0; display: grid; place-items: center; overflow: hidden; }
.v2-client-logo__media img { width: 100%; height: 100%; object-fit: contain; }
.v2-client-logo__wordmark { width: 100%; height: 100%; display: grid; place-content: center; color: var(--v2-navy); text-align: center; }
.v2-client-logo__wordmark strong { font-family: var(--v2-display); font-size: 2.5rem; letter-spacing: .08em; line-height: 1; }
.v2-client-logo__wordmark span { color: var(--v2-blue-deep); font-family: var(--v2-mono); font-size: .68rem; letter-spacing: .22em; }
.v2-client-logo figcaption { min-height: 54px; display: flex; align-items: center; justify-content: center; padding: .7rem; border-top: 1px solid var(--v2-line); color: var(--v2-muted); font-size: .7rem; line-height: 1.35; text-align: center; }
.v2-client-proof__note { margin-top: 1rem; color: var(--v2-muted); font-size: .72rem; }
.v2-certification { display: grid; grid-template-columns: minmax(280px,.72fr) minmax(0,1.28fr); gap: clamp(2.5rem,7vw,7rem); align-items: center; padding: clamp(2rem,5vw,4.5rem); background: var(--v2-mist); }
.v2-certification__media { min-width: 0; margin: 0; }
.v2-certification__media a { display: block; border: 1px solid var(--v2-line); background: var(--v2-white); }
.v2-certification__media img { width: 100%; height: auto; display: block; }
.v2-certification__media figcaption { margin-top: .8rem; color: var(--v2-muted); font-size: .72rem; line-height: 1.5; }
.v2-certification__content h2 { margin: 1rem 0 1.2rem; font-family: var(--v2-display); font-size: clamp(2.1rem,4vw,4rem); font-weight: 500; letter-spacing: -.017em; line-height: 1; text-wrap: balance; }
.v2-certification__content > p { color: var(--v2-muted); }
.v2-certification__content dl { margin: 2rem 0; border-top: 1px solid var(--v2-line); }
.v2-certification__content dl div { display: grid; grid-template-columns: minmax(118px,.46fr) minmax(0,1fr); gap: 1rem; padding: .85rem 0; border-bottom: 1px solid var(--v2-line); }
.v2-certification__content dt { color: var(--v2-muted); font-family: var(--v2-mono); font-size: .67rem; letter-spacing: .04em; text-transform: uppercase; }
.v2-certification__content dd { margin: 0; color: var(--v2-navy); font-weight: 600; }
.v2-certification__actions { display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; align-items: center; }
.v2-certification__note { margin: 1.1rem 0 0; font-size: .72rem; }
.v2-global-proof { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(2rem,7vw,7rem); padding: clamp(2rem,6vw,5rem); background: var(--v2-blue-deep); color: var(--v2-white); }
.v2-global-proof h2 { margin-top: 1rem; }
.v2-global-proof > div:last-child > p { margin-top: 0; color: rgba(255,255,255,.72); }
.v2-global-proof ul { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.v2-global-proof li { padding: .55rem .75rem; border: 1px solid rgba(255,255,255,.25); color: var(--v2-white); font-family: var(--v2-mono); font-size: .66rem; text-transform: uppercase; }
.v2-why-proof { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,7vw,7rem); padding: clamp(2rem,6vw,5rem); background: var(--v2-navy); color: var(--v2-white); }
.v2-why-proof h2 { margin: 1rem 0 1.5rem; }
.v2-why-proof > div:first-child > p { color: rgba(255,255,255,.68); }
.v2-why-proof__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--v2-line-light); }
.v2-why-proof__stats p { min-height: 170px; display: grid; align-content: center; margin: 0; padding: 1.3rem; background: var(--v2-navy-soft); }
.v2-why-proof__stats strong { font-family: var(--v2-display); font-size: clamp(1.45rem,2.5vw,2.3rem); font-weight: 500; line-height: 1.05; }
.v2-why-proof__stats span { margin-top: .65rem; color: rgba(255,255,255,.58); font-family: var(--v2-mono); font-size: .66rem; text-transform: uppercase; }
.v2-video-testimonials .v2-section-head { margin-bottom: 3rem; }
.v2-video-testimonials--reviews { margin-top: clamp(4rem,8vw,7rem); }
.v2-video-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; }
.v2-video-card { min-width: 0; display: flex; flex-direction: column; border: 1px solid var(--v2-line); background: var(--v2-white); }
.v2-video-card__mount { position: relative; aspect-ratio: 9/14; display: grid; align-content: end; overflow: hidden; padding: 1.3rem; background: linear-gradient(160deg,var(--v2-navy-soft),var(--v2-blue-deep)); color: var(--v2-white); }
.v2-video-card__mount::before { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg,rgba(7,30,43,.05) 20%,rgba(7,30,43,.18) 48%,rgba(7,30,43,.94) 100%); content: ""; pointer-events: none; }
.v2-video-card__poster { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 450ms cubic-bezier(.2,.7,.2,1), filter 220ms ease; }
.v2-video-card__mount p { position: relative; z-index: 2; pointer-events: none; }
.v2-video-card__mount p { display: grid; margin: 0 0 1rem; }
.v2-video-card__mount p span { color: var(--v2-sky); font-family: var(--v2-mono); font-size: .66rem; text-transform: uppercase; }
.v2-video-card__mount p strong { margin-top: .35rem; font-family: var(--v2-display); font-size: 1.6rem; font-weight: 500; }
.v2-video-card__mount button { position: absolute; top: 50%; left: 50%; z-index: 3; width: 72px; height: 72px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.8); border-radius: 50%; background: rgba(255,255,255,.94); color: var(--v2-navy); cursor: pointer; transform: translate(-50%,-50%); transition: background-color 180ms ease,color 180ms ease,transform 180ms ease; }
.v2-video-card__mount button svg { width: 30px; height: 30px; fill: currentColor; }
.v2-video-card__mount:hover .v2-video-card__poster { transform: scale(1.025); filter: saturate(1.04) contrast(1.02); }
.v2-video-card__mount button:hover { background: var(--v2-sky); }
.v2-video-card__mount button:active { transform: translate(-50%,-50%) scale(.95); }
.v2-video-card__mount iframe { position: absolute; inset: 0; z-index: 4; width: 100%; height: 100%; border: 0; background: #000; }
.v2-video-card blockquote { flex: 1; margin: 0; padding: 1.3rem 1.3rem .8rem; font-family: var(--v2-display); font-size: 1.18rem; line-height: 1.25; }
.v2-video-card > a { margin: 0 1.3rem 1.3rem; color: var(--v2-blue-deep); font-family: var(--v2-mono); font-size: .66rem; text-decoration: underline; text-underline-offset: 3px; text-transform: uppercase; }
.v2-written-proof > h2, .v2-written-reviews-head h2 { max-width: 850px; margin-top: 3rem; }
.v2-written-proof__more { margin-top: 2rem; }
.v2-written-reviews-head { margin-top: clamp(4rem,8vw,7rem); }
.v2-review-source { display: inline-flex; margin-top: .55rem; color: var(--v2-blue-deep); font-family: var(--v2-mono); font-size: .66rem; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-transform: uppercase; }

/* What is house design — cornerstone page */
.v2-process-intro { margin-bottom: clamp(3rem, 6vw, 5rem); }
.v2-process-layout { min-width: 0; display: grid; grid-template-columns: minmax(240px, .32fr) minmax(0, 1fr); gap: clamp(2rem, 6vw, 5rem); }
.v2-process-layout > *, .v2-process-steps, .v2-process-steps > div, .v2-process-step, .v2-process-step > div { min-width: 0; }
.v2-process-aside { align-self: start; position: sticky; top: calc(var(--v2-header) + 2rem); max-height: calc(100svh - var(--v2-header) - 4rem); overflow-y: auto; }
.v2-process-toc ol { margin: 1rem 0 0; padding: 0; list-style: none; border-left: 1px solid var(--v2-line); }
.v2-process-toc a { display: flex; min-height: 44px; align-items: center; gap: .7rem; padding: .3rem 0 .3rem 1rem; border-left: 2px solid transparent; margin-left: -1px; color: var(--v2-muted); font-size: .84rem; line-height: 1.3; transition: color 180ms ease, border-color 180ms ease; }
.v2-process-toc a small { color: var(--v2-steel); font-family: var(--v2-mono); font-size: .75rem; }
.v2-process-toc a:hover { color: var(--v2-blue-deep); }
.v2-process-toc a.is-active { border-left-color: var(--v2-blue); color: var(--v2-navy); font-weight: 650; }
.v2-process-toc a.is-active small { color: var(--v2-blue-deep); }
.v2-process-stage { margin: 3.5rem 0 1.5rem; padding-bottom: .6rem; border-bottom: 1px solid var(--v2-line); color: var(--v2-blue-deep); font-family: var(--v2-mono); font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.v2-process-steps > div:first-child .v2-process-stage { margin-top: 0; }
.v2-process-step { display: grid; grid-template-columns: 68px minmax(0, 1fr); gap: 1.2rem; padding: 2.5rem 0; border-bottom: 1px solid var(--v2-line); }
.v2-process-step__number { color: var(--v2-blue-deep); font-family: var(--v2-mono); font-size: 1.05rem; font-weight: 600; }
.v2-process-step h2 { margin: 0; scroll-margin-top: calc(var(--v2-header) + 2rem); font-family: var(--v2-display); font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 500; letter-spacing: -.014em; line-height: 1.1; }
.v2-process-step__summary { margin: .6rem 0 1.2rem; color: var(--v2-ink); font-size: 1.05rem; font-style: italic; }
.v2-process-step p { margin: 0 0 1rem; max-width: 68ch; color: var(--v2-muted); }
.v2-process-step .v2-text-link { margin-top: .5rem; }

/* Legal, guides and sitemap */
.v2-legal { max-width: 850px; margin-inline: auto; }
.v2-legal__updated { color: var(--v2-blue-deep); font-family: var(--v2-mono); font-size: .75rem; text-transform: uppercase; }
.v2-legal h2, .v2-guide-article h2, .v2-human-sitemap h2 { margin: 2.5rem 0 .7rem; color: var(--v2-ink); font-family: var(--v2-display); font-size: clamp(1.6rem, 2.6vw, 2.3rem); letter-spacing: -.011em; line-height: 1.1; }
.v2-legal a, .v2-human-sitemap a { color: var(--v2-blue-deep); text-decoration: underline; text-underline-offset: 3px; }
.v2-legal code { padding: .15rem .35rem; background: var(--v2-mist); color: var(--v2-ink); font-family: var(--v2-mono); }
.v2-cookie-table { max-width: 100%; overflow-x: auto; }
.v2-cookie-table table { width: 100%; min-width: 660px; border-collapse: collapse; color: var(--v2-ink); }
.v2-cookie-table th, .v2-cookie-table td { padding: .9rem; border: 1px solid var(--v2-line); text-align: left; vertical-align: top; }
.v2-cookie-table th { background: var(--v2-mist); font-family: var(--v2-mono); font-size: .75rem; text-transform: uppercase; }
.v2-guide-article { width: min(790px, 100%); margin-inline: auto; }
.v2-guide-article > header { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-bottom: 2rem; border-bottom: 1px solid var(--v2-line); color: var(--v2-muted); font-family: var(--v2-mono); font-size: .75rem; text-transform: uppercase; }
.v2-guide-article section p { color: var(--v2-muted); font-size: 1.03rem; }
.v2-guide-article aside { margin-top: 4rem; padding: 2rem; background: var(--v2-mist); }
.v2-guide-article aside h2 { margin-top: 0; }
.v2-human-sitemap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4rem; }
.v2-human-sitemap h2 { margin-top: 0; }
.v2-human-sitemap ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--v2-line); }
.v2-human-sitemap li { border-bottom: 1px solid var(--v2-line); }
.v2-human-sitemap a { min-height: 48px; display: flex; align-items: center; text-decoration: none; }

/* Gallery */
.v2-gallery-hero { padding-block: clamp(4rem, 7vw, 7rem); background: var(--v2-navy); color: var(--v2-white); }
.v2-gallery-hero .v2-kicker { color: var(--v2-sky); }
.v2-gallery-hero h1 { max-width: 1000px; margin: 1rem 0 0; font-family: var(--v2-display); font-size: clamp(2.43rem, 5.32vw, 5.32rem); font-weight: 500; letter-spacing: -.019em; line-height: 1.02; }
.v2-gallery-hero > div > p:not(.v2-kicker) { max-width: 760px; color: rgba(255,255,255,.7); }
.v2-gallery-hero__facts { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 3rem; border: 1px solid var(--v2-line-light); }
.v2-gallery-hero__facts p { display: grid; margin: 0; padding: 1.2rem; border-right: 1px solid var(--v2-line-light); }
.v2-gallery-hero__facts strong { font-family: var(--v2-display); font-size: 1.4rem; }
.v2-gallery-hero__facts span { color: rgba(255,255,255,.55); font-size: .75rem; }
.v2-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; padding-top: 3rem; }
.v2-gallery-grid button { position: relative; aspect-ratio: 4/3; overflow: hidden; padding: 0; border: 0; background: var(--v2-mist); cursor: zoom-in; }
.v2-gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 450ms ease, filter 220ms ease; }
.v2-gallery-grid button:hover img { transform: scale(1.04); filter: contrast(1.04); }
.v2-gallery-grid button > span { position: absolute; right: .5rem; bottom: .5rem; padding: .3rem .45rem; background: rgba(7,30,43,.82); color: var(--v2-white); font-family: var(--v2-mono); font-size: .75rem; }
.v2-gallery-card { position: relative; min-width: 0; overflow: hidden; background: var(--v2-navy); color: var(--v2-white); }
.v2-gallery-card img { aspect-ratio: 4/3; }
.v2-gallery-card:hover img { transform: scale(1.035); filter: brightness(.72) contrast(1.04); }
.v2-gallery-card > span { position: absolute; top: .55rem; right: .55rem; padding: .3rem .45rem; background: rgba(7,30,43,.82); font-family: var(--v2-mono); font-size: .72rem; }
.v2-gallery-card > strong, .v2-gallery-card > small { display: block; padding-inline: .85rem; }
.v2-gallery-card > strong { padding-top: .8rem; font-family: var(--v2-display); font-size: 1.15rem; font-weight: 500; line-height: 1.1; }
.v2-gallery-card > small { padding-top: .35rem; padding-bottom: .9rem; color: var(--v2-sky); font-family: var(--v2-mono); font-size: .66rem; letter-spacing: .05em; text-transform: uppercase; }
.v2-gallery-loading { min-height: 90px; display: grid; place-items: center; color: var(--v2-muted); font-family: var(--v2-mono); font-size: .75rem; text-transform: uppercase; }
.v2-gallery-pagination { display: flex; align-items: center; justify-content: center; padding-block: 3rem; font-family: var(--v2-mono); font-size: .75rem; }
.v2-gallery-pagination ul.page-numbers { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .5rem; margin: 0; padding: 0; list-style: none; }
.v2-gallery-pagination ul.page-numbers li { margin: 0; }
.v2-gallery-pagination a.page-numbers,
.v2-gallery-pagination span.page-numbers { min-width: 48px; min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: .7rem .85rem; border: 1px solid var(--v2-line); background: var(--v2-white); color: var(--v2-blue-deep); font-weight: 700; line-height: 1; text-decoration: none; transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease; }
.v2-gallery-pagination a.page-numbers:hover { border-color: var(--v2-blue-deep); background: var(--v2-mist); transform: translateY(-2px); }
.v2-gallery-pagination span.page-numbers.current { border-color: var(--v2-navy); background: var(--v2-navy); color: var(--v2-white); }
.v2-gallery-pagination .prev,
.v2-gallery-pagination .next { min-width: auto !important; padding-inline: 1.15rem !important; }
.v2-gallery-pagination .dots { border-color: transparent !important; background: transparent !important; color: var(--v2-muted) !important; }
.v2-gallery-note { margin-bottom: 5rem; padding: 2rem; border: 1px solid var(--v2-line); background: var(--v2-white); }
.v2-gallery-note h2 { margin: 0; font-family: var(--v2-display); font-size: 1.8rem; letter-spacing: -.011em; }
.v2-gallery-note p { max-width: 850px; color: var(--v2-muted); }
.v2-gallery-note a { color: var(--v2-blue-deep); text-decoration: underline; }
.v2-lightbox { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 1rem; background: rgba(7,30,43,.94); backdrop-filter: blur(12px); }
.v2-lightbox figure { max-width: min(1100px, 96vw); max-height: 90svh; margin: 0; }
.v2-lightbox figure > img { max-width: 100%; max-height: 80svh; width: auto; height: auto; object-fit: contain; }
.v2-lightbox figcaption { display: flex; justify-content: space-between; gap: 1rem; align-items: center; padding-top: .8rem; color: var(--v2-white); font-size: .75rem; }
.v2-lightbox button { min-width: 80px; min-height: 44px; border: 1px solid var(--v2-line-light); background: transparent; color: var(--v2-white); cursor: pointer; }

/* Footer, cookie and mobile actions */
.v2-footer { padding-top: 5rem; background: var(--v2-navy); color: var(--v2-white); }
.v2-footer__top { display: grid; grid-template-columns: 1.5fr .75fr 1fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); padding-bottom: 4rem; }
.v2-footer__brand > p { max-width: 390px; color: rgba(255,255,255,.58); }
.v2-footer__logo { margin-bottom: 1.5rem; }
.v2-footer__label { margin: 0 0 1rem; color: var(--v2-sky); }
.v2-footer ul { margin: 0; padding: 0; list-style: none; }
.v2-footer li a { min-height: 44px; display: inline-flex; align-items: center; color: rgba(255,255,255,.72); font-size: .8rem; transition: color 180ms ease; }
.v2-footer li a:hover { color: var(--v2-white); }
.v2-footer__contact { display: grid; align-content: start; gap: .7rem; }
.v2-footer__contact address { color: rgba(255,255,255,.62); font-style: normal; font-size: .8rem; }
.v2-footer__contact > a:not(.v2-footer__project) { font-size: .8rem; }
.v2-footer__project { display: inline-flex; align-items: center; gap: .7rem; margin-top: .8rem; color: var(--v2-sky); font-family: var(--v2-mono); font-size: .75rem; text-transform: uppercase; }
.v2-social-links { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.5rem; }
.v2-social-links a { min-width: 42px; min-height: 42px; display: inline-flex; align-items: center; justify-content: center; gap: .45rem; padding: .55rem; border: 1px solid var(--v2-line-light); color: rgba(255,255,255,.78); transition: border-color 180ms ease, color 180ms ease, transform 180ms ease; }
.v2-social-links a:hover { border-color: var(--v2-sky); color: var(--v2-white); transform: translateY(-2px); }
.v2-social-links svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.v2-social-links span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.v2-social-links--dark a { border-color: var(--v2-line); color: var(--v2-blue-deep); }
.v2-social-links--dark a:hover { border-color: var(--v2-blue-deep); color: var(--v2-navy); }
.v2-contact-social { margin-top: 1.5rem; padding-top: 1.3rem; border-top: 1px solid var(--v2-line); }
.v2-contact-social > p { margin: 0; color: var(--v2-muted); font-family: var(--v2-mono); font-size: .7rem; text-transform: uppercase; }
.v2-contact-social .v2-social-links { margin-top: .8rem; }
.v2-footer__legal { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; border-top: 1px solid var(--v2-line-light); color: rgba(255,255,255,.48); font-family: var(--v2-mono); font-size: .75rem; text-transform: uppercase; }
.v2-footer__legal nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.v2-footer__legal a { min-height: 44px; display: inline-flex; align-items: center; }
.cookie-banner { position: fixed; right: 1rem; bottom: 1rem; z-index: 85; width: min(720px, calc(100% - 2rem)); display: grid; grid-template-columns: 1fr auto; gap: 2rem; padding: 1.4rem; border: 1px solid rgba(255,255,255,.18); background: rgba(7,30,43,.97); color: var(--v2-white); box-shadow: 0 20px 70px rgba(7,30,43,.3); backdrop-filter: blur(18px); }
.cookie-banner[hidden] { display: none !important; }
.cookie-banner__label { margin: 0; color: var(--v2-sky); font-family: var(--v2-mono); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.cookie-banner h2 { margin: .3rem 0; font-family: var(--v2-display); font-size: 1.25rem; letter-spacing: -.008em; }
.cookie-banner > div > p:last-child { margin: 0; color: rgba(255,255,255,.65); font-size: .75rem; }
.cookie-banner a { color: var(--v2-sky); text-decoration: underline; }
.cookie-banner__actions { display: grid; align-content: center; gap: .5rem; }
.cookie-banner button { min-height: 44px; padding: .7rem 1rem; border: 1px solid rgba(255,255,255,.35); background: transparent; color: var(--v2-white); cursor: pointer; font-family: var(--v2-mono); font-size: .75rem; text-transform: uppercase; }
.cookie-banner button.is-primary { border-color: var(--v2-blue); background: var(--v2-blue); }
.v2-cookie-settings { min-height: 44px; display: inline-flex; align-items: center; padding: 0; border: 0; background: transparent; color: inherit; cursor: pointer; font: inherit; text-decoration: underline; text-underline-offset: .18em; }
.mobile-action-bar { display: none; }

@media (max-width: 1120px) {
  .v2-desktop-nav { gap: .9rem; }
  .v2-desktop-nav > a:not(.v2-nav-cta) { font-size: .75rem; }
  .v2-footer__top { grid-template-columns: 1.3fr 1fr 1fr; }
  .v2-footer__contact { grid-column: 2/4; }
}

@media (max-width: 900px) {
  :root { --v2-header: 72px; }
  .v2-shell { width: calc(100vw - 32px); max-width: 1380px; }
  .v2-desktop-nav { display: none; }
  .v2-menu-toggle { display: block; }
  .v2-hero { min-height: max(760px, 100svh); }
  .v2-hero__content { padding-bottom: 14rem; }
  .v2-hero__veil { background: linear-gradient(0deg, rgba(7,30,43,.98) 0%, rgba(7,30,43,.72) 60%, rgba(7,30,43,.18) 100%); }
  .v2-hero__proof { grid-template-columns: repeat(3, 1fr); }
  .v2-hero__proof > p, .v2-hero__proof > a { min-height: 105px; padding: .9rem; }
  .v2-hero__sheet { display: none; }
  .v2-intro__grid, .v2-service-story, .v2-walkthrough__head, .v2-why__grid, .v2-section-head, .v2-packages__grid, .v2-reviews__head, .v2-team-feature__grid, .v2-faq__grid, .v2-project-cta__inner,
  .v2-editorial-grid, .v2-about-feature, .v2-team-intro, .v2-package-page__intro, .v2-portfolio-intro, .v2-contact-grid, .v2-services-intro, .v2-service-detail, .v2-service-next, .v2-why-page__intro, .v2-proof-panel, .v2-testimonial-feature, .v2-guides-intro {
    grid-template-columns: 1fr;
  }
  .v2-service-story__visual { min-height: 620px; }
  .v2-walkthrough__head { align-items: start; }
  .v2-walkthrough__grid { grid-template-columns: 1fr; }
  .v2-walkthrough__grid article:nth-child(2), .v2-walkthrough__grid article:nth-child(2):hover { translate: none; }
  .v2-walkthrough__image { aspect-ratio: 5/4; }
  .v2-why__lead, .v2-packages__grid > div:first-child { position: static; }
  .v2-work-card, .v2-work-card:nth-child(1), .v2-work-card:nth-child(4), .v2-portfolio-grid article, .v2-portfolio-grid article:nth-child(3n+1) { grid-column: span 6; }
  .v2-team-feature__people { margin-top: 2rem; }
  .v2-project-cta__actions { justify-items: start; }
  .v2-page-hero--image { min-height: 570px; }
  .v2-history { grid-template-columns: 1fr; }
  .v2-about-feature__image, .v2-service-next > div:first-child, .v2-proof-panel > div:first-child { min-height: 480px; }
  .v2-principles { grid-template-columns: repeat(2, 1fr); }
  .v2-team-grid, .v2-services-grid, .v2-guides-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-package-cards { grid-template-columns: 1fr; }
  .v2-package-cards article { min-height: auto; }
  .v2-package-cards article.is-featured { transform: none; }
  .v2-process-layout { grid-template-columns: 1fr; }
  .v2-process-aside { position: static; max-height: none; margin-bottom: 2rem; padding: 1.5rem; background: var(--v2-mist); }
  .v2-process-toc ol { columns: 2; column-gap: 1.5rem; border-left: 0; }
  .v2-process-toc a { padding-left: 0; border-left: 0; }
  .v2-process-toc a.is-active { border-left: 0; }
  .v2-contact-grid iframe { min-height: 480px; }
  .v2-verification-strip, .v2-gallery-hero__facts { grid-template-columns: 1fr; }
  .v2-verification-strip > p, .v2-verification-strip > a, .v2-gallery-hero__facts p { border-right: 0; border-bottom: 1px solid var(--v2-line); }
  .v2-review-grid { grid-template-columns: 1fr; }
	.v2-recognition__grid, .v2-authority-intro, .v2-about-recognition__head, .v2-expo-proof, .v2-global-proof, .v2-why-proof, .v2-certification { grid-template-columns: 1fr; }
	.v2-recognition__media { position: relative; top: auto; }
	.v2-client-wall { grid-template-columns: repeat(3,minmax(0,1fr)); }
	.v2-video-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
	.v2-video-card:last-child { grid-column: 1/-1; width: calc(50% - .5rem); justify-self: center; }
  .v2-testimonial-feature > div:first-child { min-height: 520px; }
  .v2-human-sitemap { grid-template-columns: 1fr; }
  .v2-gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .v2-footer__top { grid-template-columns: repeat(2, 1fr); }
  .v2-footer__brand { grid-column: 1/3; }
  .v2-footer__contact { grid-column: auto; }
  .cookie-banner { bottom: 5.5rem; }
  .mobile-action-bar { position: fixed; right: 0; bottom: 0; left: 0; z-index: 75; width: 100vw; max-width: 100vw; display: grid; grid-template-columns: minmax(0,1fr) 110px; min-height: 64px; overflow-x: clip; padding-bottom: env(safe-area-inset-bottom); background: var(--v2-navy); box-shadow: 0 -8px 30px rgba(7,30,43,.22); }
  .mobile-action-bar a { display: flex; min-height: 64px; align-items: center; justify-content: center; gap: .6rem; font-family: var(--v2-mono); font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
  .mobile-action-bar__primary { background: var(--v2-blue); color: var(--v2-white); }
  .mobile-action-bar__secondary { border-left: 1px solid rgba(255,255,255,.18); color: var(--v2-white); }
  .mobile-action-bar svg { width: 20px; height: 20px; fill: currentColor; }
  .v2-footer__legal { margin-bottom: 64px; }
}

@media (max-width: 620px) {
	.v2-design-columns { grid-template-columns: 1fr; }
  .v2-shell { width: calc(100vw - 24px); max-width: 1380px; }
  .v2-section { padding-block: 4.5rem; }
  .v2-brand img { width: 42px; height: auto; }
  .v2-brand strong { font-size: 1.05rem; }
  .v2-brand small { font-size: .64rem; letter-spacing: .14em; }
  .v2-hero { min-height: 790px; }
  .v2-hero__image { object-position: 58% 50%; }
  .v2-hero h1 { font-size: clamp(2.28rem, 11.4vw, 3.57rem); }
  .v2-hero__intro { font-size: .96rem; }
  .v2-hero__actions { display: grid; }
  .v2-hero__actions .v2-button { width: 100%; }
  .v2-hero__proof { grid-template-columns: 1fr 1fr; }
  .v2-hero__proof > p, .v2-hero__proof > a { min-height: 88px; }
  .v2-hero__proof > p:nth-child(2) { border-right: 0; }
  .v2-hero__proof > a { grid-column: 1/-1; min-height: 76px; justify-items: center; border-top: 1px solid var(--v2-line-light); border-right: 0; text-align: center; }
  .v2-hero__content { padding-bottom: 18.5rem; }
  .v2-service-story__visual { min-height: 430px; }
  .v2-service-story__register { padding: 3rem 1rem; }
  .v2-service-list a { grid-template-columns: 48px minmax(0,1fr) auto; }
  .v2-service-list p { display: none; }
  .v2-work-card, .v2-work-card:nth-child(1), .v2-work-card:nth-child(4), .v2-portfolio-grid article, .v2-portfolio-grid article:nth-child(3n+1) { grid-column: 1/-1; }
  .v2-work-card--square > div, .v2-work-card--tall > div, .v2-work-card a > div { aspect-ratio: 4/3; }
  .v2-library { min-height: 680px; }
  .v2-library__number { font-size: 7rem; }
  .v2-package-index a { grid-template-columns: 40px 1fr auto; }
  .v2-review-score { width: 100%; }
	.v2-recognition__stamp { right: -.5rem; bottom: -2.6rem; width: 7.5rem; height: 7.5rem; }
	.v2-recognition__media figcaption { display: grid; }
	.v2-recognition__ledger article { grid-template-columns: minmax(0,1fr); gap: .65rem; }
	.v2-recognition__proof { align-items: flex-start; flex-direction: column; }
	.v2-about-recognition { padding-inline: 1rem; }
	.v2-about-recognition__list { grid-template-columns: 1fr; }
	.v2-about-recognition__list article { min-height: 300px; }
	.v2-client-wall { grid-template-columns: repeat(2,minmax(0,1fr)); }
	.v2-client-logo { grid-template-rows: 138px minmax(64px,auto); }
	.v2-client-logo figcaption { min-height: 64px; padding-inline: .55rem; }
	.v2-certification { margin-inline: -12px; padding-inline: 1rem; }
	.v2-certification__content dl div { grid-template-columns: 1fr; gap: .25rem; }
	.v2-certification__actions { display: grid; }
	.v2-certification__actions .v2-button { width: 100%; }
	.v2-team-practice__grid { grid-template-columns: 1fr; }
	.v2-team-practice__wide, .v2-team-practice__landscape { grid-column: auto; }
	.v2-team-practice__grid img { height: auto; aspect-ratio: 4/5; }
	.v2-team-practice__wide img, .v2-team-practice__landscape img { aspect-ratio: 4/3; }
	.v2-global-proof, .v2-why-proof { margin-inline: -12px; padding-inline: 1rem; }
	.v2-why-proof__stats { grid-template-columns: 1fr; }
	.v2-why-proof__stats p { min-height: 130px; }
	.v2-video-grid { grid-template-columns: 1fr; }
	.v2-video-card:last-child { grid-column: auto; width: 100%; }
	.v2-video-card__mount { aspect-ratio: 9/12; }
	.v2-video-card__mount button { width: 64px; height: 64px; }
	.v2-video-card__mount button svg { width: 27px; height: 27px; }
  .v2-team-feature__people { grid-template-columns: 1fr 1fr; }
  .v2-team-feature__people a:nth-child(2) { transform: translateY(-1.2rem); }
  .v2-team-feature__people a:nth-child(3) { display: none; }
  .v2-faq summary { font-size: 1rem; }
  .v2-project-cta__actions, .v2-project-cta__actions .v2-button { width: 100%; }
  .v2-page-hero, .v2-page-hero--image { min-height: 520px; }
  .v2-page-hero h1, .v2-gallery-hero h1 { font-size: clamp(2.28rem, 10.64vw, 3.5rem); }
  .v2-page-body { padding-block: 4rem; }
  .v2-principles, .v2-team-grid, .v2-services-grid, .v2-guides-grid { grid-template-columns: 1fr; }
  .v2-stat-row { grid-template-columns: 1fr; }
  .v2-team-intro, .v2-package-page__intro, .v2-portfolio-intro, .v2-services-intro, .v2-guides-intro { gap: 1rem; }
  .v2-reason-list article { grid-template-columns: 50px 1fr; gap: 1rem; }
  .v2-process-step { grid-template-columns: 44px 1fr; gap: .8rem; }
  .v2-process-toc ol { columns: 1; }
  .v2-reviews-page__score { align-items: center; flex-direction: column; text-align: center; }
  .v2-reviews-page__score > div { justify-content: center; }
  .v2-reviews-page__score .v2-button { width: 100%; }
  .v2-contact-actions { display: grid; }
  .v2-contact-actions .v2-button { width: 100%; }
  .v2-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .45rem; }
  .v2-gallery-pagination { font-size: .75rem; }
  .v2-footer__top { grid-template-columns: 1fr; }
  .v2-footer__brand { grid-column: auto; }
  .v2-footer__legal { align-items: flex-start; flex-direction: column; padding-block: 1.4rem; }
  .cookie-banner { right: .5rem; bottom: 4.8rem; width: calc(100% - 1rem); grid-template-columns: 1fr; gap: 1rem; }
  .cookie-banner__actions { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .v2-walkthrough__grid article:nth-child(2) { translate: none; } .v2-team-feature__people a:nth-child(2) { transform: none; }
  /* Show reveals outright rather than animating them quickly. */
  .v2-reveal { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .v2-hero__image { animation: none !important; }
  .v2-scroll-progress { display: none; }
}

/* ---------------------------------------------------------------------------
   Fill-image compatibility

   In the Next.js build these images used `<Image fill>`, which injects
   `position:absolute; inset:0` inline. WordPress emits ordinary <img> elements,
   so without this block they sit in normal flow, take up layout space and push
   the adjacent content aside — which is exactly what happened to the page hero.

   Every parent listed here already establishes a positioning context.
   --------------------------------------------------------------------------- */
.v2-hero__image,
.v2-page-hero__image,
.v2-service-story__media img,
.v2-library__media img,
.v2-walkthrough__image img,
.v2-work-card a > div img,
.v2-team-feature__people img,
.v2-team-card__image img,
.v2-services-grid a > div img,
.v2-guides-grid a > div img,
.v2-portfolio-grid article > a > div img,
.v2-about-feature__image img,
.v2-service-next > div:first-child img,
.v2-proof-panel > div:first-child img,
.v2-testimonial-feature > div:first-child img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

/* Portraits: centring on the geometric middle cuts foreheads off. Bias the
   crop upward so faces sit in frame. */
.v2-team-feature__people img,
.v2-team-card__image img {
  object-position: 50% 22%;
}

/* WordPress adds width/height attributes; without this, tall images overflow
   their ratio box on narrow screens. */
.v2-page-hero__image,
.v2-hero__image {
  object-position: 54% 50%;
}

/* Footer contact links were inheriting no minimum height, leaving 19–20px tap
   targets on touch screens. */
.v2-footer__contact a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* ---------------------------------------------------------------------------
   Project detail page
   --------------------------------------------------------------------------- */
.v2-project-detail { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.v2-project-detail__body .v2-prose p { margin: 0 0 1.2rem; max-width: 68ch; font-size: 1.05rem; }

.v2-project-sheet { position: sticky; top: calc(var(--v2-header) + 2rem); padding: 1.8rem; border: 1px solid var(--v2-line); background: var(--v2-mist); }
.v2-project-sheet dl { margin: 1.2rem 0 1.8rem; display: grid; gap: 0; }
.v2-project-sheet dl > div { display: grid; grid-template-columns: minmax(92px, .7fr) minmax(0, 1.3fr); gap: 1rem; padding: .8rem 0; border-bottom: 1px solid var(--v2-line); }
.v2-project-sheet dl > div:last-child { border-bottom: 0; }
.v2-project-sheet dt { color: var(--v2-muted); font-family: var(--v2-mono); font-size: 0.75rem; letter-spacing: .08em; text-transform: uppercase; }
.v2-project-sheet dd { margin: 0; font-weight: 650; text-align: right; }
.v2-project-sheet dd small { display: block; margin-top: .3rem; color: var(--v2-muted); font-family: var(--v2-sans); font-size: .72rem; font-weight: 500; line-height: 1.35; }

.v2-project-section { margin-top: clamp(3.5rem, 7vw, 6rem); }
.v2-project-section h2 { margin: 1rem 0 1.5rem; font-family: var(--v2-display); font-size: clamp(2rem, 3.6vw, 3.4rem); font-weight: 500; letter-spacing: -.016em; line-height: 1.05; }
.v2-project-section__note { max-width: 60ch; margin: -0.6rem 0 2rem; color: var(--v2-muted); font-size: .92rem; }
.v2-design-feature { margin: 0; }
.v2-design-feature img { width: 100%; max-height: 820px; object-fit: cover; background: var(--v2-mist); }
.v2-design-feature figcaption { padding-top: .7rem; color: var(--v2-muted); font-family: var(--v2-mono); font-size: .72rem; }
.v2-design-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.5rem, 4vw, 4rem); }
.v2-faq-list { border-top: 1px solid var(--v2-line); }
.v2-faq-list details { border-bottom: 1px solid var(--v2-line); }
.v2-faq-list summary { min-height: 68px; display: flex; align-items: center; padding: 1rem 0; cursor: pointer; font-family: var(--v2-display); font-size: clamp(1.05rem, 2vw, 1.35rem); font-weight: 500; }
.v2-faq-list details p { max-width: 72ch; margin: 0; padding: 0 0 1.4rem; color: var(--v2-muted); }

/* House-design interpretation and planning aids */
.v2-design-signals { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--v2-line); border-left: 1px solid var(--v2-line); }
.v2-design-signal { min-width: 0; padding: clamp(1.25rem, 2.5vw, 2rem); border-right: 1px solid var(--v2-line); border-bottom: 1px solid var(--v2-line); background: var(--v2-white); }
.v2-design-signal span { display: block; margin-bottom: 1rem; color: var(--v2-blue-deep); font-family: var(--v2-mono); font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.v2-design-signal h3 { margin: 0 0 .7rem; font-family: var(--v2-display); font-size: 1.35rem; font-weight: 500; line-height: 1.08; }
.v2-design-signal p { margin: 0; color: var(--v2-muted); font-size: .9rem; }
.v2-design-checklist { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.v2-design-checklist__intro { position: sticky; top: calc(var(--v2-header) + 2rem); }
.v2-design-checklist__intro p { max-width: 52ch; color: var(--v2-muted); }
.v2-design-checklist ol { margin: 0; padding: 0; list-style: none; counter-reset: design-check; border-top: 1px solid var(--v2-line); }
.v2-design-checklist li { counter-increment: design-check; display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--v2-line); }
.v2-design-checklist li::before { content: counter(design-check, decimal-leading-zero); color: var(--v2-blue-deep); font-family: var(--v2-mono); font-size: .72rem; font-weight: 700; letter-spacing: .08em; }
.v2-design-checklist h3 { margin: 0 0 .35rem; font-family: var(--v2-display); font-size: 1.2rem; font-weight: 500; }
.v2-design-checklist li p { margin: 0; color: var(--v2-muted); font-size: .9rem; }
.v2-design-services { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; }
.v2-design-services a { min-height: 190px; display: flex; flex-direction: column; justify-content: space-between; padding: 1.5rem; border: 1px solid var(--v2-line); background: var(--v2-white); transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease; }
.v2-design-services a:hover { border-color: var(--v2-blue-deep); background: var(--v2-mist); transform: translateY(-3px); }
.v2-design-services span { color: var(--v2-blue-deep); font-family: var(--v2-mono); font-size: .7rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.v2-design-services h3 { margin: 1rem 0 .5rem; font-family: var(--v2-display); font-size: 1.45rem; font-weight: 500; line-height: 1.08; }
.v2-design-services p { margin: 0; color: var(--v2-muted); font-size: .86rem; }
.v2-design-neighbours { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; margin-top: clamp(3rem, 6vw, 5rem); }
.v2-design-neighbours a { min-height: 120px; display: flex; flex-direction: column; justify-content: center; padding: 1.5rem; border: 1px solid var(--v2-line); background: var(--v2-white); transition: border-color 180ms ease, background-color 180ms ease; }
.v2-design-neighbours a:hover { border-color: var(--v2-blue-deep); background: var(--v2-mist); }
.v2-design-neighbours a:last-child { text-align: right; }
.v2-design-neighbours span { color: var(--v2-blue-deep); font-family: var(--v2-mono); font-size: .7rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.v2-design-neighbours strong { margin-top: .45rem; font-family: var(--v2-display); font-size: 1.15rem; font-weight: 500; line-height: 1.15; }

/* Visualisations */
.v2-project-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.v2-project-gallery > .v2-reveal:first-child { grid-column: 1 / -1; }
.v2-project-gallery button { position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; padding: 0; border: 0; background: var(--v2-mist); cursor: zoom-in; }
.v2-project-gallery img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.7,.2,1); }
.v2-project-gallery button:hover img { transform: scale(1.035); }

/* Floor plans sit on white — they are line drawings, not photographs. */
.v2-project-plans { min-width: 0; max-width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.v2-project-plans figure { min-width: 0; max-width: 100%; margin: 0; }
.v2-project-plans button { min-width: 0; max-width: 100%; display: block; width: 100%; padding: 0; border: 1px solid var(--v2-line); background: var(--v2-white); cursor: zoom-in; }
.v2-project-plans img { width: 100%; max-width: 100%; height: auto; display: block; }
.v2-project-plans figcaption { margin-top: .7rem; color: var(--v2-muted); font-family: var(--v2-mono); font-size: 0.75rem; letter-spacing: .08em; text-transform: uppercase; }

.v2-project-video { width: 100%; max-width: 1100px; height: auto; display: block; background: var(--v2-navy); }

/* Project archive cards became links; keep the card styling on the anchor. */
.v2-portfolio-grid article > a { display: block; color: inherit; }

@media (max-width: 900px) {
  .v2-project-detail { grid-template-columns: 1fr; }
  .v2-project-sheet { position: static; }
  .v2-design-signals { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v2-design-checklist { grid-template-columns: 1fr; }
  .v2-design-checklist__intro { position: static; }
  .v2-design-services { grid-template-columns: 1fr; }
  .v2-design-services a { min-height: 150px; }
  .v2-project-gallery, .v2-project-plans { grid-template-columns: 1fr; }
  .v2-project-gallery > .v2-reveal:first-child { grid-column: auto; }
}

@media (max-width: 620px) {
  /* The H1 already names the current design; keep three-level breadcrumbs compact. */
  .breadcrumbs ol:has(li:nth-child(3)) li:last-child { display: none; }
  .breadcrumbs ol:has(li:nth-child(3)) li:nth-last-child(2)::after { display: none; }
  .v2-gallery-pagination { padding-block: 2rem; font-size: .7rem; }
  .v2-gallery-pagination ul.page-numbers { gap: .35rem; }
  .v2-gallery-pagination a.page-numbers,
  .v2-gallery-pagination span.page-numbers { min-width: 44px; min-height: 44px; padding: .65rem; }
  .v2-gallery-pagination .prev,
  .v2-gallery-pagination .next { width: 100%; }
  .v2-design-signals, .v2-design-neighbours { grid-template-columns: 1fr; }
  .v2-design-neighbours a:last-child { text-align: left; }
}

/* ---------------------------------------------------------------------------
   Count-up spans must not inherit label styling

   structa_countup() renders <strong><span data-countup>2,000+</span></strong>.
   The surrounding blocks style a sibling <span> as the small uppercase mono
   label, and that rule was also catching the span *inside* the strong — which
   is why "2,000+" rendered small and monospaced next to "ISO 9001:2015
   certified" in the display serif.
   --------------------------------------------------------------------------- */
.v2-hero__proof strong span,
.v2-gallery-hero__facts strong span,
.v2-verification-strip strong span,
.v2-stat-row strong span,
.v2-library__number span,
.v2-review-score strong span {
  display: inline;
  margin: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: none;
}

/* Reveal wrappers are the grid children now; the anchor must fill them. */
.v2-services-grid > .v2-reveal, .v2-guides-grid > .v2-reveal { display: flex; }
.v2-services-grid > .v2-reveal > a, .v2-guides-grid > .v2-reveal > a { display: block; width: 100%; }

/* Stage images on the house-design process page. These are drawings, so they
   sit on white and keep their own proportions rather than being cropped. */
.v2-process-step__figure { min-width: 0; max-width: 100%; margin: 1.8rem 0 0; }
.v2-process-step__figure button { min-width: 0; max-width: 100%; display: block; width: 100%; padding: 0; border: 1px solid var(--v2-line); background: var(--v2-white); cursor: zoom-in; }
.v2-process-step__figure img { display: block; width: 100%; max-width: 100%; height: auto; }
.v2-process-step__figure figcaption { margin-top: .6rem; color: var(--v2-muted); font-family: var(--v2-mono); font-size: 0.75rem; letter-spacing: .06em; line-height: 1.5; }

/* ---------------------------------------------------------------------------
   Lead capture
   --------------------------------------------------------------------------- */

/* Desktop: form leads, direct contact supports it.
   Mobile: the order flips below — a phone user wants WhatsApp, not eight fields. */
.v2-contact-split { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.v2-contact-split__form { order: 1; }
.v2-contact-split__direct { order: 2; position: sticky; top: calc(var(--v2-header) + 2rem); }

.v2-contact-card { padding: clamp(1.5rem, 3vw, 2.2rem); border: 1px solid var(--v2-line); background: var(--v2-mist); }
.v2-contact-card h2 { margin: 1rem 0 .8rem; font-family: var(--v2-display); font-size: clamp(1.6rem, 2.4vw, 2.2rem); font-weight: 500; letter-spacing: -.014em; line-height: 1.1; }
.v2-contact-card > p { color: var(--v2-muted); }
.v2-contact-card .v2-button { width: 100%; margin-bottom: .6rem; }
.v2-contact-card .v2-contact-list { margin-top: 1.6rem; border-top: 1px solid var(--v2-line); }
.v2-contact-card address, .v2-contact-card .v2-contact-list p { margin: .3rem 0 0; font-style: normal; }
.v2-contact-extra { margin-top: clamp(3rem, 6vw, 5rem); }

/* The form */
.v2-lead__heading { margin: 0 0 .6rem; font-family: var(--v2-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 500; letter-spacing: -.016em; line-height: 1.1; }
.v2-lead__intro { max-width: 56ch; margin: 0 0 2rem; color: var(--v2-muted); }
.v2-lead__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.v2-lead__field { display: grid; gap: .4rem; margin: 0 0 1.1rem; }
.v2-lead__field label { font-family: var(--v2-mono); font-size: 0.75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.v2-lead__field label small { color: var(--v2-muted); font-weight: 400; letter-spacing: .04em; text-transform: none; }
.v2-lead__field input, .v2-lead__field select, .v2-lead__field textarea {
  width: 100%;
  min-height: 50px;
  padding: .8rem .9rem;
  border: 1px solid var(--v2-line);
  border-radius: var(--v2-radius);
  background: var(--v2-white);
  color: var(--v2-ink);
  font-family: var(--v2-body);
  font-size: 1rem; /* 16px stops iOS zooming the viewport on focus. */
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.v2-lead__field textarea { min-height: auto; resize: vertical; }
.v2-lead__field input:focus, .v2-lead__field select:focus, .v2-lead__field textarea:focus {
  border-color: var(--v2-blue);
  box-shadow: 0 0 0 3px rgba(10, 111, 159, .16);
  outline: none;
}
.v2-lead__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-top: .5rem; }
.v2-lead__actions .v2-button { cursor: pointer; }
.v2-lead__whatsapp { display: inline-flex; min-height: 44px; align-items: center; gap: .6rem; color: var(--v2-blue-deep); font-family: var(--v2-mono); font-size: 0.78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.v2-lead__whatsapp:hover { color: var(--v2-blue); }
.v2-lead__privacy { margin: 1.4rem 0 0; color: var(--v2-muted); font-size: .82rem; }
.v2-lead__privacy a { color: var(--v2-blue-deep); text-decoration: underline; text-underline-offset: 3px; }

/* Honeypot — off-screen rather than display:none, which some bots detect. */
.v2-lead__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.v2-lead__notice { padding: 1rem 1.2rem; margin: 0 0 1.6rem; border-left: 3px solid; font-size: .95rem; }
.v2-lead__notice--ok { border-color: var(--v2-blue); background: rgba(10, 111, 159, .08); }
.v2-lead__notice--error { border-color: #b32d2e; background: rgba(179, 45, 46, .07); }

/* Inline form used on pricing and project pages. */
.v2-lead--inline { margin-top: clamp(3rem, 6vw, 5rem); padding: clamp(1.8rem, 4vw, 3rem); border: 1px solid var(--v2-line); background: var(--v2-mist); }

@media (max-width: 900px) {
  .v2-contact-split { grid-template-columns: 1fr; }
  /* WhatsApp first on a phone. */
  .v2-contact-split__direct { order: 1; position: static; margin-bottom: 2rem; }
  .v2-contact-split__form { order: 2; }
  .v2-lead__row { grid-template-columns: 1fr; gap: 0; }
}

/* ---------------------------------------------------------------------------
   Contact page typography

   Small mono labels had drifted into five different treatments across the form
   and the contact card — 10px to 12.48px, weight 400 to 600, letter-spacing
   from normal to 1.8px. Read together on one page that looks like a mistake
   rather than a hierarchy, so they are unified here.
   --------------------------------------------------------------------------- */
.v2-lead__field label,
.v2-contact-card .v2-contact-list span,
.v2-lead__whatsapp,
.v2-contact-card .v2-eyebrow {
  font-family: var(--v2-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* "optional" was rendering at 10px — under the 12px floor and visibly lighter
   than the label it sits beside. */
.v2-lead__field label small {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: lowercase;
  color: var(--v2-muted);
}

/* Values in the contact card read as body text, matching the form inputs. */
.v2-contact-card address,
.v2-contact-card .v2-contact-list p,
.v2-contact-card .v2-contact-list a {
  font-family: var(--v2-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
}

.v2-contact-note { font-size: 0.82rem; line-height: 1.6; }

/* The secondary WhatsApp link was wrapping onto three lines beside the submit
   button and colliding with it. */
.v2-lead__whatsapp { white-space: nowrap; }
.v2-lead__actions { gap: 1rem 1.25rem; }

/* Sidebar heading sits a step below the form heading, deliberately. */
.v2-contact-card h2 { font-size: clamp(1.5rem, 2vw, 1.9rem); }

@media (max-width: 620px) {
  /* Let it wrap rather than overflow once there is genuinely no room. */
  .v2-lead__whatsapp { white-space: normal; }
  .v2-lead__actions { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .v2-lead__actions .v2-button { width: 100%; }
}

/* Studio location map */
.v2-contact-map { margin-top: clamp(3rem, 6vw, 5rem); }
.v2-contact-map h2 { margin: 1rem 0 .5rem; font-family: var(--v2-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 500; letter-spacing: -.016em; line-height: 1.1; }
.v2-contact-map__address { margin: 0 0 1.5rem; color: var(--v2-muted); }
.v2-contact-map__address a { display: inline-flex; align-items: center; gap: .4rem; color: var(--v2-blue-deep); font-weight: 650; }
.v2-contact-map__address svg { width: .9rem; height: .9rem; fill: none; stroke: currentColor; stroke-width: 1.8; }
/* Fixed ratio box: the iframe cannot report its own height, so reserving space
   here keeps the map from causing layout shift when it loads. */
.v2-contact-map__frame { position: relative; aspect-ratio: 21 / 9; overflow: hidden; border: 1px solid var(--v2-line); background: var(--v2-mist); }
.v2-contact-map__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.3) contrast(1.02); }

@media (max-width: 620px) {
  .v2-contact-map__frame { aspect-ratio: 4 / 3; }
}

/* The contact grid's second column held an embedded map that has been removed
   as a duplicate. With one child left, the two-column track would strand the
   text in a 40% column, so collapse to a single readable measure. */
.v2-contact-grid:has(> *:only-child) { grid-template-columns: minmax(0, 1fr); }
.v2-contact-grid:has(> *:only-child) > * { max-width: 62ch; }

/* ---------------------------------------------------------------------------
   Long-form readability

   The guides and service pages carry 300–800 words each. Measured before this
   block, body copy ran at ~96 characters per line with 1.40 leading — both
   outside comfortable reading range. Comfortable is 60–75 characters at about
   1.7. Lists also inherited the browser's 40px indent, which on a 351px mobile
   column swallowed 11% of the width.
   --------------------------------------------------------------------------- */
.v2-guide-article section.v2-prose,
.v2-service-detail .v2-prose {
  font-size: 1.05rem;
  line-height: 1.72;
}

.v2-guide-article section.v2-prose > p,
.v2-guide-article section.v2-prose > ul,
.v2-guide-article section.v2-prose > ol,
.v2-service-detail .v2-prose > p,
.v2-service-detail .v2-prose > ul,
.v2-service-detail .v2-prose > ol {
  max-width: 68ch;
  margin-bottom: 1.35rem;
}

/* Headings need room above them to signal a new section, and less below so
   they stay attached to the text they introduce. */
.v2-guide-article section.v2-prose h2,
.v2-service-detail .v2-prose h2 {
  margin: 2.6rem 0 .9rem;
  max-width: 30ch;
}

.v2-guide-article section.v2-prose h2:first-child,
.v2-service-detail .v2-prose h2:first-child { margin-top: 0; }

/* Lead paragraph sets up the page and should read a step larger. */
.v2-guide-article .v2-prose--lead,
.v2-service-detail .v2-prose--lead { max-width: 60ch; }

.v2-guide-article section.v2-prose ul,
.v2-guide-article section.v2-prose ol,
.v2-service-detail .v2-prose ul,
.v2-service-detail .v2-prose ol {
  padding-left: 1.35rem;
}

.v2-guide-article section.v2-prose li,
.v2-service-detail .v2-prose li {
  margin-bottom: .6rem;
  padding-left: .3rem;
}

.v2-guide-article section.v2-prose li::marker,
.v2-service-detail .v2-prose li::marker { color: var(--v2-blue); }

/* Bold lead-ins inside list items act as mini headings — give them the ink to
   read as one. */
.v2-guide-article section.v2-prose li strong,
.v2-service-detail .v2-prose li strong { color: var(--v2-ink); font-weight: 650; }

.v2-guide-article section.v2-prose a,
.v2-service-detail .v2-prose a {
  color: var(--v2-blue-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

@media (max-width: 620px) {
  .v2-guide-article section.v2-prose,
  .v2-service-detail .v2-prose { font-size: 1.02rem; line-height: 1.68; }

  .v2-guide-article section.v2-prose h2,
  .v2-service-detail .v2-prose h2 { margin-top: 2.1rem; max-width: none; }
}

/* The generic `.v2-guide-article section p` rule outranks `.v2-prose--lead`
   on specificity, which flattened every guide's opening paragraph to body
   size. Restore the lead as an actual lead. */
.v2-guide-article section.v2-prose p.v2-prose--lead,
.v2-service-detail .v2-prose p.v2-prose--lead {
  max-width: 34ch;
  color: var(--v2-ink);
  font-family: var(--v2-display);
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 620px) {
  .v2-guide-article section.v2-prose p.v2-prose--lead,
  .v2-service-detail .v2-prose p.v2-prose--lead { max-width: none; font-size: 1.3rem; }
}
