@font-face {
    font-family: 'Bogart';
    src: url("../fonts/bogart-bold-CmOaeLc.woff2") format('woff2');
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Bogart';
    src: url("../fonts/bogart-semibold-WiMBkyX.woff2") format('woff2');
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: 'Bogart';
    src: url("../fonts/bogart-medium-dgKmDfG.woff2") format('woff2');
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'Clarika Grot';
    src: url("../fonts/clarika-grot-regular-ipUWnFM.woff2") format('woff2');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Clarika Grot';
    src: url("../fonts/clarika-grot-bold-0zuQBbY.woff2") format('woff2');
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Clarika Grot';
    src: url("../fonts/clarika-grot-demibold-yJPOTw1.woff2") format('woff2');
    font-weight: 600;
    font-display: swap;
}

:root {
    --pink: #FFDCE8;
    --pink-light: #F9DDD6;
    --red: #CA0018;
    --red-dark: #C41A1F;
    --red-deep: #A01520;
    --white: #FFFFFF;
    --cream: #F5F4F0;
    --blue: #000E80;
    --text-dark: #1A1A1A;
    --text-red: #CA0018;
    --border-grain: #E8B5AA;

    --f-display: 'Bogart', Georgia, serif;
    --f-body: 'Clarika Grot', 'Helvetica Neue', Arial, sans-serif;

    --nav-h: 64px;
    --container: 1100px;
    --container-narrow: 900px;
    --gap: 24px;
    --radius: 16px;
    --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
* { scrollbar-width: thin; scrollbar-color: var(--red) var(--pink); }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--pink); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red-dark); }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: var(--nav-h); scrollbar-gutter: stable; }
.turbo-progress-bar { background: var(--red); height: 3px; }
html.scroll-locked { overflow: hidden; }
body {
    font-family: var(--f-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-dark);
    background: var(--pink);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gap); }
.container--narrow { max-width: var(--container-narrow); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background 0.25s, box-shadow 0.25s;
}
.site-header.is-scrolled {
    background: rgba(255, 220, 232, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
}
.site-header__logo { display: flex; align-items: center; flex-shrink: 0; }
.site-header__logo img { height: 30px; width: auto; }

.site-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.site-nav__link {
    font-family: var(--f-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.01em;
    padding: 5px 16px;
    border-radius: 4px;
    transition: 0.15s ease-in-out;
}

.site-nav__link:hover {
    color: var(--blue);
    background: rgb(227 30 36 / 10%);
}

.hamburger {
    display: none;
    width: 28px;
    height: 28px;
    position: relative;
    flex-shrink: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}
.hamburger__line {
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background: var(--blue);
    backface-visibility: hidden;
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.1s;
}
.hamburger__line:nth-child(1) { transform: translateY(calc(-10px - 50%)); }
.hamburger__line:nth-child(2) { transform: translateY(-50%); }
.hamburger__line:nth-child(3) { transform: translateY(calc(10px - 50%)); }

.hamburger.is-active .hamburger__line:nth-child(1) {
    transform: translateY(-50%) rotate(45deg);
}
.hamburger.is-active .hamburger__line:nth-child(2) {
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
}
.hamburger.is-active .hamburger__line:nth-child(3) {
    transform: translateY(-50%) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    .site-nav {
        position: absolute;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: var(--pink);
        display: grid;
        grid-template-columns: 1fr;
        padding: 12px var(--gap);
        gap: 8px;
        box-shadow: 0 12px 32px rgba(0,0,0,0.08);
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
        pointer-events: none;
    }
    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
        border-top: 1px solid rgb(202 0 24 / 5%);
    }
    .site-nav__link { font-size: 18px; font-weight: 600; }
}

.hero-section {
    text-align: center;
    padding: 75px 0 32px;
    position: relative;
    overflow: hidden;
}
.hero-section .container { position: relative; }
.hero-headline {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(2rem, 6vw, 3.5rem);
    line-height: 1.05;
    color: var(--red);
    max-width: 580px;
    margin: 0 auto 28px;
}
.hero-headline strong {
    font-weight: 700;
}
.hero-illustration {
    max-width: clamp(350px, 55vw, 680px);
    margin: 0 auto 24px;
}
.hero-subtitle {
    font-family: var(--f-body);
    font-size: clamp(1.1rem, 2.5vw, 1.85rem);
    font-weight: 600;
    color: var(--text-red);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.15;
}

.hero-photos {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 1.25rem 0;
    position: relative;
}
.hero-photo {
    width: clamp(8rem, 28vw, 13rem);
}
.hero-photo img {
    aspect-ratio: 3/4;
}
.hero-photo--1 {
    transform: rotate(-6deg);
    z-index: 1;
}
.hero-photo--2 {
    transform: rotate(5deg) translateY(1.3rem);
    z-index: 2;
    width: clamp(8rem, 30vw, 15rem);
}
.hero-photo--3 {
    transform: rotate(0deg) translateY(1.5rem);
    z-index: 1;
}

.hero-bottle {
    position: absolute;
    pointer-events: none;
    height: clamp(180px, 28vw, 360px);
}
.hero-bottle--left { left: -2%; bottom: 0; }
.hero-deco {
    position: absolute;
    pointer-events: none;
    width: clamp(60px, 10vw, 80px);
}
.hero-deco--tr { top: 2%; right: 5%; }
.hero-deco--tl { top: 30%; left: 3%; }
@media (max-width: 768px) {
    .site-header__logo img {
        height: 28px;
    }

    .hero-subtitle {
        max-width: 350px;
    }
    .hero-bottle { display: none; }
    .hero-section { padding: 50px 0 36px; }
    .hero-headline { font-size: clamp(1.85rem, 8vw, 2.75rem); max-width: 230px; margin-bottom: 0.5rem; }

    .hero-deco--tr {
        top: 16%;
        left: 10%;
        right: auto;
        max-width: 40px;
    }

    .hero-deco--tl {
        top: -4%;
        right: 8%;
        left: auto;
        max-width: 50px;
    }


}

.framed {
    position: relative;
    display: inline-block;
    --framed-border: 3px;
    --framed-radius: 0.75rem;
    --framed-shadow-shift: 0.35rem;
}
.framed__border {
    position: relative;
    z-index: 1;
    padding: var(--framed-border);
    border-radius: var(--framed-radius);
    overflow: hidden;
    background:
        url("../images/border-bg-HtsJumS.svg") repeat-x left top / auto var(--framed-border),
        url("../images/border-bg-HtsJumS.svg") repeat-x left bottom / auto var(--framed-border),
        url("../images/border-bg-v-I3JMDdZ.svg") repeat-y left top / var(--framed-border) auto,
        url("../images/border-bg-v-I3JMDdZ.svg") repeat-y right top / var(--framed-border) auto;
}
.framed__border::after {
    content: '';
    position: absolute;
    inset: calc(var(--framed-border) - 1px);
    border-radius: calc(var(--framed-radius) - var(--framed-border) + -3px);
    background: var(--red);
    z-index: 0;
    pointer-events: none;
}
.framed__shadow {
    position: absolute;
    inset: 0;
    border-radius: var(--framed-radius);
    background: url("../images/shadow-bg-3KIjNj9.svg") repeat;
    background-size: 18rem;
    transform: translate(var(--framed-shadow-shift), var(--framed-shadow-shift));
    z-index: 0;
    pointer-events: none;
}
.framed__border > img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    object-fit: cover;
    border-radius: calc(var(--framed-radius) - var(--framed-border));
}
.framed__border > .framed__content {
    position: relative;
    z-index: 1;
    display: block;
    border-radius: calc(var(--framed-radius) - var(--framed-border));
    overflow: hidden;
}
.framed--white .framed__content {
    background: var(--cream);
    padding: clamp(2rem, 5vw, 3.5rem);
}
@media (max-width: 768px) {
    .framed { --framed-shadow-shift: 0.375rem; }
}

