/* ==========================================================================
   Griffin Quartz v2 — refined homepage preview
   All rules scoped under body.v2 so nothing leaks into the live site.
   Loaded after /styles.min.css (Montserrat @font-face lives there).
   ========================================================================== */

body.v2 {
    --v2-paper: #FAF9F7;
    --v2-white: #FFFFFF;
    --v2-ink: #151515;
    --v2-black: #000000;
    --v2-deep: #0A0A0A;
    --v2-gray: #6B6660;
    --v2-line: #D9D4CE;
    --v2-gold: #FDB913;
    --v2-on-dark: #CFCAC4;      /* body text on black: ~12:1 */
    --v2-on-dark-2: #9E9891;    /* small labels on black: ~6.9:1 */
    --v2-line-dark: #2A2826;
    --v2-wrap: 1200px;
    --v2-gutter: 24px;
    --v2-pad: clamp(64px, 9vw, 128px);
    --v2-header-h: 76px;

    margin: 0;
    padding: 0;
    max-width: none;
    background: var(--v2-paper);
    color: var(--v2-ink);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
html.v2-lock, html.v2-lock body.v2 { overflow: hidden; }

body.v2 h1, body.v2 h2, body.v2 h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    color: inherit;
    margin: 0;
}
body.v2 p { margin: 0; }
body.v2 figure { margin: 0; }
body.v2 address { font-style: normal; }
body.v2 img { display: block; max-width: 100%; height: auto; }
body.v2 a { color: inherit; text-decoration: none; }
body.v2 ul, body.v2 ol { list-style: none; margin: 0; padding: 0; }
body.v2 [id] { scroll-margin-top: calc(var(--v2-header-h) + 16px); }

/* Focus: visible, thin, on-brand */
body.v2 a:focus-visible,
body.v2 button:focus-visible,
body.v2 input:focus-visible,
body.v2 textarea:focus-visible,
body.v2 [tabindex]:focus-visible {
    outline: 2px solid var(--v2-ink);
    outline-offset: 3px;
}
body.v2 .v2-header :focus-visible,
body.v2 .v2-menu :focus-visible,
body.v2 .v2-hero :focus-visible,
body.v2 .v2-section--black :focus-visible,
body.v2 .v2-section--ink :focus-visible,
body.v2 .v2-footer :focus-visible {
    outline-color: var(--v2-white);
}

body.v2 .v2-sr {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
body.v2 .v2-skip {
    position: absolute; left: 16px; top: -48px; z-index: 2000;
    background: var(--v2-white); color: var(--v2-black);
    padding: 10px 16px; font-size: 13px;
}
body.v2 .v2-skip:focus { top: 12px; }

body.v2 .v2-wrap {
    max-width: calc(var(--v2-wrap) + 2 * var(--v2-gutter));
    margin: 0 auto;
    padding: 0 var(--v2-gutter);
}

/* ---------- Type ---------- */
body.v2 .v2-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v2-gray);
    margin-bottom: 20px;
}
body.v2 .v2-eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--v2-gold);
    flex: none;
}
body.v2 .v2-display {
    font-size: clamp(2.125rem, 3.9vw, 3.5rem);
    font-weight: 350;
    line-height: 1.12;
    letter-spacing: -0.025em;
}
body.v2 h2,
body.v2 .v2-h2 {
    font-size: clamp(1.75rem, 2.6vw, 2.375rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.022em;
}
body.v2 .v2-lede {
    font-size: 17px;
    color: var(--v2-gray);
    max-width: 34em;
    margin-top: 28px;
}
body.v2 .v2-muted { color: var(--v2-gray); font-size: 16px; }

/* ---------- Buttons & links ---------- */
body.v2 .v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 30px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1;
    border: 1px solid var(--v2-ink);
    border-radius: 0;
    cursor: pointer;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
body.v2 .v2-btn--solid { background: var(--v2-ink); color: var(--v2-white); }
body.v2 .v2-btn--solid:hover { background: transparent; color: var(--v2-ink); }
body.v2 .v2-btn--outline { background: transparent; color: var(--v2-ink); }
body.v2 .v2-btn--outline:hover { background: var(--v2-ink); color: var(--v2-white); }
/* For black backgrounds: solid white, black text */
body.v2 .v2-btn--light { background: var(--v2-white); color: var(--v2-black); border-color: var(--v2-white); }
body.v2 .v2-btn--light:hover { background: transparent; color: var(--v2-white); }
body.v2 .v2-btn--sm { min-height: 40px; padding: 0 18px; font-size: 11px; }

body.v2 .v2-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding-bottom: 4px;
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 100% 1px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size .3s ease;
}
body.v2 .v2-link:hover { background-size: 40% 1px; }
body.v2 .v2-link span { transition: transform .3s ease; }
body.v2 .v2-link:hover span { transform: translateX(4px); }

body.v2 .v2-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 36px;
    margin-top: 44px;
}

