/* ==========================================================================
   The Wooden Stone - Homepage rebrand (2026)
   Loaded ONLY by index.html, after style.css. Every rule is scoped under
   body.home so no other page can be affected. Design system: graphite field,
   ivory paper, bronze accents. Fonts: Lora (serif) + Poppins (labels).
   ========================================================================== */

body.home {
    /* Palette. bronze-ink is the text-safe bronze for ivory backgrounds:
       #8A6A3B fails WCAG AA on ivory (4.42:1), #7E5E33 passes (5.26:1). */
    --ws-bronze: #B08A4E;
    --ws-bronze-hi: #D9B87C;
    --ws-bronze-deep: #8A6A3B;
    --ws-bronze-ink: #7E5E33;
    --ws-field: #15140F;
    --ws-field2: #1C1A14;
    --ws-paper: #F4F1E9;
    --ws-ink: #26231D;
    --ws-body-dark: #4A463E;
    --ws-grey: #6E6A61;
    --ws-line: rgba(217, 184, 124, .22);
    --ws-line-soft: rgba(217, 184, 124, .10);
    --ws-serif: 'Lora', Georgia, 'Times New Roman', serif;
    --ws-sans: 'Poppins', 'Segoe UI', Arial, sans-serif;
    --ws-header-h: 84px;
    --ws-pad: var(--container-padding, 24px);

    background-color: var(--ws-field);
    color: var(--ws-paper);
    font-family: var(--ws-serif);
    padding-top: var(--ws-header-h);
}

body.home main>section {
    scroll-margin-top: calc(var(--ws-header-h) + 12px);
}

/* --------------------------------------------------------------------------
   Fixed dark header over shared markup. nav.active mobile behavior from
   style.css (transform/opacity/visibility) is intentionally left untouched.
   -------------------------------------------------------------------------- */

body.home header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    background-color: rgba(21, 20, 15, .92);
    border-bottom: 1px solid var(--ws-line);
    min-height: var(--ws-header-h);
    box-sizing: border-box;
}