.form-section {
    padding: 3rem var(--gap);
    position: relative;
}
.form-card {
    max-width: var(--container-narrow);
    margin: 0 auto;
    display: block;
    --framed-shadow-shift: 0.625rem;
}
.form-section__bottle {
    display: none;
    position: absolute;
    left: -6%;
    bottom: -3%;
    height: clamp(15rem, 35vw, 20rem);
    pointer-events: none;
    z-index: 2;
}
@media (max-width: 768px) {
    .form-section__bottle { display: block; }
}

.form-heading {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--red);
    text-align: center;
    margin-bottom: 0.25rem;
    line-height: 1.1;
}
.form-subheading {
    text-align: center;
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    font-weight: 600;
    color: var(--red);
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; }
.form-label {
    font-size: clamp(0.85rem, 1.5vw, 1.1rem);
    font-weight: 700;
    color: var(--red);
    margin-bottom: 0.375rem;
}

.input-frame {
    --input-radius: 2rem;
    --input-border: 3px;
    position: relative;
    padding: var(--input-border);
    border-radius: var(--input-radius);
    overflow: hidden;
    background:
        url("../images/border-bg-HtsJumS.svg") repeat-x left top / auto var(--input-border),
        url("../images/border-bg-HtsJumS.svg") repeat-x left bottom / auto var(--input-border),
        url("../images/border-bg-v-I3JMDdZ.svg") repeat-y left top / var(--input-border) auto,
        url("../images/border-bg-v-I3JMDdZ.svg") repeat-y right top / var(--input-border) auto;
}
.input-frame::after {
    content: '';
    position: absolute;
    inset: calc(var(--input-border) - 2px);
    border-radius: calc(var(--input-radius) - var(--input-border) - 4px);
    background: var(--red);
    z-index: 0;
    pointer-events: none;
}
.input-frame--rounded { --input-radius: 1.9rem; }
.input-frame--rect { --input-radius: var(--radius); }

