@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --ink: #2d3436;
    --paper: #faf6f0;
    --coral: #cc6633;
    --line: rgba(45, 52, 54, 0.25);
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: 'Poppins', sans-serif;
}

.entry-page {
    min-height: 100vh;
    padding: 2.5rem 5vw 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    background: var(--paper);
}

.entry-background-video,
.entry-video-wash {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.entry-background-video {
    object-fit: cover;
    filter: blur(5px);
    opacity: .25;
}

.entry-video-wash {
    background: rgba(250, 246, 240, .76);
}

.entry-page::before {
    content: '';
    position: absolute;
    width: 46vw;
    height: 46vw;
    max-width: 650px;
    max-height: 650px;
    border: 1px solid rgba(45, 52, 54, .16);
    border-radius: 50%;
    right: -18vw;
    bottom: -24vw;
}

.entry-language, .entry-content, .entry-footer { position: relative; z-index: 1; }

.entry-language { align-self: flex-end; display: flex; gap: .35rem; }

.entry-language-button {
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    padding: .5rem .75rem;
    font: 600 .72rem 'Poppins', sans-serif;
    letter-spacing: .12em;
    cursor: pointer;
    transition: .25s ease;
}

.entry-language-button:hover, .entry-language-button.active { background: var(--ink); color: var(--paper); }

.entry-content { width: min(1000px, 100%); margin: auto 0; padding: 8vh 0; }

.entry-eyebrow { margin: 0 0 2.5rem; font-size: .75rem; font-weight: 600; letter-spacing: .16em; }

h1 { max-width: 900px; margin: 0; font: 600 clamp(3rem, 8vw, 7rem)/1.02 'Poppins', sans-serif; letter-spacing: -.06em; }

.entry-intro { margin: 2rem 0 3.5rem; font-size: 1.1rem; color: rgba(45, 52, 54, .72); }

.entry-choices { display: grid; grid-template-columns: repeat(2, minmax(220px, 1fr)); gap: 1rem; max-width: 760px; }

.entry-choice { min-height: 150px; padding: 1.25rem 1.35rem; color: var(--ink); border: 1px solid var(--line); text-decoration: none; display: flex; flex-direction: column; justify-content: space-between; background: rgba(250, 246, 240, .64); transition: transform .3s ease, background .3s ease, color .3s ease; }

.entry-choice:hover { transform: translateY(-8px); background: var(--ink); color: var(--paper); }
.entry-choice-primary { background: var(--coral); color: #fffaf3; border-color: var(--coral); }
.entry-choice-primary:hover { background: var(--ink); border-color: var(--ink); }
.choice-number { font-size: .72rem; letter-spacing: .12em; opacity: .7; }
.choice-label { font: 600 clamp(1.5rem, 3vw, 2.2rem) 'Poppins', sans-serif; }
.choice-arrow { align-self: flex-end; font-size: 1.5rem; }

.entry-footer { display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 1rem; font-size: .7rem; letter-spacing: .13em; }

@media (max-width: 620px) {
    .entry-page { padding: 1.5rem 1.25rem; }
    .entry-content { padding: 7vh 0; }
    .entry-eyebrow { margin-bottom: 1.5rem; }
    .entry-choices { grid-template-columns: 1fr; }
    .entry-choice { min-height: 125px; }
    .entry-footer { gap: 1rem; font-size: .6rem; }
}