/* ---------- Header (black) ---------- */
/* script.js writes an inline box-shadow onto .header on scroll; keep v2 flat and black. */
html body.v2 header.header.v2-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--v2-black) !important;
    background-color: var(--v2-black) !important;
    border-bottom: 1px solid #1C1B1A;
    box-shadow: none !important;
    color: var(--v2-white);
}
body.v2 .v2-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    height: var(--v2-header-h);
}
/* Logo file shown untouched: its black background sits on the #000 bar. */
body.v2 .v2-logo {
    display: block;
    flex: none;
    width: 150px;
    margin-left: -10px;
}
body.v2 .v2-logo img { width: 150px; height: auto; }
body.v2 .v2-nav ul {
    display: flex;
    gap: 34px;
}
body.v2 .v2-nav a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--v2-white);
    padding: 6px 0;
    background-image: linear-gradient(var(--v2-gold), var(--v2-gold));
    background-size: 0 1px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size .3s ease;
}
body.v2 .v2-nav a:hover { background-size: 100% 1px; }
body.v2 .v2-header__actions {
    display: flex;
    align-items: center;
    gap: 24px;
}
body.v2 .v2-header__phone {
    font-size: 13px;
    color: var(--v2-white);
    letter-spacing: 0.02em;
    white-space: nowrap;
}
body.v2 .v2-header__phone:hover { color: var(--v2-on-dark); }
body.v2 .v2-header .v2-btn--outline {
    color: var(--v2-white);
    border-color: var(--v2-white);
    background: transparent;
}
body.v2 .v2-header .v2-btn--outline:hover {
    background: var(--v2-white);
    color: var(--v2-black);
}

body.v2 .v2-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 44px;
    height: 44px;
    margin-right: -10px;
    padding: 0 10px;
    background: none;
    border: 0;
    cursor: pointer;
}
body.v2 .v2-burger__line {
    display: block;
    height: 1px;
    width: 100%;
    background: var(--v2-white);
}

/* Mobile overlay (black) */
body.v2 .v2-menu {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: var(--v2-black);
    color: var(--v2-white);
    display: flex;
    flex-direction: column;
    padding: 0 var(--v2-gutter) 40px;
    overflow-y: auto;
}
body.v2 .v2-menu[hidden] { display: none; }
body.v2 .v2-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--v2-header-h);
    border-bottom: 1px solid var(--v2-line-dark);
}
body.v2 .v2-menu__close {
    width: 44px; height: 44px;
    margin-right: -10px;
    display: flex; align-items: center; justify-content: center;
    background: none; border: 0; color: var(--v2-white); cursor: pointer;
}
body.v2 .v2-menu__nav { padding: 32px 0; }
body.v2 .v2-menu__nav li { border-bottom: 1px solid var(--v2-line-dark); }
body.v2 .v2-menu__nav a {
    display: block;
    padding: 18px 0;
    font-size: 26px;
    font-weight: 300;
    letter-spacing: -0.01em;
}
body.v2 .v2-menu__foot {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}
body.v2 .v2-menu__foot .v2-btn { width: 100%; }

/* ---------- Sections ---------- */
body.v2 .v2-section { padding: var(--v2-pad) 0; background: var(--v2-paper); }
body.v2 .v2-section--white { background: var(--v2-white); }
body.v2 .v2-section--black,
body.v2 .v2-section--ink { background: var(--v2-deep); color: var(--v2-white); }
body.v2 .v2-section--black .v2-eyebrow,
body.v2 .v2-section--ink .v2-eyebrow { color: var(--v2-on-dark-2); }
body.v2 .v2-section--black .v2-muted { color: var(--v2-on-dark); }

body.v2 .v2-head { margin-bottom: 56px; max-width: 640px; }
body.v2 .v2-head--split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px 64px;
    max-width: none;
    flex-wrap: wrap;
}
body.v2 .v2-head--split > div:first-child { max-width: 600px; }
body.v2 .v2-head__note {
    max-width: 340px;
    font-size: 15px;
    color: var(--v2-gray);
}
body.v2 .v2-head__sub {
    margin-top: 14px;
    font-size: 16px;
    color: var(--v2-gray);
}
body.v2 .v2-head--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
body.v2 .v2-head--center .v2-eyebrow { justify-content: center; }