@supports (backdrop-filter: blur(6px)) {
    body.home header {
        background-color: rgba(21, 20, 15, .74);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

body.home nav a {
    color: var(--ws-paper);
    font-family: var(--ws-sans);
    font-weight: 500;
    font-size: .76rem;
    letter-spacing: .22em;
    text-transform: uppercase;
}

body.home nav a:hover {
    color: var(--ws-bronze-hi);
}

body.home .mobile-menu-toggle span {
    background-color: var(--ws-paper);
}

@media (max-width: 768px) {
    body.home nav {
        background-color: var(--ws-field2);
        border-top: 1px solid var(--ws-line);
    }

    body.home nav a {
        border-bottom: 1px solid var(--ws-line-soft);
    }
}

/* Breadcrumbs: kept for schema, styled quiet on the field. */
body.home .breadcrumbs {
    background-color: var(--ws-field);
    border-bottom: 1px solid var(--ws-line-soft);
}

body.home .breadcrumbs [aria-current="page"],
body.home .breadcrumbs span {
    color: var(--ws-grey);
    font-family: var(--ws-sans);
    font-weight: 300;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .72rem;
}

/* --------------------------------------------------------------------------
   Typography and shared components
   -------------------------------------------------------------------------- */

body.home h1 {
    font-family: var(--ws-serif);
    font-weight: 500;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -.01em;
    margin: 18px 0 20px;
    color: var(--ws-paper);
}

body.home .ws-h2 {
    font-family: var(--ws-serif);
    font-weight: 500;
    font-size: clamp(26px, 3.2vw, 40px);
    line-height: 1.18;
    margin: 16px 0 0;
}

body.home .ws-kicker {
    font-family: var(--ws-sans);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .3em;
    font-size: 11px;
    color: var(--ws-bronze);
    margin: 0;
}

body.home .ws-kicker .ws-num {
    color: var(--ws-bronze-hi);
}

body.home .ws-lead {
    font-size: clamp(16px, 1.5vw, 18.5px);
    line-height: 1.7;
    max-width: 62ch;
    margin: 22px 0 0;
    color: rgba(244, 241, 233, .78);
}

body.home .ws-em {
    font-family: var(--ws-serif);
    font-style: italic;
    font-size: clamp(19px, 2vw, 23px);
    line-height: 1.5;
    color: var(--ws-bronze-hi);
    margin: 34px 0 0;
}

body.home .ws-cite {
    font-family: var(--ws-sans);
    font-weight: 300;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ws-grey);
    margin: 10px 0 0;
}

/* Section theme scopes */
body.home .ws-section {
    position: relative;
    padding: 88px var(--ws-pad);
}

/* Vertical stage tags on section edges (decorative) */
body.home .ws-stage-tag {
    position: absolute;
    top: 50%;
    right: 26px;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    font-family: var(--ws-sans);
    font-weight: 500;
    font-size: 10px;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: rgba(217, 184, 124, .28);
    pointer-events: none;
    user-select: none;
}

body.home .ws-ivory .ws-stage-tag {
    color: rgba(126, 94, 51, .30);
}

@media (max-width: 960px) {
    body.home .ws-stage-tag {
        display: none;
    }
}

body.home .ws-field {
    background-color: var(--ws-field);
    color: var(--ws-paper);
}

body.home .ws-field2 {
    background-color: var(--ws-field2);
    color: var(--ws-paper);
}

body.home .ws-ivory {
    background-color: var(--ws-paper);
    color: var(--ws-ink);
}

body.home .ws-ivory .ws-h2 {
    color: var(--ws-ink);
}

body.home .ws-ivory .ws-kicker,
body.home .ws-ivory .ws-kicker .ws-num {
    color: var(--ws-bronze-ink);
}

body.home .ws-ivory .ws-lead {
    color: var(--ws-body-dark);
}

body.home .ws-ivory .ws-em {
    color: var(--ws-bronze-ink);
}

body.home .ws-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

/* Level-line divider (spirit-level motif) */
body.home .ws-wrap>.ws-level {
    margin-bottom: 56px;
}

body.home .ws-level {
    position: relative;
    height: 1px;
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, var(--ws-line), transparent);
}

body.home .ws-level::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -5px;
    width: 36px;
    height: 11px;
    transform: translateX(-50%);
    border: 1px solid var(--ws-line);
    border-radius: 6px;
    background-color: var(--ws-field);
}

body.home .ws-level::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -1px;
    width: 8px;
    height: 3px;
    transform: translateX(-50%);
    background-color: var(--ws-bronze-hi);
    border-radius: 2px;
    z-index: 1;
}

/* Buttons. CTAs keep the .cta-button class for GA4 tracking; these rules
   out-rank style.css's .cta-button styling via the body.home scope. */
body.home .ws-btn {
    display: inline-block;
    font-family: var(--ws-sans);
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: 12px;
    padding: 17px 30px;
    text-decoration: none;
    border-radius: 0;
    min-width: 0;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}

body.home .ws-btn-solid {
    background-color: var(--ws-bronze);
    color: var(--ws-field);
    border: 1px solid var(--ws-bronze-deep);
}

body.home .ws-btn-solid:hover {
    background-color: var(--ws-bronze-hi);
    border-color: var(--ws-bronze-deep);
    color: var(--ws-field);
    transform: translateY(-2px);
    box-shadow: none;
}

body.home .ws-btn-ghost {
    background-color: transparent;
    color: var(--ws-paper);
    border: 1px solid var(--ws-line);
}

body.home .ws-btn-ghost:hover {
    border-color: var(--ws-bronze-hi);
    color: var(--ws-bronze-hi);
    background-color: transparent;
    transform: translateY(-2px);
}

body.home .ws-ivory .ws-btn-ghost {
    color: var(--ws-bronze-ink);
    border-color: var(--ws-bronze-deep);
}

/* --------------------------------------------------------------------------
   Hero with ambient slideshow backdrop (Concept B)
   -------------------------------------------------------------------------- */

body.home .ws-hero {
    position: relative;
    overflow: hidden;
    background-color: var(--ws-field);
}

