:root {
    --navy: #0b1a30;
    --navy-soft: #20324a;
    --olive: #687a43;
    --olive-dark: #536436;
    --terracotta: #a85b50;
    --orange: #b9864d;
    --green: #71864c;

    --paper: #ffffff;
    --warm: #f3f0ea;
    --warm-2: #f8f6f2;
    --line: #dcd6cc;
    --ink: #2f3733;
    --muted: #68706b;

    --shadow: 0 18px 45px rgba(11, 26, 48, .08);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

a {
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
}

.site-header {
    position: relative;
    z-index: 20;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}


.brand-logo {
    display: block;
    width: 152px;
    height: auto;
    object-fit: contain;
}

.brand-copy {
    display: flex;
    align-items: center;
    line-height: 1.15;
}

.brand-copy small {
    max-width: 270px;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.35;
}

.header-status {
    padding: 8px 12px;
    border: 1px solid #d7d1c7;
    border-radius: 999px;
    background: var(--warm-2);
    color: var(--muted);
    font-size: .83rem;
    white-space: nowrap;
}

.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: #fbfbfa;
    border-bottom: 1px solid var(--line);
}

.hero-image {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(255,255,255,1) 0%,
            rgba(255,255,255,.98) 25%,
            rgba(255,255,255,.82) 42%,
            rgba(255,255,255,.12) 69%,
            rgba(255,255,255,0) 100%
        ),
        url("../img/hero-camping-car.png") center right / cover no-repeat;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-copy {
    width: min(610px, 55%);
    padding: 74px 0 78px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--olive-dark);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.conviction h2,
.info-card h2,
.final-box h2 {
    margin: 0;
    color: var(--navy);
    line-height: 1.08;
    letter-spacing: -.025em;
}

.hero h1 {
    max-width: 700px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.hero-lead {
    max-width: 610px;
    margin: 25px 0 0;
    color: #49534d;
    font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.hero-actions {
    margin-top: 31px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 11px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 750;
}

.button-primary {
    background: var(--navy);
    color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--olive-dark);
}

.construction-pill,
.coming-soon {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--warm);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: .87rem;
    font-weight: 650;
}

.section {
    padding: 78px 0;
}

.section-soft {
    background: var(--warm-2);
}

.section-heading {
    max-width: 790px;
    margin-bottom: 34px;
}

.section-heading h2,
.conviction h2,
.info-card h2,
.final-box h2 {
    font-size: clamp(2rem, 3.3vw, 3rem);
}

.section-heading > p:last-child {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.pillar-card,
.info-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 7px 22px rgba(11, 26, 48, .04);
}

.pillar-card {
    min-height: 330px;
    padding: 29px 27px 27px;
}

.pillar-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.pillar-understand::before {
    background: var(--terracotta);
}

.pillar-act::before {
    background: var(--orange);
}

.pillar-share::before {
    background: var(--green);
}

.pillar-number {
    display: grid;
    place-items: center;
    width: 41px;
    height: 41px;
    margin-bottom: 17px;
    border-radius: 50%;
    background: var(--olive);
    color: #fff;
    font-weight: 800;
}

.pillar-card h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 1.45rem;
}

.pillar-card p {
    margin: 10px 0 0;
    color: #555f59;
}

.conviction {
    background: var(--paper);
}

.conviction-box {
    padding: clamp(30px, 5vw, 58px);
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
        linear-gradient(135deg, #f8f6f1 0%, #ffffff 55%, #f3f0ea 100%);
    box-shadow: var(--shadow);
}

.conviction-intro {
    margin: 13px 0 0;
    color: var(--muted);
    font-size: 1.1rem;
}

.conviction-line {
    margin: 22px 0 0;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 3vw, 2.25rem);
    line-height: 1.35;
}

.conviction-line strong:nth-child(1) {
    color: var(--terracotta);
}

.conviction-line strong:nth-child(2) {
    color: var(--orange);
}

.conviction-line strong:nth-child(3) {
    color: var(--green);
}

.justice-note {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 17px;
    align-items: start;
    padding: 18px 20px;
    border: 1px solid #d9d4cb;
    border-radius: 14px;
    background: #fff;
}

.justice-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
    font-weight: 800;
}

.justice-note p {
    margin: 0;
    color: #505a54;
}

.justice-note a {
    color: var(--olive-dark);
    font-weight: 750;
}

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

.info-card {
    padding: 32px;
}

.info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.member-card::before {
    background: var(--olive);
}

.pro-card::before {
    background: var(--orange);
}

.info-card h2 {
    margin-bottom: 19px;
    font-size: clamp(1.7rem, 2.7vw, 2.35rem);
}

.info-card p {
    margin: 12px 0 0;
    color: #56605a;
}

.info-card .coming-soon {
    margin-top: 23px;
}

.final-section {
    padding-top: 82px;
    padding-bottom: 86px;
}

.final-box {
    text-align: center;
}

.final-box > p:not(.eyebrow):not(.final-signature):not(.domain) {
    max-width: 760px;
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.final-signature {
    margin: 31px 0 0;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.7rem, 3.5vw, 2.8rem);
    font-weight: 700;
}

.domain {
    margin: 9px 0 0;
    color: var(--olive-dark);
    font-weight: 750;
}

.site-footer {
    padding: 22px 0;
    background: var(--navy);
    color: rgba(255, 255, 255, .82);
    font-size: .86rem;
}

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

@media (max-width: 900px) {
    .header-status {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-image {
        position: relative;
        display: block;
        min-height: 340px;
        background:
            linear-gradient(180deg,
                rgba(255,255,255,0) 45%,
                rgba(255,255,255,.72) 78%,
                rgba(255,255,255,1) 100%
            ),
            url("../img/hero-camping-car.png") center right / cover no-repeat;
    }

    .hero-inner {
        display: block;
    }

    .hero-copy {
        width: 100%;
        padding: 45px 0 62px;
    }

    .pillars-grid,
    .two-columns {
        grid-template-columns: 1fr;
    }

    .pillar-card {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .header-inner {
        min-height: 82px;
    }

    .brand-logo {
        width: 112px;
    }

    .brand-copy small {
        display: none;
    }

    .hero-image {
        min-height: 260px;
    }

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

    .hero h1 {
        font-size: clamp(2.35rem, 12vw, 3.4rem);
    }

    .section {
        padding: 58px 0;
    }

    .conviction-box,
    .info-card,
    .pillar-card {
        padding: 24px 21px;
    }

    .justice-note {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}
