:root {
    --page-bg: #f6f1ec;
    --surface: #ffffff;
    --text: #222222;
    --muted: #6d655f;
    --line: rgba(34, 34, 34, 0.08);
    --accent: #e18b4a;
    --accent-soft: #f3dfcf;
}

body {
    background: linear-gradient(180deg, #fffaf6 0%, var(--page-bg) 100%);
}

.page-hero {
    padding: 72px 20px 36px;
}

.page-hero-card {
    width: min(100%, 1100px);
    margin: 0 auto;
    background: linear-gradient(135deg, #f8e9dd 0%, #fff8f2 100%);
    border: 1px solid rgba(225, 139, 74, 0.12);
    border-radius: 28px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.page-hero-card::after {
    content: "";
    position: absolute;
    inset: auto -80px -120px auto;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(225, 139, 74, 0.12);
}

.page-eyebrow {
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.page-hero-card h1 {
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    max-width: 620px;
    margin-bottom: 18px;
}

.page-hero-card p {
    max-width: 640px;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.page-content {
    padding: 0 20px 84px;
}

.content-grid {
    width: min(100%, 1100px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.content-aside,
.content-panel {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    border: 1px solid var(--line);
    border-radius: 24px;
}

.content-aside {
    padding: 28px 24px;
    position: sticky;
    top: 124px;
}

.content-aside h2 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.content-aside p,
.content-aside li {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.content-aside ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.content-panel {
    padding: 34px;
}

.content-section + .content-section {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.content-section h2 {
    font-size: 1.35rem;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}

.content-section p {
    color: #47413c;
    font-size: 1rem;
    line-height: 1.85;
}

.content-section p + p {
    margin-top: 16px;
}

.content-highlight {
    background: var(--accent-soft);
    border-radius: 18px;
    padding: 20px 22px;
    margin-top: 18px;
}

.content-highlight strong {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (max-width: 960px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .content-aside {
        position: static;
    }
}

@media (max-width: 760px) {
    .page-hero {
        padding-top: 38px;
    }

    .page-hero-card,
    .content-panel,
    .content-aside {
        padding: 24px 20px;
    }
}