/* Blueprint-grid texture behind the whole hero */
body.home .ws-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(217, 184, 124, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(217, 184, 124, .05) 1px, transparent 1px);
    background-size: 110px 110px;
    pointer-events: none;
}

body.home .ws-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 84px var(--ws-pad);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
    gap: 52px;
    align-items: center;
}

body.home .ws-hero-sub {
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.7;
    color: rgba(244, 241, 233, .8);
    max-width: 54ch;
    margin: 0 0 34px;
}

body.home .ws-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

body.home .ws-phone {
    font-variant-numeric: tabular-nums;
}

body.home .ws-hero-meta {
    margin: 22px 0 0;
    font-family: var(--ws-sans);
    font-weight: 300;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(244, 241, 233, .6);
}

/* --------------------------------------------------------------------------
   Hero slideshow panel: the original rotating project photos, restyled.
   Images are shown prominently (not darkened behind text) in a bronze frame.
   -------------------------------------------------------------------------- */

body.home .ws-hero-show {
    position: relative;
}

body.home .ws-show-frame {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid var(--ws-bronze-deep);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
    background-color: var(--ws-field2);
}

/* Bronze corner tick, upper-left, as a framed-plate accent */
body.home .ws-show-frame::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 12px;
    width: 26px;
    height: 26px;
    border-top: 2px solid var(--ws-bronze-hi);
    border-left: 2px solid var(--ws-bronze-hi);
    z-index: 3;
    pointer-events: none;
}

body.home .ws-slides {
    position: absolute;
    inset: 0;
}

body.home .ws-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.1s ease;
}

body.home .ws-slide.active {
    opacity: 1;
}

body.home .ws-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.9) contrast(1.02);
}

/* Caption bar: sits on a solid gradient plate, never on the raw photo */
body.home .ws-show-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 40px 18px 16px;
    background: linear-gradient(rgba(21, 20, 15, 0), rgba(21, 20, 15, .9));
}

body.home .ws-show-tag {
    font-family: var(--ws-sans);
    font-weight: 500;
    font-size: 9.5px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--ws-bronze-hi);
}

body.home .ws-show-project {
    font-family: var(--ws-serif);
    font-weight: 500;
    font-size: 17px;
    line-height: 1.25;
    color: var(--ws-paper);
    min-height: 1.25em;
}

/* Slideshow pause control (WCAG 2.2.2) */
body.home .ws-slides-pause {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 3;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(21, 20, 15, .68);
    border: 1px solid var(--ws-line);
    color: var(--ws-paper);
    cursor: pointer;
    padding: 0;
}

body.home .ws-slides-pause:hover,
body.home .ws-slides-pause:focus-visible {
    border-color: var(--ws-bronze-hi);
    color: var(--ws-bronze-hi);
}

body.home .ws-slides-pause svg {
    width: 15px;
    height: 15px;
    display: block;
    fill: currentColor;
}

body.home .ws-slides-pause .ws-icon-play {
    display: none;
}

body.home .ws-slides-pause.paused .ws-icon-play {
    display: block;
}

body.home .ws-slides-pause.paused .ws-icon-pause {
    display: none;
}

body.home .ws-hero-show .ws-ticks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

body.home .ws-tick {
    width: 34px;
    height: 24px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

body.home .ws-tick::after {
    content: "";
    display: block;
    width: 26px;
    height: 9px;
    margin: 0 auto;
    border: 1px solid var(--ws-line);
    border-radius: 5px;
    transition: background-color .3s ease, border-color .3s ease;
}

body.home .ws-tick:hover::after,
body.home .ws-tick:focus-visible::after {
    border-color: var(--ws-bronze-hi);
}

body.home .ws-tick.active::after {
    background-color: var(--ws-bronze);
    border-color: var(--ws-bronze-deep);
}

/* --------------------------------------------------------------------------
   Trust strip
   -------------------------------------------------------------------------- */

body.home .ws-strip {
    background-color: var(--ws-field2);
    border-top: 1px solid var(--ws-line);
    border-bottom: 1px solid var(--ws-line);
}

body.home .ws-strip ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}

body.home .ws-strip li {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 24px 18px;
    text-align: center;
    border-left: 1px solid var(--ws-line-soft);
}

