@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

:root {
    --bg: #f6f5f1;
    --panel: #fcfbf8;
    --ink: #151412;
    --muted: #676158;
    --line: #ddd8cd;
    --strong: #1d1a16;
    --accent: #9a907e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 94% -6%, #efede8 0%, transparent 40%),
        radial-gradient(circle at -8% 118%, #edeae4 0%, transparent 36%),
        var(--bg);
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.35rem;
}

.site-nav {
    padding: 2.8rem 0 0;
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    flex-wrap: wrap;
}

.site-nav a {
    font-size: 0.67rem;
    font-weight: 600;
    color: #8b8478;
    text-decoration: none;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--ink);
}

.hero {
    padding: 2.2rem 0 3.2rem;
}

.hero-media {
    position: relative;
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at 30% 20%, #ece7dc 0%, transparent 45%),
        radial-gradient(circle at 76% 70%, #e7e1d6 0%, transparent 45%),
        #f3f1eb;
    min-height: 62vh;
    overflow: hidden;
}

.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    opacity: 0.35;
    filter: saturate(35%) contrast(92%);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    padding: clamp(2.2rem, 7vw, 5rem) clamp(1.2rem, 4.8vw, 4.2rem);
    max-width: 920px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 4.8rem);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: #14120f;
}

.hero-sub {
    margin-top: 1rem;
    font-size: 0.98rem;
    line-height: 1.68;
    color: #38332b;
    max-width: 74ch;
}

.hero-copy p {
    margin: 0.62rem 0 0;
}

.hero-copy p:first-child {
    margin-top: 0;
}

.hero-core {
    margin-top: 0.62rem;
}

.hero-kicker {
    margin-top: 0.85rem;
}

.section {
    margin-top: 1.2rem;
    border: 1px solid var(--line);
    background: var(--panel);
    padding: 1.45rem 1.25rem 1.2rem;
}

.section-title {
    font-size: 0.67rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 0.65rem;
}

.points,
.clean-list {
    list-style: none;
    display: grid;
    gap: 0.62rem;
}

.points li,
.clean-list li {
    font-size: 0.86rem;
    line-height: 1.58;
    color: #2d2923;
    position: relative;
    padding-left: 0.85rem;
}

.points li::before,
.clean-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.53rem;
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 50%;
    background: var(--accent);
}

.clean-list li.unlock-sub {
    margin-left: 1rem;
}

.cta-row {
    display: flex;
    gap: 0.66rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.btn {
    display: inline-block;
    text-decoration: none;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.67rem 1.06rem;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
    color: #f9f5ee;
    background: var(--strong);
    border: 1px solid var(--strong);
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-ghost {
    color: #2a261f;
    border: 1px solid #c9c2b6;
    background: transparent;
}

.btn-ghost:hover {
    border-color: #2a261f;
}

.grid-2 {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.grid-3 {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.card {
    border: 1px solid var(--line);
    background: var(--panel);
    padding: 1.3rem 1.15rem 1.05rem;
}

.card h3,
.card h2 {
    font-size: 0.67rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.66rem;
}

.card p,
.body-copy,
.table-wrap td,
.table-wrap th {
    font-size: 0.86rem;
    line-height: 1.62;
    color: #3d382f;
}

.table-wrap {
    margin-top: 1.2rem;
    border: 1px solid var(--line);
    background: var(--panel);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-wrap table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}

.table-wrap th,
.table-wrap td {
    border-bottom: 1px solid #e8e3d8;
    text-align: left;
    padding: 0.95rem 0.9rem;
    vertical-align: top;
}

.table-wrap th {
    font-size: 0.64rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
}

.table-wrap td:first-child {
    font-weight: 600;
    color: #26221c;
}

.page-header {
    margin-top: 2.2rem;
    border: 1px solid var(--line);
    background: var(--panel);
    padding: 1.6rem 1.35rem 1.25rem;
}

.page-title {
    font-size: clamp(1.75rem, 4.8vw, 3.35rem);
    font-weight: 300;
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.page-sub {
    margin-top: 0.9rem;
    font-size: 0.95rem;
    line-height: 1.68;
    color: #3a352d;
    max-width: 86ch;
}

.inline-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.88rem;
    margin-top: 0.45rem;
}

.inline-links a {
    font-size: 0.74rem;
    text-decoration: none;
    color: #2d2822;
    border-bottom: 1px solid #c1b8ab;
    padding-bottom: 1px;
}

.inline-links a:hover {
    border-color: #2d2822;
}

.contact-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1.5rem;
    align-items: center;
}

.contact-row img {
    width: 100%;
    border: 1px solid #d8d1c4;
}

.footer {
    padding: 1.8rem 0 2.3rem;
    text-align: center;
    font-size: 0.61rem;
    color: #9a9388;
    letter-spacing: 0.03em;
}

@media (max-width: 980px) {
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 0.95rem;
    }

    .site-nav {
        padding-top: 1.45rem;
        gap: 0.55rem 1.05rem;
        justify-content: center;
        flex-wrap: wrap;
        overflow: visible;
        white-space: normal;
        padding-left: 0.2rem;
        padding-right: 0.2rem;
    }

    .site-nav a {
        flex: 0 0 auto;
        white-space: nowrap;
        font-size: 0.62rem;
    }

    .hero {
        padding-top: 1.2rem;
    }

    .hero-media {
        min-height: 54vh;
    }

    .hero-overlay,
    .section,
    .card,
    .page-header {
        padding: 1.2rem 1rem 1rem;
    }

    .hero-title {
        font-size: clamp(2rem, 11vw, 2.85rem);
        line-height: 0.98;
    }

    .hero-sub,
    .page-sub {
        font-size: 0.9rem;
        line-height: 1.62;
    }

    .cta-row {
        gap: 0.55rem;
    }

    .btn {
        font-size: 0.61rem;
        padding: 0.64rem 0.92rem;
    }

    .section-title,
    .card h2,
    .card h3 {
        font-size: 0.63rem;
    }

    .points li,
    .clean-list li,
    .card p,
    .body-copy {
        font-size: 0.82rem;
        line-height: 1.55;
    }

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

    .contact-row img {
        max-width: 220px;
        justify-self: center;
    }

}
