/* ==========================================
   Design System
   ========================================== */
:root {
    --bg-deep: #0b1a16;      /* Extremely deep jewel green */
    --bg-soft: #122b24;      /* Deep jewel forest */
    --surface: rgba(255, 255, 255, 0.05);
    --surface-hover: rgba(255, 255, 255, 0.08);
    --border: rgba(212, 175, 106, 0.2);
    --border-strong: rgba(212, 175, 106, 0.4);

    --text: #e6f0ed;         /* Soft minty white */
    --text-muted: #9abfae;
    --text-dark: #0b1a16;

    --accent: #d4af6a;        /* muted warm gold */
    --accent-soft: #f2ce8a;
    --rose: #c98a9e;          /* dusty rose */
    --teal: #1d7874;          /* Jewel teal */
    --lavender: #b39ddb;

    --font-serif: 'Fraunces', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius: 12px;
    --radius-lg: 24px;
    --max-width: 960px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-deep);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
    font-size: 18px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtle ambient background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 10%, rgba(29, 120, 116, 0.15), transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(201, 138, 158, 0.12), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

#magicParticles {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.35;
}

/* ==========================================
   Typography
   ========================================== */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--text);
}

a {
    color: var(--accent-soft);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent);
}

/* ==========================================
   Navigation
   ========================================== */
.top-nav {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.02em;
}

.sparkle-icon {
    display: none;
}

.nav-title {
    font-style: italic;
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}

.nav-link:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.btn-admin {
    display: none;
}

/* ==========================================
   Hero
   ========================================== */
.hero {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 3rem 2rem 5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.main-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 300;
    color: var(--text);
    line-height: 1.05;
    margin-bottom: 0.5rem !important;
    letter-spacing: -0.02em;
}

.sub-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    color: var(--accent);
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
}