body.home .ws-strip li:first-child {
    border-left: none;
}

body.home .ws-strip strong {
    font-family: var(--ws-serif);
    font-weight: 500;
    font-size: clamp(17px, 1.9vw, 22px);
    color: var(--ws-bronze-hi);
}

body.home .ws-strip span {
    font-family: var(--ws-sans);
    font-weight: 300;
    font-size: 10.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(244, 241, 233, .64);
}

/* --------------------------------------------------------------------------
   Client logo conveyor: pure-CSS infinite marquee. The track holds two
   identical groups and slides -50%, so the loop is seamless. Pauses on
   hover; under reduced motion it becomes a static, scrollable row.
   -------------------------------------------------------------------------- */

body.home .ws-logos {
    background-color: var(--ws-field);
    border-bottom: 1px solid var(--ws-line-soft);
    padding: 36px 0 40px;
    overflow: hidden;
}

body.home .ws-logos-label {
    margin: 0 var(--ws-pad) 28px;
    text-align: center;
    font-family: var(--ws-sans);
    font-weight: 500;
    font-size: 10.5px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(244, 241, 233, .5);
}

body.home .ws-marquee {
    position: relative;
    overflow: hidden;
}

body.home .ws-marquee::before,
body.home .ws-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 2;
    pointer-events: none;
}

body.home .ws-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--ws-field), transparent);
}

body.home .ws-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--ws-field), transparent);
}

body.home .ws-marquee-track {
    display: flex;
    width: max-content;
    animation: ws-marquee 45s linear infinite;
}

body.home .ws-marquee:hover .ws-marquee-track {
    animation-play-state: paused;
}

body.home .ws-marquee-group {
    display: flex;
    align-items: flex-start;
    gap: 44px;
    padding: 0 22px;
    margin: 0;
    list-style: none;
}

body.home .ws-marquee-group li {
    flex: none;
}

/* Each logo: ivory mono mark at rest; on hover a white chip fades in with
   the full-color logo, and a name tooltip appears below. Tooltip space is
   reserved in the row so nothing clips or shifts. */
/* The tooltip is absolutely positioned so it never widens the logo's slot
   (a wide name would otherwise pad the row apart); vertical room for it is
   reserved with padding so the band never clips or jumps. */
body.home .ws-logo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 36px;
}

body.home .ws-logo-chip {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 4px;
    transition: background-color .25s ease, box-shadow .25s ease;
}

body.home .ws-logo-mono {
    display: block;
    height: 40px;
    width: auto;
    opacity: .62;
    transition: opacity .25s ease;
}

body.home .ws-logo-color {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 40px;
    max-width: calc(100% - 20px);
    width: auto;
    height: auto;
    opacity: 0;
    transition: opacity .25s ease;
}

body.home .ws-logo:hover .ws-logo-chip {
    background-color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .35);
}

body.home .ws-logo:hover .ws-logo-mono {
    opacity: 0;
}

body.home .ws-logo:hover .ws-logo-color {
    opacity: 1;
}

body.home .ws-logo-tip {
    position: absolute;
    top: calc(100% - 30px);
    left: 50%;
    z-index: 3;
    font-family: var(--ws-sans);
    font-weight: 500;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--ws-bronze-hi);
    background-color: var(--ws-field2);
    border: 1px solid var(--ws-line);
    padding: 4px 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-4px);
    transition: opacity .25s ease, transform .25s ease;
}

body.home .ws-logo:hover .ws-logo-tip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@keyframes ws-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.home .ws-marquee-track {
        animation: none;
    }

    body.home .ws-marquee {
        overflow-x: auto;
    }

    body.home .ws-marquee-group[aria-hidden="true"] {
        display: none;
    }
}

@media (max-width: 768px) {
    body.home .ws-marquee-group {
        gap: 28px;
        padding: 0 14px;
    }

    body.home .ws-logo-mono {
        height: 30px;
    }

    body.home .ws-logo-color {
        max-height: 30px;
    }
}

/* --------------------------------------------------------------------------
   01 The Friday Problem
   -------------------------------------------------------------------------- */

