:root {
    --cocoa: #2b1712;
    --cocoa-2: #4a261d;
    --cream: #fff8ed;
    --paper: #ffffff;
    --ink: #201b19;
    --muted: #675d58;
    --line: #eadfd4;
    --teal: #2c7168;
    --teal-dark: #20534d;
    --berry: #9b3252;
    --gold: #c89345;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}

a {
    color: var(--teal);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.site-header {
    min-height: 76px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    padding: 14px clamp(18px, 4vw, 56px);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 10;
}

.brand {
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand:hover {
    text-decoration: none;
}

.brand-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: var(--cocoa);
    color: white;
    font-weight: 800;
}

.brand strong,
.brand small {
    display: block;
}

.brand small {
    color: var(--muted);
    font-size: 12px;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px;
    font-size: 14px;
}

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

.hero {
    min-height: calc(92vh - 76px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: clamp(48px, 7vw, 92px) clamp(18px, 4vw, 56px);
    color: white;
    background: var(--cocoa);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(34, 18, 14, 0.88) 0%, rgba(34, 18, 14, 0.70) 42%, rgba(34, 18, 14, 0.20) 100%);
    z-index: 1;
}

.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-copy {
    max-width: 690px;
    position: relative;
    z-index: 2;
}

.eyebrow {
    color: var(--teal);
    font-weight: 800;
    margin: 0 0 12px;
}

.hero .eyebrow {
    color: #c9eadf;
}

h1,
h2,
h3 {
    margin: 0 0 16px;
    line-height: 1.14;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(40px, 6vw, 72px);
}

h2 {
    font-size: clamp(28px, 4vw, 44px);
}

h3 {
    font-size: 20px;
}

.lead {
    font-size: clamp(18px, 2.2vw, 22px);
    color: var(--muted);
    max-width: 780px;
}

.hero .lead {
    color: rgba(255, 255, 255, 0.88);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 6px;
    border: 1px solid var(--teal);
    font-weight: 800;
}

.button.primary {
    background: var(--teal);
    color: white;
}

.button.secondary {
    background: white;
    color: var(--teal);
}

.button.payhip {
    background: var(--berry);
    border-color: var(--berry);
    color: white;
}

.button:hover {
    text-decoration: none;
}

.section {
    padding: clamp(42px, 7vw, 84px) clamp(18px, 4vw, 56px);
}

.section.alt {
    background: var(--cream);
}

.inner {
    max-width: 1120px;
    margin: 0 auto;
}

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

.grid.two {
    grid-template-columns: repeat(2, 1fr);
}

.card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    padding: 22px;
}

.card p {
    color: var(--muted);
    margin: 0;
}

.page-hero {
    padding: clamp(42px, 6vw, 76px) clamp(18px, 4vw, 56px);
    background: var(--cream);
}

.page-hero .inner {
    max-width: 900px;
}

.feature-list {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 28px;
}

.feature-list li {
    border-bottom: 1px solid var(--line);
    padding: 10px 0 10px 28px;
    color: var(--muted);
    position: relative;
}

.feature-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    position: absolute;
    left: 6px;
    top: 20px;
}

.price {
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    margin: 14px 0;
}

.story {
    max-width: 860px;
}

.story blockquote {
    margin: 28px 0;
    padding: 18px 22px;
    border-left: 4px solid var(--gold);
    background: var(--cream);
    font-size: 20px;
}

.contact-box {
    max-width: 720px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 28px;
    background: white;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    padding: 28px clamp(18px, 4vw, 56px);
    border-top: 1px solid var(--line);
    background: #fbf8f3;
    color: var(--muted);
}

.site-footer p {
    margin: 4px 0 0;
}

@media (max-width: 860px) {
    .site-header,
    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-nav {
        justify-content: flex-start;
    }

    .hero {
        min-height: auto;
        padding-top: 82px;
        padding-bottom: 82px;
    }

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