/* ---------- 1. Hero (full-bleed, black) ---------- */
body.v2 .v2-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--v2-black);
    color: var(--v2-white);
    min-height: min(calc(100vh - var(--v2-header-h)), 860px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
body.v2 .v2-hero__bg,
body.v2 .v2-hero__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
body.v2 .v2-hero__bg img {
    object-fit: cover;
    object-position: 62% 50%;
}
body.v2 .v2-hero__shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.70) 32%, rgba(0,0,0,.28) 62%, rgba(0,0,0,.08) 100%),
        linear-gradient(0deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,0) 34%);
}
body.v2 .v2-hero__inner {
    width: 100%;
    padding-top: clamp(96px, 12vw, 180px);
    padding-bottom: clamp(56px, 6vw, 88px);
}
body.v2 .v2-hero__copy { max-width: 600px; }
body.v2 .v2-hero .v2-eyebrow { color: var(--v2-on-dark); }
body.v2 .v2-hero .v2-display { color: var(--v2-white); }
body.v2 .v2-hero .v2-lede { color: var(--v2-on-dark); }
body.v2 .v2-hero .v2-link { color: var(--v2-white); }
body.v2 .v2-hero__trust { width: 100%; }
body.v2 .v2-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 18px;
    padding: 22px 0 26px;
    border-top: 1px solid rgba(255,255,255,.18);
    font-size: 13px;
    letter-spacing: 0.02em;
    color: var(--v2-on-dark);
}
body.v2 .v2-trust span:first-child {
    color: var(--v2-white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
}
body.v2 .v2-trust__sep {
    width: 16px;
    height: 1px;
    background: var(--v2-gold);
}
body.v2 .v2-trust a:hover { color: var(--v2-white); }

/* ---------- 2. Materials ---------- */
body.v2 .v2-materials {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--v2-gutter);
}
body.v2 .v2-tile { display: block; }
body.v2 .v2-tile__img {
    display: block;
    overflow: hidden;
    background: var(--v2-paper);
}
body.v2 .v2-tile__img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2, .6, .2, 1);
}
body.v2 .v2-tile:hover .v2-tile__img img { transform: scale(1.04); }
body.v2 .v2-tile__cap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0 0;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.01em;
}
body.v2 .v2-arrow {
    color: var(--v2-gray);
    transition: transform .3s ease, color .3s ease;
}
body.v2 .v2-tile:hover .v2-arrow { transform: translateX(4px); color: var(--v2-ink); }

/* ---------- 3. Recent work carousel ---------- */
body.v2 .v2-carousel__controls {
    display: flex;
    align-items: center;
    gap: 12px;
}
body.v2 .v2-carousel__count {
    margin-right: 12px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    color: var(--v2-gray);
    font-variant-numeric: tabular-nums;
}
body.v2 .v2-carousel__count span { color: var(--v2-ink); }
body.v2 .v2-arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--v2-line);
    border-radius: 50%;
    background: transparent;
    color: var(--v2-ink);
    cursor: pointer;
    transition: border-color .25s ease, background-color .25s ease, color .25s ease, opacity .25s ease;
}
body.v2 .v2-arrow-btn:hover:not(:disabled) {
    border-color: var(--v2-ink);
    background: var(--v2-ink);
    color: var(--v2-white);
}
body.v2 .v2-arrow-btn:disabled { opacity: .35; cursor: default; }

body.v2 .v2-carousel__track {
    --v2-slide-gap: var(--v2-gutter);
    display: flex;
    gap: var(--v2-slide-gap);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
body.v2 .v2-carousel__track::-webkit-scrollbar { display: none; }
body.v2 .v2-carousel__track:focus-visible { outline-offset: 6px; }
body.v2 .v2-slide {
    flex: 0 0 calc((100% - 2 * var(--v2-slide-gap)) / 2.5);
    scroll-snap-align: start;
}
body.v2 .v2-slide img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #ECE9E5;
}
body.v2 .v2-slide figcaption {
    margin-top: 14px;
    font-size: 13px;
    color: var(--v2-gray);
    letter-spacing: 0.01em;
}
body.v2 .v2-carousel__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 40px;
}
body.v2 .v2-carousel__progress {
    position: relative;
    flex: 1;
    max-width: 480px;
    height: 1px;
    background: var(--v2-line);
}
body.v2 .v2-carousel__progress span {
    position: absolute;
    left: 0; top: 0;
    height: 1px;
    width: 40%;
    background: var(--v2-ink);
    transition: width .3s ease;
}

/* ---------- 4. Founder (black) ---------- */
body.v2 .v2-section--owners { background: var(--v2-black); }
body.v2 .v2-founder {
    display: grid;
    grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
    gap: clamp(40px, 8vw, 128px);
    align-items: center;
}
body.v2 .v2-founder__media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    background: var(--v2-black);
    /* Feather the edges so the dark studio backdrop melts into the section. */
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 12%, #000 88%, transparent 100%), linear-gradient(to bottom, transparent 0, #000 4%, #000 80%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to right, transparent 0, #000 12%, #000 88%, transparent 100%), linear-gradient(to bottom, transparent 0, #000 4%, #000 80%, transparent 100%);
    mask-composite: intersect;
}
body.v2 .v2-founder__copy { max-width: 520px; }
body.v2 .v2-founder__name {
    font-size: clamp(2.25rem, 3.6vw, 3.25rem);
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: var(--v2-white);
}
body.v2 .v2-founder__role {
    margin: 14px 0 36px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--v2-line-dark);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v2-on-dark-2);
}
body.v2 .v2-founder__copy > p:not(.v2-eyebrow):not(.v2-founder__role) {
    font-size: 17px;
    color: var(--v2-on-dark);
    line-height: 1.75;
}
body.v2 .v2-founder__copy > p + p:not(.v2-founder__role) { margin-top: 18px; }
body.v2 .v2-btn--ghost-light {
    background: transparent;
    color: var(--v2-white);
    border-color: rgba(255,255,255,.7);
    letter-spacing: 0.12em;
}
body.v2 .v2-btn--ghost-light:hover { background: var(--v2-white); color: var(--v2-black); border-color: var(--v2-white); }
body.v2 .v2-section--black .v2-link { color: var(--v2-white); }