body.home .ws-fail-list {
    list-style: none;
    padding: 0;
    margin: 36px 0 0;
    max-width: 62ch;
}

body.home .ws-fail-list li {
    position: relative;
    padding: 15px 0 15px 34px;
    border-bottom: 1px solid var(--ws-line-soft);
    font-size: 16.5px;
    line-height: 1.6;
    color: rgba(244, 241, 233, .82);
}

body.home .ws-fail-list li::before {
    content: "\2715";
    position: absolute;
    left: 4px;
    top: 15px;
    font-size: 12px;
    color: var(--ws-grey);
}

/* --------------------------------------------------------------------------
   02 The Standard (ivory)
   -------------------------------------------------------------------------- */

body.home .ws-measures {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 46px;
}

body.home .ws-measures article {
    border-top: 2px solid var(--ws-bronze-deep);
    padding-top: 18px;
}

body.home .ws-measures h3 {
    font-family: var(--ws-serif);
    font-weight: 500;
    font-size: 22px;
    margin: 0 0 10px;
    color: var(--ws-ink);
}

body.home .ws-measures p {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--ws-body-dark);
    margin: 0;
}

/* Inline diagrams (hub-and-spoke, two-company loop) */
body.home .ws-diagram {
    margin: 48px auto 0;
    max-width: 470px;
}

body.home .ws-diagram svg {
    display: block;
    width: 100%;
    height: auto;
}

/* --------------------------------------------------------------------------
   03 The Program (checkpoints)
   -------------------------------------------------------------------------- */

body.home .ws-checkpoints {
    list-style: none;
    padding: 0;
    margin: 38px 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 44px;
}

body.home .ws-checkpoints li {
    position: relative;
    padding: 13px 0 13px 34px;
    border-bottom: 1px solid var(--ws-line-soft);
    font-family: var(--ws-sans);
    font-weight: 300;
    letter-spacing: .05em;
    font-size: 15px;
    color: rgba(244, 241, 233, .86);
}

body.home .ws-checkpoints li::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 50%;
    width: 9px;
    height: 9px;
    transform: translateY(-50%) rotate(45deg);
    border: 1px solid var(--ws-bronze);
}

body.home .ws-ck-num {
    font-family: var(--ws-sans);
    font-weight: 500;
    font-size: 10px;
    letter-spacing: .3em;
    color: var(--ws-bronze);
    margin-right: 12px;
}

/* Field-process photo row (jobsite crews), after the checkpoints */
body.home .ws-process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

body.home .ws-process figure {
    margin: 0;
    border: 1px solid var(--ws-bronze-deep);
    background-color: var(--ws-field2);
}

body.home .ws-process img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: saturate(.86);
}

body.home .ws-process figcaption {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 14px 16px;
    border-top: 1px solid var(--ws-line-soft);
}

body.home .ws-process figcaption span:first-child {
    font-family: var(--ws-sans);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ws-bronze-hi);
}

body.home .ws-process figcaption span:last-child {
    font-family: var(--ws-serif);
    font-style: italic;
    font-size: 14.5px;
    color: rgba(244, 241, 233, .78);
}

@media (max-width: 760px) {
    body.home .ws-process {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    body.home .ws-process img {
        height: 240px;
    }
}

/* --------------------------------------------------------------------------
   04 What Becomes Easier (ivory)
   -------------------------------------------------------------------------- */

body.home .ws-outcomes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 46px;
}

body.home .ws-outcomes article {
    border-top: 2px solid var(--ws-bronze-deep);
    padding-top: 18px;
}

body.home .ws-outcomes h3 {
    font-family: var(--ws-serif);
    font-weight: 500;
    font-size: 21px;
    margin: 0 0 10px;
    color: var(--ws-ink);
}

body.home .ws-outcomes p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--ws-body-dark);
    margin: 0 0 14px;
}

body.home .ws-answer {
    font-family: var(--ws-serif);
    font-style: italic;
    font-size: 15.5px;
    color: var(--ws-bronze-ink);
    margin: 0;
}

