:root {
    --red: #ee2b3c;
    --deep-red: #b8232f;
    --pink: #f6d9dc;
    --warm: #f7f6f4;
    --stone: #c4c1bc;
    --gray: #8c8983;
    --black: #1a1a1a;
    --white: #ffffff;
    --shadow: 0 28px 70px rgba(26, 26, 26, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--warm);
}

body {
    min-height: 100%;
    margin: 0;
    color: var(--black);
    background:
        linear-gradient(110deg, rgba(246, 217, 220, 0.7), transparent 34%),
        var(--warm);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: inherit;
}

.page-shell {
    width: min(100%, 1440px);
    min-height: 100vh;
    margin: 0 auto;
    padding: 40px 72px 46px;
}

.site-header,
.hero,
.site-footer,
.header-actions,
.cta-row,
.info-grid,
.brand-lockup {
    display: flex;
}

.site-header {
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    gap: 32px;
}

.brand-lockup {
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-mark,
.panel-mark {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    color: var(--black);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 46px;
    font-style: italic;
    line-height: 1;
}

.brand-mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-mark__top,
.brand-mark__bottom {
    position: absolute;
}

.brand-mark__top {
    top: 0;
}

.brand-mark__bottom {
    bottom: -2px;
    color: var(--red);
    transform: rotate(180deg);
}

.brand-mark__slash {
    position: absolute;
    width: 52px;
    height: 8px;
    background: var(--red);
    transform: rotate(22deg);
}

.brand-copy span,
.panel-lockup {
    display: block;
    font-size: 16px;
    line-height: 1.1;
}

.brand-copy strong,
.panel-lockup strong {
    color: var(--red);
    font-weight: 500;
}

.brand-copy small,
.brand-panel small {
    display: block;
    color: var(--gray);
    font-size: 12px;
    line-height: 1.3;
}

.header-actions {
    align-items: center;
    gap: 20px;
}

.header-note {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 30px;
    background: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background-color 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button--primary {
    color: var(--white);
    background: var(--red);
    box-shadow: 0 14px 30px rgba(184, 35, 47, 0.18);
}

.button--primary:hover {
    background: var(--deep-red);
    box-shadow: 0 18px 36px rgba(184, 35, 47, 0.24);
}

.button--secondary {
    color: var(--black);
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(26, 26, 26, 0.16);
}

.button--secondary:hover {
    border-color: rgba(26, 26, 26, 0.34);
}

.hero {
    align-items: center;
    justify-content: space-between;
    gap: 64px;
    min-height: calc(100vh - 208px);
    padding: 48px 0 40px;
}

.hero-copy {
    width: min(100%, 616px);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 34px;
    margin: 0 0 28px;
    padding: 0 16px;
    border: 1px solid rgba(196, 193, 188, 0.45);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    font-weight: 700;
}

.status-pill span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
}

h1 {
    max-width: 680px;
    margin: 0;
    font-size: clamp(3.5rem, 6vw, 4.5rem);
    line-height: 1;
    letter-spacing: 0;
}

.lede {
    max-width: 560px;
    margin: 28px 0 0;
    color: var(--gray);
    font-size: 22px;
    line-height: 1.45;
}

.cta-row {
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.info-grid {
    gap: 14px;
    margin: 34px 0 0;
}

.info-grid div {
    width: 190px;
    min-height: 90px;
    padding: 17px 18px;
    border: 1px solid rgba(196, 193, 188, 0.35);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.78);
}

.info-grid dt {
    margin: 0 0 8px;
    color: var(--gray);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.info-grid dd {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.brand-panel {
    position: relative;
    width: min(100%, 900px);
    min-height: 560px;
    overflow: hidden;
    border-radius: 10px;
    background: var(--black);
    box-shadow: var(--shadow);
    color: var(--white);
}

.brand-panel::before,
.brand-panel::after {
    content: "";
    position: absolute;
    top: -95px;
    right: 76px;
    width: 12px;
    height: 720px;
    background: rgba(255, 255, 255, 0.07);
    transform: rotate(-18deg);
}

.brand-panel::after {
    right: 32px;
    background: rgba(238, 43, 60, 0.38);
}

.panel-mark {
    position: absolute;
    top: 164px;
    left: 50%;
    width: 96px;
    height: 96px;
    transform: translateX(-50%);
}

.panel-mark .brand-mark {
    width: 96px;
    height: 96px;
}

.panel-lockup,
.brand-panel>small {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
}

.panel-lockup {
    top: 273px;
    margin: 0;
}

.brand-panel>small {
    top: 298px;
}

.panel-band {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 88px;
    padding: 0 40px;
    background: var(--red);
}

.panel-band span {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.panel-band p {
    max-width: 344px;
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
    text-align: right;
}

.site-footer {
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: var(--gray);
    font-size: 14px;
}

.site-footer strong {
    color: var(--black);
    font-size: 16px;
}

@media (max-width: 1200px) {
    .page-shell {
        padding: 24px;
    }

    .site-header {
        min-height: 56px;
    }

    .brand-copy,
    .header-note,
    .site-footer span {
        display: none;
    }

    .brand-mark {
        width: 54px;
        height: 54px;
    }

    .header-actions .button {
        min-height: 34px;
        padding: 0 16px;
        border-color: rgba(196, 193, 188, 0.45);
        border-radius: 999px;
        color: var(--black);
        background: rgba(255, 255, 255, 0.76);
        box-shadow: none;
    }

    .hero {
        flex-direction: column;
        justify-content: flex-start;
        gap: 36px;
        min-height: 0;
        padding: 36px 0 22px;
        text-align: center;
    }

    .hero-copy {
        width: 100%;
    }

    .status-pill {
        display: none;
    }

    h1 {
        margin: 0 auto;
        font-size: 36px;
        line-height: 1.04;
    }

    .lede {
        margin: 22px auto 0;
        font-size: 16px;
        line-height: 1.4;
    }

    .cta-row {
        justify-content: center;
        margin-top: 20px;
    }

    .cta-row .button {
        min-width: 149px;
    }

    .brand-panel {
        min-height: 218px;
        border-radius: 8px;
    }

    .panel-mark {
        top: 52px;
        width: 64px;
        height: 64px;
    }

    .panel-mark .brand-mark {
        width: 64px;
        height: 64px;
    }

    .panel-lockup {
        top: 126px;
        font-size: 13px;
    }

    .brand-panel>small {
        top: 146px;
        font-size: 10px;
    }

    .panel-band {
        min-height: 40px;
        justify-content: center;
        padding: 0 24px;
    }

    .panel-band p {
        display: none;
    }

    .info-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 18px;
    }

    .info-grid div {
        width: auto;
        min-height: 78px;
        padding: 13px 16px;
        text-align: left;
    }

    .info-grid div:last-child {
        display: none;
    }

    .site-footer {
        justify-content: center;
        padding-top: 4px;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .page-shell {
        padding-right: 24px;
        padding-left: 24px;
    }

    .brand-panel {
        width: 100%;
    }
}