/* ---------- 5. Steps ---------- */
body.v2 .v2-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0 var(--v2-gutter);
}
body.v2 .v2-step {
    position: relative;
    padding-top: 32px;
    border-top: 1px solid var(--v2-line);
}
body.v2 .v2-step::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 32px;
    height: 1px;
    background: var(--v2-gold);
}
body.v2 .v2-step__num {
    display: block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    color: var(--v2-gray);
    margin-bottom: 40px;
}
body.v2 .v2-step__title {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: 12px;
}
body.v2 .v2-step p {
    font-size: 15px;
    color: var(--v2-gray);
    max-width: 22em;
}

/* ---------- 6. Brand film ---------- */
body.v2 .v2-video {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}
body.v2 .v2-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .82;
    transition: opacity .4s ease;
}
body.v2 .v2-video:hover img { opacity: .7; }
body.v2 .v2-video__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: none;
    border: 0;
    color: var(--v2-white);
    cursor: pointer;
}
body.v2 .v2-video__play svg { transition: transform .4s ease; }
body.v2 .v2-video__play:hover svg { transform: scale(1.06); }
body.v2 .v2-video__play:focus-visible { outline-offset: -8px; }
body.v2 .v2-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---------- 7. Showroom ---------- */
body.v2 .v2-showroom {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(40px, 7vw, 112px);
    align-items: center;
}
body.v2 .v2-showroom__details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 36px 0 20px;
    padding-top: 28px;
    border-top: 1px solid var(--v2-line);
    font-size: 17px;
}
body.v2 .v2-showroom__details a:hover { color: var(--v2-gray); }
body.v2 .v2-showroom__copy .v2-muted { margin-bottom: 32px; font-size: 15px; }
body.v2 .v2-map {
    aspect-ratio: 4 / 3;
    background: #ECE9E5;
}
body.v2 .v2-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(.4);
}

/* ---------- 8. Estimate (black) ---------- */
body.v2 .v2-estimate {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(40px, 7vw, 112px);
    align-items: start;
}
body.v2 .v2-estimate__copy .v2-muted { margin-top: 24px; max-width: 26em; }
body.v2 .v2-estimate__alt {
    margin-top: 32px;
    font-size: 14px;
    color: var(--v2-on-dark);
}
body.v2 .v2-estimate__alt a {
    color: var(--v2-white);
    border-bottom: 1px solid rgba(255,255,255,.4);
}
body.v2 .v2-form {
    display: flex;
    flex-direction: column;
    gap: 36px;
    max-width: none;
    margin: 0;
    padding: 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
}
body.v2 .v2-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px var(--v2-gutter);
}
body.v2 .v2-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v2-on-dark);
}
body.v2 .v2-optional {
    text-transform: none;
    letter-spacing: 0.01em;
    font-weight: 400;
    color: var(--v2-on-dark-2);
}
body.v2 .v2-field input,
body.v2 .v2-field textarea {
    display: block;
    width: 100%;
    padding: 10px 0 12px;
    font-family: inherit;
    font-size: 17px;
    font-weight: 400;
    color: var(--v2-white);
    caret-color: var(--v2-gold);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.55);
    border-radius: 0;
    transition: border-color .25s ease, box-shadow .25s ease;
    -webkit-appearance: none;
    appearance: none;
}
body.v2 .v2-field textarea { resize: vertical; min-height: 96px; line-height: 1.6; }
body.v2 .v2-field input:hover,
body.v2 .v2-field textarea:hover { border-bottom-color: var(--v2-white); }
body.v2 .v2-field input:focus,
body.v2 .v2-field textarea:focus {
    outline: none;
    border-bottom-color: var(--v2-white);
    box-shadow: 0 1px 0 0 var(--v2-white);
}
body.v2 .v2-field input:-webkit-autofill {
    -webkit-text-fill-color: var(--v2-white);
    -webkit-box-shadow: 0 0 0 1000px var(--v2-deep) inset;
}
body.v2 .v2-form .v2-btn { align-self: flex-start; min-width: 220px; }
body.v2 .v2-form .v2-btn:disabled { opacity: .6; cursor: default; }

/* ---------- Footer (black) ---------- */
body.v2 .v2-footer {
    background: var(--v2-black);
    color: var(--v2-on-dark-2);
    border-top: 1px solid #1C1B1A;
    padding: clamp(64px, 7vw, 96px) 0 32px;
    font-size: 14px;
    line-height: 1.8;
}
body.v2 .v2-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 4fr) repeat(3, minmax(0, 2.6fr));
    gap: 48px var(--v2-gutter);
}
/* Logo file shown untouched on #000 */
body.v2 .v2-footer__logo { display: block; width: 150px; margin: -18px 0 16px -10px; }
body.v2 .v2-footer__brand p { max-width: 22em; color: var(--v2-on-dark); }
body.v2 .v2-footer__title {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v2-white);
    margin-bottom: 18px;
}
body.v2 .v2-footer__col { color: var(--v2-on-dark); }
body.v2 .v2-footer__col li + li { margin-top: 4px; }
body.v2 .v2-footer__col address { margin-bottom: 12px; }
body.v2 .v2-footer a { transition: color .2s ease; }
body.v2 .v2-footer a:hover { color: var(--v2-white); }
body.v2 .v2-footer__base {
    margin-top: 64px;
    padding-top: 24px;
    border-top: 1px solid var(--v2-line-dark);
    font-size: 12px;
    color: var(--v2-on-dark-2);
}

