:root {
    --paper: #f7f3ec;
    --paper-deep: #eee7dc;
    --limestone: #ded3c2;
    --sand: #c9b89e;
    --bronze: #8a6f4c;
    --charcoal: #1d2426;
    --ink: #253036;
    --blue-black: #102a33;
    --coastal: #2f6f79;
    --line: rgba(29, 36, 38, 0.16);
    --line-light: rgba(255, 255, 255, 0.32);
    --shadow: 0 24px 70px rgba(21, 34, 36, 0.12);
    --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --site-gutter: clamp(18px, 4vw, 56px);
    --site-wide-gutter: clamp(28px, 4.5vw, 72px);
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    transform: translateY(-160%);
    background: var(--charcoal);
    color: #fff;
    padding: 10px 14px;
}

    .skip-link:focus {
        transform: translateY(0);
    }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    min-height: 78px;
    padding: 14px var(--site-gutter);
    background: rgba(247, 243, 236, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.header-brand,
.footer-brand {
    min-width: 180px;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--charcoal);
}

.brand-logo-mark {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.wordmark {
    position: relative;
    display: inline-grid;
    gap: 2px;
    color: var(--charcoal);
    padding-left: 14px;
}

    .wordmark::before {
        content: "";
        position: absolute;
        left: 0;
        top: 3px;
        bottom: 3px;
        width: 1px;
        background: var(--bronze);
    }

.wordmark-main {
    font-family: var(--serif);
    font-size: 1.23rem;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.wordmark-sub {
    font-size: 0.68rem;
    line-height: 1.2;
    text-transform: uppercase;
    color: rgba(37, 48, 54, 0.78);
}

.brand-mark img {
    max-width: 210px;
    max-height: 54px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 1.5vw, 22px);
}

    .main-nav a {
        position: relative;
        color: rgba(29, 36, 38, 0.74);
        font-size: 0.82rem;
        font-weight: 650;
        text-transform: uppercase;
    }

        .main-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -8px;
            height: 1px;
            transform: scaleX(0);
            transform-origin: left;
            background: var(--bronze);
            transition: transform 180ms ease;
        }

        .main-nav a:hover,
        .main-nav a:focus-visible,
        .main-nav a.is-active {
            color: var(--charcoal);
        }

            .main-nav a:hover::after,
            .main-nav a:focus-visible::after,
            .main-nav a.is-active::after {
                transform: scaleX(1);
            }

.header-cta,
.btn,
.download-card,
.text-button {
    min-height: 44px;
}

.header-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    max-width: 100%;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 750;
    text-transform: uppercase;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

    .header-cta,
    .btn.primary {
        background: var(--charcoal);
        color: #fff;
    }

    .btn.secondary {
        background: transparent;
        border-color: rgba(29, 36, 38, 0.28);
        color: var(--charcoal);
    }

.hero-dark .btn.secondary {
    border-color: var(--line-light);
    color: #fff;
}

.header-cta:hover,
.btn:hover {
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: transparent;
}

    .nav-toggle span {
        display: block;
        width: 18px;
        height: 1px;
        margin: 5px auto;
        background: var(--charcoal);
    }

.hero {
    position: relative;
    min-height: min(700px, calc(100vh - 180px));
    display: grid;
    align-items: end;
    padding: clamp(64px, 9vw, 124px) clamp(18px, 5vw, 72px) clamp(34px, 5vw, 58px);
    overflow: hidden;
    background: var(--charcoal);
    color: #fff;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

    .hero-media::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(13, 26, 30, 0.45);
    }

    .hero-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 40%;
    }

.hero-content,
.hero-stat {
    position: relative;
    z-index: 1;
}

.hero .reveal {
    opacity: 1;
    transform: none;
}

.hero-content {
    max-width: 850px;
}

