:root {
    --ink: #22201d;
    --muted: #5d5851;
    --subtle: #817970;
    --paper: #ffffff;
    --soft: #f7f4ef;
    --line: rgba(42, 37, 31, 0.18);
    --line-strong: rgba(42, 37, 31, 0.32);
    --dark: #11100e;
    --gold: #b79958;
    --gold-deep: #94763b;
    --serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "Times New Roman", serif;
    --sans: "Noto Sans JP", "Yu Gothic", "Meiryo", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    line-height: 1.85;
    text-rendering: geometricPrecision;
}

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

a {
    color: inherit;
    text-decoration: none;
}
.entry-page {
    background: var(--paper);
    overflow: hidden;
}

.hero {
    position: relative;
    height: 670px;
    color: #fff;
    background: #11100e;
    overflow: hidden;
}

.hero__image,
.watei > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image {
    object-position: 55% center;
}

.hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 9, 10, 0.35) 0%, rgba(7, 9, 10, 0.08) 20%, rgba(7, 9, 10, 0.04) 100%),
        linear-gradient(90deg, rgba(4, 4, 3, 0.9) 0%, rgba(5, 5, 4, 0.78) 23%, rgba(8, 7, 6, 0.4) 47%, rgba(8, 7, 6, 0.1) 68%, rgba(8, 7, 6, 0.02) 100%);
}

.site-header {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 250px 1fr 132px;
    align-items: center;
    width: calc(100% - 94px);
    height: 74px;
    margin: 0 auto;
}

.brand {
    color: inherit;
    font-family: var(--sans);
    font-size: 23px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.brand--logo {
    display: inline-flex;
    align-items: center;
    width: 188px;
}

.brand__logo {
    display: block;
    width: 100%;
    height: auto;
}

.global-nav,
.site-footer nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 54px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 400;
}

.global-nav a,
.site-footer nav a {
    opacity: 0.92;
}

.hero__content {
    position: relative;
    z-index: 1;
    width: calc(100% - 166px);
    margin: 0 auto;
    padding-top: 142px;
}

.hero h1 {
    margin: 0;
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 500;
    line-height: 1.52;
}

.hero p {
    width: 440px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 500;
    line-height: 2.05;
}

.hero__actions {
    display: flex;
    gap: 18px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 178px;
    height: 48px;
    padding: 0 25px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.button::after {
    content: "→";
    margin-left: 28px;
    font-size: 17px;
    font-weight: 400;
}

.button--gold {
    background: linear-gradient(180deg, #928d87 0%, #77736f 100%);
    color: #fff;
}

.button--ghost {
    border-color: rgba(255, 255, 255, 0.65);
    color: #fff;
    background: rgba(4, 4, 3, 0.18);
}

.section-band {
    background: var(--paper);
}

.page-grid {
    width: calc(100% - 166px);
    max-width: 1280px;
    margin: 0 auto;
}

.about {
    height: 540px;
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1.06fr;
    gap: 72px;
    align-items: center;
    height: 100%;
}

.about__media {
    margin: 0;
}

.about__media img {
    width: 100%;
    height: 438px;
    object-fit: cover;
    object-position: center;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--muted);
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1;
}

.about h2,
.split-copy h2,
.watei h3,
.contact-cta h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 500;
    line-height: 1.58;
}

.about__copy > p:not(.eyebrow) {
    max-width: 520px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 2.05;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 526px;
    margin-top: 34px;
    border-left: 1px solid var(--line-strong);
}

.about-points article {
    min-height: 93px;
    padding: 12px 26px 0;
    text-align: center;
    border-right: 1px solid var(--line-strong);
}

.about-points h3,
.feature-row h3,
.process-steps h3 {
    margin: 9px 0 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
}


.services {
    height: 560px;
    padding-top: 34px;
    background: linear-gradient(180deg, #fbfaf8 0%, #ffffff 44%, #fbfaf8 100%);
}

.section-heading {
    text-align: center;
}

.section-heading h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
    line-height: 1.35;
}