.form-control {
    position: relative;
    z-index: 1;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: calc(2rem - 3px);
    font-size: 1rem;
    background: var(--pink);
    color: var(--blue);
    width: 100%;
}
.form-control:focus {
    outline: 0;
}
.form-control.is-invalid { outline: 2px solid var(--red); outline-offset: 1px; }
.form-control::placeholder { color: rgb(202 0 24 / 30%); }
.invalid-feedback {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--red);
    margin-top: 0.375rem;
    padding: 0.25rem 0.75rem 0.25rem 0.5rem;
    background: rgb(202 0 24 / 8%);
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}
.invalid-feedback::before {
    content: '';
    display: inline-block;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23CA0018' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='8' x2='12' y2='12'/%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'/%3E%3C/svg%3E") no-repeat center / contain;
}
.input-frame:has(~ .invalid-feedback[style*="display"]),
.input-frame:has(.is-invalid) {
    box-shadow: 0 0 0 2px rgb(202 0 24 / 20%);
}
textarea.form-control {
    resize: none;
    min-height: 9.65rem;
    border-radius: calc(var(--radius) - 3px);
    height: 100%;
}

.photo-upload {
    position: relative;
    z-index: 1;
    border: none;
    border-radius: calc(var(--radius) - 3px);
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    background: var(--pink);
    height: 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.15s;
    overflow: hidden;
}
.photo-upload:hover, .photo-upload.dragover {
    background: repeating-linear-gradient(
        -45deg,
        var(--pink),
        var(--pink) 4px,
        rgb(202 0 24 / 6%) 4px,
        rgb(202 0 24 / 6%) 6px
    );
}
.photo-upload__icon {
    width: 3.5rem;
    height: auto;
    background: var(--pink);
    padding: 0.5rem;
    border-radius: 0.5rem;
}
.photo-upload__preview {
    max-height: 100%;
    max-width: 100%;
    border-radius: calc(var(--radius) - 4px);
    object-fit: contain;
}
.photo-upload__actions {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: flex;
    gap: 0.25rem;
    z-index: 2;
}
.photo-upload__btn {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    line-height: 1;
    cursor: pointer;
    border: none;
    transition: background 0.15s;
}
.photo-upload__btn svg { width: 0.85rem; height: 0.85rem; }
.photo-upload__btn:hover { background: var(--red-dark); }

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 1.25rem 0;
}
.form-check input[type="checkbox"] {
    width: 1.125rem;
    height: 1.125rem;
    margin-top: 2px;
    accent-color: var(--red);
    flex-shrink: 0;
}
.form-check-label { font-size: 0.85rem; color: var(--text-dark); }
.form-check-label a { color: var(--red); text-decoration: underline; }

.btn-submit-wrap {
    display: block;
    margin: 1.5rem auto 0;
    width: fit-content;
}
.btn-submit {
    position: relative;
    z-index: 1;
    display: block;
    padding: 0.75rem 2.5rem;
    border: none;
    border-radius: calc(2rem - 3px);
    background: var(--cream);
    color: var(--red);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.15s, color 0.15s, transform 0.1s;
    text-align: center;
}
.btn-submit:hover { background-color: var(--red); color: var(--white); }
.btn-submit:active { transform: scale(0.98); }

.form-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(245 244 240 / 0%);
    backdrop-filter: blur(0);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s, background 0.3s, backdrop-filter 0.3s;
    pointer-events: none;
}
.form-overlay.is-active {
    opacity: 1;
    background: rgb(245 244 240 / 85%);
    backdrop-filter: blur(6px);
    pointer-events: auto;
}
.form-overlay__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: clamp(8rem, 30vw, 14rem);
}
.form-overlay__icon {
    width: clamp(4rem, 10vw, 6rem);
    height: auto;
    animation: overlayPulse 1.2s ease-in-out infinite;
}
.form-overlay__progress {
    width: 100%;
    height: 12px;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background:
        url("../images/border-bg-HtsJumS.svg") repeat-x left top / auto 3px,
        url("../images/border-bg-HtsJumS.svg") repeat-x left bottom / auto 3px,
        url("../images/border-bg-v-I3JMDdZ.svg") repeat-y left center / 3px auto,
        url("../images/border-bg-v-I3JMDdZ.svg") repeat-y right center / 3px auto,
        var(--white);
}
.form-overlay__bar {
    height: calc(100% - 4px);
    width: 0;
    border-radius: 5px;
    background: var(--red);
    transition: width 0.3s ease;
}
.form-overlay.is-success .form-overlay__icon {
    animation: overlaySuccess 0.4s ease forwards;
}
@keyframes overlayPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.08); opacity: 1; }
}
@keyframes overlaySuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; overflow: hidden; }

.gallery-section {
    padding: 3.5rem 0 3rem;
    text-align: center;
    position: relative;
    max-width: var(--container-narrow);
    margin: 0 auto;
}
.gallery-title {
    font-family: var(--f-display);
    font-weight: 600;
    color: var(--red);
    margin-bottom: 2rem;
    line-height: 1.3;
    font-size: clamp(1.3rem, 3vw, 2rem);
}
.gallery-scroll-wrap {
    display: flex;
    gap: 0.75rem;
}
.gallery-scroll {
    flex: 1;
    max-height: 38rem;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
}
.gallery-scroll::-webkit-scrollbar { display: none; }