.eyebrow,
.index-label {
    margin: 0 0 12px;
    color: var(--bronze);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-dark .eyebrow,
.hero-dark .index-label {
    color: var(--limestone);
}

h1,
h2,
h3,
blockquote {
    font-family: var(--serif);
    font-weight: 500;
    line-height: 1.05;
    margin: 0;
    color: var(--charcoal);
}

.hero h1 {
    max-width: 920px;
    color: #fff;
    font-size: clamp(2.65rem, 5vw, 4.75rem);
}

.hero-copy {
    max-width: 720px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-stat {
    position: absolute;
    right: clamp(18px, 5vw, 72px);
    bottom: clamp(34px, 5vw, 58px);
    display: grid;
    gap: 4px;
    width: min(360px, 100%);
    padding-top: 18px;
    border-top: 1px solid var(--line-light);
    color: rgba(255, 255, 255, 0.86);
}

    .hero-stat span {
        font-size: 0.78rem;
        text-transform: uppercase;
    }

    .hero-stat strong {
        font-family: var(--serif);
        font-size: 1.4rem;
        font-weight: 500;
    }

section {
    padding: clamp(64px, 8vw, 118px) clamp(18px, 5vw, 72px);
}

.section-heading,
.page-intro {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(280px, 1fr);
    gap: clamp(28px, 5vw, 78px);
    align-items: end;
    max-width: 1240px;
    margin: 0 auto 42px;
}

    .section-heading h2,
    .page-intro h1,
    .promise-copy h2,
    .quote-cta h2,
    .feature-copy h2,
    .performance-copy h2,
    .about-copy h2 {
        font-size: clamp(2.3rem, 4.2vw, 4.9rem);
    }

    .section-heading p:last-child,
    .page-intro > p,
    .promise-details p,
    .feature-copy p,
    .performance-copy p,
    .about-copy p,
    .gallery-note p {
        margin: 0;
        color: rgba(37, 48, 54, 0.76);
        font-size: 1.05rem;
    }

.audience-grid,
.product-grid,
.process-grid,
.builder-grid,
.resource-grid,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1240px;
    margin: 0 auto;
}

.audience-section {
    padding-top: 36px;
}

.audience-card,
.info-card,
.resource-card,
.process-step,
.product-card,
.gallery-card,
.download-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.38);
}

.audience-card {
    min-height: 260px;
    display: grid;
    align-content: end;
    gap: 16px;
    padding: 28px;
    transition: transform 180ms ease, background 180ms ease;
}

    .audience-card span {
        width: 54px;
        height: 1px;
        background: var(--bronze);
    }

    .audience-card h2,
    .info-card h2,
    .resource-card h2,
    .process-step h2,
    .product-card h2,
    .gallery-card h2,
    .system-copy h2,
    .contact-card h2 {
        font-size: clamp(1.45rem, 2vw, 2rem);
    }

    .audience-card p,
    .info-card p,
    .resource-card p,
    .process-step p,
    .product-card p,
    .gallery-card p,
    .system-copy p,
    .contact-card p {
        margin: 0;
        color: rgba(37, 48, 54, 0.74);
    }

    .audience-card:hover {
        transform: translateY(-3px);
        background: #fff;
    }

.promise-section {
    display: grid;
    grid-template-columns: minmax(280px, 1.1fr) minmax(260px, 0.55fr);
    gap: clamp(30px, 5vw, 70px);
    max-width: 1240px;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 20px;
}

.promise-details {
    align-self: end;
    padding: 30px 0 10px;
    border-top: 1px solid var(--line);
}

.product-overview,
.process-preview,
.resource-band {
    background: var(--paper-deep);
}

.product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
    overflow: hidden;
    background: #f9f6f0;
}

    .product-card img,
    .gallery-card img {
        width: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }

    .product-card div,
    .gallery-card div,
    .info-card,
    .resource-card,
    .process-step {
        padding: 24px;
    }

        .product-card a,
        .resource-card a {
            display: inline-flex;
            margin-top: 18px;
            color: var(--blue-black);
            font-size: 0.82rem;
            font-weight: 800;
            text-transform: uppercase;
        }

.process-step {
    display: grid;
    gap: 16px;
}

    .process-step span {
        color: var(--bronze);
        font-size: 0.86rem;
        font-weight: 800;
    }

.brand-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 18px;
    max-width: 1240px;
    margin: 0 auto;
}