/* ---------- Mobile call bar ---------- */
body.v2 .v2-callbar { display: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
    body.v2 .v2-nav ul { gap: 22px; }
    body.v2 .v2-header__phone { display: none; }
}

@media (max-width: 960px) {
    body.v2 { --v2-header-h: 64px; }
    body.v2 .v2-nav,
    body.v2 .v2-header__actions { display: none; }
    body.v2 .v2-burger { display: flex; }
    body.v2 .v2-logo, body.v2 .v2-logo img { width: 128px; }

    body.v2 .v2-materials { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 40px; }

    body.v2 .v2-slide { flex-basis: calc((100% - var(--v2-slide-gap)) / 1.6); }

    body.v2 .v2-founder { grid-template-columns: 1fr 1fr; gap: 48px; }

    body.v2 .v2-steps { grid-template-columns: 1fr 1fr; row-gap: 56px; }

    body.v2 .v2-showroom,
    body.v2 .v2-estimate { grid-template-columns: 1fr; }

    body.v2 .v2-footer__grid { grid-template-columns: 1fr 1fr; }
    body.v2 .v2-footer__brand { grid-column: 1 / -1; }

    /* Mobile call bar */
    body.v2 { padding-bottom: 64px; }
    body.v2 .v2-callbar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        position: fixed;
        left: 0; right: 0; bottom: 0;
        z-index: 900;
        background: var(--v2-white);
        border-top: 1px solid var(--v2-line);
        padding-bottom: env(safe-area-inset-bottom);
    }
    body.v2 .v2-callbar__item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        height: 64px;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--v2-ink);
    }
    body.v2 .v2-callbar__item--primary {
        background: var(--v2-black);
        color: var(--v2-white);
    }
    body.v2 .v2-callbar__item:focus-visible { outline-offset: -4px; }
    body.v2 .v2-callbar__item--primary:focus-visible { outline-color: var(--v2-white); }
}

/* Hero on phones: 4:5 image on top, fading into black under the copy */
@media (max-width: 700px) {
    body.v2 .v2-hero { min-height: 0; display: block; }
    body.v2 .v2-hero__bg,
    body.v2 .v2-hero__bg img {
        bottom: auto;
        height: auto;
        aspect-ratio: 4 / 5;
    }
    body.v2 .v2-hero__bg img { object-position: center; }
    body.v2 .v2-hero__shade {
        bottom: auto;
        aspect-ratio: 4 / 5;
        background: linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.30) 38%, rgba(0,0,0,.82) 66%, rgba(0,0,0,.96) 86%, #000 100%);
    }
    body.v2 .v2-hero__inner { padding-top: 76vw; padding-bottom: 48px; }
}

@media (max-width: 600px) {
    body.v2 { --v2-gutter: 16px; --v2-pad: 64px; }
    body.v2 .v2-head { margin-bottom: 40px; }
    body.v2 .v2-display { font-size: 2rem; line-height: 1.16; }
    body.v2 .v2-lede { font-size: 16px; margin-top: 20px; }
    body.v2 .v2-actions { margin-top: 32px; gap: 20px; }
    body.v2 .v2-actions .v2-btn { width: 100%; }
    body.v2 .v2-trust { font-size: 12px; }
    body.v2 .v2-trust__sep { display: none; }
    body.v2 .v2-trust span:first-child { width: 100%; }

    body.v2 .v2-materials { gap: 32px 16px; }
    body.v2 .v2-tile__cap { font-size: 14px; padding-top: 12px; }

    body.v2 .v2-head--split { align-items: flex-start; }
    body.v2 .v2-carousel__track { --v2-slide-gap: 12px; }
    body.v2 .v2-slide { flex-basis: 88%; }
    body.v2 .v2-arrow-btn { width: 44px; height: 44px; }
    body.v2 .v2-carousel__foot { flex-direction: column; align-items: flex-start; gap: 28px; margin-top: 28px; }
    body.v2 .v2-carousel__progress { width: 100%; max-width: none; flex: none; }

    body.v2 .v2-founder { grid-template-columns: 1fr; gap: 40px; }
    body.v2 .v2-founder__role { margin-bottom: 28px; padding-bottom: 24px; }
    body.v2 .v2-founder__copy > p:not(.v2-eyebrow):not(.v2-founder__role) { font-size: 16px; }
    body.v2 .v2-founder .v2-btn { width: 100%; }
    body.v2 .v2-steps { grid-template-columns: 1fr; row-gap: 40px; }
    body.v2 .v2-step__num { margin-bottom: 16px; }

    body.v2 .v2-field-row { grid-template-columns: 1fr; }
    body.v2 .v2-form .v2-btn { width: 100%; }

    body.v2 .v2-footer__grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (prefers-reduced-motion: reduce) {
    body.v2 *, body.v2 *::before, body.v2 *::after {
        transition: none !important;
        animation: none !important;
        scroll-behavior: auto !important;
    }
}

/* ==========================================================================
   v2 page components (index, about, contact). New classes only: the
   approved preview (preview-home.php) is unaffected.
   ========================================================================== */

/* Inline links in running copy: ink + thin gold underline on light, white on dark */
body.v2 .v2-text a:not(.v2-link):not(.v2-btn) {
    color: var(--v2-ink);
    text-decoration: underline;
    text-decoration-color: var(--v2-gold);
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition: text-decoration-color .2s ease;
}
body.v2 .v2-text a:not(.v2-link):not(.v2-btn):hover { text-decoration-color: currentColor; }
body.v2 :is(.v2-hero, .v2-section--black, .v2-section--ink) .v2-text a:not(.v2-link):not(.v2-btn) {
    color: var(--v2-white);
    text-decoration-color: rgba(255,255,255,.45);
}
body.v2 :is(.v2-hero, .v2-section--black, .v2-section--ink) .v2-text a:not(.v2-link):not(.v2-btn):hover { text-decoration-color: var(--v2-white); }
body.v2 .v2-text p + p { margin-top: 18px; }
body.v2 .v2-section--black .v2-text,
body.v2 .v2-section--ink .v2-text { color: var(--v2-on-dark); }

/* Hero: shorter variant for inner pages */
body.v2 .v2-hero--page { min-height: min(calc(78vh - var(--v2-header-h)), 640px); }
body.v2 .v2-hero--page .v2-hero__inner { padding-top: clamp(88px, 10vw, 150px); }

/* Materials: one-line description + trailing links */
body.v2 .v2-tile__desc {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--v2-gray);
}
body.v2 .v2-head__lead {
    font-size: 17px;
    color: var(--v2-ink);
    font-weight: 400;
    margin-bottom: 10px;
}
body.v2 .v2-inline-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 40px;
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid var(--v2-line);
}
body.v2 .v2-section--black .v2-inline-links,
body.v2 .v2-section--ink .v2-inline-links { border-top-color: var(--v2-line-dark); }

