:root {
    --ink: #151515;
    --muted: #696d72;
    --line: #d8dadd;
    --paper: #ffffff;
    --wash: #f2f6fa;
    --accent: #c8796e;
    --content: 1400px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

.sr-only,
.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

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

.skip-link:focus {
    transform: none;
}

.site-header {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(calc(100% - 64px), var(--content));
    min-height: 110px;
    margin: 0 auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand img {
    display: block;
    width: clamp(142px, 12vw, 176px);
    height: auto;
}

.brand--footer img {
    width: 138px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.6vw, 42px);
}

.main-nav a {
    position: relative;
    color: #555a60;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-decoration: none;
    text-transform: uppercase;
}

.main-nav a::after,
.text-link::after {
    position: absolute;
    right: 0;
    bottom: -6px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;
}

main {
    width: min(calc(100% - 64px), var(--content));
    margin: 0 auto;
}

section {
    scroll-margin-top: 24px;
}

.visual-section {
    position: relative;
    min-height: clamp(520px, 61vw, 790px);
    overflow: hidden;
    background: #e8eef4;
}

.visual-section + section {
    margin-top: clamp(56px, 6vw, 100px);
}

.visual-section img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center;
}

.visual-copy {
    position: absolute;
    top: 50%;
    left: clamp(28px, 5vw, 84px);
    width: min(45%, 610px);
    transform: translateY(-50%);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 18px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 56px;
    height: 1px;
    background: currentColor;
    content: "";
}

h1,
h2,
p {
    margin-top: 0;
}

h1,
h2 {
    letter-spacing: -.045em;
}

h1 {
    max-width: 610px;
    margin-bottom: 30px;
    font-size: clamp(36px, 4.5vw, 70px);
    line-height: 1.02;
}

.visual-copy h2 {
    max-width: 570px;
    margin-bottom: 30px;
    font-size: clamp(36px, 4.1vw, 64px);
    line-height: 1.02;
}

.text-link {
    position: relative;
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-decoration: none;
    text-transform: uppercase;
}

.intro-section,
.testimonials-section,
.contact-section {
    display: grid;
    grid-template-columns: 140px 1.2fr 1fr;
    gap: clamp(28px, 4vw, 72px);
    align-items: start;
    min-height: 500px;
    margin-top: clamp(56px, 6vw, 100px);
    padding: clamp(70px, 9vw, 140px) clamp(28px, 7vw, 110px);
    background: var(--wash);
}

.section-label {
    padding-top: 8px;
}

.section-label::before {
    display: block;
    width: 100%;
    height: 1px;
    margin-bottom: 13px;
    background: var(--ink);
    content: "";
}

.section-label span,
.section-label p {
    display: inline;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.section-label span {
    margin-right: 8px;
    color: var(--accent);
}

.intro-lead h2,
.testimonials-heading h2,
.contact-copy h2 {
    margin-bottom: 24px;
    font-size: clamp(31px, 3.2vw, 52px);
    line-height: 1.08;
}

.intro-text {
    columns: 2;
    column-gap: 32px;
    color: var(--muted);
    font-size: 14px;
}

.intro-text p {
    break-inside: avoid;
}

.intro-note {
    grid-column: 2 / 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.intro-note strong {
    color: var(--ink);
}

.visual-section--pink {
    background: #f5d9e4;
}

.visual-section--pink img {
    object-position: center;
}

.visual-section--blue {
    background: #d7eef3;
}

.testimonials-section {
    grid-template-columns: 140px 1fr 1.7fr;
}

.testimonials-heading > p,
.contact-copy > p {
    max-width: 520px;
    color: var(--muted);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.testimonials-grid article {
    display: flex;
    min-height: 310px;
    padding: 32px;
    flex-direction: column;
    justify-content: space-between;
    background: var(--paper);
}

.testimonials-grid article > p {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.55;
}

.testimonials-grid footer {
    display: flex;
    flex-direction: column;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.testimonials-grid strong {
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.testimonials-grid span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.contact-section {
    grid-template-columns: 140px .85fr 1.25fr;
    margin-bottom: 0;
}

.contact-copy > a {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px 24px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.field input {
    width: 100%;
    height: 54px;
    padding: 0 2px;
    border: 0;
    border-bottom: 1px solid #aeb3b8;
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
}

.field input:focus {
    border-color: var(--ink);
    box-shadow: 0 1px 0 var(--ink);
}

.consent {
    grid-column: 1 / -1;
    display: flex;
    gap: 11px;
    align-items: flex-start;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

.consent input {
    margin: 3px 0 0;
    accent-color: var(--ink);
}

.contact-form button {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 0 24px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: #fff;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: background .2s, color .2s;
}

.contact-form button:hover,
.contact-form button:focus-visible {
    background: transparent;
    color: var(--ink);
}

.contact-form button:disabled {
    cursor: wait;
    opacity: .65;
}

.form-status {
    grid-column: 1 / -1;
    min-height: 24px;
    margin: -10px 0 0;
    font-size: 13px;
}

.form-status.is-success {
    color: #24623a;
}

.form-status.is-error {
    color: #a32c2c;
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    width: min(calc(100% - 64px), var(--content));
    min-height: 130px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 11px;
}

.site-footer p {
    margin: 0;
    text-align: center;
}

.site-footer p:last-child {
    text-align: right;
}

@media (max-width: 1100px) {
    .visual-copy {
        width: 49%;
    }

    .intro-section,
    .testimonials-section,
    .contact-section {
        grid-template-columns: 110px 1fr;
    }

    .intro-text,
    .testimonials-grid,
    .contact-form {
        grid-column: 2;
    }

    .intro-note {
        grid-column: 2;
    }

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

@media (max-width: 760px) {
    .site-header,
    main,
    .site-footer {
        width: min(calc(100% - 32px), var(--content));
    }

    .site-header {
        min-height: 84px;
    }

    .menu-toggle {
        display: flex;
        width: 44px;
        height: 44px;
        padding: 12px 9px;
        border: 0;
        flex-direction: column;
        justify-content: center;
        gap: 7px;
        background: transparent;
    }

    .menu-toggle > span:not(.sr-only) {
        width: 100%;
        height: 1px;
        background: var(--ink);
    }

    .main-nav {
        position: absolute;
        top: 84px;
        right: 0;
        left: 0;
        display: none;
        padding: 24px;
        align-items: flex-start;
        flex-direction: column;
        background: var(--paper);
        border: 1px solid var(--line);
        box-shadow: 0 20px 50px rgb(20 20 20 / 10%);
    }

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

    .visual-section {
        min-height: 660px;
    }

    .visual-section img {
        min-height: 660px;
        object-position: 64% center;
    }

    .visual-section::after {
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgb(255 255 255 / 90%) 0%, rgb(255 255 255 / 48%) 60%, transparent 100%);
        content: "";
    }

    .visual-copy {
        z-index: 1;
        top: auto;
        right: 28px;
        bottom: 42px;
        left: 28px;
        width: auto;
        transform: none;
    }

    h1,
    .visual-copy h2 {
        max-width: 540px;
        font-size: clamp(38px, 10vw, 56px);
    }

    .intro-section,
    .testimonials-section,
    .contact-section {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 58px 28px;
    }

    .intro-text,
    .testimonials-grid,
    .contact-form,
    .intro-note {
        grid-column: 1;
    }

    .intro-text {
        columns: 1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid article {
        min-height: 250px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form > * {
        grid-column: 1;
    }

    .site-footer {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 36px 0;
    }

    .site-footer p,
    .site-footer p:last-child {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