.section-heading h2::after {
    content: "";
    display: block;
    width: 46px;
    height: 1px;
    margin: 11px auto 0;
    background: var(--line-strong);
}

.section-heading p {
    margin: 13px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: calc(100% - 166px);
    max-width: 1280px;
    margin: 36px auto 0;
}

.service-card {
    position: relative;
    min-height: 404px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(26, 22, 18, 0.08);
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.service-card__body {
    position: relative;
    min-height: 144px;
    padding: 25px 30px;
}

.service-card h3 {
    margin: 0;
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 500;
    line-height: 1.2;
}

.service-card p {
    width: 265px;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.9;
}

.service-card__body > span:not(.service-card__cta) {
    position: absolute;
    right: 30px;
    bottom: 29px;
    color: var(--gold-deep);
    font-size: 22px;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 460px;
    background: #fff;
}

.split-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px 0 84px;
}

.split-copy h2 {
    font-size: 31px;
}

.split-copy .eyebrow {
    margin-bottom: 12px;
}

.split-media {
    margin: 0;
    min-width: 0;
}

.split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 38px;
    border-left: 1px solid var(--line);
}

.feature-row article {
    min-height: 108px;
    padding: 0 16px;
    text-align: center;
    border-right: 1px solid var(--line);
}


.feature-row h3 {
    font-size: 13px;
}

.feature-row p {
    margin: 8px auto 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.8;
}

.text-link {
    align-self: flex-end;
    margin-top: 26px;
    color: var(--muted);
    font-size: 13px;
}

.text-link span {
    margin-left: 12px;
    color: var(--gold-deep);
    font-size: 18px;
}

.watei {
    position: relative;
    height: 440px;
    color: #fff;
    background: #070706 url("../img/saihomes-entry/optimized/watei-edition-interior-hero.jpg") center 47% / cover no-repeat;
    overflow: hidden;
}

.watei > img {
    object-position: center 47%;
    filter: brightness(1.08) contrast(1.02) saturate(0.98);
}

.watei__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.93) 0%, rgba(0, 0, 0, 0.84) 28%, rgba(0, 0, 0, 0.28) 45%, rgba(0, 0, 0, 0.03) 60%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.04) 100%);
}

.watei__content {
    position: relative;
    z-index: 1;
    width: calc(100% - 166px);
    margin: 0 auto;
    padding-top: 52px;
}


.watei h2 {
    margin: 0;
    color: #fff;
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 500;
    line-height: 1.1;
}

.watei h2::after {
    content: "";
    display: block;
    width: min(430px, 72vw);
    height: 1px;
    margin-top: 13px;
    background: linear-gradient(90deg, rgba(199, 170, 101, 0.95) 0%, rgba(199, 170, 101, 0.72) 42%, rgba(199, 170, 101, 0.24) 78%, rgba(199, 170, 101, 0) 100%);
}

.watei h2 span {
    color: #fff;
}

.watei h3 {
    margin-top: 16px;
    color: #fff;
    font-size: 33px;
    line-height: 1.45;
}

.watei__lead {
    width: 430px;
    margin: 16px 0 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.95;
}





.process {
    height: 305px;
    padding-top: 34px;
    background: #fbfaf8;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr 35px 1fr 35px 1fr 35px 1fr 35px 1fr;
    gap: 11px;
    align-items: start;
    width: calc(100% - 166px);
    max-width: 1280px;
    margin: 45px auto 0;
}

.process-steps article {
    text-align: center;
}

.process-steps article > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border: 1px solid #87827b;
    border-radius: 50%;
    color: var(--muted);
    font-family: var(--serif);
    font-size: 15px;
}

.process-steps h3 {
    font-size: 15px;
}