.gallery-scrollbar {
    width: 12px;
    flex-shrink: 0;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    background:
        url("../images/border-bg-HtsJumS.svg") repeat-x left top / auto 3px,
        url("../images/border-bg-HtsJumS.svg") repeat-x left bottom / auto 3px,
        url("../images/border-bg-v-I3JMDdZ.svg") repeat-y left center / 3px auto,
        url("../images/border-bg-v-I3JMDdZ.svg") repeat-y right center / 3px auto,
        var(--white);
}
.gallery-scrollbar__thumb {
    position: absolute;
    top: 0;
    left: 10%;
    margin: auto;
    width: calc(100% - 3px);
    min-height: 2rem;
    border-radius: 6px;
    cursor: grab;
    background: var(--red);
    transition: 0.05s linear;
}
.gallery-scrollbar__thumb:active { cursor: grabbing; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; } }

.gallery-item {
    border-radius: 0.5rem;
    overflow: hidden;
}
.gallery-item img {
    aspect-ratio: 3/4;
    object-fit: cover;
}
.gallery-item--skeleton {
    aspect-ratio: 3/4;
    border-radius: 0.5rem;
    background: rgb(255 255 255 / 50%);
    border: 2px solid rgb(202 0 24 / 10%);
}

.gallery-response-wrap {
    position: relative;
    margin-top: 1.5rem;
    text-align: center;
}
.gallery-response__deco {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(2.5rem, 6vw, 3.25rem);
    pointer-events: none;
    display: none;
}
@media (min-width: 769px) {
    .gallery-response__deco { display: block; }
}
.gallery-response {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: clamp(1.3rem, 3vw, 2rem);
    color: var(--red);
}

.gallery-bottle {
    position: absolute;
    pointer-events: none;
    z-index: 10;
    display: none;
}
.gallery-bottle--left {
    top: -6rem;
    left: -3rem;
    height: clamp(16rem, 20vw, 16rem);
    transform: rotate(-8deg);
}
@media (min-width: 769px) {
    .gallery-bottle { display: block; }
}
.gallery-deco {
    position: absolute;
    pointer-events: none;
    z-index: 5;
    width: clamp(2rem, 5vw, 3.5rem);
}
.gallery-deco--tr { top: 8%; right: 10%; }
.gallery-scroll { cursor: grab; user-select: none; }
.gallery-scroll:active { cursor: grabbing; }
.gallery-item { cursor: pointer; }
@media (min-width: 1200px) {
    .gallery-scroll {
        max-height: 55rem;
    }
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    pointer-events: none;
}
.lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: var(--pink);
}
.lightbox__content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}
.lightbox__frame {
    display: inline-block;
    --framed-radius: 0.75rem;
    --framed-shadow-shift: 0.5rem;
}
.lightbox__img {
    max-width: 80vw;
    max-height: 80vh;
    object-fit: contain;
}
.lightbox__name {
    font-family: var(--f-body);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--blue);
    margin-top: 0.75rem;
}
.lightbox__close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    width: 2rem;
    height: 2rem;
    color: var(--red);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}
.lightbox__close svg { width: 100%; height: 100%; }
.lightbox__close:hover { color: var(--red-dark); }
.hero-photos__deco { position: absolute; pointer-events: none; width: clamp(3.5rem, 7vw, 5.5rem); z-index: 3; }
.hero-photos__deco--tr {
    top: -3%;
    right: 9%;
}

.hero-photos__deco--bl {
    bottom: 14%;
    left: 14%;
    max-width: 42px;
}

.hero-photos__deco--bc {
    bottom: -8%;
    left: 36%;
    transform: translateX(-50%);
    width: 35px;
}

@media (max-width: 991px) { 
    .hero-photos__deco--bl {
        bottom: auto;
        left: 0;
        top: 0;
        max-width: 25px;
    }

    .hero-photos__deco--bc {
        left: 26%;
        width: 24px;
    }

    .hero-photos__deco--tr {
        top: 0;
        right: 0;
        max-width: 45px;
    }

    .hero-photo--2 {
        width: clamp(8rem, 35vw, 15rem);
    }

    .gallery-deco--tr {
        right: 5%;
    }

}

.section-heading {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--red);
    text-align: center;
    margin-bottom: 1.5rem;
}

.winners-section {
    padding: 0 var(--gap) 3.5rem;
    position: relative;
}
.winners-top { position: relative; }
.winners-bottle {
    position: absolute;
    pointer-events: none;
    z-index: 5;
}
.winners-bottle--pc {
    right: -1rem;
    bottom: 3rem;
    transform: rotate(5deg);
    display: none;
    height: 20rem;
}
.winners-bottle--mobile {
    right: 2.5rem;
    top: -15%;
    display: block;
    height: 11.25rem;
    transform: translateX(4rem);
}
@media (min-width: 769px) {
    .winners-bottle--pc { display: block; }
    .winners-bottle--mobile { display: none; }
}
.winners-deco {
    display: none;
    position: absolute;
    width: 2.5rem;
    pointer-events: none;
    left: 10%;
    top: 30%;
}
@media (max-width: 768px) { 
    .winners-deco { display: block; }
    .winners-section .container { padding-left: 0; padding-right: 0; }
}