/* --------------------------------------------------------------------------
   05 Field Evidence: restyle of the existing recent-projects components.
   The IDs and JS behavior are untouched.
   -------------------------------------------------------------------------- */

body.home .ws-proof .recent-projects-section {
    margin-top: 34px;
}

body.home .recent-projects-title {
    font-family: var(--ws-serif);
    font-weight: 500;
    color: var(--ws-ink);
}

body.home .toggle-btn {
    font-family: var(--ws-sans);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 11px;
    background-color: transparent;
    border: 1px solid var(--ws-bronze-deep);
    color: var(--ws-bronze-ink);
    border-radius: 0;
    padding: 10px 18px;
    cursor: pointer;
}

body.home .toggle-btn.active {
    background-color: var(--ws-bronze);
    border-color: var(--ws-bronze-deep);
    color: var(--ws-field);
}

body.home .recent-project-card {
    border: 1px solid rgba(138, 106, 59, .35);
    border-radius: 0;
    overflow: hidden;
}

body.home .recent-project-card img {
    filter: saturate(.86);
}

/* --------------------------------------------------------------------------
   06 Two Companies, One Loop (field2)
   -------------------------------------------------------------------------- */

body.home .ws-loop .ws-wrap {
    max-width: 820px;
    text-align: center;
}

body.home .ws-loop .ws-lead {
    margin-left: auto;
    margin-right: auto;
}

/* --------------------------------------------------------------------------
   07 The Invitation (final CTA)
   -------------------------------------------------------------------------- */

body.home .ws-close {
    position: relative;
    text-align: center;
    padding-top: 110px;
    padding-bottom: 110px;
}

body.home .ws-close::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(217, 184, 124, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(217, 184, 124, .045) 1px, transparent 1px);
    background-size: 110px 110px;
    pointer-events: none;
}

body.home .ws-close .ws-wrap {
    position: relative;
    max-width: 780px;
}

body.home .ws-close .ws-lead {
    margin-left: auto;
    margin-right: auto;
}

body.home .ws-close .ws-hero-ctas {
    justify-content: center;
    margin-top: 38px;
}

body.home .ws-close-phone {
    margin: 26px 0 0;
    font-family: var(--ws-sans);
    font-weight: 300;
    font-size: 14px;
    color: rgba(244, 241, 233, .66);
}

body.home .ws-close-phone a {
    color: var(--ws-bronze-hi);
    text-decoration: none;
    font-variant-numeric: tabular-nums;
}

body.home .ws-close-phone a:hover {
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Footer, sticky CTA
   -------------------------------------------------------------------------- */

body.home footer {
    background-color: var(--ws-field2);
    border-top: 1px solid var(--ws-line);
    color: rgba(244, 241, 233, .68);
    padding: 36px var(--ws-pad);
    font-family: var(--ws-sans);
    font-weight: 300;
    font-size: 12.5px;
    letter-spacing: .04em;
}

body.home .ws-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 880px;
    margin: 0 auto 18px;
    padding-bottom: 22px;
    text-align: center;
    border-bottom: 1px solid var(--ws-line-soft);
}

body.home .ws-footer p {
    margin: 0;
}

body.home .ws-footer-brand {
    font-family: var(--ws-serif);
    font-weight: 500;
    font-size: 17px;
    letter-spacing: .02em;
    color: var(--ws-paper);
}

body.home .ws-footer-tag {
    font-family: var(--ws-sans);
    font-weight: 500;
    font-size: 10.5px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--ws-bronze);
}

body.home .ws-footer-nap {
    font-size: 13px;
    color: rgba(244, 241, 233, .72);
}

body.home .ws-footer-nap a {
    color: var(--ws-bronze-hi);
    text-decoration: none;
    font-variant-numeric: tabular-nums;
}

body.home .ws-footer-nap a:hover {
    text-decoration: underline;
}

body.home .ws-footer-states {
    font-size: 11.5px;
    color: rgba(244, 241, 233, .55);
}

body.home .ws-footer-copy {
    margin: 0;
    text-align: center;
    font-size: 11.5px;
    color: rgba(244, 241, 233, .55);
}