/* Services: four text cards on hairlines (no icons, no stock renders) */
body.v2 .v2-services {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0 var(--v2-gutter);
}
body.v2 .v2-service {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 32px;
    border-top: 1px solid var(--v2-line);
}
body.v2 .v2-service::before {
    content: "";
    position: absolute;
    top: -1px; left: 0;
    width: 32px; height: 1px;
    background: var(--v2-gold);
    transition: width .4s ease;
}
body.v2 .v2-service:hover::before { width: 100%; }
body.v2 .v2-service__label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v2-gray);
    margin-bottom: 28px;
}
body.v2 .v2-service__title {
    font-size: 21px;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: 12px;
}
body.v2 .v2-service p:not(.v2-service__label) {
    font-size: 15px;
    color: var(--v2-gray);
    margin-bottom: 28px;
}
body.v2 .v2-service .v2-link { margin-top: auto; align-self: flex-start; }
/* Whole card is clickable via the link; keep one accessible link per card */
body.v2 .v2-service .v2-link::after { content: ""; position: absolute; inset: 0; }

/* Steps: five-column variant */
body.v2 .v2-steps--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
body.v2 .v2-steps--5 .v2-step__title { font-size: 19px; }

/* Testimonials */
body.v2 .v2-quotes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 64px var(--v2-gutter);
}
body.v2 .v2-quote {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 32px;
    border-top: 1px solid var(--v2-line);
}
body.v2 .v2-quote::before {
    content: "";
    position: absolute;
    top: -1px; left: 0;
    width: 32px; height: 1px;
    background: var(--v2-gold);
}
body.v2 .v2-quote blockquote { margin: 0; }
body.v2 .v2-quote blockquote p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -0.003em;
    color: var(--v2-ink);
}
body.v2 .v2-quote blockquote p::before { content: "\201C"; }
body.v2 .v2-quote blockquote p::after { content: "\201D"; }
body.v2 .v2-quote figcaption {
    margin-top: auto;
    padding-top: 28px;
    font-size: 13px;
    letter-spacing: 0.02em;
    color: var(--v2-gray);
}
body.v2 .v2-quote figcaption strong {
    display: block;
    font-weight: 500;
    color: var(--v2-ink);
    letter-spacing: 0.01em;
}

/* Service areas (black band) */
body.v2 .v2-areas__intro {
    max-width: 760px;
    font-size: 17px;
    line-height: 1.75;
}
body.v2 .v2-areas {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px var(--v2-gutter);
    margin-top: 64px;
}
body.v2 .v2-areas__county {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v2-white);
    padding-bottom: 18px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--v2-line-dark);
}
body.v2 .v2-areas li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--v2-on-dark);
    border-bottom: 1px solid var(--v2-line-dark);
    transition: color .2s ease, padding-left .3s ease;
}
body.v2 .v2-areas li a span { color: var(--v2-on-dark-2); transition: transform .3s ease, color .3s ease; }
body.v2 .v2-areas li a:hover { color: var(--v2-white); }
body.v2 .v2-areas li a:hover span { color: var(--v2-white); transform: translateX(4px); }

