@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Anton&display=swap');

* { box-sizing: border-box; }
html, body {
    margin: 0;
    padding: 0;
    background: #efebe1;
    color: #17130f;
    font-family: 'Oswald', Arial, sans-serif;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0 0;
}
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.5px;
}
.brand__icon {
    width: 34px;
    height: 34px;
    background: #17130f;
    color: #efebe1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.brand__sep { color: #9a9284; font-weight: 400; margin: 0 2px; }
.brand__partner { font-style: italic; font-weight: 700; }

.header-actions { display: flex; gap: 14px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 2px solid #17130f;
    background: transparent;
    color: #17130f;
    text-transform: uppercase;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 96% 100%, 0 100%);
    transition: opacity .15s ease;
}
.btn:hover { opacity: 0.75; }
.btn--dark { background: #17130f; color: #efebe1; }
.btn--block { width: 100%; }

/* Hero */
.hero {
    position: relative;
    padding: 70px 0 90px;
    overflow: hidden;
}
.hero__shards {
    position: absolute;
    right: -60px;
    top: 0;
    bottom: 0;
    width: 55%;
    background:
        linear-gradient(115deg, transparent 48%, #17130f 48%, #17130f 52%, transparent 52%),
        linear-gradient(105deg, transparent 60%, #17130f 60%, #17130f 63%, transparent 63%);
    opacity: 0.9;
    z-index: 0;
    pointer-events: none;
}
.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}
.hero__figure {
    position: relative;
    justify-self: end;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.hero__figure::before {
    content: '';
    position: absolute;
    inset: -10%;
    background: radial-gradient(closest-side, rgba(23,19,15,0.16), transparent 72%);
    z-index: 0;
}
.hero__figure img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 18px 26px rgba(23,19,15,0.35));
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6b6357;
    margin-bottom: 18px;
    font-weight: 500;
}
h1.headline {
    font-family: 'Anton', 'Oswald', sans-serif;
    font-style: italic;
    font-weight: 400;
    line-height: 0.92;
    margin: 0 0 10px;
    font-size: 64px;
    text-transform: uppercase;
}
h1.headline .accent { display: block; }
h1.headline .partner { -webkit-text-stroke: 1px #17130f; color: transparent; }

.rewards {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 28px 0 34px;
}
.reward-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(23,19,15,0.06);
    border: 1px solid rgba(23,19,15,0.18);
    font-size: 15px;
    font-weight: 500;
}
.reward-plus { font-size: 20px; color: #17130f; font-weight: 600; }

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__actions .btn { min-width: 220px; }

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 17, 13, 0.55);
    z-index: 100;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 20px;
    overflow-y: auto;
}
.modal-overlay.is-open { display: flex; }
.modal {
    background: #efebe1;
    width: 100%;
    max-width: 560px;
}
.modal__title {
    background: #17130f;
    color: #efebe1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 15px;
}
.modal__close { background: none; border: none; color: #efebe1; font-size: 20px; }
.modal__body { padding: 26px 28px 30px; }
.field-group__label {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    color: #4c463b;
    margin: 0 0 10px;
}
.field-row { display: flex; gap: 14px; margin-bottom: 14px; }
.field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(23,19,15,0.3);
    padding: 12px 14px;
    background: #fff;
    position: relative;
}
.field input {
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    width: 100%;
}
.field__icon { color: #8a8272; font-size: 14px; }
.field__toggle { background: none; border: none; color: #8a8272; font-size: 14px; padding: 0; }
.hint {
    font-size: 12px;
    line-height: 1.5;
    color: #6b6357;
    background: rgba(23,19,15,0.05);
    padding: 12px 14px;
    margin-bottom: 18px;
}
.hint b { color: #17130f; }
.field-error { color: #a4302a; font-size: 12px; margin: -8px 0 12px; }
.section-title {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9a9284;
    font-weight: 600;
    margin: 22px 0 12px;
}
.checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    margin: 18px 0;
}
.checkbox-row a { text-decoration: underline; }
.form-msg { font-size: 13px; margin: 10px 0; padding: 10px 14px; }
.form-msg--error { background: rgba(164,48,42,0.1); color: #a4302a; }
.form-msg--success { background: rgba(45,120,64,0.12); color: #2d7840; }

.video-modal .modal { max-width: 900px; background: #000; }
.video-modal .modal__body { padding: 0; }
.video-modal iframe { width: 100%; aspect-ratio: 16/9; display: block; border: none; }

footer.site-footer {
    padding: 40px 0 60px;
    text-align: center;
    font-size: 12px;
    color: #8a8272;
}

@media (max-width: 900px) {
    .hero__grid { grid-template-columns: 1fr; }
    .hero__figure { justify-self: center; max-width: 320px; }
    h1.headline { font-size: 42px; }
    .site-header { flex-direction: column; gap: 16px; padding-bottom: 10px; }
    .container { padding: 0 20px; }
    .field-row { flex-direction: column; }
}
