:root {
    --bg: #f8f4ed;
    --bg-soft: #efe9df;
    --bg-soft-2: #f3d8cb;
    --text: #1b1c19;
    --muted: #4c514c;
    --line: #d8d3c9;
    --primary: #183d2a;
    --primary-2: #234d37;
    --terra: #a25132;
    --terra-2: #7a361d;
    --terra-soft: #f8d7ca;
    --white: #fff;
    --wrap: 1320px;
    --r: 22px;
    --r-lg: 34px;
    --shadow: 0 24px 60px rgba(24, 61, 42, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font: 16px/1.6 Inter, system-ui, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(162, 81, 50, 0.07), transparent 28%),
        radial-gradient(circle at top right, rgba(24, 61, 42, 0.06), transparent 26%),
        var(--bg);
}

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

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

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

.section {
    padding: 112px 0;
}

.topbar {
    background: rgba(248, 244, 237, 0.84);
    border-bottom: 1px solid rgba(216, 211, 201, 0.6);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 66px;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font: italic 700 26px/1 Georgia, "Times New Roman", serif;
    color: var(--primary);
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav a:not(.btn) {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.eyebrow {
    display: block;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--terra);
}

.center-eyebrow {
    text-align: center;
}

.title {
    margin: 0 0 20px;
    font: italic 700 clamp(34px, 4vw, 58px) / 0.98 Georgia, "Times New Roman", serif;
}

.title-on-dark,
.lead-on-dark {
    color: var(--white);
}

.lead {
    margin: 0;
    max-width: 46rem;
    font-size: clamp(18px, 1.45vw, 22px);
    color: var(--muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font: 800 11px/1 Inter, sans-serif;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 14px 28px rgba(24, 61, 42, 0.16);
}

.btn-secondary {
    color: var(--primary);
    border: 1px solid rgba(24, 61, 42, 0.14);
    background: rgba(255, 255, 255, 0.72);
}

.btn-terra {
    color: var(--white);
    background: linear-gradient(135deg, var(--terra), var(--terra-2));
}

.hero {
    padding: 28px 0 96px;
}

.hero-grid,
.comparison-grid,
.results-grid,
.living-grid,
.details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 84px;
    align-items: center;
}

.hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: start;
}

.hero-copy {
    padding-top: 42px;
}

.hero h1 {
    margin: 0 0 22px;
    max-width: 10ch;
    font: italic 700 clamp(48px, 6vw, 82px) / 0.9 Georgia, "Times New Roman", serif;
    letter-spacing: -0.04em;
}

.hero h1 span {
    color: var(--terra);
}

.hero-lead {
    max-width: 32rem;
}

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

.hero-proof-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 36px;
}

.proof-pill {
    padding: 18px 18px 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(24, 61, 42, 0.08);
    border-radius: 18px;
}

.proof-pill strong,
.result-item strong,
.note strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
}

.proof-pill span {
    color: var(--muted);
    font-size: 14px;
}

.media {
    overflow: hidden;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow);
    background: var(--bg-soft);
}

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

.media-hero {
    width: min(100%, 640px);
    aspect-ratio: 4 / 3;
    justify-self: end;
}

.media-hero img {
    object-position: center 58%;
}

.media-soft {
    aspect-ratio: 5 / 4;
}

.copy-block {
    max-width: 560px;
}

.pull-quote {
    margin: 34px 0 0;
    padding-left: 18px;
    border-left: 4px solid var(--terra);
    color: var(--terra);
    font: italic 700 clamp(24px, 2.2vw, 36px) / 1.22 Georgia, "Times New Roman", serif;
}

.compare-card,
.spec-card {
    padding: 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(24, 61, 42, 0.08);
    box-shadow: var(--shadow);
}

.compare-row + .compare-row,
.note + .note {
    margin-top: 26px;
}

.compare-row h3,
.proof-card h3,
.option-card h3,
.step-card h3 {
    margin: 0 0 10px;
    font: italic 700 clamp(24px, 2vw, 32px) / 1.08 Georgia, "Times New Roman", serif;
}

.compare-row p,
.proof-card p,
.result-item p,
.option-card p,
.step-card p,
.note p {
    margin: 0;
    color: var(--muted);
}

.panel {
    margin: 24px 0;
    padding: 108px 0;
    color: var(--white);
    background: var(--primary);
    border-radius: 42px;
}

.panel .title,
.panel h3,
.panel strong {
    color: var(--white);
}

.panel .lead,
.panel p {
    color: rgba(255, 255, 255, 0.84);
}

.panel .eyebrow {
    color: #f0c4b1;
}

.panel-proof .lead {
    margin-bottom: 0;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 52px;
}

.proof-card {
    padding: 34px 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-card h3,
.proof-card p {
    color: var(--white);
}

.result-list {
    display: grid;
    gap: 22px;
    margin-top: 34px;
}

.result-item {
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(24, 61, 42, 0.10);
}

.quote {
    margin-top: 32px;
    padding: 26px 28px;
    background: rgba(239, 233, 223, 0.9);
    border-left: 4px solid var(--terra);
    border-radius: var(--r);
    color: var(--terra);
    font: italic 700 clamp(21px, 2vw, 30px) / 1.4 Georgia, "Times New Roman", serif;
}

.soft-panel {
    margin: 24px 16px;
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(248, 215, 202, 0.92), rgba(248, 215, 202, 0.74));
    border-radius: 42px;
}

