
:root {
    --coral:      #F87B6E;
    --coral-light:#FFBDB7;
    --coral-pale: #FFF0EF;
    --navy:       #1A2744;
    --soft-navy:  #2D3F6B;
    --cream:      #FDFAF7;
    --gold:       #F5C842;
}

*, *::before, *::after { box-sizing: border-box; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    }
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--cream);
    color: var(--navy);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.headline {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -1px;
}

/* ── Focus ring ── */
:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 3px;
    border-radius: 6px;
}

/* ═══════════════ NAV ═══════════════ */
.navbar {
    position: sticky; top: 0; z-index: 50;
    background: rgba(253,250,247,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(248,123,110,0.12);
}
.nav-link {
    position: relative;
    font-weight: 700;
    font-size: 14.5px;
    color: var(--soft-navy);
    transition: color 0.2s;
    padding-bottom: 4px;
    text-decoration: none;
}
.nav-link::after {
    content: '';
    position: absolute; left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: var(--coral);
    border-radius: 2px;
    transition: width 0.25s ease;
}
.nav-link:hover { color: var(--coral); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
    background: var(--coral); color: white;
    font-weight: 800; font-size: 14px;
    padding: 10px 24px; border-radius: 50px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}
.nav-cta:hover {
    background: #e5665a; transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(248,123,110,0.3);
}

/* ═══════════════ HERO ═══════════════ */
.hero-bg {
    position: relative;
    background:
    radial-gradient(circle at 12% 15%, rgba(248,123,110,0.10) 0%, transparent 45%),
    radial-gradient(circle at 88% 30%, rgba(245,200,66,0.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(45,63,107,0.04) 0%, transparent 50%);
}

.sparkle {
    display: inline-block;
    animation: sparkleAnim 2.6s ease-in-out infinite;
    will-change: transform, opacity;
}
.sparkle:nth-child(2) { animation-delay: 0.9s; }
.sparkle:nth-child(3) { animation-delay: 1.8s; }
@keyframes sparkleAnim {
    0%,100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50%     { transform: scale(1.25) rotate(15deg); opacity: 0.85; }
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}

.hero-photo-frame {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 60px -12px rgba(26,39,68,0.18), 0 0 0 8px white, 0 0 0 9px rgba(248,123,110,0.18);
}
.hero-photo-frame img {
    display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3;
}

.gallery-frame {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px -8px rgba(26,39,68,0.15), 0 0 0 5px white, 0 0 0 6px rgba(248,123,110,0.15);
    aspect-ratio: 1/1;
}
.gallery-frame img {
    display: block; width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-frame:hover img { transform: scale(1.06); }

.float-badge {
    position: absolute;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 32px rgba(26,39,68,0.12);
    animation: floatBadge 5s ease-in-out infinite;
    will-change: transform;
}
@keyframes floatBadge {
    0%,100% { transform: translateY(0px) rotate(var(--rot,0deg)); }
    50%     { transform: translateY(-12px) rotate(var(--rot,0deg)); }
}

/* ═══════════════ WAVE DIVIDER (signature element) ═══════════════ */
.wave-divider {
    display: block;
    width: 100%;
    height: 60px;
}

/* ═══════════════ CARDS / SECTIONS ═══════════════ */
.info-card {
    background: white; border-radius: 20px;
    border: 1.5px solid rgba(248,123,110,0.15);
    box-shadow: 0 4px 24px rgba(26,39,68,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(248,123,110,0.14);
}

.feature-icon {
    width: 56px; height: 56px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
}

/* ═══════════════ FORM ═══════════════ */
.notify-input {
    border: 2px solid rgba(248,123,110,0.25);
    border-radius: 50px; padding: 14px 24px;
    font-family: 'Nunito', sans-serif; font-size: 15px;
    outline: none; transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%; background: white; color: var(--navy);
}
.notify-input:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 4px rgba(248,123,110,0.1);
}
.notify-btn {
    background: var(--coral); color: white; border: none;
    border-radius: 50px; padding: 14px 32px;
    font-family: 'Nunito', sans-serif; font-weight: 800;
    font-size: 15px; cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    text-decoration: none;
    text-align: center;
}
.notify-btn:hover {
    background: #e5665a; transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(248,123,110,0.35);
}
.notify-btn:active { transform: translateY(0); }
.notify-btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }


/* ═══════════════ GLASSY CONTACT MODAL + FORM ═══════════════ */
.modal-open { overflow: hidden; }

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
    overflow-x: hidden;
}

.contact-modal.is-open {
    display: flex;
}

.contact-modal-backdrop {
    position: absolute;
    inset: 0;
    background:
    radial-gradient(circle at 18% 20%, rgba(248,123,110,0.30), transparent 34%),
    radial-gradient(circle at 82% 80%, rgba(245,200,66,0.22), transparent 32%),
    rgba(26,39,68,0.70);
    backdrop-filter: blur(16px) saturate(1.12);
    -webkit-backdrop-filter: blur(16px) saturate(1.12);
    opacity: 0;
    transition: opacity 0.24s ease;
}

.contact-modal.is-open .contact-modal-backdrop {
    opacity: 1;
}

.contact-modal-panel {
    position: relative;
    width: min(100%, 980px);
    max-width: calc(100vw - 44px);
    max-height: min(92vh, 820px);
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 34px;
    background:
    linear-gradient(135deg, rgba(255,255,255,0.82), rgba(255,249,248,0.58)),
    radial-gradient(circle at 10% 12%, rgba(255,189,183,0.36), transparent 32%),
    radial-gradient(circle at 92% 86%, rgba(245,200,66,0.22), transparent 34%);
    border: 1.5px solid rgba(255,255,255,0.50);
    box-shadow:
    0 34px 100px rgba(0,0,0,0.32),
    inset 0 1px 0 rgba(255,255,255,0.68);
    backdrop-filter: blur(24px) saturate(1.22);
    -webkit-backdrop-filter: blur(24px) saturate(1.22);
    transform: translateY(18px) scale(0.97);
    opacity: 0;
    transition: transform 0.26s ease, opacity 0.26s ease;
    scrollbar-width: thin;
    scrollbar-color: rgba(248,123,110,0.55) rgba(255,255,255,0.55);
}

.contact-modal.is-open .contact-modal-panel {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.contact-shell {
    isolation: isolate;
    max-width: 100%;
    overflow-x: hidden;
}

.contact-shell::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.35);
    pointer-events: none;
    z-index: 0;
}