.logo-panel,
.identity-notes,
.testimonial-placeholder,
.quote-cta,
.compliance-note,
.gallery-note {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.44);
    padding: clamp(26px, 4vw, 46px);
}

.logo-preview {
    min-height: 220px;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: clamp(16px, 2.4vw, 28px);
    border: 1px dashed rgba(138, 111, 76, 0.45);
    border-radius: 8px;
    background: #fbf8f2;
}

.large-wordmark {
    width: auto;
    max-width: 100%;
    min-width: 0;
    justify-content: center;
    gap: clamp(12px, 1.4vw, 20px);
}

    .large-wordmark .brand-logo-mark {
        width: clamp(64px, 6.8vw, 104px);
        height: clamp(64px, 6.8vw, 104px);
    }

    .large-wordmark .wordmark {
        flex: 0 0 auto;
        min-width: 0;
        padding-left: clamp(12px, 1.6vw, 18px);
    }

    .large-wordmark .wordmark-main {
        white-space: nowrap;
        font-size: clamp(1.6rem, 3vw, 3rem);
    }

    .large-wordmark .wordmark-sub {
        white-space: nowrap;
        font-size: clamp(0.74rem, 1vw, 0.96rem);
    }

.upload-control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 12px 18px;
    border: 1px solid var(--line);
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 800;
}

    .upload-control input {
        position: absolute;
        width: 1px;
        height: 1px;
        opacity: 0;
    }

.text-button {
    display: block;
    margin-top: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(37, 48, 54, 0.72);
    cursor: pointer;
    font-size: 0.82rem;
    text-decoration: underline;
}

.identity-notes h3,
.contact-card h3,
.about-list h3 {
    margin: 0 0 14px;
    font-family: var(--serif);
    font-size: 1.65rem;
    font-weight: 500;
    color: var(--charcoal);
}

.tagline-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

    .tagline-list span {
        display: inline-flex;
        padding: 8px 11px;
        border: 1px solid var(--line);
        border-radius: 999px;
        color: rgba(37, 48, 54, 0.78);
        background: #fbf8f2;
        font-size: 0.84rem;
    }

.testimonial-placeholder {
    max-width: 1240px;
    margin: 0 auto;
}

    .testimonial-placeholder blockquote {
        max-width: 920px;
        margin: 0 0 20px;
        font-size: clamp(2rem, 3.8vw, 4.2rem);
    }

.quote-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    width: calc(100% - (var(--site-gutter) * 2));
    max-width: 1640px;
    margin: 48px auto 64px;
    padding: clamp(34px, 3.2vw, 52px) clamp(34px, 4vw, 64px);
    background: var(--blue-black);
    color: #fff;
}

    .quote-cta h2 {
        color: #fff;
        font-size: clamp(2.35rem, 3.6vw, 4rem);
        line-height: 1;
    }

    .quote-cta p {
        margin-top: 18px;
        max-width: 720px;
        color: rgba(255, 255, 255, 0.78);
    }

    .quote-cta > div:first-child {
        max-width: 1080px;
    }

    .quote-cta .btn.primary {
        background: #fff;
        color: var(--charcoal);
    }

.page-intro {
    padding-top: clamp(64px, 8vw, 108px);
    padding-bottom: clamp(42px, 5vw, 70px);
    margin-bottom: 20px;
}

.systems-list {
    display: grid;
    gap: 22px;
    max-width: 1240px;
    margin: 0 auto;
}

.system-detail {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
    min-height: 560px;
    border-top: 1px solid var(--line);
    padding: clamp(28px, 5vw, 64px) 0;
}

.system-image img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    border-radius: 8px;
}

.system-copy {
    display: grid;
    align-content: center;
    gap: 20px;
    padding: clamp(20px, 4vw, 56px);
}

    .system-copy .lede {
        font-size: 1.08rem;
        color: rgba(37, 48, 54, 0.78);
    }

.spec-list {
    display: grid;
    gap: 14px;
    margin: 0;
}

    .spec-list div {
        padding-top: 14px;
        border-top: 1px solid var(--line);
    }

    .spec-list dt {
        margin-bottom: 4px;
        color: var(--bronze);
        font-size: 0.78rem;
        font-weight: 850;
        text-transform: uppercase;
    }

    .spec-list dd {
        margin: 0;
        color: rgba(37, 48, 54, 0.78);
    }