body.home .sticky-cta {
    background-color: var(--ws-bronze);
}

body.home .sticky-cta a {
    color: var(--ws-field);
    font-family: var(--ws-sans);
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 13px;
}

/* --------------------------------------------------------------------------
   Exit-intent popup (injected site-wide by script.js) re-themed dark on the
   homepage only. Selectors reach it because it is appended to document.body.
   -------------------------------------------------------------------------- */

body.home .exit-intent-popup-content {
    background-color: var(--ws-field2);
    border: 1px solid var(--ws-line);
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .55);
}

body.home .exit-intent-popup-content h2 {
    font-family: var(--ws-serif);
    font-weight: 500;
    color: var(--ws-paper);
}

body.home .exit-intent-popup-content p {
    color: rgba(244, 241, 233, .74);
}

body.home .exit-intent-close {
    color: rgba(244, 241, 233, .7);
}

body.home .exit-intent-close:hover {
    color: var(--ws-bronze-hi);
}

body.home .exit-intent-form input[type="email"],
body.home .exit-intent-form input[type="text"] {
    background-color: rgba(244, 241, 233, .04);
    border: 1px solid var(--ws-line);
    border-radius: 0;
    color: var(--ws-paper);
}

body.home .exit-intent-form input::placeholder {
    color: rgba(244, 241, 233, .5);
}

body.home .exit-intent-form input[type="email"]:focus,
body.home .exit-intent-form input[type="text"]:focus {
    border-color: var(--ws-bronze-hi);
}

body.home .exit-intent-form .cta-button {
    background-color: var(--ws-bronze);
    color: var(--ws-field);
    border: 1px solid var(--ws-bronze-deep);
    border-radius: 0;
    font-family: var(--ws-sans);
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-size: 12px;
    min-width: 0;
}

body.home .exit-intent-form .cta-button:hover {
    background-color: var(--ws-bronze-hi);
    border-color: var(--ws-bronze-deep);
    color: var(--ws-field);
}

body.home .exit-intent-privacy {
    color: rgba(244, 241, 233, .55);
}

/* --------------------------------------------------------------------------
   Scroll rail + reveal on scroll.
   Reveal hiding is double-gated: only when JS is present (html.ws-js, set by
   home.js) AND the visitor has not asked for reduced motion. No-JS and
   reduced-motion visitors always see full content.
   -------------------------------------------------------------------------- */

body.home .ws-rail {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: rgba(217, 184, 124, .12);
    z-index: 1300;
    pointer-events: none;
}

body.home .ws-rail span {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--ws-bronze);
    transform-origin: top;
    transform: scaleY(0);
}

@media (prefers-reduced-motion: no-preference) {
    html.ws-js body.home .rv {
        opacity: 0;
        transform: translateY(26px);
        transition: opacity .7s ease, transform .7s ease;
    }

    html.ws-js body.home .rv.rv-in {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.home .ws-slide {
        transition: none;
    }
}

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

@media (max-width: 980px) {
    body.home .ws-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 640px;
    }

    body.home .ws-hero-show {
        order: 2;
    }
}

@media (max-width: 900px) {

    body.home .ws-measures,
    body.home .ws-checkpoints {
        grid-template-columns: 1fr;
    }

    body.home .ws-outcomes {
        grid-template-columns: 1fr;
        gap: 26px;
    }
}

@media (max-width: 768px) {
    body.home {
        --ws-header-h: 76px;
    }

    body.home .ws-section {
        padding: 64px var(--ws-pad);
    }

    body.home .ws-hero-inner {
        padding: 56px var(--ws-pad);
    }

    body.home .ws-show-frame {
        aspect-ratio: 3 / 2;
    }

    body.home .ws-strip ul {
        grid-template-columns: 1fr;
    }

    body.home .ws-strip li {
        border-left: none;
        border-top: 1px solid var(--ws-line-soft);
    }

    body.home .ws-strip li:first-child {
        border-top: none;
    }

    body.home .ws-rail {
        display: none;
    }

    /* Leave room above the mobile sticky CTA */
    body.home .ws-close {
        padding-bottom: 130px;
    }
}