.contact-shell::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    right: -80px;
    top: -90px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(248,123,110,0.36), rgba(248,123,110,0.02) 68%);
    filter: blur(4px);
    pointer-events: none;
    z-index: 0;
}

.contact-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 20;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.52);
    background: rgba(255,255,255,0.44);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 12px 30px rgba(26,39,68,0.14);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-modal-close:hover {
    transform: rotate(90deg) scale(1.05);
    background: white;
    box-shadow: 0 16px 36px rgba(26,39,68,0.18);
}

.contact-mini-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.36), transparent 28%),
    linear-gradient(145deg, rgba(255,240,239,0.92), rgba(255,255,255,0.54));
    border: 1.5px solid rgba(255,255,255,0.58);
    box-shadow:
    0 18px 50px rgba(26,39,68,0.10),
    inset 0 1px 0 rgba(255,255,255,0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.contact-mini-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    left: -55px;
    bottom: -55px;
    border-radius: 999px;
    background: rgba(248,123,110,0.18);
    filter: blur(8px);
    pointer-events: none;
}

.contact-mini-card::after {
    content: "✦";
    position: absolute;
    right: 24px;
    bottom: 18px;
    color: rgba(248,123,110,0.18);
    font-size: 58px;
    line-height: 1;
    pointer-events: none;
}

.contact-modal-kicker {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.48);
    color: var(--coral);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.48);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-label {
    display: block;
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.2px;
}

.contact-input,
.contact-select,
.contact-textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border: 1.5px solid rgba(248,123,110,0.22);
    border-radius: 18px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.62);
    color: var(--navy);
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 700;
    outline: none;
    box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 10px 26px rgba(26,39,68,0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: rgba(90,106,138,0.68);
    font-weight: 600;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
    border-color: var(--coral);
    background: rgba(255,255,255,0.86);
    box-shadow:
    0 0 0 4px rgba(248,123,110,0.13),
    0 14px 34px rgba(248,123,110,0.10);
    transform: translateY(-1px);
}