/* Featured articles: text rows on hairlines */
body.v2 .v2-articles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 var(--v2-gutter);
    border-top: 1px solid var(--v2-line);
}
body.v2 .v2-article {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    height: 100%;
    padding: 28px 0;
    border-bottom: 1px solid var(--v2-line);
}
body.v2 .v2-article__kicker {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v2-gray);
    margin-bottom: 8px;
}
body.v2 .v2-article__title {
    display: block;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--v2-ink);
}
body.v2 .v2-article .v2-arrow { flex: none; }
body.v2 .v2-article:hover .v2-arrow { transform: translateX(4px); color: var(--v2-ink); }
body.v2 .v2-article:hover .v2-article__title { color: var(--v2-gray); }

/* FAQ: native details/summary on hairlines */
body.v2 .v2-faq-wrap {
    display: grid;
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    gap: 40px clamp(40px, 7vw, 112px);
    align-items: start;
}
body.v2 .v2-faq { border-top: 1px solid var(--v2-line); }
body.v2 .v2-faq details { border-bottom: 1px solid var(--v2-line); }
body.v2 .v2-faq summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 26px 0;
    cursor: pointer;
    list-style: none;
}
body.v2 .v2-faq summary::-webkit-details-marker { display: none; }
body.v2 .v2-faq summary h3 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: -0.005em;
}
body.v2 .v2-faq__icon {
    position: relative;
    flex: none;
    width: 14px;
    height: 14px;
}
body.v2 .v2-faq__icon::before,
body.v2 .v2-faq__icon::after {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    width: 14px; height: 1px;
    background: var(--v2-ink);
    transition: transform .3s ease;
}
body.v2 .v2-faq__icon::after { transform: rotate(90deg); }
body.v2 .v2-faq details[open] .v2-faq__icon::after { transform: rotate(0deg); }
body.v2 .v2-faq summary:hover h3 { color: var(--v2-gray); }
body.v2 .v2-faq__a {
    padding: 0 48px 28px 0;
    font-size: 16px;
    line-height: 1.75;
    color: var(--v2-gray);
    max-width: 46em;
}

/* Hours list */
body.v2 .v2-hours {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 28px;
    margin: 0 0 28px;
    font-size: 15px;
}
body.v2 .v2-hours dt { color: var(--v2-gray); }
body.v2 .v2-hours dd { margin: 0; color: var(--v2-ink); }
body.v2 .v2-section--black .v2-hours dt { color: var(--v2-on-dark-2); }
body.v2 .v2-section--black .v2-hours dd { color: var(--v2-white); }

/* About: story split */
body.v2 .v2-split {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 40px clamp(40px, 7vw, 112px);
    align-items: start;
}
body.v2 .v2-split .v2-head { margin-bottom: 0; }
body.v2 .v2-split__tag {
    margin-top: 24px;
    font-size: 17px;
    color: var(--v2-gray);
    max-width: 24em;
}
body.v2 .v2-prose p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--v2-ink);
    max-width: 38em;
}
body.v2 .v2-prose p + p { margin-top: 22px; }
body.v2 .v2-prose p:first-child {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

/* About: leadership, two identical portraits */
body.v2 .v2-team {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px clamp(32px, 5vw, 80px);
}
body.v2 .v2-person__media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    background: var(--v2-black);
    /* Same feathered edge as the homepage founder portrait, so the studio backdrop melts into black */
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 10%, #000 90%, transparent 100%), linear-gradient(to bottom, transparent 0, #000 4%, #000 84%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to right, transparent 0, #000 10%, #000 90%, transparent 100%), linear-gradient(to bottom, transparent 0, #000 4%, #000 84%, transparent 100%);
    mask-composite: intersect;
}
body.v2 .v2-person__name {
    margin-top: 32px;
    font-size: clamp(1.75rem, 2.6vw, 2.25rem);
    font-weight: 400;
    letter-spacing: -0.022em;
    line-height: 1.15;
    color: var(--v2-white);
}
body.v2 .v2-person__role {
    margin: 12px 0 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--v2-line-dark);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v2-on-dark-2);
}
body.v2 .v2-person__bio {
    font-size: 16px;
    line-height: 1.75;
    color: var(--v2-on-dark);
    max-width: 34em;
}

/* CTA band */
body.v2 .v2-cta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 32px 64px;
}
body.v2 .v2-cta .v2-muted { margin-top: 18px; max-width: 34em; }
body.v2 .v2-cta .v2-actions { margin-top: 0; }

/* Contact: intro + detail columns */
body.v2 .v2-intro { padding: clamp(72px, 9vw, 128px) 0 clamp(56px, 6vw, 88px); background: var(--v2-paper); }
body.v2 .v2-intro .v2-display { max-width: 15em; }
body.v2 .v2-intro .v2-lede { color: var(--v2-gray); }
body.v2 .v2-contact {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px var(--v2-gutter);
    margin-top: clamp(56px, 6vw, 88px);
}
body.v2 .v2-contact__item {
    position: relative;
    padding-top: 28px;
    border-top: 1px solid var(--v2-line);
}
body.v2 .v2-contact__item::before {
    content: "";
    position: absolute;
    top: -1px; left: 0;
    width: 32px; height: 1px;
    background: var(--v2-gold);
}
body.v2 .v2-contact__label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v2-gray);
    margin-bottom: 18px;
}
body.v2 .v2-contact__value {
    display: inline-block;
    font-size: clamp(1.25rem, 1.8vw, 1.5rem);
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 1.35;
    color: var(--v2-ink);
    word-break: break-word;
}
body.v2 a.v2-contact__value { background-image: linear-gradient(var(--v2-gold), var(--v2-gold)); background-size: 100% 1px; background-position: 0 100%; background-repeat: no-repeat; padding-bottom: 4px; }
body.v2 a.v2-contact__value:hover { background-image: linear-gradient(var(--v2-ink), var(--v2-ink)); }
body.v2 .v2-contact__note { margin-top: 12px; font-size: 14px; color: var(--v2-gray); }