.hero-text {
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.hero-image-wrapper {
    position: relative;
    max-width: 520px;
    margin: 0 auto 4rem;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    border: 1px solid var(--border);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}

.glow-effect {
    display: none;
}

/* ==========================================
   Countdown
   ========================================== */
.countdown-container {
    max-width: 520px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.countdown-container h3 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.time-box span {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.02em;
}

.time-box label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.6rem;
    letter-spacing: 0.15em;
    font-weight: 500;
}

/* ==========================================
   Event Details
   ========================================== */
.event-details {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1px;
    max-width: var(--max-width);
    margin: 0 auto 6rem;
    padding: 0 2rem;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.event-details {
    background: transparent;
    border: none;
    gap: 2rem;
}

.detail-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.detail-card:hover {
    border-color: var(--border-strong);
    background: var(--surface-hover);
}

.detail-card .icon {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    opacity: 0.75;
    filter: grayscale(0.2);
}

.detail-card h3 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.detail-card p {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.detail-card p strong {
    font-weight: 500;
}

.detail-card em {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

.map-container {
    margin-top: 1.25rem !important;
    margin-bottom: 0 !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
}

.map-container iframe {
    filter: grayscale(0.4) brightness(0.85) !important;
}

.map-link {
    display: inline-block;
    margin-top: 1rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-bottom: 1px solid var(--border-strong);
    padding-bottom: 2px;
}

.map-link:hover {
    color: var(--accent-soft);
    border-bottom-color: var(--accent);
}

/* ==========================================
   Adventure Zones — Cycle Layout
   ========================================== */
.zones-cycle {
    position: relative;
    width: min(640px, 92vw);
    aspect-ratio: 1 / 1;
    margin: 0 auto 6rem;
    z-index: 10;
}

.zones-cycle .cycle-ring {
    position: absolute;
    inset: 22%;
    border: 1.5px dashed var(--border-strong);
    border-radius: 50%;
    animation: cycleSpin 60s linear infinite;
}

.zones-cycle .cycle-ring::before,
.zones-cycle .cycle-ring::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
}

.zones-cycle .cycle-ring::before {
    top: -1px;
    right: 12%;
    transform: rotate(45deg);
}

.zones-cycle .cycle-ring::after {
    bottom: -1px;
    left: 12%;
    transform: rotate(225deg);
}

@keyframes cycleSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.zones-cycle .cycle-center {
    position: absolute;
    inset: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
}

.zones-cycle .cycle-center-label {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--accent);
    opacity: 0.85;
}

.zones-cycle .cycle-card {
    position: absolute;
    width: 38%;
    padding: 1.25rem 1rem;
}

.zones-cycle .cycle-card h3 {
    margin-bottom: 0.5rem;
}

.zones-cycle .cycle-card .icon {
    margin-bottom: 0.5rem;
}

.zones-cycle .cycle-card p {
    font-size: 0.85rem;
    line-height: 1.45;
    margin-bottom: 0;
}

.zones-cycle .cycle-card-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.zones-cycle .cycle-card-right {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.zones-cycle .cycle-card-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.zones-cycle .cycle-card-left {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

@media (max-width: 720px) {
    .zones-cycle {
        width: 100%;
        max-width: 520px;
        aspect-ratio: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    .zones-cycle .cycle-ring,
    .zones-cycle .cycle-center {
        display: none;
    }
    .zones-cycle .cycle-card {
        position: static;
        width: auto;
        transform: none;
    }
}

/* ==========================================
   RSVP
   ========================================== */
.rsvp-section {
    position: relative;
    z-index: 10;
    padding: 2rem 2rem 6rem;
    max-width: 600px;
    margin: 0 auto;
}

.rsvp-card {
    position: relative;
    z-index: 2;
    background: #0e2019;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    color: var(--text);
    isolation: isolate;
}

.magical-border {
    position: relative;
}

.magical-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-lg) + 2px);
    background: linear-gradient(135deg, var(--teal), var(--accent), var(--rose));
    z-index: -1;
    opacity: 0.55;
    filter: blur(4px);
    animation: borderGlow 8s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% { filter: blur(4px); opacity: 0.45; }
    100% { filter: blur(6px); opacity: 0.65; }
}

@media (prefers-reduced-motion: reduce) {
    .magical-border::before {
        animation: none;
        opacity: 0.5;
        filter: blur(4px);
    }
}

.card-glow-inner {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 40px rgba(212, 175, 106, 0.05);
    pointer-events: none;
}

.card-glow {
    display: none;
}

.rsvp-card h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.rsvp-subtitle {
    text-align: center;
    color: var(--text);
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.75rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.7rem;
    color: #f4faf7;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid rgba(212, 175, 106, 0.55);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 1.05rem;
    background: #050e0b;
    color: #ffffff;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

input::placeholder,
textarea::placeholder {
    color: rgba(230, 240, 237, 0.65);
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-color: var(--accent);
    background: #000000;
    box-shadow: 0 0 0 1px var(--accent);
}

@media (prefers-contrast: more) {
    .rsvp-card {
        background: #000000;
        border-color: #ffffff;
    }
    .magical-border::before {
        display: none;
    }
    .form-group label,
    .rsvp-card h2,
    .rsvp-subtitle {
        color: #ffffff !important;
    }
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        background: #000000;
        border: 2px solid #ffffff;
        color: #ffffff;
    }
    input::placeholder,
    textarea::placeholder {
        color: rgba(255, 255, 255, 0.85);
    }
}

textarea {
    resize: vertical;
    min-height: 80px;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    border-right: 1.5px solid var(--text-muted);
    border-bottom: 1.5px solid var(--text-muted);
    pointer-events: none;
}

select {
    appearance: none;
    cursor: pointer;
}

select option {
    background: var(--bg-soft);
    color: var(--text);
}

/* Radio Buttons */
.radio-group {
    display: flex;
    gap: 1rem;
    margin-top: 0.25rem;
}

.radio-label {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem !important;
    color: var(--text) !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-weight: 400 !important;
    margin-bottom: 0 !important;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.radio-label:hover {
    border-color: var(--accent);
}

.radio-label input[type="radio"] {
    display: none;
}

.custom-radio {
    width: 16px;
    height: 16px;
    border: 1.5px solid var(--text-muted);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.radio-label input[type="radio"]:checked + .custom-radio {
    border-color: var(--accent);
}

.radio-label input[type="radio"]:checked + .custom-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent);
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    color: var(--text-dark);
    font-size: 1rem;
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 1rem;
}

.btn-submit span {
    display: none;
}

.btn-submit:hover {
    background: var(--accent-soft);
    border-color: var(--accent-soft);
}

.btn-submit:active {
    transform: translateY(1px);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Success State */
.success-state {
    text-align: center;
    padding: 2rem 0;
}

.hidden {
    display: none !important;
}

.success-icon {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    letter-spacing: 0.3em;
}

.success-state h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.success-state p {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 2.5rem;
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--border-strong);
    color: var(--text);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.calendar-link {
    display: inline-block;
    text-decoration: none;
    margin-right: 0.75rem;
    margin-bottom: 0.75rem;
}

.post-rsvp-flow {
    text-align: left;
    margin: 1rem auto 1.5rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.03);
    max-width: 520px;
}

.post-rsvp-flow h4 {
    font-family: var(--font-serif);
    color: var(--accent);
    font-size: 1.1rem;
    margin: 0 0 0.6rem;
}

.post-rsvp-countdown-label {
    margin: 0 0 0.8rem;
    font-size: 0.95rem !important;
}

#postRsvpTimeline {
    display: grid;
    gap: 0.45rem;
}

.timeline-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.timeline-item.active {
    border-color: var(--accent);
    color: var(--text);
    background: rgba(212, 175, 106, 0.12);
    font-weight: 600;
}

/* ==========================================
   Footer
   ========================================== */
footer {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid var(--border);
    max-width: var(--max-width);
    margin: 0 auto;
}

footer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    font-family: var(--font-serif);
    font-style: italic;
}