.winners-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.winners-week-label {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--red);
}
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown .input-frame--rounded {
    --input-radius: 1.4rem;
}

.dropdown__toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--red);
    cursor: pointer;
    border: none;
    background: var(--cream);
    position: relative;
    min-width: 7rem;
    z-index: 1;
    border-radius: calc(2rem - 3px);
}
.dropdown__arrow {
    width: 0.75rem;
    height: 0.5rem;
    stroke: var(--red);
    transition: transform 0.15s;
    flex-shrink: 0;
}
.dropdown__toggle[aria-expanded="true"] .dropdown__arrow { transform: rotate(180deg); }
.dropdown__menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 12rem;
    border-radius: var(--radius-sm);
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.25rem);
    transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
    pointer-events: none;
}
.dropdown__menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.dropdown__menu-inner {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 0.375rem;
    position: relative;
    z-index: 2;
}
.dropdown__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    border-radius: 0.375rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.1s;
}
.dropdown__item:hover, .dropdown__item.is-focused { background: rgb(202 0 24 / 8%); }
.dropdown__item.is-selected { color: var(--red); }
.dropdown__item.is-selected .dropdown__badge--ready { background: var(--red); color: var(--white); aspect-ratio: 1; }
.dropdown__item[data-disabled="true"] {
    opacity: 0.5;
    cursor: default;
}
.dropdown__item[data-disabled="true"]:hover { background: none; }
.dropdown__item-label { flex: 1; }
.dropdown__badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.125rem 0.5rem;
    border-radius: 1rem;
    flex-shrink: 0;
}
.dropdown__badge--ready {
    background: rgb(202 0 24 / 10%);
    color: var(--red);
    display: flex;
    align-items: center;
    padding: 0.2rem;
}
.dropdown__badge--ready svg { width: 0.5rem; height: 0.5rem; }
.dropdown__badge--pending {
    background: rgb(0 0 0 / 5%);
    color: #aaa;
    font-weight: 400;
}
@media (max-width: 768px) {
    .winners-header { justify-content: center; flex-wrap: wrap; gap: 0.75rem; flex-direction: column-reverse; }
    .winners-week-label { width: 100%; text-align: center; }
    .dropdown__menu { right: auto; left: 50%; transform: translateX(-50%) translateY(-0.25rem); }
    .dropdown__menu.is-open { transform: translateX(-50%) translateY(0); }
}

.winners-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}
.winners-table tr {
    background:
        url("../images/border-bg-HtsJumS.svg") repeat-x left bottom / auto 3px;
}
.winners-table tr:last-child { background: none; }
.winners-table td {
    padding: 0.75rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--red);
}
.winners-table td:first-child { padding-left: 0.75rem; }
.winners-table td:last-child { text-align: right; padding-right: 0.75rem; }
.winners-empty {
    text-align: center;
    padding: 2rem;
    color: var(--red);
    font-size: 0.95rem;
    font-weight: 600;
}
.winners-empty__icon {
    width: 2.5rem;
    height: auto;
    margin: 0 auto 0.5rem;
}

.rules-section { padding: 3.5rem var(--gap); }

.rules-items {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}
.rules-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.rule-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.65rem;
    height: 1.65rem;
    font-weight: 600;
    font-family: var(--f-display);
    font-size: 0.9rem;
    letter-spacing: -0.5px;
    padding: .125rem;
    color: var(--red);
    margin-top: 0.25rem;
    position: relative;
    border-radius: var(--input-radius);
    overflow: hidden;
    background: url("../images/border-number-CAljfoN.svg") no-repeat center;
}

.rules-item p {
    font-family: var(--f-body);
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    font-weight: 600;
    line-height: 1.55;
    color: var(--red);
}

.rules-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rules-content > div {
    display: grid;
    grid-template-columns: 1.65rem minmax(0, 1fr);
    gap: 1rem;
    color: var(--red);
}
.rules-aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    max-height: max-content;
}
.rules-aside__bottle-pc, .rules-aside__bottle-mobile {
    pointer-events: none;
}

.rules-aside__bottle-mobile {
    display: none;
}
.rules-aside__deco {
    pointer-events: none;
    position: absolute;
}
.rules-aside__deco--top {
    width: clamp(3rem, 4vw, 4.5rem);
    margin-bottom: -0.5rem;
    top: 4rem;
    left: 4rem;
}

.rules-aside__deco--bottom {
    width: clamp(3rem, 4vw, 4.5rem);
    margin-top: -0.5rem;
    bottom: 4rem;
    right: 5rem;
}

.rules-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 20rem;
    gap: 1rem;
}

