@import url('[fonts.googleapis.com](https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Open+Sans:wght@400;500;600;700&display=swap)');

:root {
    --bordeaux: #671417;
    --red: #C71F25;
    --red-light: #E2453B;
    --black: #1A1A1A;
    --muted: #5f6368;
    --soft: #F7F7F7;
    --line: #E8E2E2;
    --white: #FFFFFF;
    --shadow: 0 16px 40px rgba(0,0,0,.08);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: "Open Sans", Arial, sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.7;
}

a { color: inherit; }

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

.header {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: var(--bordeaux);
    letter-spacing: .3px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--bordeaux), var(--red));
    color: white;
    border-radius: 12px;
    font-family: "Playfair Display", serif;
    font-size: 24px;
}

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

.nav a {
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    color: var(--black);
}

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

.hamburger {
    display: none;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--black);
    margin: 5px 0;
}

.page-hero {
    background:
        linear-gradient(120deg, rgba(103,20,23,.94), rgba(199,31,37,.86)),
        radial-gradient(circle at top right, rgba(255,255,255,.18), transparent 35%);
    color: white;
    padding: 92px 0;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    font-size: 13px;
    color: rgba(255,255,255,.78);
}

h1, h2, h3 {
    font-family: "Playfair Display", serif;
    line-height: 1.15;
}

h1 {
    font-size: clamp(38px, 6vw, 68px);
    max-width: 900px;
    margin: 12px 0 20px;
}

h2 {
    color: var(--bordeaux);
    font-size: clamp(28px, 4vw, 44px);
    margin: 0 0 20px;
}

h3 {
    color: var(--bordeaux);
    font-size: 24px;
    margin: 0 0 12px;
}

.page-hero p {
    max-width: 790px;
    font-size: 18px;
}

.section {
    padding: 76px 0;
}

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

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

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

.card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    box-shadow: var(--shadow);
}

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

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn {
    display: inline-block;
    padding: 13px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
}

.btn.primary {
    background: var(--red);
    color: white;
}

.btn.secondary {
    border: 2px solid var(--red);
    color: var(--red);
    background: white;
}

.btn.primary:hover { background: var(--red-light); }

.feature {
    border-left: 5px solid var(--red);
    padding-left: 20px;
    margin: 24px 0;
}

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

.book {
    background: white;
    border-radius: 18px;
    padding: 20px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.book img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 12px;
    background: var(--bordeaux);
}

.form {
    max-width: 760px;
    margin: 0 auto;
    background: white;
    padding: 32px;
    border-radius: 18px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.form label {
    display: block;
    font-weight: 800;
    margin: 14px 0 6px;
}

.form input,
.form textarea,
.form select {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    font: inherit;
}

.form textarea { min-height: 150px; }

.footer {
    background: var(--bordeaux);
    color: white;
    padding: 56px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr 1fr;
    gap: 28px;
}

.footer a {
    display: block;
    color: #ffd7d7;
    text-decoration: none;
    margin: 6px 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.18);
    margin-top: 36px;
    padding-top: 18px;
    text-align: center;
    color: #f4dede;
    font-size: 14px;
}

.footer-bottom a {
    display: inline;
    margin-left: 12px;
}

@media (max-width: 900px) {
    .hamburger { display: block; }

    .nav {
        display: none;
        position: absolute;
        top: 76px;
        left: 16px;
        right: 16px;
        flex-direction: column;
        align-items: flex-start;
        background: white;
        padding: 22px;
        border-radius: 18px;
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

    .nav.open { display: flex; }

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

    .header { padding: 0 18px; }

    .brand span:last-child {
        font-size: 14px;
    }

    .section { padding: 56px 0; }
}