:root {
    --red: #a31313;
    --dark-red: #6f0808;
    --deep-red: #4c0505;
    --bright-red: #c52222;
    --gold: #e4ba3f;
    --light-gold: #f2dd9d;

    --cream: #f4ecd8;
    --paper: #fffaf0;
    --light-background: #eee3ca;
    --text: #271c17;
    --muted: #695b50;
    --border: #cbbd9e;

    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--text);
    font-family:
        Arial,
        Helvetica,
        sans-serif;
    font-size: 17px;
    line-height: 1.6;
}

a {
    color: inherit;
}

.site-header {
    border-bottom: 1px solid var(--border);
    background: var(--paper);
}

.header-inner {
    width: min(calc(100% - 40px), var(--max-width));
    min-height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: var(--dark-red);
    text-decoration: none;
}

.logo-icon {
    width: 62px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--red);
    color: var(--gold);
    box-shadow: inset 0 0 0 3px var(--dark-red);
}

.logo-icon::after {
    content: "";
    position: absolute;
    right: -13px;
    top: 0;
    width: 13px;
    height: 82px;
    background: var(--paper);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.logo-star {
    font-size: 39px;
    line-height: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.logo-text strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.logo-text small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.parody-label {
    border: 2px solid var(--red);
    padding: 6px 12px;
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.main-navigation {
    border-bottom: 4px solid var(--gold);
    background: var(--red);
    color: #fff;
}

.navigation-inner {
    width: min(calc(100% - 40px), var(--max-width));
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.navigation-inner a {
    padding: 17px 22px;
    border-left: 1px solid rgb(255 255 255 / 20%);
    text-decoration: none;
    font-weight: 700;
}

.navigation-inner a:last-child {
    border-right: 1px solid rgb(255 255 255 / 20%);
}

.navigation-inner a:hover,
.navigation-inner a:focus-visible {
    background: var(--dark-red);
    text-decoration: underline;
}

.hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--dark-red);
    background:
        linear-gradient(
            120deg,
            var(--cream) 0%,
            var(--cream) 60%,
            var(--light-background) 60%,
            var(--light-background) 100%
        );
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.12;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent 0,
            transparent 19px,
            var(--dark-red) 20px
        );
}

.hero-inner {
    width: min(calc(100% - 40px), var(--max-width));
    margin: 0 auto;
    padding: 80px 0;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.8fr);
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-symbol {
    position: absolute;
    color: var(--red);
    opacity: 0.055;
    font-family: Georgia, serif;
    pointer-events: none;
    user-select: none;
}

.hero-symbol-left {
    left: -30px;
    bottom: -170px;
    font-size: 470px;
}

.hero-symbol-right {
    right: 25px;
    top: -80px;
    font-size: 320px;
}

.hero-content {
    max-width: 720px;
}

.eyebrow,
.section-label {
    margin: 0 0 9px;
    color: var(--red);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    line-height: 1.2;
}

h1 {
    max-width: 760px;
    margin: 0 0 22px;
    color: var(--dark-red);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 6vw, 68px);
    font-weight: 700;
}

h2 {
    color: var(--dark-red);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
}

h3 {
    color: var(--dark-red);
    font-size: 23px;
}

.intro {
    max-width: 680px;
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.45;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 23px;
    padding: 16px 22px;
    border: 2px solid var(--dark-red);
    background: var(--red);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 0 var(--dark-red);
    transition:
        background 120ms ease,
        transform 120ms ease,
        box-shadow 120ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
    background: var(--dark-red);
    text-decoration: underline;
}

.primary-button:active {
    transform: translateY(3px);
    box-shadow: 0 1px 0 var(--dark-red);
}

.status-card {
    border: 2px solid var(--dark-red);
    border-top: 8px solid var(--red);
    background: var(--paper);
    box-shadow: 8px 8px 0 rgb(111 8 8 / 20%);
}

.status-card-header {
    padding: 21px 26px;
    display: flex;
    align-items: center;
    gap: 13px;
    border-bottom: 1px solid var(--border);
    background: var(--red);
    color: #fff;
}

.status-card-header span {
    color: var(--gold);
    font-size: 28px;
}

.status-card-header h2 {
    margin: 0;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 23px;
}

.status-list {
    margin: 0;
    padding: 14px 26px;
    list-style: none;
}