@media (max-width: 768px) {
    .rules-wrap {
        grid-template-columns: 1fr;
    }
    .rules-section .container { padding-left: 0; padding-right: 0; }
    .rules-content { flex-direction: column; }
    .rules-aside {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }
    .rules-aside__bottle-pc { display: none; }
    .rules-aside__bottle-mobile { display: block; height: 25rem; }
    .rules-aside__deco--top {
        top: 22%;
        right: 25%;
        left: unset;
        width: clamp(2.5rem, 5vw, 4.5rem);
    }
    
    .rules-aside__deco--bottom {
        left: 26%;
        bottom: 15%;
    }
}

.cta-section { padding: 0 var(--gap) 3.5rem; }
.cta-card {
    display: block;
    --framed-radius: 1rem;
    --framed-shadow-shift: 0.5rem;
}
.cta-content {
    background: var(--cream);
    border-radius: calc(1rem - 3px);
    padding: clamp(2rem, 5vw, 3rem);
    position: relative;
    z-index: 2;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 16rem;
    gap: 1rem;
}
.cta-headline {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--red);
    text-align: left;
    margin-bottom: 1.5rem;
    line-height: 1.05;
}
.cta-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-actions .input-frame::after {
    border-radius: calc(var(--input-radius) - var(--input-border) - 5px);
}

.btn-cta {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 0.625rem 1.75rem;
    border-radius: calc(2rem - 3px);
    color: var(--red);
    font-size: 1rem;
    font-weight: 700;
    background: var(--cream);
    text-align: center;
    transition: 0.15s;

}

.btn-cta:hover { background-color: var(--red); color: var(--white); }

.cta-deco {
    width: 2.5rem;
    pointer-events: none;
}
.cta-mascot {
    height: clamp(10rem, 20vw, 16rem);
    pointer-events: none;
}
@media (max-width: 768px) {
    .cta-headline { max-width: 100%; text-align: center; }
    .cta-section .container {
        padding-left: 0;
        padding-right: 0;
    }

    .cta-actions {
        justify-content: center;
    }

    ..cta-actions .input-frame {
        margin: auto;
    }

    .cta-content {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 1.5rem;
    }
}

.site-footer {
    padding: 2.5rem var(--gap) 2rem;
    text-align: center;
}
.site-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.footer-logo { height: 1.5rem; width: auto; }
.footer-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}
.footer-links a { color: var(--red); }
.footer-links a:hover { text-decoration: underline; }
.footer-copy {
    font-size: 0.75rem;
    color: rgb(202 0 24 / 50%);
}

.rules-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.rules-modal-overlay.is-open { display: flex; }
.rules-modal-box {
    background: var(--white);
    border-radius: var(--radius);
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    animation: modalBoxIn 0.25s ease;
}
@keyframes modalBoxIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.rules-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rules-modal-close:hover { color: var(--red); }