.footer-sparkles {
    display: none;
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 768px) {
    .top-nav {
        padding: 1.5rem;
    }

    .hero {
        padding: 2rem 1.5rem 4rem;
    }

    .event-details {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
        margin-bottom: 4rem;
    }

    .rsvp-section {
        padding: 1rem 1.5rem 4rem;
    }

    .rsvp-card {
        padding: 3rem 1.75rem;
    }

    .countdown {
        gap: 1.5rem;
    }

    .time-box span {
        font-size: 2rem;
    }

    nav {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.4rem;
    }

    .countdown {
        gap: 1rem;
    }

    .time-box {
        min-width: 50px;
    }

    .time-box span {
        font-size: 1.75rem;
    }
}

/* ==========================================
   Wow-Factor & Animations
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   Sticky Mobile RSVP FAB
   ========================================== */
.mobile-fab {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--accent);
    color: var(--text-dark);
    padding: 1.2rem 2.5rem;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.95rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    z-index: 100;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.mobile-fab.visible {
    transform: translateX(-50%) translateY(0);
}

.mobile-fab:hover {
    background: var(--accent-soft);
    color: var(--text-dark);
}

@media (min-width: 769px) {
    .mobile-fab {
        display: none !important;
    }
}

/* ==========================================
   Touch-Friendly Radio Cards
   ========================================== */
.radio-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.8rem;
}

.radio-card {
    position: relative;
    cursor: pointer;
}

.radio-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-card .card-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.25rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    color: var(--text);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    height: 100%;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.radio-card input:checked ~ .card-content {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2), inset 0 0 0 1px var(--accent);
    transform: translateY(-2px);
    color: var(--accent);
}

.radio-card:hover .card-content {
    border-color: var(--accent-soft);
}

@media (max-width: 480px) {
    .radio-cards {
        grid-template-columns: 1fr;
    }
}

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

.sr-only-focusable:focus, .sr-only-focusable:focus-within {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    box-shadow: 0 0 0 4px var(--bg-deep); /* creates high contrast rim */
}

@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;
    }
    
    .reveal {
        opacity: 1 !important;
        transform: translateY(0) !important;
        transition: none !important;
    }
}

/* ==========================================
   Parallax Forest & Storybook Frame
   ========================================== */
.parallax-forest {
    position: absolute;
    bottom: -15%;
    left: 0;
    right: 0;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.forest-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--teal);
    top: 60%;
    left: -10%;
    animation: driftOrbX 12s ease-in-out infinite alternate;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--rose);
    top: 40%;
    right: -15%;
    animation: driftOrbX 15s ease-in-out infinite alternate-reverse;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: var(--accent);
    bottom: 0;
    left: 40%;
    animation: driftOrbY 10s ease-in-out infinite alternate;
}

@keyframes driftOrbX {
    0% { transform: translateX(0) scale(1); }
    100% { transform: translateX(50px) scale(1.1); }
}

@keyframes driftOrbY {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-40px) scale(1.2); }
}

.storybook-frame {
    position: relative;
    padding: 1rem;
    border-radius: 200px 200px 20px 20px; /* Dome window shape */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(212, 175, 106, 0.1);
}

.storybook-frame img {
    border-radius: 190px 190px 10px 10px;
    object-fit: cover;
    box-shadow: none;
}