.section-ease .title {
    max-width: 16ch;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 54px;
}

.step-card {
    padding: 30px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(24, 61, 42, 0.08);
}

.step-number {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    border-radius: 18px;
    background: rgba(24, 61, 42, 0.08);
    color: var(--primary);
    font: 700 28px/1 Georgia, "Times New Roman", serif;
}

.objection-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 46px;
}

.option-card {
    padding: 32px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(24, 61, 42, 0.08);
}

.option-card small {
    display: block;
    margin-bottom: 14px;
    color: var(--terra);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.option-card-primary {
    background: linear-gradient(180deg, rgba(24, 61, 42, 0.96), rgba(35, 77, 55, 0.96));
    color: var(--white);
}

.option-card-primary p {
    color: rgba(255, 255, 255, 0.84);
}

.objection-notes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 34px;
}

.note {
    padding: 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(24, 61, 42, 0.08);
}

.details {
    margin: 24px 16px 0;
    padding: 108px 0;
    background: var(--primary);
    border-radius: 42px 42px 0 0;
}

.details .eyebrow {
    color: rgba(255, 255, 255, 0.82);
}

.details .lead,
.details p {
    color: rgba(255, 255, 255, 0.84);
}

.details-grid {
    align-items: start;
}

.spec-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.row:last-child {
    border-bottom: 0;
}

.row small {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.row strong {
    color: var(--white);
    font: italic 400 clamp(24px, 2.6vw, 40px) / 1.1 Georgia, "Times New Roman", serif;
    text-align: right;
}

.closing {
    padding: 130px 0;
}

.closing-inner {
    text-align: center;
}

.closing p {
    max-width: 18ch;
    margin: 0 auto 34px;
    font: italic 400 clamp(30px, 3.6vw, 52px) / 1.2 Georgia, "Times New Roman", serif;
}

.closing em {
    color: var(--terra);
    font-style: inherit;
    font-weight: 700;
}

footer {
    padding: 72px 0;
    background: var(--bg-soft);
    border-top: 1px solid rgba(216, 211, 201, 0.8);
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-brand p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-nav {
    display: flex;
    gap: 56px;
}

.footer-label {
    margin: 0 0 14px;
    color: var(--terra);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-nav li + li {
    margin-top: 10px;
}

@media (max-width: 1100px) {
    .hero-grid,
    .comparison-grid,
    .results-grid,
    .living-grid,
    .details-grid,
    .proof-grid,
    .steps-grid,
    .objection-grid,
    .objection-notes,
    .hero-proof-strip {
        grid-template-columns: 1fr;
    }

    .hero-grid,
    .comparison-grid,
    .results-grid,
    .living-grid,
    .details-grid {
        gap: 48px;
    }

    .hero-copy {
        padding-top: 0;
    }

    .hero h1,
    .closing p,
    .section-ease .title {
        max-width: none;
    }

    .media-hero {
        aspect-ratio: 5 / 4;
    }
}

@media (max-width: 900px) {
    .wrap {
        width: min(var(--wrap), calc(100% - 40px));
    }

    .nav {
        display: none;
    }

    .topbar-inner {
        min-height: 54px;
    }

    .section,
    .panel,
    .soft-panel,
    .details,
    .closing {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hero {
        padding: 0;
    }

    .hero .wrap {
        width: 100%;
    }

    .hero-grid {
        position: relative;
        gap: 0;
        min-height: calc(100svh - 54px);
    }

    .hero-grid > * {
        grid-column: 1;
        grid-row: 1;
    }

    .hero-copy {
        z-index: 2;
        align-self: stretch;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
        max-width: none;
        min-height: calc(100svh - 54px);
        padding: 30vh 16px 0px 16px;
        color: var(--white);
    }

    .media-hero {
        width: 100%;
        aspect-ratio: auto;
        justify-self: stretch;
        position: relative;
        border-radius: 0;
        box-shadow: none;
    }

    .media-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg,
                rgba(9, 16, 13, 0.18) 0%,
                rgba(9, 16, 13, 0.18) 20%,
                rgba(9, 16, 13, 0.40) 52%,
                rgba(9, 16, 13, 0.88) 100%);
    }

    .hero h1 {
        max-width: 5.8ch;
        margin-bottom: 10px;
        font-size: 40px;
        line-height: 0.91;
        letter-spacing: -0.03em;
    }

    .hero h1 span {
        color: #f2c8b6;
    }

    .hero-lead {
        max-width: 13rem;
        color: rgba(255, 255, 255, 0.90);
        line-height: 1.24;
    }

    .hero-lead,
    .lead {
        font-size: 16px;
    }

    .hero .actions {
        margin-top: 14px;
        display: block;
    }

    picture {
        display: block;
        height: calc(100vh - 55px);
    }

    .hero .btn {
        max-width: none;
        min-height: 42px;
        justify-content: center;
    }

    .hero .btn-secondary {
        display: none;
    }

    .hero .btn-secondary {
        color: var(--white);
        border-color: rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.10);
        backdrop-filter: blur(8px);
    }

    .hero-proof-strip,
    .proof-grid,
    .steps-grid,
    .objection-grid,
    .objection-notes,
    .footer {
        grid-template-columns: 1fr;
        display: grid;
    }

    .compare-card,
    .spec-card,
    .proof-card,
    .step-card,
    .option-card,
    .note {
        padding: 26px;
    }

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

    .row strong {
        text-align: left;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 32px;
    }
}