.contact-select {
    appearance: none;
    background-image:
    linear-gradient(45deg, transparent 50%, var(--coral) 50%),
    linear-gradient(135deg, var(--coral) 50%, transparent 50%);
    background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 42px;
}

.contact-textarea {
    min-height: 130px;
    resize: vertical;
    line-height: 1.7;
}

.contact-submit-btn {
    border: none;
    border-radius: 999px;
    padding: 15px 34px;
    background: linear-gradient(135deg, var(--coral), #ff9a8f);
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    white-space: nowrap;
    box-shadow:
    0 14px 34px rgba(248,123,110,0.34),
    inset 0 1px 0 rgba(255,255,255,0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow:
    0 18px 44px rgba(248,123,110,0.42),
    inset 0 1px 0 rgba(255,255,255,0.32);
    filter: saturate(1.08);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

.contact-submit-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.modal-social-link {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 900;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.46);
    border: 1px solid rgba(255,255,255,0.52);
    box-shadow: 0 10px 26px rgba(26,39,68,0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.modal-social-link:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.80);
    box-shadow: 0 14px 32px rgba(26,39,68,0.11);
}

.modal-social-icon {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: rgba(255,255,255,0.74);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.78);
}



/* Prevent horizontal scrollbar inside the contact modal */
.contact-modal,
.contact-modal *,
.contact-modal *::before,
.contact-modal *::after {
    box-sizing: border-box;
}

.contact-modal .grid,
.contact-modal aside,
.contact-modal form,
#contactForm {
    min-width: 0;
    max-width: 100%;
}

.contact-shell::before,
.contact-shell::after,
.contact-mini-card::before,
.contact-mini-card::after {
    max-width: 100%;
}

@media (max-width: 768px) {
    .contact-modal {
    padding: 12px;
    align-items: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
    }

    .contact-modal-panel {
    width: 100%;
    max-width: calc(100vw - 24px);
    margin: 18px 0;
    border-radius: 28px;
    max-height: none;
    overflow-x: hidden;
    }

    .contact-modal .grid {
    grid-template-columns: 1fr !important;
    }

    .contact-mini-card,
    #contactForm {
    min-width: 0;
    width: 100%;
    }

    .contact-modal-close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    }

    .contact-mini-card {
    border-radius: 24px;
    }
}

