:root {
    --ink: #101414;
    --paper: #f7f6f1;
    --orange: #00a4ad;
    --mint: #c5e7e7;
    --line: rgba(16, 20, 20, 0.16);
    --white: #fffefa;
}

.site-header {
    background: rgba(247, 246, 241, 0.94);
}

.hero-section {
    background-image: radial-gradient(rgba(16, 20, 20, 0.075) 0.7px, transparent 0.7px);
}

.hero-section::before {
    border-color: rgba(16, 20, 20, 0.08);
}

.search-field input:focus {
    box-shadow: 0 0 0 2px rgba(0, 164, 173, 0.14);
}

.search-field button:hover {
    background: #008992;
}

.whatsapp-button:hover {
    background: #202929;
}

.market-strip {
    background: #eeede8;
}

.official-tracking-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    padding: 13px 15px;
    background: var(--ink);
    color: white !important;
    font-size: 12px;
    font-weight: 700;
}

.official-tracking-link span {
    color: var(--orange);
    font-size: 17px;
}

.phone-gate-page {
    position: relative;
    min-height: calc(100vh - 84px);
    display: grid;
    place-items: center;
    padding: 50px 20px 80px;
    overflow: hidden;
    background: var(--paper);
}

.phone-gate-backdrop {
    position: absolute;
    inset: 0;
    opacity: 0.55;
    background-image: radial-gradient(rgba(16, 20, 20, 0.14) 0.7px, transparent 0.7px);
    background-size: 7px 7px;
}

.phone-gate-modal {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    padding: 42px;
    border: 1px solid var(--ink);
    background: var(--white);
    box-shadow: 9px 9px 0 var(--ink);
}

.phone-gate-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    background: var(--mint);
    color: var(--ink);
    font: 800 22px "Manrope", sans-serif;
}

.phone-gate-modal h1 {
    margin: 0 0 12px;
    font-size: 34px;
    letter-spacing: -1.5px;
}

.phone-gate-lead {
    margin: 0 0 28px;
    color: #647069;
    font-size: 14px;
    line-height: 1.7;
}

.phone-gate-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.phone-input-wrap {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    border: 1px solid #adb6b0;
    background: white;
}

.phone-input-wrap:focus-within {
    border-color: var(--orange);
    box-shadow: 0 0 0 2px rgba(0, 164, 173, 0.14);
}

.phone-input-wrap span {
    padding: 0 14px;
    border-right: 1px solid var(--line);
    color: #69736d;
    font-size: 14px;
    font-weight: 700;
}

.phone-input-wrap input {
    width: 100%;
    height: 54px;
    padding: 0 15px;
    border: 0;
    outline: 0;
    color: var(--ink);
    font: 600 15px "DM Sans", sans-serif;
}

.phone-gate-form button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 13px;
    padding: 15px 17px;
    border: 0;
    background: var(--orange);
    color: white;
    font: 800 13px "DM Sans", sans-serif;
    cursor: pointer;
}

.phone-gate-form button:hover {
    background: #008992;
}

.phone-error {
    margin: 8px 0 0;
    color: #c9362b;
    font-size: 12px;
}

.phone-privacy-note {
    display: flex;
    gap: 11px;
    margin-top: 20px;
    padding: 14px;
    background: #edf7f5;
}

.phone-privacy-note > span {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    font-size: 11px;
    font-weight: 800;
}

.phone-privacy-note p {
    display: flex;
    flex-direction: column;
    margin: 0;
    color: #647069;
    font-size: 11px;
    line-height: 1.5;
}

.phone-privacy-note strong {
    color: var(--ink);
    font-size: 12px;
}

.phone-gate-back {
    display: inline-block;
    margin-top: 22px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 600px) {
    .phone-gate-page {
        min-height: calc(100vh - 72px);
        align-items: start;
        padding-top: 30px;
    }

    .phone-gate-modal {
        padding: 30px 22px;
        box-shadow: 6px 6px 0 var(--ink);
    }

    .phone-gate-modal h1 {
        font-size: 28px;
    }
}

.video-card .video-frame {
    position: relative;
    width: min(100%, 360px);
    max-height: 640px;
    aspect-ratio: 9 / 16;
    margin-inline: auto;
    background: #050706;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-card .video-frame video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #050706;
}

.video-fullscreen-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: min(100%, 360px);
    margin: 12px auto 0;
    padding: 12px 16px;
    border: 1px solid var(--ink);
    background: var(--white);
    color: var(--ink);
    font: 700 12px "DM Sans", sans-serif;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.video-fullscreen-button:hover,
.video-fullscreen-button:focus-visible {
    background: var(--ink);
    color: white;
}

.fullscreen-mark {
    font-size: 20px;
    line-height: 1;
}

.video-frame:fullscreen,
.video-frame:-webkit-full-screen {
    width: 100vw;
    max-width: none;
    height: 100vh;
    max-height: none;
    aspect-ratio: auto;
    border: 0;
}

.video-frame:fullscreen video,
.video-frame:-webkit-full-screen video {
    width: 100vw;
    height: 100vh;
}

@media (max-width: 600px) {
    .video-card .video-frame,
    .video-fullscreen-button {
        width: min(100%, 320px);
    }
}