.cookie-banner {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    z-index: 900;
    max-width: 24rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    pointer-events: none;
}
.cookie-banner.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.cookie-banner .cookie-banner-content {
    background: var(--white);
    border-radius: calc(var(--framed-radius) - var(--framed-border));
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}
.cookie-banner-text h4 {
    font-family: var(--f-body);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.cookie-banner-text p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.cookie-banner-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.cookie-banner-btn {
    padding: 0.5rem 1rem;
    border-radius: 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.15s;
}
.cookie-banner-btn--accept { background: var(--red); color: var(--white); }
.cookie-banner-btn--accept:hover { background: var(--red-dark); }
.cookie-banner-btn--ghost { background: #eee; color: #555; }
.cookie-banner-btn--ghost:hover { background: #ddd; }
.cookie-banner-btn--outline { background: transparent; color: var(--red); border: 1px solid var(--red); }
.cookie-banner-btn--outline:hover { background: rgb(202 0 24 / 5%); }

.cookie-settings-overlay {
    position: fixed;
    inset: 0;
    background: var(--pink);
    z-index: 950;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.cookie-settings-overlay[hidden] { display: none; }
.cookie-settings-frame {
    max-width: 30rem;
    width: 100%;
    display: block;
}
.cookie-settings-box {
    background: var(--white);
    border-radius: calc(var(--framed-radius) - var(--framed-border));
    padding: 2rem;
    position: relative;
    z-index: 2;
    max-height: 85vh;
    overflow-y: auto;
}
.cookie-settings-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    color: var(--red);
    background: none;
    border: none;
    padding: 0;
}
.cookie-settings-close:hover { color: var(--red); }
.cookie-settings-title {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.cookie-settings-desc {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}
.cookie-option {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}
.cookie-option-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}
.cookie-option-label { font-weight: 600; font-size: 0.9rem; }
.cookie-option-desc { font-size: 0.8rem; color: #888; line-height: 1.4; }
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 2.75rem;
    height: 1.5rem;
    flex-shrink: 0;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.cookie-toggle-track {
    position: absolute;
    inset: 0;
    background: #ccc;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: background 0.2s;
}
.cookie-toggle-track::before {
    content: '';
    position: absolute;
    width: 1.125rem;
    height: 1.125rem;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: transform 0.2s;
}
.cookie-toggle input:checked + .cookie-toggle-track { background: var(--red); }
.cookie-toggle input:checked + .cookie-toggle-track::before { transform: translateX(1.25rem); }
.cookie-toggle input:disabled + .cookie-toggle-track { opacity: 0.6; cursor: default; }
.cookie-privacy-note {
    font-size: 0.8rem;
    color: #888;
    margin-top: 1rem;
    line-height: 1.4;
}
.cookie-privacy-note a { color: var(--red); text-decoration: underline; }
.cookie-settings-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.cookie-settings-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.15s;
}
.cookie-settings-btn--cancel { background: #eee; color: #555; }
.cookie-settings-btn--cancel:hover { background: #ddd; }
.cookie-settings-btn--save { background: var(--red); color: var(--white); }
.cookie-settings-btn--save:hover { background: var(--red-dark); }

.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    pointer-events: none;
}
.modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.modal__frame {
    width: 100%;
    display: block;
}
.modal__box {
    background: var(--white);
    border-radius: calc(var(--framed-radius) - var(--framed-border));
    padding: 2rem;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transition: transform 0.2s;
}
.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-size: 1.25rem;
}
.modal__close:hover { color: var(--red); }

.modal--center {
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.modal--center .modal__frame {
    max-width: 32rem;
    transform: translateY(-1rem);
}
.modal--center.is-open .modal__frame { transform: translateY(0); }

.modal--bottomsheet {
    align-items: flex-end;
}
.modal--bottomsheet .modal__frame {
    max-width: 100%;
    --framed-radius: var(--radius);
}
.modal--bottomsheet .framed__border {
    border-radius: var(--radius) var(--radius) 0 0;
}
.modal--bottomsheet .modal__box {
    border-radius: calc(var(--radius) - 3px) calc(var(--radius) - 3px) 0 0;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0));
    max-height: 85vh;
}
.modal--bottomsheet .modal__frame {
    transform: translateY(100%);
}
.modal--bottomsheet.is-open .modal__frame { transform: translateY(0); }
.modal--bottomsheet .modal__handle {
    width: 2.5rem;
    height: 0.25rem;
    background: #ccc;
    border-radius: 0.125rem;
    margin: 0 auto 1rem;
}

.locale-picker {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 800;
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.locale-picker--forced {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
}
.locale-picker__links { display: flex; gap: 8px; }
.locale-picker__link {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    background: #f5f5f5;
    transition: background 0.15s;
}
.locale-picker__link:hover { background: var(--red); color: var(--white); }

.success-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem var(--gap);
}
.success-card {
    display: block;
    --framed-shadow-shift: 0.5rem;
}
.success-content {
    background: var(--cream);
    border-radius: calc(var(--framed-radius) - var(--framed-border));
    padding: clamp(3rem, 8vw, 5rem) clamp(2rem, 5vw, 4rem);
    text-align: center;
    position: relative;
    z-index: 2;
}
.success-icon {
    width: clamp(4rem, 10vw, 6rem);
    height: auto;
    margin: 0 auto 1.5rem;
}
.success-heading {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--red);
    line-height: 1.05;
    margin-bottom: 0.75rem;
}
.success-message {
    font-size: 1rem;
    color: var(--red);
    margin-bottom: 2rem;
}
.success-link {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 0.625rem 1.75rem;
    border-radius: calc(2rem - 3px);
    color: var(--red);
    font-size: 1rem;
    font-weight: 700;
    background: var(--cream);
    text-align: center;
}
.success-link:hover { background-color: var(--red); color: var(--white); }

.toast-container {
    position: fixed;
    top: calc(var(--nav-h) + 0.75rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: max-content;
    max-width: calc(100% - 2 * var(--gap));
    pointer-events: none;
}
.toast {
    --toast-border: 3px;
    --toast-radius: 4px;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
    background:
        url("../images/border-bg-HtsJumS.svg") repeat-x left top / auto var(--toast-border),
        url("../images/border-bg-HtsJumS.svg") repeat-x left bottom / auto var(--toast-border),
        url("../images/border-bg-v-I3JMDdZ.svg") repeat-y left center / var(--toast-border) auto,
        url("../images/border-bg-v-I3JMDdZ.svg") repeat-y right center / var(--toast-border) auto;
    border-radius: var(--toast-radius);
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--red);
    animation: toastIn 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: opacity 0.2s, transform 0.2s;
}
.toast::after {
    content: '';
    position: absolute;
    inset: calc(var(--toast-border) - 1px);
    border-radius: calc(var(--toast-radius) - 2px);
    background: var(--white);
    z-index: 0;
    pointer-events: none;
}
.toast > * { position: relative; z-index: 1; }
.toast--error { color: var(--red); }
.toast--success { color: var(--blue); }
.toast__close {
    font-size: 1.1rem;
    line-height: 1;
    color: var(--red);
    opacity: 0.5;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}
.toast__close:hover { opacity: 1; }
@keyframes toastIn {
    from { opacity: 0; transform: translateY(-0.5rem); }
    to   { opacity: 1; transform: translateY(0); }
}

.legal-hero {
    padding: 2.5rem 0 1.5rem;
}
.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 1rem;
}
.legal-back svg { width: 1rem; height: 1rem; }
.legal-back:hover { text-decoration: underline; }
.legal-hero-title {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--red);
    line-height: 1.1;
}
.legal-body {
    padding: 0 0 4rem;
}
.legal-content h2 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    color: var(--red);
    margin: 2.5rem 0 0.75rem;
    line-height: 1.15;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
    margin-bottom: 0.85rem;
    line-height: 1.65;
    font-size: 0.95rem;
    color: var(--text-dark);
}
.legal-content em { color: var(--red-dark); }
.legal-content strong { font-weight: 700; }
.legal-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.legal-content ul li {
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
    line-height: 1.55;
}
.legal-content a {
    color: var(--red);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.legal-content a:hover { color: var(--red-dark); }
.legal-content .table-responsive {
    overflow-x: auto;
    margin: 1.25rem 0;
    border-radius: var(--radius-sm);
}
.legal-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.legal-content thead th {
    background: var(--red);
    color: var(--white);
    font-weight: 600;
    text-align: left;
    padding: 0.65rem 0.85rem;
    white-space: nowrap;
}
.legal-content tbody td {
    padding: 0.6rem 0.85rem;
    border-bottom: 1px solid rgb(202 0 24 / 8%);
    vertical-align: top;
}
.legal-content tbody tr:last-child td { border-bottom: none; }
.legal-content tbody tr:nth-child(even) { background: rgb(202 0 24 / 3%); }
.legal-updated {
    margin-top: 2.5rem;
    font-size: 0.8rem;
    color: rgb(202 0 24 / 40%);
}

.login-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem var(--gap);
}
.login-card {
    display: block;
    max-width: 38rem;
    margin: 0 auto;
    --framed-shadow-shift: 0.5rem;
}
.login-content {
    background: var(--cream);
    border-radius: calc(var(--framed-radius) - var(--framed-border));
    padding: clamp(2.5rem, 6vw, 3.5rem) clamp(2.5rem, 6vw, 4rem);
    text-align: center;
}
.login-title {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--red);
    margin-bottom: 1.5rem;
}
.login-content .form-group { margin-bottom: 1rem; text-align: left; }
.login-content .form-label { font-size: 0.85rem; font-weight: 600; color: var(--red); margin-bottom: 0.25rem; display: block; }
.login-error {
    background: rgb(202 0 24 / 8%);
    color: var(--red);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
}
.login-already {
    font-size: 0.95rem;
    color: var(--text-dark);
}
.login-already a { color: var(--red); font-weight: 600; text-decoration: underline; }
.login-remember {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin: 1rem 0 1.5rem;
    cursor: pointer;
}
.login-remember input {
    -webkit-appearance: none;
    appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    background:
        url("../images/border-bg-HtsJumS.svg") repeat-x left top / auto 2px,
        url("../images/border-bg-HtsJumS.svg") repeat-x left bottom / auto 2px,
        url("../images/border-bg-v-I3JMDdZ.svg") repeat-y left center / 2px auto,
        url("../images/border-bg-v-I3JMDdZ.svg") repeat-y right center / 2px auto,
        var(--white);
    cursor: pointer;
}
.login-remember input::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 1px;
    background: var(--white);
    z-index: 0;
    scale: 105%;
}
.login-remember input:checked::after {
    background: var(--red);
}
.login-remember input:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.4rem;
    height: 0.7rem;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -55%) rotate(45deg);
    z-index: 1;
}
.login-content .btn-submit { width: 100%; }