/* Select field inside the dark estimate form */
body.v2 .v2-field select {
    display: block;
    width: 100%;
    padding: 10px 28px 12px 0;
    font-family: inherit;
    font-size: 17px;
    color: var(--v2-white);
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%23CFCAC4' stroke-width='1'%3E%3Cpath d='M2 4.5l4 4 4-4'/%3E%3C/svg%3E") no-repeat right 4px center;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.55);
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}
body.v2 .v2-field select option { color: var(--v2-ink); background: var(--v2-white); }
body.v2 .v2-field select:focus { outline: none; border-bottom-color: var(--v2-white); box-shadow: 0 1px 0 0 var(--v2-white); }
body.v2 .v2-estimate__alt + .v2-estimate__alt { margin-top: 12px; }

/* ---------- Page components: responsive ---------- */
@media (max-width: 1100px) {
    body.v2 .v2-steps--5 { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 56px; }
}
@media (max-width: 960px) {
    body.v2 .v2-services { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 56px; }
    body.v2 .v2-quotes { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 48px; }
    body.v2 .v2-areas { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    body.v2 .v2-faq-wrap,
    body.v2 .v2-split { grid-template-columns: 1fr; }
    body.v2 .v2-steps--5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    body.v2 .v2-contact { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
    body.v2 .v2-hero--page { min-height: 0; }
    body.v2 .v2-hero--page .v2-hero__inner { padding-top: 72vw; }
}
@media (max-width: 600px) {
    body.v2 .v2-services,
    body.v2 .v2-quotes,
    body.v2 .v2-areas,
    body.v2 .v2-articles,
    body.v2 .v2-team,
    body.v2 .v2-steps--5,
    body.v2 .v2-contact { grid-template-columns: 1fr; }
    body.v2 .v2-services { row-gap: 44px; }
    body.v2 .v2-quotes { row-gap: 40px; }
    body.v2 .v2-quote blockquote p { font-size: 17px; }
    body.v2 .v2-areas { margin-top: 48px; gap: 40px; }
    body.v2 .v2-areas__intro { font-size: 16px; }
    body.v2 .v2-inline-links { margin-top: 40px; gap: 16px 28px; }
    body.v2 .v2-article { padding: 22px 0; }
    body.v2 .v2-article__title { font-size: 17px; }
    body.v2 .v2-faq summary { padding: 22px 0; }
    body.v2 .v2-faq summary h3 { font-size: 16px; }
    body.v2 .v2-faq__a { padding-right: 0; font-size: 15px; }
    body.v2 .v2-prose p { font-size: 16px; }
    body.v2 .v2-prose p:first-child { font-size: 19px; }
    body.v2 .v2-cta .v2-actions { width: 100%; }
    body.v2 .v2-team { row-gap: 56px; }
}

/* ==========================================================================
   Coexistence with the sitewide layer (body.v2.v2site): pages that use the
   global includes/header.php + footer.php together with the v2 components.
   ========================================================================== */
/* The global footer has no v2 call bar, so no reserved space at the bottom */
@media (max-width: 960px) {
    html body.v2.v2site { padding-bottom: 0; }
}
/* site-v2.css restyles every .contact-form as a white panel; keep the v2 underline fields on black */
html body.v2.v2site .v2-form { padding: 0 !important; background: none !important; }
html body.v2.v2site .v2-form .v2-field label {
    font-size: 12px !important;
    color: var(--v2-on-dark) !important;
    margin-bottom: 6px;
}
html body.v2.v2site .v2-form .v2-field :is(input, textarea, select) {
    font-size: 17px !important;
    color: var(--v2-white);
    background-color: transparent;
    border: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.55) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
html body.v2.v2site .v2-form .v2-field :is(input, textarea, select):hover { border-bottom-color: var(--v2-white) !important; }
html body.v2.v2site .v2-form .v2-field :is(input, textarea, select):focus {
    border-bottom-color: var(--v2-white) !important;
    box-shadow: 0 1px 0 0 var(--v2-white) !important;
}
html body.v2.v2site .v2-form .v2-field select {
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%23CFCAC4' stroke-width='1'%3E%3Cpath d='M2 4.5l4 4 4-4'/%3E%3C/svg%3E") no-repeat right 4px center;
}
html body.v2.v2site .v2-form .v2-optional { color: var(--v2-on-dark-2) !important; }
/* Section headings on black keep white text regardless of legacy heading colors */
html body.v2.v2site :is(.v2-hero, .v2-section--black, .v2-section--ink) :is(h1, h2, h3) { color: var(--v2-white); }
