:root {
    --bg: #080706;
    --bg-soft: #14100d;
    --paper: #f5eddd;
    --paper-soft: #fff8ea;
    --gold: #c89b45;
    --gold-light: #e2c075;
    --red: #8f1d1d;
    --text: #f7efe3;
    --muted: #cbbca8;
    --dark-text: #211913;
    --border: rgba(200, 155, 69, .28);
    --shadow: 0 24px 70px rgba(0, 0, 0, .45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

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

.top-bar {
    position: relative;
    z-index: 20;
    border-bottom: 1px solid rgba(200,155,69,.22);
    background:
        linear-gradient(90deg, #120f0d 0%, #1b1511 50%, #120f0d 100%);
}

.top-bar .container {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar p {
    margin: 0;
    color: var(--gold-light);
    font-size: .92rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.site-header {
    display: flex;
    align-items: center;
    padding: clamp(48px, 7vw, 96px) 0;
    background:
        radial-gradient(circle at 78% 28%, rgba(200,155,69,.16), transparent 34%),
        linear-gradient(135deg, #080706 0%, #14100d 58%, #080706 100%);
    border-bottom: 1px solid var(--border);
}

@media (min-width: 641px) and (max-width: 1199px) {
    .site-header {
        padding: 64px 0 72px;
    }
}

@media (min-width: 1200px) and (min-height: 760px) {
    .site-header {
        min-height: calc(100vh - 46px);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 38px;
    align-items: center;
}

.hero-copy {
    max-width: 620px;
}

.hero-media {
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    background: #050403;
    box-shadow: var(--shadow);
}

.hero-media img {
    width: 100%;
    height: auto;
    display: block;
}



h1, h2, h3, p {
    margin-top: 0;
}

h1 {
    font-size: clamp(2.45rem, 6vw, 4.9rem);
    line-height: .94;
    letter-spacing: -0.05em;
    margin-bottom: 22px;
    text-wrap: balance;
}

.hero-text {
    font-size: clamp(1.15rem, 3vw, 1.55rem);
    color: var(--paper);
    max-width: 620px;
    margin-bottom: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #16100b;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .02em;
    box-shadow: 0 12px 30px rgba(200, 155, 69, .22);
    transition: transform .18s ease, box-shadow .18s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(200, 155, 69, .32);
}

.section {
    padding: 74px 0;
}

.intro {
    background: var(--paper);
    color: var(--dark-text);
}

.intro .container {
    max-width: 870px;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    text-wrap: balance;
}

.intro p,
.order p {
    font-size: clamp(1.05rem, 2.3vw, 1.25rem);
}

.features {
    background:
        radial-gradient(circle at top left, rgba(200,155,69,.18), transparent 35%),
        var(--bg);
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.features .grid > div {
    padding: 28px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
    border-radius: 22px;
    box-shadow: var(--shadow);
}

h3 {
    font-size: 1.45rem;
    line-height: 1.1;
    margin-bottom: 10px;
    color: var(--gold-light);
}

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

.book {
    background: var(--bg-soft);
}

.book ul {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.book li {
    position: relative;
    padding: 16px 18px 16px 48px;
    border-bottom: 1px solid var(--border);
    font-size: 1.08rem;
}

.book li::before {
    content: "✓";
    position: absolute;
    left: 14px;
    top: 13px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--gold);
    color: #120d09;
    font-weight: 700;
    font-size: .9rem;
}

.order {
    background:
        linear-gradient(180deg, rgba(8,7,6,.92), rgba(8,7,6,.98)),
        url("/assets/img/hero.webp") center / cover no-repeat;
}

.order .container {
    max-width: 760px;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: rgba(20, 16, 13, .88);
    box-shadow: var(--shadow);
    backdrop-filter: blur(6px);
}

.site-footer {
    padding: 28px 0;
    background: #050403;
    color: var(--muted);
    font-size: .92rem;
    text-align: center;
    border-top: 1px solid var(--border);
}

.site-footer p {
    margin: 0;
}

a {
    color: inherit;
}

.site-footer a {
    color: var(--gold-light);
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.order-form {
    margin-top: 28px;
}

.form-field {
    margin-bottom: 18px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--paper);
    font-size: .95rem;
}

.form-field input {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.05);
    color: var(--text);
    font-size: 1rem;
}

.form-field input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,.07);
}

.form-check {
    margin: 16px 0;
    color: var(--muted);
    font-size: .95rem;
}

.form-check a {
    color: var(--gold-light);
}

.form-button {
    width: 100%;
    border: 0;
    cursor: pointer;
    margin-top: 14px;
}

.form-note {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: .92rem;
    text-align: center;
}

@media (min-width: 760px) {
    .container {
        width: min(1120px, calc(100% - 56px));
    }

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

    .book ul {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 36px;
    }

    .section {
        padding: 96px 0;
    }
}

@media (min-width: 1040px) {
    .book ul {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 860px) {
    .hero-grid {
        grid-template-columns: .92fr 1.08fr;
    }

    .hero-media img {
        aspect-ratio: 4 / 3;
        object-fit: contain;
        object-position: center;
        background: #050403;
    }
}

@media (max-width: 640px) {

    .site-header {
        min-height: auto;
        padding: 34px 0 52px;
    }

    .hero-grid {
        gap: 28px;
    }

    .hero-media {
        border-radius: 20px;
    }

    .button {
        width: 100%;
    }

    .order .container {
        padding: 26px 20px;
        border-radius: 22px;
    }

}

.thankyou-page {
    min-height: calc(100vh - 46px);
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 78% 28%, rgba(200,155,69,.16), transparent 34%),
        linear-gradient(135deg, #080706 0%, #14100d 58%, #080706 100%);
}

.thankyou-box {
    width: 100%;
    padding: 72px 0;
}

.thankyou-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 42px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: rgba(20, 16, 13, .88);
    box-shadow: var(--shadow);
}

.thankyou-kicker {
    margin-bottom: 14px;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .85rem;
}

.thankyou-text {
    font-size: clamp(1.08rem, 2.2vw, 1.25rem);
    color: var(--paper);
}

.thankyou-steps {
    margin: 30px 0;
    padding: 24px;
    border-radius: 20px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(200,155,69,.22);
}

.thankyou-steps h2 {
    font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.thankyou-steps p {
    color: var(--muted);
}

@media (max-width: 640px) {
    .thankyou-box {
        padding: 42px 0;
    }

    .thankyou-card {
        padding: 28px 20px;
        border-radius: 22px;
    }
}