.error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem var(--gap);
    background: var(--pink);
}
.error-logo {
    display: block;
    height: 2rem;
    margin: 0 auto 2rem;
}
.error-card {
    display: block;
    max-width: 28rem;
    margin: 0 auto;
    --framed-shadow-shift: 0.5rem;
}
.error-content {
    background: var(--cream);
    border-radius: calc(var(--framed-radius) - var(--framed-border));
    padding: clamp(3rem, 8vw, 5rem) clamp(2rem, 5vw, 4rem);
    text-align: center;
    position: relative;
    z-index: 2;
}
.error-code {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(4rem, 12vw, 6rem);
    color: var(--red);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.error-heading {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--red);
    line-height: 1.15;
    margin-bottom: 0.5rem;
}
.error-message {
    font-size: 0.95rem;
    color: var(--red);
    margin-bottom: 2rem;
}
.error-link {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 0.625rem 1.75rem;
    border-radius: calc(2rem - 3px);
    color: var(--red);
    font-size: 1rem;
    font-weight: 700;
    background: var(--cream);
    text-align: center;
}
.error-link:hover { background-color: var(--red); color: var(--white); }

.coming-soon-mascot {
    width: clamp(10rem, 30vw, 16rem);
    height: auto;
    margin: 0 auto 1.5rem;
}

.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.flex-grow-1 { flex-grow: 1; }
.min-vh-100 { min-height: 100vh; }
.position-relative { position: relative; }
.text-center { text-align: center; }
.visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.turnstile-container { display: flex; justify-content: center; margin: 16px 0; }
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }
.bubble { position: absolute; border-radius: 50%; background: rgba(227, 30, 36, 0.08); pointer-events: none; }