.success-msg, .error-msg {
    display: none; font-weight: 700; font-size: 14px;
    margin-top: 8px; text-align: center;
}
.success-msg { color: #2ecc71; }
.error-msg   { color: #e74c3c; }

/* ═══════════════ FADE-IN ═══════════════ */
.fade-up {
    opacity: 0; transform: translateY(24px);
    animation: fadeUp 0.7s ease forwards;
    will-change: opacity, transform;
}
.fade-up.d1 { animation-delay: 0.05s; }
.fade-up.d2 { animation-delay: 0.2s; }
.fade-up.d3 { animation-delay: 0.35s; }
.fade-up.d4 { animation-delay: 0.5s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* Scroll reveal for below-fold sections */
.reveal {
    opacity: 0; transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
    opacity: 1; transform: translateY(0);
}

/* Skip link */
.skip-link {
    position: absolute; top: -40px; left: 0;
    background: var(--coral); color: white;
    padding: 8px 16px; border-radius: 0 0 8px 0;
    font-weight: 800; z-index: 9999;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Mobile menu */
#mobileMenu { display: none; }
#mobileMenu.open { display: block; }

.contact-preview-card {
position: relative;
overflow: hidden;
border-radius: 34px;
background:
radial-gradient(circle at 16% 18%, rgba(255,189,183,0.34) 0%, transparent 32%),
radial-gradient(circle at 86% 78%, rgba(245,200,66,0.22) 0%, transparent 34%),
linear-gradient(135deg, #1A2744 0%, #263963 48%, #F87B6E 145%);
border: 1.5px solid rgba(255,255,255,0.18);
box-shadow:
0 28px 80px rgba(26,39,68,0.28),
inset 0 1px 0 rgba(255,255,255,0.18);
}

.contact-preview-card::before {
content: "";
position: absolute;
inset: 14px;
border-radius: 26px;
border: 1px solid rgba(255,255,255,0.12);
pointer-events: none;
}

.contact-preview-card::after {
content: "";
position: absolute;
width: 170px;
height: 170px;
right: -70px;
top: -70px;
background: rgba(255,255,255,0.12);
border-radius: 999px;
pointer-events: none;
}

.contact-glow {
position: absolute;
border-radius: 999px;
filter: blur(40px);
pointer-events: none;
}

.contact-glow-one {
width: 150px;
height: 150px;
background: rgba(248,123,110,0.45);
left: -45px;
bottom: -45px;
}

.contact-glow-two {
width: 120px;
height: 120px;
background: rgba(245,200,66,0.28);
right: 12%;
top: 16%;
}

.contact-mini-badge {
position: relative;
z-index: 1;
width: 68px;
height: 68px;
border-radius: 22px;
display: flex;
align-items: center;
justify-content: center;
font-size: 30px;
background:
    linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,240,239,0.92));
box-shadow:
    0 16px 34px rgba(0,0,0,0.16),
    0 0 0 7px rgba(255,255,255,0.08);
transform: rotate(-4deg);
}

.contact-eyebrow {
position: relative;
z-index: 1;
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 12px;
font-weight: 900;
color: var(--coral-light);
letter-spacing: 2px;
text-transform: uppercase;
}

.contact-eyebrow::before,
.contact-eyebrow::after {
content: "✦";
color: var(--gold);
font-size: 12px;
}

.contact-primary-btn,
.contact-secondary-btn,
.contact-social-link {
position: relative;
z-index: 1;
}

.contact-primary-btn {
border: none;
border-radius: 999px;
padding: 15px 34px;
background: white;
color: var(--navy);
font-family: 'Nunito', sans-serif;
font-size: 15px;
font-weight: 900;
cursor: pointer;
box-shadow: 0 14px 30px rgba(0,0,0,0.16);
transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-primary-btn:hover {
transform: translateY(-3px);
background: var(--coral-pale);
box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}

.contact-secondary-btn {
border-radius: 999px;
padding: 15px 28px;
background: rgba(255,255,255,0.10);
color: white;
font-family: 'Nunito', sans-serif;
font-size: 15px;
font-weight: 900;
text-decoration: none;
border: 1.5px solid rgba(255,255,255,0.20);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.contact-secondary-btn:hover {
transform: translateY(-3px);
background: rgba(255,255,255,0.16);
border-color: rgba(255,255,255,0.35);
}

.contact-social-row {
position: relative;
z-index: 1;
border-top: 1px solid rgba(255,255,255,0.14);
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 14px;
}

.contact-social-link {
display: inline-flex;
align-items: center;
gap: 8px;
color: rgba(255,255,255,0.82);
text-decoration: none;
font-size: 14px;
font-weight: 800;
padding: 10px 16px;
border-radius: 999px;
background: rgba(255,255,255,0.08);
border: 1px solid rgba(255,255,255,0.10);
transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.contact-social-link:hover {
transform: translateY(-2px);
background: rgba(255,255,255,0.14);
color: white;
}

/* ═══════════════ PRELOADER ═══════════════ */
.site-preloader {
position: fixed;
inset: 0;
z-index: 10000;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
background:
radial-gradient(circle at 18% 18%, rgba(248,123,110,0.20), transparent 34%),
radial-gradient(circle at 84% 80%, rgba(245,200,66,0.18), transparent 32%),
linear-gradient(135deg, #FDFAF7 0%, #FFF0EF 48%, #ffffff 100%);
transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-preloader.preloader-hidden {
opacity: 0;
visibility: hidden;
pointer-events: none;
}

.preloader-card {
position: relative;
width: min(100%, 380px);
padding: 34px 28px;
text-align: center;
border-radius: 34px;
background: rgba(255,255,255,0.62);
border: 1.5px solid rgba(255,255,255,0.65);
box-shadow:
0 30px 90px rgba(26,39,68,0.18),
inset 0 1px 0 rgba(255,255,255,0.8);
backdrop-filter: blur(22px) saturate(1.15);
-webkit-backdrop-filter: blur(22px) saturate(1.15);
overflow: hidden;
}

.preloader-card::before {
content: "";
position: absolute;
width: 180px;
height: 180px;
left: -70px;
top: -70px;
border-radius: 999px;
background: rgba(248,123,110,0.18);
filter: blur(10px);
}

.preloader-card::after {
content: "✦";
position: absolute;
right: 28px;
bottom: 18px;
color: rgba(248,123,110,0.18);
font-size: 56px;
line-height: 1;
}

.preloader-logo-wrap {
position: relative;
z-index: 1;
width: 96px;
height: 96px;
margin: 0 auto 18px;
display: flex;
align-items: center;
justify-content: center;
}

.preloader-logo {
position: relative;
z-index: 2;
width: 82px;
height: 82px;
object-fit: cover;
border-radius: 999px;
border: 3px solid white;
box-shadow: 0 16px 34px rgba(26,39,68,0.16);
}

.preloader-pulse {
position: absolute;
inset: 0;
border-radius: 999px;
background: rgba(248,123,110,0.20);
animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
0% {
transform: scale(0.82);
opacity: 0.75;
}
70% {
transform: scale(1.18);
opacity: 0;
}
100% {
transform: scale(1.18);
opacity: 0;
}
}

.preloader-title {
position: relative;
z-index: 1;
color: var(--navy);
font-size: 2rem;
margin-bottom: 8px;
}

.preloader-text {
position: relative;
z-index: 1;
color: #5a6a8a;
font-size: 15px;
font-weight: 800;
}

.preloader-bar {
position: relative;
z-index: 1;
height: 9px;
width: 100%;
margin-top: 24px;
border-radius: 999px;
background: rgba(248,123,110,0.14);
overflow: hidden;
}

.preloader-bar span {
display: block;
height: 100%;
width: 45%;
border-radius: 999px;
background: linear-gradient(90deg, var(--coral), var(--coral-light), var(--gold));
animation: preloaderMove 1.2s ease-in-out infinite;
}

@keyframes preloaderMove {
0% {
transform: translateX(-120%);
}
100% {
transform: translateX(230%);
}
}

/* ═══════════════ SMALL COOKIE POPUP - BOTTOM RIGHT ═══════════════ */
.cookie-modal {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9998;
    display: none;
    width: min(360px, calc(100vw - 32px));
    pointer-events: none;
}

.cookie-modal.is-visible {
    display: block;
}

.cookie-card {
    pointer-events: auto;
    width: 100%;
    display: block;
    padding: 18px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 12% 18%, rgba(255,189,183,0.30), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,249,248,0.78));
    border: 1.5px solid rgba(255,255,255,0.68);
    box-shadow:
        0 18px 55px rgba(0,0,0,0.20),
        inset 0 1px 0 rgba(255,255,255,0.78);
    backdrop-filter: blur(18px) saturate(1.12);
    -webkit-backdrop-filter: blur(18px) saturate(1.12);
    animation: cookiePopIn 0.35s ease both;
}

@keyframes cookiePopIn {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cookie-icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    background: var(--coral-pale);
    box-shadow: 0 10px 24px rgba(248,123,110,0.14);
    margin-bottom: 12px;
}

.cookie-kicker {
    display: inline-flex;
    color: var(--coral);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.cookie-content h3 {
    color: var(--navy);
    font-size: 1.05rem;
    letter-spacing: -0.2px;
    margin-bottom: 6px;
}

.cookie-content p {
    color: #5a6a8a;
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 9px;
    margin-top: 14px;
}

.cookie-btn {
    flex: 1;
    border: none;
    border-radius: 999px;
    padding: 10px 14px;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.cookie-accept {
    background: var(--coral);
    color: white;
    box-shadow: 0 10px 24px rgba(248,123,110,0.28);
}

.cookie-accept:hover {
    background: #e5665a;
    box-shadow: 0 14px 30px rgba(248,123,110,0.35);
}

.cookie-decline {
    background: rgba(26,39,68,0.08);
    color: var(--navy);
}

.cookie-decline:hover {
    background: rgba(26,39,68,0.12);
}

@media (max-width: 640px) {
    .cookie-modal {
        right: 12px;
        bottom: 12px;
        width: calc(100vw - 24px);
    }

    .cookie-card {
        border-radius: 20px;
        padding: 16px;
    }
}

body.is-loading {
  overflow: hidden;
}