.split-feature,
.performance-hero,
.about-band,
.contact-layout,
.checklist-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1fr);
    gap: clamp(28px, 5vw, 78px);
    max-width: 1240px;
    margin: 0 auto;
}

    .split-feature.reverse .feature-media {
        order: 2;
    }

    .feature-media img,
    .performance-hero img {
        width: 100%;
        height: 100%;
        min-height: 480px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: var(--shadow);
    }

.feature-copy,
.performance-copy,
.about-copy {
    align-self: center;
}

    .feature-copy p,
    .performance-copy p,
    .about-copy p {
        margin-top: 20px;
    }

.builder-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
    min-height: 240px;
}

.checklist-section {
    align-items: start;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .checklist li {
        padding: 14px 16px;
        border-left: 2px solid var(--bronze);
        background: rgba(255, 255, 255, 0.46);
    }

.download-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    max-width: 1240px;
    margin: 0 auto;
}

.download-card {
    display: grid;
    gap: 8px;
    padding: 18px;
}

    .download-card span {
        font-weight: 800;
    }

    .download-card small {
        color: rgba(37, 48, 54, 0.6);
    }

.performance-hero {
    align-items: stretch;
}

.compliance-note,
.gallery-note {
    max-width: 1240px;
    margin: 0 auto;
}

.timeline-section {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: clamp(10px, 0.9vw, 16px);
    max-width: 1840px;
    margin: 0 auto;
}

    .timeline-section .process-step {
        align-content: start;
        min-width: 0;
        min-height: 360px;
        gap: clamp(12px, 1vw, 18px);
        padding: clamp(18px, 1.2vw, 24px);
        overflow-wrap: break-word;
    }

        .timeline-section .process-step h2 {
            font-size: clamp(1.3rem, 1.25vw, 1.75rem);
            line-height: 1.12;
        }

        .timeline-section .process-step p {
            font-size: clamp(0.82rem, 0.8vw, 0.94rem);
            line-height: 1.5;
        }

        .timeline-section .process-step span {
            margin-bottom: clamp(14px, 1.6vw, 28px);
        }

.gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-list {
    align-self: start;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: clamp(24px, 4vw, 42px);
    background: rgba(255, 255, 255, 0.45);
}

    .about-list ul {
        margin: 0;
        padding-left: 18px;
    }

    .about-list li + li {
        margin-top: 12px;
    }

.resource-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resource-card span {
    color: var(--bronze);
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.contact-layout {
    align-items: start;
}

.quote-form,
.contact-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.54);
    padding: clamp(22px, 4vw, 42px);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.quote-form label,
.quote-form legend {
    display: grid;
    gap: 7px;
    color: rgba(37, 48, 54, 0.78);
    font-size: 0.88rem;
    font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(37, 48, 54, 0.22);
    border-radius: 4px;
    background: #fff;
    color: var(--charcoal);
    padding: 12px 13px;
}

.quote-form textarea {
    resize: vertical;
}

.quote-form fieldset,
.file-field,
.message-field {
    grid-column: 1 / -1;
}

.quote-form fieldset {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 16px;
    border: 1px solid rgba(37, 48, 54, 0.22);
    border-radius: 4px;
}

.check-option {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: center;
    gap: 8px !important;
    font-weight: 600 !important;
}

    .check-option input {
        width: 18px;
        min-height: 18px;
    }

.quote-form button {
    margin-top: 18px;
}

.form-status {
    min-height: 26px;
    color: var(--coastal);
    font-weight: 700;
}

.contact-card {
    position: sticky;
    top: 104px;
}

    .contact-card a {
        text-decoration: underline;
        text-underline-offset: 4px;
    }

.contact-divider {
    height: 1px;
    margin: 28px 0;
    background: var(--line);
}

.site-footer {
    padding: clamp(44px, 7vw, 76px) clamp(18px, 5vw, 72px);
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.76);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.3fr 0.85fr 0.85fr 0.85fr;
    gap: 28px;
    max-width: 1240px;
    margin: 0 auto;
}

