:root {
    --bg: #efe6d5;
    --surface: rgba(255, 250, 242, 0.82);
    --surface-strong: #fffaf1;
    --ink: #1e1b18;
    --muted: #62584d;
    --line: rgba(58, 48, 38, 0.12);
    --sand: #d9a86c;
    --brick: #a84f2b;
    --mint: #6b8f71;
    --forest: #29463b;
    --night: #1f2e38;
    --cream: #f6efe2;
    --shadow: 0 24px 60px rgba(54, 35, 18, 0.12);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "IBM Plex Sans", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.65), transparent 34%),
        radial-gradient(circle at top right, rgba(104, 143, 113, 0.22), transparent 26%),
        linear-gradient(180deg, #e7dcc7 0%, #efe7d8 38%, #ebdfcb 100%);
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: 0;
}

body::before {
    width: 32rem;
    height: 32rem;
    top: -10rem;
    right: -10rem;
    background: radial-gradient(circle, rgba(168, 79, 43, 0.16), transparent 65%);
}

body::after {
    width: 26rem;
    height: 26rem;
    bottom: -9rem;
    left: -8rem;
    background: radial-gradient(circle, rgba(107, 143, 113, 0.2), transparent 70%);
}

.page-shell {
    position: relative;
    z-index: 1;
    width: min(1380px, calc(100% - 56px));
    margin: 28px auto 56px;
}

.hero,
.content-section,
.info-strip,
.footer-note {
    backdrop-filter: blur(16px);
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.44);
    box-shadow: var(--shadow);
}

.hero {
    padding: 30px 34px 34px;
    border-radius: 42px;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 48px;
}

.eyebrow,
.brand,
.panel-label,
.strip-label,
.section-kicker,
.card-tag {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.eyebrow,
.strip-label,
.section-kicker,
.card-tag {
    font-size: 0.74rem;
    color: var(--muted);
}

.brand,
.panel-label {
    font-size: 0.92rem;
    color: var(--ink);
}

.topbar-link,
.quick-links a {
    color: var(--ink);
    text-decoration: none;
}

.topbar-link {
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.4);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(360px, 0.92fr);
    gap: 30px;
    align-items: stretch;
}

.hero-copy,
.status-panel,
.info-card,
.detail-panel,
.timeline-card,
.signal-card,
.reception-main,
.mini-card {
    border-radius: var(--radius-lg);
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 540px;
    padding: 18px 44px 18px 6px;
}

.hero-badge {
    display: inline-flex;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(168, 79, 43, 0.1);
    color: var(--brick);
    font-weight: 700;
    margin-bottom: 18px;
}

h1,
h2,
h3 {
    font-family: "Manrope", sans-serif;
    margin: 0;
}

h1 {
    font-size: clamp(4.4rem, 7vw, 6.8rem);
    line-height: 0.9;
    max-width: 11.5ch;
}

.hero-lead,
.section-head p,
.info-card p,
.detail-panel p,
.signal-card p,
.mini-card p,
.reception-main p,
.timeline-card li,
.footer-note p {
    color: var(--muted);
    line-height: 1.65;
}

.hero-lead {
    max-width: 60ch;
    font-size: 1.14rem;
    margin: 28px 0 0;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.quick-links a {
    padding: 14px 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 250, 242, 0.76);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.quick-links a:hover,
.topbar-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.72);
}

.status-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 26px;
    background:
        linear-gradient(180deg, rgba(31, 46, 56, 0.95), rgba(31, 46, 56, 0.86)),
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    color: #f7f0e6;
}

.status-list {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.status-list article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.status-list span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(217, 168, 108, 0.18);
    color: #ffd9b0;
    font-weight: 800;
}

.status-list h2,
.status-list p {
    margin: 0;
}

.status-list p,
.light-head p,
.reception-main p,
.mini-card p {
    color: rgba(246, 239, 226, 0.82);
}

.info-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    padding: 24px 28px;
    margin: 24px 0;
    border-radius: 30px;
}

.info-strip strong {
    display: block;
    margin-top: 6px;
    font-family: "Manrope", sans-serif;
    font-size: 1.06rem;
}

.content-section {
    padding: 36px;
    margin-top: 24px;
    border-radius: 38px;
}

.section-head {
    max-width: 64ch;
    margin-bottom: 28px;
}

.section-head h2 {
    font-size: clamp(2.6rem, 4vw, 4rem);
    margin-top: 8px;
    margin-bottom: 10px;
}

.card-grid,
.details-layout,
.gate-layout,
.reception-grid {
    display: grid;
    gap: 22px;
}

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

.info-card,
.detail-panel,
.timeline-card,
.signal-card,
.reception-main,
.mini-card {
    padding: 26px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.52);
}

.emphasis-card {
    background: linear-gradient(180deg, rgba(168, 79, 43, 0.94), rgba(138, 58, 30, 0.92));
    color: #fff7ee;
    border-color: rgba(168, 79, 43, 0.32);
}

.emphasis-card p,
.emphasis-card .card-tag,
.emphasis-card .price {
    color: inherit;
}

.price {
    font-family: "Manrope", sans-serif;
    font-size: 2.6rem;
    line-height: 1;
    margin: 12px 0;
    font-weight: 800;
}

.details-layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    margin-top: 22px;
}

.fees-requisites-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.82fr);
    align-items: start;
}

.fees-schedule-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.detail-panel ul {
    margin: 12px 0 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.8;
}

.requisites-panel {
    background: rgba(255, 250, 242, 0.7);
    align-self: start;
}