.process-steps p {
    width: 164px;
    margin: 7px auto 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.process-steps i {
    margin-top: 15px;
    color: #8b867f;
    font-style: normal;
    text-align: center;
    font-size: 24px;
}

.contact-cta {
    display: grid;
    grid-template-columns: 61.7% 38.3%;
    height: 210px;
    background: #f8f5ef;
}

.contact-cta__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 120px;
}

.contact-cta h2 {
    font-size: 28px;
    line-height: 1.35;
}

.contact-cta p {
    margin: 16px 0 21px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.contact-cta .button {
    width: max-content;
    min-width: 214px;
    white-space: nowrap;
}

.contact-cta__media {
    margin: 0;
    overflow: hidden;
}

.contact-cta__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    filter: contrast(1.16) saturate(1.02);
}

.site-footer {
    display: grid;
    grid-template-columns: 250px 1fr 300px;
    align-items: center;
    height: 140px;
    padding: 0 86px;
    background: #141311;
    color: #fff;
}

.site-footer .brand {
    font-size: 20px;
}

.site-footer nav {
    gap: 45px;
    font-size: 12px;
}

.site-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
    text-align: center;
}


@media (max-width: 900px) {
    .hero,
    .about,
    .services,
    .split-section,
    .watei,
    .process,
    .contact-cta,
    .site-footer {
        height: auto;
    }

    .site-header {
        grid-template-columns: 1fr auto;
        width: calc(100% - 32px);
    }

    .global-nav {
        display: none;
    }

    .brand {
        font-size: 18px;
    }

    .brand--logo {
        width: 150px;
    }

    .hero {
        min-height: 690px;
    }

    .hero__content,
    .page-grid,
    .service-cards,
    .watei__content,
    .process-steps {
        width: calc(100% - 40px);
    }

    .hero__content {
        padding-top: 112px;
    }

    .hero h1 {
        font-size: 30px;
        line-height: 1.58;
    }

    .hero p {
        width: auto;
        font-size: 13px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .about__inner,
    .service-cards,
    .split-section,
    .contact-cta,
    .site-footer {
        display: grid;
        grid-template-columns: 1fr;
    }

    .about {
        padding: 54px 0 62px;
    }

    .about__inner {
        gap: 36px;
    }

    .about__media img {
    width: 100%;
    height: 438px;
    object-fit: cover;
    object-position: center;
}

    .about h2,
    .split-copy h2,
    .watei h3,
    .contact-cta h2 {
        font-size: 27px;
    }

    .about-points,
    .feature-row,
    .process-steps {
        width: 100%;
        grid-template-columns: 1fr;
        border-left: 0;
    }

    .about-points article,
    .feature-row article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .services,
    .process {
        padding: 48px 0;
    }

    .service-card {
        min-height: 360px;
    }

    .split-copy {
        padding: 54px 24px;
    }

    .split-media img {
        height: auto;
    }

    .split-section--reform .split-media {
        order: 2;
    }

    .watei {
        min-height: 520px;
    }

    .contact-cta__copy {
        padding: 48px 24px;
    }

    .site-footer {
        gap: 24px;
        padding: 38px 24px;
        text-align: center;
    }
    .site-footer nav {
        justify-content: center;
        flex-wrap: wrap;
    }
}
/* Consolidated final layout refinements */
.site-header {
    grid-template-columns: 250px 1fr 250px;
    width: calc(100% - 166px);
    max-width: none;
}

.hero p {
    width: 560px;
    max-width: calc(100% - 40px);
}

.services {
    height: auto;
    padding: 62px 0 74px;
    background: linear-gradient(180deg, #fbfaf8 0%, #ffffff 46%, #fbfaf8 100%);
}

.section-heading p {
    line-height: 1.9;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    width: calc(100% - 166px);
    max-width: 1180px;
    margin: 40px auto 0;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 362px;
    min-height: 0;
    color: var(--ink);
    background: #fff;
    border: 1px solid rgba(42, 37, 31, 0.16);
    border-radius: 7px;
    box-shadow: 0 14px 34px rgba(26, 22, 18, 0.08);
    overflow: hidden;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-card img {
    position: static;
    width: 100%;
    height: 198px;
    object-fit: cover;
    opacity: 1;
    transition: transform 0.48s ease, filter 0.48s ease;
}

.service-card__body {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 0;
    padding: 21px 25px 24px;
    background: #fff;
}

.service-card:not(.service-card--watei) .service-card__body {
    padding-top: 31px;
}

.service-card h3 {
    margin: 0;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0;
}

.service-card p {
    width: auto;
    max-width: none;
    margin: 11px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.85;
}

.service-card__cta {
    position: static;
    display: inline-flex;
    align-items: center;
    align-self: flex-end;
    justify-content: flex-end;
    gap: 14px;
    width: auto;
    margin: 12px 0 0 auto;
    color: #111;
    font-family: var(--serif);
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: transform 0.28s ease;
}


.service-card__body > .service-card__cta {
    position: static;
    right: auto;
    bottom: auto;
    color: #111;
    font-size: 11px;
}

.service-card__body > .service-card__cta span {
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0;
}

.service-card--watei .service-card__body > .service-card__cta {
    position: static;
    right: auto;
    bottom: auto;
    color: #111;
    font-size: 11px;
}
.service-card__cta::before {
    content: "";
    display: block;
    width: 38px;
    height: 1px;
    background: currentColor;
    opacity: 0.52;
}

.service-card__cta span {
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0;
}

.service-card:hover,
.service-card:focus-visible {
    transform: translateY(-6px);
    border-color: rgba(164, 125, 58, 0.34);
    box-shadow: 0 24px 48px rgba(26, 22, 18, 0.13);
}

.service-card:hover img,
.service-card:focus-visible img {
    transform: scale(1.035);
    filter: saturate(1.03) contrast(1.02);
}

.service-card:hover .service-card__cta,
.service-card:focus-visible .service-card__cta {
    transform: translateX(5px);
}

.service-card:focus-visible {
    outline: 2px solid rgba(164, 125, 58, 0.52);
    outline-offset: 4px;
}

.service-card--watei {
    border-color: rgba(190, 151, 73, 0.76);
    box-shadow: 0 24px 58px rgba(18, 15, 12, 0.18);
}

.service-card--watei img {
    filter: brightness(0.94) contrast(1.04) saturate(0.98);
    object-position: center 54%;
}

.service-card--watei .service-card__body {
    padding: 13px 28px 24px;
    color: #fff;
    background:
        radial-gradient(circle at 18% 12%, rgba(197, 170, 112, 0.16) 0%, rgba(197, 170, 112, 0) 36%),
        linear-gradient(135deg, rgba(34, 30, 25, 0.98) 0%, rgba(10, 10, 9, 0.99) 100%);
}

.service-card--watei .service-card__body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(197, 170, 112, 0.84), rgba(197, 170, 112, 0.18));
}

.service-card__eyebrow {
    order: 1;
    width: auto;
    max-width: none;
    margin: 0 0 4px;
    color: #c7aa65;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.08em;
}

.service-card.service-card--watei h3 {
    order: 2;
    margin: 0 0 12px;
    color: #fff;
    font-size: 25px;
    letter-spacing: 0.01em;
}

.service-card.service-card--watei p:not(.service-card__eyebrow) {
    order: 3;
    max-width: 300px;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.92;
}

.service-card.service-card--watei .service-card__cta,
.service-card.service-card--watei:hover .service-card__cta,
.service-card.service-card--watei:focus-visible .service-card__cta {
    order: 4;
    color: #c7aa65;
}

.split-section {
    height: auto;
    min-height: 505px;
}

.split-section--new {
    min-height: 600px;
}

.split-copy {
    padding: 58px 76px 56px 84px;
}

.split-copy > p:not(.eyebrow) {
    max-width: 590px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.95;
}

.about-points article,
.feature-row article {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-points article {
    min-height: 118px;
    padding: 0 28px;
}

.about-points h3,
.feature-row h3 {
    margin: 0;
}

.about-points p {
    margin: 14px auto 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.9;
}

.feature-row article {
    min-height: 104px;
    padding: 0 18px;
}

.split-section .split-copy > p.section-label {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 28px;
    max-width: none;
    margin: 0 0 22px;
    padding-left: 16px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1;
}

.split-section .split-copy > p.section-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 28px;
    background: rgba(148, 118, 59, 0.72);
    transform: translateY(-50%);
}

.split-section .split-copy > p.section-label em {
    display: block;
    margin: 0;
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
    letter-spacing: 0.04em;
    line-height: 1;
}

.split-section--new .split-copy > .new-build-label {
    margin: 0 0 22px;
    padding-left: 16px;
}

.new-build-label span,
.new-build-label em {
    margin-top: 0;
    color: var(--muted);
    font-size: 13px;
    letter-spacing: 0.04em;
}

.feature-row--new-build {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(560px, 100%);
    margin-top: 34px;
    border-top: 0;
    border-left: 1px solid var(--line);
}

.feature-row--new-build article,
.feature-row--new-build article:nth-child(odd),
.feature-row--new-build article:nth-child(even) {
    justify-content: center;
    min-height: 108px;
    padding: 0 14px;
    text-align: center;
    border-right: 1px solid var(--line);
    border-bottom: 0;
}

.feature-row--new-build h3 {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
}

.feature-row--new-build p {
    margin: 8px auto 0;
    font-size: 11px;
    line-height: 1.8;
}

.process {
    height: auto;
    padding: 42px 0 48px;
}

.process-steps {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 22px minmax(0, 1fr) 22px minmax(0, 1fr) 22px minmax(0, 1fr) 22px minmax(0, 1fr);
    gap: 18px;
    width: calc(100% - 166px);
    max-width: 1280px;
    margin: 34px auto 0;
}

.process-steps article {
    display: block;
    padding: 18px 0 0;
    border-top: 1px solid rgba(62, 54, 45, 0.18);
    text-align: left;
}

.process-steps article > span {
    display: inline;
    width: auto;
    height: auto;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #9f7636;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1.5;
}

.process-steps h3 {
    display: inline;
    margin: 0;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.process-steps h3::before {
    content: "|";
    display: inline-block;
    margin: 0 9px 0 8px;
    color: rgba(164, 125, 58, 0.58);
    font-weight: 400;
}

.process-steps p {
    width: auto;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.68;
}

.process-steps i {
    display: block;
    margin-top: 20px;
    color: rgba(164, 125, 58, 0.42);
    font-family: var(--serif);
    font-size: 16px;
    font-style: normal;
    line-height: 1;
    text-align: center;
}

.watei__lead {
    max-width: 100%;
}

.contact-cta {
    height: 260px;
}

.contact-cta h2 {
    font-size: 27px;
}

.contact-cta p {
    max-width: 700px;
}

.site-footer {
    grid-template-columns: minmax(160px, 250px) minmax(220px, 1fr) minmax(0, 300px);
    gap: 24px;
}

.site-footer .footer-logo {
    width: 188px;
}

.site-footer p {
    min-width: 0;
    text-align: right;
    white-space: normal;
}

@media (prefers-reduced-motion: reduce) {
    .service-card,
    .service-card img,
    .service-card__cta {
        transition: none;
    }

    .service-card:hover,
    .service-card:focus-visible,
    .service-card:hover img,
    .service-card:focus-visible img,
    .service-card:hover .service-card__cta,
    .service-card:focus-visible .service-card__cta {
        transform: none;
    }
}

@media (max-width: 1100px) {
    .hero,
    .about,
    .services,
    .split-section,
    .watei,
    .process,
    .contact-cta,
    .site-footer {
        height: auto;
    }

    .site-header {
        grid-template-columns: 1fr;
        width: calc(100% - 40px);
        height: 84px;
    }

    .global-nav {
        display: none;
    }

    .brand--logo {
        width: 150px;
    }

    .hero {
        min-height: 690px;
    }

    .hero__content,
    .page-grid,
    .watei__content,
    .process-steps {
        width: calc(100% - 40px);
    }

    .hero__content {
        padding-top: 112px;
    }

    .hero h1 {
        font-size: 30px;
        line-height: 1.58;
    }

    .hero p {
        width: auto;
        max-width: none;
        font-size: 13px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .about,
    .services,
    .process {
        padding: 48px 0;
    }

    .about__inner,
    .split-section,
    .contact-cta,
    .site-footer {
        display: grid;
        grid-template-columns: 1fr;
    }

    .about__inner {
        gap: 36px;
    }

    .about h2,
    .split-copy h2,
    .watei h3,
    .contact-cta h2 {
        font-size: 27px;
    }

    .about-points,
    .feature-row,
    .process-steps {
        width: 100%;
        grid-template-columns: 1fr;
        border-left: 0;
    }

    .about-points article,
    .feature-row article {
        min-height: 86px;
        padding: 18px 10px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .service-cards {
        grid-template-columns: 1fr;
        width: calc(100% - 40px);
        max-width: 440px;
        gap: 22px;
        margin-top: 34px;
    }

    .service-card {
        height: auto;
        min-height: 0;
    }

    .service-card img {
        height: 210px;
    }

    .service-card__body,
    .service-card:not(.service-card--watei) .service-card__body,
    .service-card--watei .service-card__body {
        min-height: 148px;
        padding: 22px 24px 20px;
    }

    .split-section {
        min-height: 0;
    }

    .split-copy,
    .split-copy--new-build {
        padding: 50px 24px;
    }

    .split-copy > p:not(.eyebrow),
    .split-section--new .new-build-lead {
        max-width: none;
        font-size: 13px;
    }

    .split-section--new .new-build-lead br {
        display: none;
    }

    .feature-row--new-build {
        grid-template-columns: 1fr;
        width: 100%;
        border-left: 0;
        border-top: 0;
    }

    .feature-row--new-build article,
    .feature-row--new-build article:nth-child(odd),
    .feature-row--new-build article:nth-child(even) {
        min-height: 86px;
        padding: 18px 10px;
        text-align: center;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .split-section--reform .split-media {
        order: 2;
    }

    .split-media img {
        height: auto;
    }

    .watei {
        min-height: 520px;
    }

    .watei__lead {
        width: auto;
        max-width: none;
    }

    .process-steps {
        gap: 0;
        margin-top: 30px;
    }

    .process-steps article {
        padding: 16px 0 18px;
        border-top: 1px solid rgba(62, 54, 45, 0.16);
        border-bottom: 0;
    }

    .process-steps article:last-of-type {
        padding-bottom: 0;
    }

    .process-steps i {
        display: none;
    }

    .contact-cta__copy {
        padding: 48px 24px;
    }

    .contact-cta__media img {
        height: 240px;
    }

    .site-footer {
        gap: 24px;
        padding: 38px 24px;
        text-align: center;
    }

    .site-footer .footer-logo {
        justify-self: center;
        width: 156px;
    }

    .site-footer nav {
        justify-content: center;
        flex-wrap: wrap;
    }

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

@media (max-width: 520px) {
    .service-card img {
        height: 198px;
    }

    .service-card h3 {
        font-size: 21px;
    }
}
.service-card.service-card--watei .service-card__eyebrow {
    order: 1;
    margin: 0 0 4px;
    color: #c7aa65;
    font-size: 11px;
    line-height: 1.25;
    letter-spacing: 0.08em;
}

@media (max-width: 520px) {
    .process .section-heading {
        width: calc(100% - 48px);
        margin-right: auto;
        margin-left: auto;
    }

    .process-steps {
        width: calc(100% - 56px);
        max-width: 360px;
        margin-right: auto;
        margin-left: auto;
    }

    .process-steps article {
        padding-right: 0;
        padding-left: 0;
    }
}