.site-footer .wordmark,
.site-footer h2,
.site-footer a {
    color: #fff;
}

    .site-footer .wordmark::before {
        background: rgba(255, 255, 255, 0.46);
    }

.site-footer .wordmark-sub {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
    margin: 0 0 12px;
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-note {
    max-width: 480px;
    font-size: 0.82rem;
}

.footer-links {
    display: grid;
    gap: 6px;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease;
}

    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

@media (max-width: 1180px) {
    .site-header {
        grid-template-columns: auto auto auto;
    }

    .nav-toggle {
        display: block;
        justify-self: end;
    }

    .main-nav {
        position: absolute;
        left: 18px;
        right: 18px;
        top: calc(100% + 8px);
        display: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: stretch;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(247, 243, 236, 0.98);
        box-shadow: var(--shadow);
    }

        .main-nav.is-open {
            display: grid;
        }

    .header-cta {
        justify-self: end;
    }

    .product-grid,
    .timeline-section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .download-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .site-header {
        grid-template-columns: 1fr auto;
        min-height: 70px;
    }

    .header-cta {
        display: none;
    }

    .hero {
        min-height: min(720px, calc(100vh - 98px));
        padding-top: 120px;
    }

    .hero-stat {
        display: none;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .section-heading,
    .page-intro,
    .promise-section,
    .brand-grid,
    .system-detail,
    .split-feature,
    .performance-hero,
    .about-band,
    .contact-layout,
    .checklist-section,
    .quote-cta {
        grid-template-columns: 1fr;
    }

    .audience-grid,
    .product-grid,
    .process-grid,
    .builder-grid,
    .resource-grid,
    .gallery-grid,
    .download-row,
    .timeline-section {
        grid-template-columns: 1fr;
    }

    .split-feature.reverse .feature-media {
        order: initial;
    }

    .system-detail {
        min-height: auto;
    }

    .system-image img,
    .feature-media img,
    .performance-hero img {
        min-height: 320px;
    }

    .system-copy {
        padding: 20px 0 0;
    }

    .checklist,
    .form-grid,
    .quote-form fieldset {
        grid-template-columns: 1fr;
    }

    .contact-card {
        position: static;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    body {
        font-size: 15px;
    }

    .main-nav {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: min(690px, calc(100vh - 92px));
    }

        .hero h1 {
            font-size: 2.82rem;
        }

    .hero-actions,
    .quote-cta {
        align-items: stretch;
    }

        .btn,
        .hero-actions .btn,
        .quote-cta .btn {
            width: 100%;
        }

    .brand-logo-mark {
        width: 36px;
        height: 36px;
    }

    .large-wordmark {
        flex-direction: column;
        text-align: center;
    }

        .large-wordmark .wordmark {
            padding-top: 14px;
            padding-left: 0;
        }

            .large-wordmark .wordmark::before {
                top: 0;
                right: 12%;
                bottom: auto;
                width: auto;
                height: 1px;
            }

    .wordmark-main {
        font-size: 1.05rem;
    }
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    padding: 12px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    display: none;
    z-index: 20;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    display: grid;
    gap: 8px;
}

.nav-dropdown-menu a {
    white-space: nowrap;
}

.anchored-heading,
#builders,
#architects,
#performance,
#process,
#resources {
    scroll-margin-top: 120px;
}

@media (max-width: 900px) {
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        display: grid;
        gap: 8px;
        min-width: 0;
        padding: 8px 0 0 16px;
        background: transparent;
        border: 0;
        box-shadow: none;
    }
}

@media (max-width: 820px) {
    .quote-cta {
        width: calc(100% - (var(--site-gutter) * 2));
        margin: 36px auto 48px;
        padding: 34px 28px;
    }
}

@media (max-width: 520px) {
    .quote-cta {
        width: calc(100% - 36px);
        margin: 28px auto 40px;
        padding: 28px 22px;
    }

        .quote-cta h2 {
            font-size: clamp(2rem, 11vw, 2.8rem);
        }
}