.requisites-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 16px;
}

.requisites-columns section {
    min-width: 0;
}

.requisites-subtitle {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--ink);
}

.qr-panel {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(249, 242, 231, 0.9));
    align-self: start;
}

.purpose-panel {
    grid-column: 1;
    background: linear-gradient(180deg, rgba(31, 46, 56, 0.95), rgba(43, 65, 79, 0.92));
    border-color: rgba(255, 255, 255, 0.1);
    align-self: start;
}

.purpose-panel h3,
.purpose-panel p,
.purpose-panel .card-tag {
    color: #f7f0e6;
}

.purpose-text {
    margin: 14px 0 16px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-family: "Manrope", sans-serif;
    font-size: 1.2rem;
    line-height: 1.45;
    font-weight: 700;
}

.qr-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    margin: 18px 0 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(58, 48, 38, 0.08);
}

.qr-frame img {
    display: block;
    width: 100%;
    max-width: 260px;
    height: auto;
    border-radius: 18px;
}

.schedule-panel {
    background: rgba(255, 250, 242, 0.74);
}

.schedule-list {
    margin: 16px 0 0;
    padding-left: 20px;
}

.schedule-list li {
    padding: 0 0 14px;
    color: var(--muted);
    line-height: 1.7;
}

.schedule-list strong,
.schedule-list span {
    display: block;
}

.schedule-list strong {
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    margin-bottom: 2px;
}

.emphasis-note-panel {
    background: linear-gradient(180deg, rgba(168, 79, 43, 0.92), rgba(145, 66, 37, 0.9));
    border-color: rgba(168, 79, 43, 0.28);
}

.emphasis-note-panel h3,
.emphasis-note-panel p {
    color: #fff7ee;
}

.requisites-list {
    display: grid;
    gap: 14px;
    margin: 14px 0 0;
}

.requisites-list div {
    display: grid;
    grid-template-columns: minmax(130px, 160px) 1fr;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(58, 48, 38, 0.08);
}

.requisites-list dt {
    color: var(--muted);
}

.requisites-list dd {
    margin: 0;
    font-weight: 600;
    color: var(--ink);
    word-break: break-word;
}

.muted-panel {
    background: rgba(247, 236, 214, 0.7);
}

.gate-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.95fr) minmax(300px, 0.85fr);
}

.timeline-card {
    background: rgba(244, 248, 241, 0.88);
}

.timeline-card ol {
    margin: 14px 0 0;
    padding-left: 20px;
}

.signal-card {
    background: linear-gradient(180deg, rgba(41, 70, 59, 0.96), rgba(36, 59, 50, 0.92));
    color: #edf7ef;
}

.signal-card .card-tag,
.signal-card p {
    color: rgba(237, 247, 239, 0.82);
}

.accent-sand {
    background: linear-gradient(180deg, rgba(255, 249, 242, 0.9), rgba(255, 244, 232, 0.8));
}

.accent-mint {
    background: linear-gradient(180deg, rgba(240, 245, 239, 0.9), rgba(233, 242, 237, 0.84));
}

.accent-ink {
    background: linear-gradient(180deg, rgba(31, 46, 56, 0.96), rgba(38, 58, 70, 0.9));
    border-color: rgba(255, 255, 255, 0.08);
}

.light-head .section-kicker,
.light-head h2 {
    color: #f7f0e6;
}

.reception-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.72fr) minmax(280px, 0.72fr);
}

.reception-main,
.mini-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    color: #f7f0e6;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.pill-row span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 28px;
    margin-top: 24px;
    border-radius: 24px;
}

.footer-note p {
    margin: 0;
}

.hero,
.info-strip,
.content-section,
.footer-note,
.quick-links a,
.topbar-link,
.status-list article,
.info-card,
.detail-panel,
.timeline-card,
.signal-card,
.reception-main,
.mini-card {
    animation: rise 0.7s ease both;
}

.status-list article:nth-child(2),
.info-card:nth-child(2),
.mini-card:nth-child(2) {
    animation-delay: 0.08s;
}

.status-list article:nth-child(3),
.info-card:nth-child(3),
.signal-card {
    animation-delay: 0.16s;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 981px) {
    .info-card,
    .detail-panel,
    .timeline-card,
    .signal-card,
    .reception-main,
    .mini-card,
    .status-list article {
        transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
    }

    .info-card:hover,
    .detail-panel:hover,
    .timeline-card:hover,
    .signal-card:hover,
    .reception-main:hover,
    .mini-card:hover,
    .status-list article:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 32px rgba(35, 24, 14, 0.1);
    }
}

@media (max-width: 1100px) {
    .fees-requisites-layout {
        grid-template-columns: 1fr;
    }

    .purpose-panel {
        grid-column: auto;
    }
}

@media (max-width: 980px) {
    .hero-grid,
    .info-strip,
    .three-up,
    .details-layout,
    .fees-requisites-layout,
    .gate-layout,
    .reception-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        max-width: none;
        font-size: clamp(3rem, 10vw, 4.6rem);
    }

    .footer-note,
    .topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-copy {
        min-height: auto;
        padding-right: 0;
    }
}

@media (max-width: 640px) {
    .page-shell {
        width: min(100% - 18px, 100%);
        margin-top: 12px;
    }

    .hero,
    .content-section,
    .info-strip,
    .footer-note {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero {
        border-radius: 28px;
    }

    .content-section {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    h1 {
        font-size: clamp(2.4rem, 14vw, 3.5rem);
    }

    .requisites-list div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}