.status-list li {
    padding: 15px 0;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.status-list li:first-child {
    border-top: 0;
}

.status-list strong {
    color: var(--red);
}

.card-note {
    margin: 0;
    padding: 18px 26px 23px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 14px;
}

.announcement {
    border-bottom: 1px solid var(--dark-red);
    background: var(--dark-red);
    color: #fff;
}

.announcement-inner {
    width: min(calc(100% - 40px), var(--max-width));
    margin: 0 auto;
    padding: 17px 0;
    display: flex;
    align-items: center;
    gap: 18px;
}

.announcement-inner p {
    margin: 0;
}

.announcement-icon {
    color: var(--gold);
    font-size: 28px;
}

.content-section {
    padding: 78px 0;
}

.content-inner {
    width: min(calc(100% - 40px), var(--max-width));
    margin: 0 auto;
}

.content-inner > h2 {
    margin-top: 0;
    margin-bottom: 37px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}

.info-card {
    min-height: 340px;
    padding: 29px;
    position: relative;
    border: 1px solid var(--border);
    border-top: 7px solid var(--red);
    background: var(--paper);
    box-shadow: 5px 5px 0 rgb(111 8 8 / 10%);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: var(--gold);
    font-size: 31px;
}

.card-number {
    color: var(--red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.11em;
}

.info-card h3 {
    margin-top: 12px;
    margin-bottom: 15px;
}

.info-card a {
    color: var(--red);
    font-weight: 700;
}

.info-card a:hover,
.info-card a:focus-visible {
    color: var(--dark-red);
}

.production-section {
    padding: 78px 0;
    background: var(--light-background);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.production-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 80px;
    align-items: start;
}

.production-layout h2 {
    margin-top: 0;
}

.production-intro {
    max-width: 580px;
    font-size: 19px;
}

.plan-list {
    padding: 30px;
    border: 2px solid var(--dark-red);
    background: var(--paper);
}

.plan-item + .plan-item {
    margin-top: 26px;
}

.plan-heading {
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.plan-heading strong {
    color: var(--red);
}

.progress {
    height: 18px;
    overflow: hidden;
    border: 1px solid var(--dark-red);
    background: #dfd0b6;
}

.progress span {
    height: 100%;
    display: block;
    background:
        repeating-linear-gradient(
            -45deg,
            var(--red) 0,
            var(--red) 10px,
            var(--bright-red) 10px,
            var(--bright-red) 20px
        );
}

.quote-section {
    padding: 65px 0;
    background: var(--red);
    color: #fff;
    text-align: center;
}

.quote-section blockquote {
    max-width: 880px;
    margin: 0 auto;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 4vw, 45px);
    font-weight: 700;
    line-height: 1.35;
}

.quote-section p {
    margin: 20px 0 0;
    color: var(--light-gold);
}

.faq-section {
    padding: 78px 0;
    background: var(--cream);
}

.narrow {
    max-width: 860px;
}

details {
    margin-bottom: 15px;
    border: 1px solid var(--border);
    border-left: 5px solid var(--red);
    background: var(--paper);
}

summary {
    padding: 19px 22px;
    color: var(--dark-red);
    cursor: pointer;
    font-size: 19px;
    font-weight: 700;
}

details[open] summary {
    border-bottom: 1px solid var(--border);
    background: #f3e8cc;
}

details p {
    margin: 0;
    padding: 20px 22px 23px;
}

.site-footer {
    padding: 55px 0;
    border-top: 5px solid var(--gold);
    background: var(--deep-red);
    color: #fff;
}

.footer-inner {
    width: min(calc(100% - 40px), var(--max-width));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

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

.footer-star {
    color: var(--gold);
    font-size: 42px;
}

.footer-inner strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
}

.footer-inner p {
    margin: 6px 0 0;
}

.disclaimer {
    max-width: 530px;
    color: rgb(255 255 255 / 80%);
    font-size: 14px;
}

a:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

@media (max-width: 900px) {
    .hero {
        background: var(--cream);
    }

    .hero-inner,
    .production-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .info-card {
        min-height: auto;
    }

    .hero-symbol-right {
        display: none;
    }
}

@media (max-width: 650px) {
    body {
        font-size: 16px;
    }

    .header-inner {
        min-height: 100px;
    }

    .logo-icon {
        width: 48px;
        height: 68px;
    }

    .logo-icon::after {
        height: 68px;
    }

    .logo-star {
        font-size: 30px;
    }

    .logo-text strong {
        font-size: 21px;
    }

    .logo-text small {
        font-size: 11px;
    }

    .parody-label {
        display: none;
    }

    .navigation-inner {
        width: 100%;
        flex-direction: column;
    }

    .navigation-inner a {
        padding: 12px 20px;
        border-right: 0;
        border-bottom: 1px solid rgb(255 255 255 / 20%);
    }

    .hero-inner {
        padding: 55px 0;
    }

    h1 {
        font-size: 41px;
    }

    .intro {
        font-size: 20px;
    }

    .primary-button {
        width: 100%;
        justify-content: space-between;
    }

    .announcement-inner {
        align-items: flex-start;
    }

    .footer-inner {
        flex-direction: column;
    }

    .plan-list {
        padding: 22px;
    }
}
