/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

:root {
    /* Romantic rose-gold / blush palette on a deep plum canvas */
    --color-bg: #120a10;
    --color-bg-alt: #1c0f18;
    --color-surface: #271520;
    --color-text: #fbf3f1;
    --color-text-dim: #d9b8b8;
    --color-text-muted: #9c7a80;
    --color-accent: #d98c8c;         /* rose */
    --color-accent-bright: #f2b8b0;  /* blush */
    --color-rose: #e59a9a;
    --color-gold: #d4af6a;           /* soft gold */
    --color-line: rgba(217, 140, 140, 0.28);
    --font-display: 'Playfair Display', serif;
    --font-serif: 'Cormorant Garamond', serif;
    --font-script: 'Great Vibes', cursive;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Space Grotesk', sans-serif;
    --ease: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: none;
}

button, a {
    cursor: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--color-accent-bright);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s var(--ease-smooth), width 0.4s ease, height 0.4s ease, border-color 0.3s ease;
    transform: translate(-50%, -50%);
}

.cursor.hover {
    width: 24px;
    height: 24px;
    background: transparent;
    border: 1px solid var(--color-accent-bright);
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    border-color: var(--color-accent-bright);
    background: rgba(217, 140, 140, 0.1);
}

@media (max-width: 768px) {
    .cursor, .cursor-follower { display: none; }
    body, a, button { cursor: auto; }
}

/* ============================================
   SCROLL PROGRESS
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-bright));
    z-index: 1000;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(242, 184, 176, 0.6);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(18, 10, 16, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-weight: 600;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
}

.logo-mark {
    color: var(--color-accent-bright);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.15em;
}

.logo-heart {
    color: var(--color-rose);
    font-size: 0.9em;
    display: inline-block;
    animation: heart-beat 2.4s ease-in-out infinite;
}

@keyframes heart-beat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.25); }
    30% { transform: scale(1); }
    45% { transform: scale(1.15); }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent-bright);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-year {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    padding: 0.4rem 1rem;
    border: 1px solid var(--color-line);
    border-radius: 2rem;
    white-space: nowrap;
}

/* Language switch pill */
.lang-switch {
    font-family: 'Noto Serif Bengali', var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--color-accent-bright);
    padding: 0.38rem 0.95rem;
    border: 1px solid var(--color-line);
    border-radius: 2rem;
    background: rgba(217, 140, 140, 0.07);
    transition: all 0.3s var(--ease);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.lang-switch::before { content: '\2302'; opacity: 0.8; }
.lang-switch:hover { background: rgba(217, 140, 140, 0.16); border-color: var(--color-accent); color: #fff; }
@media (max-width: 768px) { .lang-switch { margin-left: auto; margin-right: 0.75rem; font-size: 0.72rem; padding: 0.32rem 0.7rem; } }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 8rem 3rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(217, 140, 140, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(229, 154, 154, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(212, 175, 106, 0.1) 0%, transparent 60%),
        linear-gradient(180deg, #120a10 0%, #1c0f18 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Floating hearts / petals */
.heart-particle {
    position: absolute;
    color: var(--color-accent);
    opacity: 0;
    animation: float-heart 15s infinite linear;
    will-change: transform, opacity;
    user-select: none;
    text-shadow: 0 0 6px rgba(229, 154, 154, 0.5);
}

@keyframes float-heart {
    0% {
        opacity: 0;
        transform: translateY(100vh) translateX(0) rotate(0deg);
    }
    10% { opacity: 0.7; }
    90% { opacity: 0.7; }
    100% {
        opacity: 0;
        transform: translateY(-10vh) translateX(80px) rotate(160deg);
    }
}

.hero-content {
    flex: 1;
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-line);
    border-radius: 2rem;
    background: rgba(217, 140, 140, 0.06);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    color: var(--color-accent-bright);
    margin-bottom: 1.75rem;
    animation: fadeInUp 1s var(--ease) both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent-bright);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-accent-bright);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-kicker {
    font-family: var(--font-script);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--color-rose);
    line-height: 1;
    margin-bottom: 0.5rem;
    opacity: 0;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 8rem);
    line-height: 0.98;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-amp {
    display: block;
    font-family: var(--font-script);
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1;
    color: var(--color-gold);
    margin: 0.1em 0;
    font-weight: 400;
}

.title-line-accent {
    color: var(--color-accent-bright);
}

.title-line em {
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-accent-bright), var(--color-rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-dim);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.8;
    animation: fadeInUp 1s var(--ease) 0.6s both;
}

.hero-date {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s var(--ease) 0.8s both;
}

.date-block {
    border-left: 2px solid var(--color-accent);
    padding-left: 1.25rem;
}

.date-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.date-value {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.date-divider {
    color: var(--color-accent);
    font-weight: 300;
}

.date-value-sm {
    font-family: var(--font-mono);
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: var(--color-text);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s var(--ease) 1s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 3rem;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
    color: #2a0f16;
    box-shadow: 0 10px 30px rgba(217, 140, 140, 0.3);
    border: none;
    cursor: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(217, 140, 140, 0.45);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-ghost {
    border: 1px solid var(--color-line);
    color: var(--color-text);
    background: transparent;
}

.btn-ghost:hover {
    background: rgba(217, 140, 140, 0.1);
    border-color: var(--color-accent);
}

/* Hero Photo Frame */
.hero-photo-frame {
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    width: 38vw;
    max-width: 520px;
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(217, 140, 140, 0.18);
    animation: fadeInRight 1.4s var(--ease) 0.4s both;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.03);
    transition: transform 8s ease;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translate(50px, -50%); }
    to { opacity: 1; transform: translate(0, -50%); }
}

.photo-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.12) 50%, transparent 70%);
    pointer-events: none;
    animation: shine 4s ease-in-out infinite;
    z-index: 2;
}

@keyframes shine {
    0%, 100% { transform: translateX(-100%); opacity: 0; }
    50% { transform: translateX(100%); opacity: 1; }
}

.photo-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    color: white;
    text-transform: uppercase;
    z-index: 3;
    padding: 0.75rem 1rem;
    background: rgba(18, 10, 16, 0.45);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
}

.caption-mark {
    color: var(--color-accent-bright);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--color-text-muted);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, var(--color-accent), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--color-accent-bright);
    animation: scroll-dot 2s infinite;
}

@keyframes scroll-dot {
    from { transform: translateY(-100%); }
    to { transform: translateY(250%); }
}

/* ============================================
   COUNTDOWN SECTION
   ============================================ */
.countdown-section {
    padding: 7rem 3rem;
    text-align: center;
    position: relative;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(217, 140, 140, 0.1) 0%, transparent 60%),
        var(--color-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.countdown-inner {
    max-width: 900px;
    margin: 0 auto;
}

.countdown-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

.countdown-title em {
    font-style: italic;
    color: var(--color-accent-bright);
    font-weight: 700;
}

.countdown-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.cd-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-width: 110px;
    padding: 1.75rem 1rem;
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg-alt) 100%);
    border: 1px solid var(--color-line);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cd-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent-bright), transparent);
}

.cd-num {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--color-accent-bright);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.cd-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.cd-sep {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-accent);
    opacity: 0.5;
    align-self: flex-start;
    margin-top: 1.5rem;
}

.countdown-note {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-text-dim);
}

.countdown-done {
    font-family: var(--font-script);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-accent-bright);
    padding: 2rem 0;
}

/* ============================================
   STORY INTRO
   ============================================ */
.timeline-intro {
    padding: 8rem 3rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: end;
    position: relative;
}

.intro-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    padding-left: 2.5rem;
    position: relative;
}

.intro-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 1px;
    background: var(--color-accent);
}

.intro-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.intro-title em {
    font-style: italic;
    color: var(--color-accent-bright);
    font-weight: 700;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--color-text-dim);
    max-width: 480px;
    line-height: 1.8;
}

.intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 2rem 0;
    border-top: 1px solid var(--color-line);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-accent-bright);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

/* ============================================
   TIMELINE SECTION
   ============================================ */
.timeline-section {
    position: relative;
    padding: 4rem 3rem 8rem;
    max-width: 1400px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(217, 140, 140, 0.15);
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-progress {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 0;
    background: linear-gradient(180deg, var(--color-accent-bright), var(--color-accent));
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 0 15px rgba(217, 140, 140, 0.5);
    transition: height 0.1s linear;
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    margin-bottom: 6rem;
    align-items: center;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item[data-side="left"] .timeline-card {
    grid-column: 1;
    grid-row: 1;
}

.timeline-item[data-side="right"] .timeline-card {
    grid-column: 3;
    grid-row: 1;
}

.timeline-marker {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.marker-year {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    background: var(--color-bg);
    padding: 0.4rem 1rem;
    border: 1px solid var(--color-line);
    border-radius: 2rem;
    margin-bottom: 1rem;
    transition: all 0.4s var(--ease);
}

.timeline-item.visible .marker-year {
    color: var(--color-accent-bright);
    border-color: var(--color-accent);
    box-shadow: 0 0 20px rgba(217, 140, 140, 0.2);
}

.marker-dot {
    width: 18px;
    height: 18px;
    background: var(--color-bg);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    position: relative;
    transition: all 0.5s var(--ease);
}

.timeline-item.visible .marker-dot {
    background: var(--color-accent-bright);
    box-shadow: 0 0 0 6px rgba(217, 140, 140, 0.2), 0 0 25px var(--color-accent-bright);
    transform: scale(1.2);
}

.marker-dot-glow {
    animation: mega-pulse 2s infinite;
}

@keyframes mega-pulse {
    0%, 100% {
        box-shadow: 0 0 0 6px rgba(217, 140, 140, 0.3), 0 0 30px var(--color-accent-bright);
    }
    50% {
        box-shadow: 0 0 0 14px rgba(217, 140, 140, 0.1), 0 0 45px var(--color-accent-bright);
    }
}

/* Timeline Card */
.timeline-card {
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg-alt) 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s var(--ease);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.timeline-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(217, 140, 140, 0.35), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.timeline-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(217, 140, 140, 0.15);
}

.timeline-card:hover::before {
    opacity: 1;
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}

.timeline-card:hover .card-image-wrapper img {
    transform: scale(1.08);
}

.card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(18, 10, 16, 0.85) 100%);
}

.card-tag {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    padding: 0.4rem 0.9rem;
    background: rgba(18, 10, 16, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-line);
    border-radius: 2rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--color-accent-bright);
}

.card-tag-glow {
    background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
    color: #2a0f16;
    border: none;
    box-shadow: 0 0 20px rgba(217, 140, 140, 0.4);
    animation: tag-pulse 2s infinite;
}

@keyframes tag-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.card-body {
    padding: 2rem;
}

.card-date {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
    display: block;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--color-text);
}

.card-text {
    color: var(--color-text-dim);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.card-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.highlight {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--color-text-dim);
    padding: 0.3rem 0.7rem;
    background: rgba(217, 140, 140, 0.07);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.highlight:hover {
    background: rgba(217, 140, 140, 0.16);
    color: var(--color-accent-bright);
}

.timeline-card-final {
    background: linear-gradient(135deg, rgba(217, 140, 140, 0.12) 0%, var(--color-surface) 100%);
    border: 1px solid rgba(217, 140, 140, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 50px rgba(217, 140, 140, 0.15);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-text {
    color: var(--color-text-dim);
    font-size: 1.1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 240px 240px;
    gap: 1.25rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: none;
    transition: transform 0.5s var(--ease);
}

.gallery-item-1 { grid-column: span 1; grid-row: span 2; }
.gallery-item-2 { grid-column: span 1; grid-row: span 1; }
.gallery-item-3 { grid-column: span 1; grid-row: span 1; }
.gallery-item-4 { grid-column: span 1; grid-row: span 1; }
.gallery-item-5 { grid-column: span 1; grid-row: span 1; }
.gallery-item-6 { grid-column: span 1; grid-row: span 2; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
    filter: grayscale(25%);
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(18, 10, 16, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-year {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--color-accent-bright);
    margin-bottom: 0.25rem;
}

.gallery-caption {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: white;
}

/* ============================================
   QUOTE SECTION
   ============================================ */
.quote-section {
    padding: 10rem 3rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-wrapper {
    position: relative;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 10rem;
    line-height: 0.5;
    color: var(--color-accent);
    opacity: 0.3;
    display: block;
    margin-bottom: -1rem;
}

.quote-text {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.3;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.quote-author {
    font-family: var(--font-script);
    font-size: 1.8rem;
    letter-spacing: 0.02em;
    color: var(--color-accent-bright);
    font-style: normal;
}

/* ============================================
   WISHES / GUESTBOOK SECTION
   ============================================ */
.wishes-section {
    padding: 6rem 3rem 8rem;
    max-width: 1400px;
    margin: 0 auto;
}

.wishes-header {
    text-align: center;
    margin-bottom: 4rem;
}

.wishes-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
    align-items: start;
}

.wish-form {
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg-alt) 100%);
    border: 1px solid var(--color-line);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 100px;
}

.wish-field {
    margin-bottom: 1.5rem;
    position: relative;
}

.wish-field label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.6rem;
}

.wish-field input,
.wish-field textarea {
    width: 100%;
    background: rgba(18, 10, 16, 0.6);
    border: 1px solid var(--color-line);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    resize: vertical;
    cursor: none;
}

.wish-field input::placeholder,
.wish-field textarea::placeholder {
    color: var(--color-text-muted);
}

.wish-field input:focus,
.wish-field textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(217, 140, 140, 0.12);
}

.wish-count {
    position: absolute;
    right: 0.5rem;
    bottom: -1.3rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

.wish-submit {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.wish-privacy {
    margin-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    text-align: center;
}

.wishes-wall {
    display: grid;
    gap: 1rem;
    max-height: 620px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.wishes-wall::-webkit-scrollbar { width: 6px; }
.wishes-wall::-webkit-scrollbar-thumb { background: var(--color-accent); border-radius: 3px; }

.wish-card {
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg-alt) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--color-accent);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    position: relative;
}

.wish-card-msg {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-text);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.wish-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.wish-card-name {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--color-accent-bright);
}

.wish-card-name::before {
    content: '♥ ';
    color: var(--color-rose);
}

.wish-card-date {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--color-text-muted);
}

.wish-card-delete {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.3s ease, color 0.3s ease;
    cursor: none;
}

.wish-card:hover .wish-card-delete { opacity: 1; }
.wish-card-delete:hover { color: var(--color-accent-bright); }

.wishes-empty {
    text-align: center;
    padding: 3rem 1rem;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-text-muted);
    border: 1px dashed var(--color-line);
    border-radius: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 0 3rem 2rem;
    background: var(--color-bg-alt);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-hero {
    text-align: center;
    padding: 5rem 1rem 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 1400px;
    margin: 0 auto;
}

.footer-monogram {
    display: inline-flex;
    align-items: center;
    gap: 0.1em;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent-bright);
    margin-bottom: 1rem;
}

.footer-names {
    font-family: var(--font-script);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.footer-names span {
    color: var(--color-gold);
    font-size: 0.6em;
}

.footer-invite {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-text-dim);
    max-width: 520px;
    margin: 0 auto;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-weight: 600;
    letter-spacing: 0.2em;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--color-text-dim);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.25rem;
}

.footer-col a {
    display: block;
    color: var(--color-text-dim);
    font-size: 0.9rem;
    padding: 0.4rem 0;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--color-accent-bright);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding: 7rem 2rem 3rem;
        text-align: center;
        align-items: center;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 3rem;
    }

    .hero-date { justify-content: center; }
    .hero-cta { justify-content: center; }

    .hero-photo-frame {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 420px;
        animation: fadeInUp 1.4s var(--ease) 0.4s both;
    }

    .timeline-intro {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .wishes-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .wish-form { position: static; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item-1, .gallery-item-6 { grid-row: span 1; }

    .footer-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .navbar { padding: 1rem 1.5rem; }
    .nav-links { display: none; }

    .hero { padding: 6rem 1.5rem 3rem; }

    .hero-date {
        gap: 1.5rem;
        flex-direction: column;
    }

    .date-block { text-align: left; }

    .countdown-section { padding: 5rem 1.5rem; }

    .cd-block { min-width: 72px; padding: 1.25rem 0.5rem; }

    .cd-sep { font-size: 1.5rem; margin-top: 1rem; }

    .timeline-section { padding: 4rem 1.5rem; }

    .timeline-line, .timeline-progress { left: 30px; }

    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
    }

    .timeline-item[data-side="left"] .timeline-card,
    .timeline-item[data-side="right"] .timeline-card {
        grid-column: 2;
    }

    .timeline-marker { grid-column: 1; grid-row: 1; }

    .marker-year { font-size: 1rem; padding: 0.3rem 0.7rem; }

    .gallery-section,
    .quote-section,
    .timeline-intro,
    .wishes-section {
        padding: 5rem 1.5rem;
    }

    .gallery-grid { grid-template-columns: 1fr; }

    .intro-stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

    .stat-number { font-size: 2.5rem; }

    .footer { padding: 0 1.5rem 1.5rem; }

    .footer-links { grid-template-columns: repeat(2, 1fr); }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* ============================================
   UTILITY
   ============================================ */
::selection {
    background: var(--color-accent);
    color: var(--color-bg);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-accent); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-accent-bright); }

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease;
}

.preloader.done { pointer-events: none; }

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.preloader-svg {
    filter: drop-shadow(0 0 20px rgba(242, 184, 176, 0.45));
}

.pl-heart {
    transform-origin: center;
    transform-box: fill-box;
}

.preloader-text {
    display: flex;
    gap: 0.05rem;
    font-family: var(--font-script);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--color-accent-bright);
}

.pl-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}

.pl-amp {
    color: var(--color-gold);
    padding: 0 0.35rem;
}

.preloader-progress {
    width: 200px;
    height: 1px;
    background: rgba(217, 140, 140, 0.18);
    position: relative;
    overflow: hidden;
}

.pl-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-bright));
    box-shadow: 0 0 10px var(--color-accent-bright);
}

.preloader-count {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--color-text-muted);
}

/* ============================================
   MOUSE SPOTLIGHT
   ============================================ */
.spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 140, 140, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    mix-blend-mode: screen;
}

.spotlight.active { opacity: 1; }

/* ============================================
   CLICK HEART BURST
   ============================================ */
.burst-heart {
    position: fixed;
    pointer-events: none;
    z-index: 9997;
    font-size: 1rem;
    color: var(--color-accent-bright);
    will-change: transform, opacity;
    text-shadow: 0 0 8px rgba(242, 184, 176, 0.6);
}

/* ============================================
   YEAR JUMP RAIL
   ============================================ */
.year-rail {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.year-rail.visible { opacity: 1; }

.year-rail-inner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    background: rgba(18, 10, 16, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(217, 140, 140, 0.15);
    border-radius: 2rem;
}

.year-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--color-text-muted);
    cursor: none;
    position: relative;
    transition: all 0.3s var(--ease);
    border: 1px solid transparent;
}

.year-dot span { transition: all 0.3s ease; }

.year-dot::before {
    content: attr(data-year);
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--color-accent-bright);
    white-space: nowrap;
    padding: 0.3rem 0.7rem;
    background: rgba(18, 10, 16, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-line);
    border-radius: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--ease);
}

.year-dot:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.year-dot:hover {
    color: var(--color-accent-bright);
    border-color: var(--color-accent);
    background: rgba(217, 140, 140, 0.12);
}

.year-dot.active {
    color: var(--color-bg);
    background: var(--color-accent-bright);
    box-shadow: 0 0 15px rgba(242, 184, 176, 0.5);
}

.year-dot.active span { font-weight: 700; }

@media (max-width: 768px) {
    .year-rail { display: none; }
}

/* ============================================
   HERO ENHANCEMENTS
   ============================================ */
.hero-svg-deco {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.deco-path {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
}

.title-line { overflow: hidden; }

.line-word { display: inline-block; }

.char {
    display: inline-block;
    transform: translateY(100%);
    will-change: transform, opacity;
}

/* Orbits around hero photo */
.hero-photo-wrapper {
    position: absolute;
    right: 3rem;
    top: 6.5rem;
    transform: none;
    width: min(38vw, 520px);
    height: min(calc(38vw * 4 / 3), 620px, calc(100vh - 10rem));
    z-index: 1;
}

.hero-photo-wrapper .hero-photo-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.orbit-1 { animation: rotate-cw 40s linear infinite; }

.orbit-2 {
    width: 135%;
    height: 135%;
    animation: rotate-ccw 60s linear infinite;
}

@keyframes rotate-cw {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotate-ccw {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
}

.orbit-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    background: var(--color-accent-bright);
    box-shadow: 0 0 12px var(--color-accent-bright);
    z-index: 2;
}

.orbit-dot-1 {
    transform: translate(-50%, -50%) rotate(0deg) translateX(60%);
    animation: orbit-1 12s linear infinite;
}

.orbit-dot-2 {
    width: 6px;
    height: 6px;
    background: var(--color-rose);
    box-shadow: 0 0 8px var(--color-rose);
    transform: translate(-50%, -50%) rotate(120deg) translateX(67.5%);
    animation: orbit-2 18s linear infinite;
}

.orbit-dot-3 {
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    box-shadow: 0 0 6px var(--color-gold);
    transform: translate(-50%, -50%) rotate(240deg) translateX(60%);
    animation: orbit-1 15s linear infinite reverse;
}

@keyframes orbit-1 {
    from { transform: translate(-50%, -50%) rotate(0deg) translateX(60%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg) translateX(60%) rotate(-360deg); }
}

@keyframes orbit-2 {
    from { transform: translate(-50%, -50%) rotate(0deg) translateX(67.5%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(-360deg) translateX(67.5%) rotate(360deg); }
}

/* Year Marquee */
.year-marquee {
    position: absolute;
    bottom: 6rem;
    left: 0;
    right: 0;
    overflow: hidden;
    padding: 1rem 0;
    opacity: 0.5;
    mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
    z-index: 1;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(217, 140, 140, 0.4);
    animation: marquee-scroll 40s linear infinite;
    line-height: 1;
}

.marquee-track .dot {
    color: var(--color-rose);
    -webkit-text-stroke: 0;
    font-size: 2.5rem;
    align-self: center;
}

.marquee-track .year-now {
    color: var(--color-accent-bright);
    -webkit-text-stroke: 0;
    text-shadow: 0 0 20px rgba(242, 184, 176, 0.6);
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================
   TIMELINE SVG PATH
   ============================================ */
.timeline-svg {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 200px;
    height: 100%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.timeline-path {
    stroke-dasharray: 4000;
    stroke-dashoffset: 4000;
    filter: drop-shadow(0 0 8px rgba(217, 140, 140, 0.3));
}

.timeline-line,
.timeline-progress { display: none; }

.marker-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    pointer-events: none;
}

.timeline-item.visible .marker-ring {
    animation: ring-pulse 2s ease-out infinite;
}

@keyframes ring-pulse {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

.marker-ring-glow {
    border-color: var(--color-accent-bright);
    border-width: 2px;
}

.timeline-marker .marker-dot {
    margin-top: 6px;
    position: relative;
    z-index: 1;
}

.timeline-marker { position: relative; }

.timeline-item {
    opacity: 1;
    transform: none;
    transition: none;
}

.timeline-item:not(.visible) .timeline-card,
.timeline-item:not(.visible) .marker-year,
.timeline-item:not(.visible) .marker-dot {
    opacity: 0;
}

.timeline-item:not(.visible) .timeline-card {
    transform: translateY(80px);
}

/* ============================================
   RIPPLE EFFECT ON BUTTONS
   ============================================ */
.btn { position: relative; overflow: hidden; }

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* ============================================
   TILT CARDS
   ============================================ */
[data-tilt] {
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: transform 0.6s var(--ease-smooth);
}

[data-tilt] .card-body { transform-style: preserve-3d; }
[data-tilt] .card-title { transform: translateZ(30px); }
[data-tilt] .card-image-wrapper { transform: translateZ(20px); }

/* ============================================
   REVEAL STATES (anime.js driven)
   ============================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
}

[data-split-lines] .line-inner {
    display: inline-block;
    transform: translateY(100%);
}

[data-split-lines] .line-mask {
    display: block;
    overflow: hidden;
}

[data-split-words] .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    margin-right: 0.25em;
}

[data-gallery] {
    opacity: 0;
    transform: scale(0.85) translateY(40px);
}

[data-stat] {
    opacity: 0;
    transform: translateY(30px);
}

[data-quote-mark] {
    display: inline-block;
    transform-origin: bottom center;
}

/* ============================================
   HERO-SPECIFIC INITIAL STATES
   ============================================ */
.hero-badge,
.hero-subtitle,
.hero-date .date-block,
.hero-cta .btn {
    animation: none !important;
}

.hero-badge,
.hero-cta .btn { opacity: 0; }

.hero-subtitle {
    opacity: 0;
    transform: translateY(20px);
}

.hero-kicker { opacity: 0; }

.hero-date .date-block {
    opacity: 0;
    transform: translateY(20px);
}

.hero-photo-frame { opacity: 0; }

.orbit, .orbit-dot { opacity: 0; }

.title-line-1, .title-line-2 { animation: none !important; }

.title-amp { opacity: 0; }

/* ============================================
   NAV LINK UNDERLINE ANIM HELPER
   ============================================ */
.nav-link .link-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease);
}

.hero { overflow: hidden; }

/* ============================================
   MOBILE OVERRIDES (v2)
   ============================================ */
@media (max-width: 1024px) {
    .hero-photo-wrapper {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
        aspect-ratio: 3/4;
        height: auto;
        max-height: none;
    }

    .orbit { width: 110%; height: 110%; }
    .orbit-2 { width: 120%; height: 120%; }

    .marquee-track { font-size: 2.5rem; gap: 1.2rem; }
    .year-marquee { bottom: 3rem; }

    .timeline-svg { left: 30px; transform: none; width: 60px; }
}

@media (max-width: 768px) {
    .preloader-progress { width: 160px; }

    .preloader-text { font-size: 1.6rem; }

    .preloader-svg { width: 90px; height: 90px; }

    .hero-photo-wrapper { max-width: 100%; margin-top: 2rem; }

    .orbit, .orbit-dot { display: none; }

    .marquee-track { font-size: 1.8rem; gap: 0.8rem; }
    .year-marquee { bottom: 1rem; padding: 0.5rem 0; }

    .photo-caption {
        font-size: 0.62rem;
        padding: 0.5rem 0.75rem;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }

    .scroll-indicator { display: none; }

    .timeline-svg { left: 30px; transform: translateX(-50%); width: 60px; }

    .timeline-item {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
        margin-bottom: 3.5rem;
    }

    .marker-ring { width: 28px; height: 28px; }

    .marker-year { font-size: 0.85rem; padding: 0.25rem 0.6rem; }

    .marker-dot { width: 14px; height: 14px; }

    .card-body { padding: 1.5rem; }
    .card-title { font-size: 1.4rem; }
    .card-text { font-size: 0.9rem; }
    .card-highlights { gap: 0.4rem; }
    .highlight { font-size: 0.65rem; padding: 0.25rem 0.55rem; }

    .hero { padding: 5.5rem 1.25rem 7rem; }

    .hero-title { font-size: clamp(2.8rem, 13vw, 4.5rem); }

    .hero-cta { width: 100%; }

    .hero-cta .btn {
        flex: 1;
        min-width: 0;
        justify-content: center;
        padding: 0.85rem 1.25rem;
        font-size: 0.75rem;
    }

    .navbar { padding: 0.9rem 1.25rem; }
    .nav-logo .logo-text { font-size: 0.72rem; }

    .timeline-intro { padding: 6rem 1.25rem 3rem; }
    .intro-stats { padding: 1.5rem 0; }

    .quote-mark { font-size: 6rem; }
    .quote-text { font-size: clamp(1.3rem, 5vw, 2rem); }

    .wish-form { padding: 1.75rem; }
    .footer-hero { padding: 4rem 1rem 3rem; }
}

@media (max-width: 480px) {
    .hero-date { gap: 1rem; }
    .date-value { font-size: 1.4rem; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }

    .timeline-item { grid-template-columns: 40px 1fr; gap: 0.75rem; }
    .marker-year { font-size: 0.75rem; padding: 0.2rem 0.5rem; }
    .timeline-svg { left: 20px; width: 40px; }

    .intro-stats { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .stat-number { font-size: 2rem; }

    .cd-block { min-width: 62px; }
    .cd-num { font-size: 2rem; }
    .cd-label { font-size: 0.6rem; letter-spacing: 0.15em; }

    .footer-links { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* Touch devices */
@media (hover: none) {
    .cursor,
    .cursor-follower,
    .spotlight {
        display: none !important;
    }

    body, a, button, .year-dot, .gallery-item,
    input, textarea, .wish-card-delete {
        cursor: auto;
    }

    [data-tilt] { transform: none !important; }

    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(180deg, transparent 60%, rgba(18, 10, 16, 0.85) 100%);
    }

    .gallery-item img { filter: none; }

    .timeline-card:hover { transform: none; }

    .photo-caption { opacity: 1; }

    .wish-card-delete { opacity: 1; }
}

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

    .orbit, .orbit-dot, .marquee-track, .photo-shine,
    .badge-dot, .marker-ring, .card-tag-glow, .logo-heart {
        animation: none !important;
    }
}

/* ============================================
   HAMBURGER TOGGLE
   ============================================ */
.nav-toggle {
    display: none;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 110;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--color-accent-bright);
    margin: 5px auto;
    transition: transform 0.4s var(--ease), opacity 0.3s ease, background 0.3s ease;
    border-radius: 1px;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #120a10 0%, #1c0f18 100%);
    z-index: 105;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 2rem 2rem;
    transform: translateY(-100%);
    transition: transform 0.6s var(--ease);
    visibility: hidden;
}

.mobile-menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(217, 140, 140, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(229, 154, 154, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.mobile-menu.open {
    transform: translateY(0);
    visibility: visible;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 3rem);
    color: var(--color-text);
    border-bottom: 1px solid rgba(217, 140, 140, 0.15);
    transition: color 0.3s ease, padding 0.3s ease;
    opacity: 0;
    transform: translateX(-30px);
    position: relative;
}

.mobile-link:active {
    color: var(--color-accent-bright);
    padding-left: 1rem;
}

.mobile-link-num {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    min-width: 32px;
}

.mobile-menu-footer {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    opacity: 0;
    z-index: 1;
}

body.menu-open { overflow: hidden; }

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links, .nav-year { display: none; }
}

/* ============================================
   HORIZONTAL YEAR RAIL (mobile version)
   ============================================ */
@media (max-width: 768px) {
    .year-rail {
        display: block;
        right: 0;
        left: 0;
        top: auto;
        bottom: 0;
        transform: translateY(100%);
        transition: transform 0.5s var(--ease), opacity 0.5s ease;
        opacity: 0;
    }

    .year-rail.visible {
        transform: translateY(0);
        opacity: 1;
    }

    .year-rail-inner {
        flex-direction: row;
        justify-content: flex-start;
        gap: 0.4rem;
        padding: 0.6rem 1rem;
        border-radius: 0;
        border: none;
        border-top: 1px solid rgba(217, 140, 140, 0.2);
        background: rgba(18, 10, 16, 0.85);
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .year-rail-inner::-webkit-scrollbar { display: none; }

    .year-dot {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 0.75rem;
        cursor: pointer;
    }

    .year-dot::before {
        right: auto;
        top: auto;
        bottom: calc(100% + 8px);
        left: 50%;
        transform: translateX(-50%) translateY(5px);
    }

    .year-dot:hover::before {
        transform: translateX(-50%) translateY(0);
    }

    body { padding-bottom: env(safe-area-inset-bottom); }

    .footer { padding-bottom: 6rem; }
}

/* ============================================
   PHOTO GALLERY — year filter · polaroids · lightbox
   ============================================ */
.photo-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.filter-chip {
    font-family: var(--font-mono), 'Noto Serif Bengali', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--color-text-dim);
    padding: 0.45rem 1.1rem;
    border: 1px solid var(--color-line);
    border-radius: 2rem;
    background: transparent;
    cursor: none;
    transition: all 0.3s var(--ease);
}
.filter-chip:hover { color: var(--color-accent-bright); border-color: var(--color-accent); }
.filter-chip.active {
    background: var(--color-accent-bright);
    color: var(--color-bg);
    border-color: var(--color-accent-bright);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.photo-grid { columns: 4 250px; column-gap: 1.1rem; }
.polaroid {
    break-inside: avoid;
    margin: 0 0 1.1rem;
    background: #fbf3ea;
    padding: 0.55rem 0.55rem 2.4rem;
    border-radius: 3px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
    position: relative;
    cursor: none;
    transition: transform 0.45s var(--ease), box-shadow 0.45s ease;
    transform: rotate(var(--rot, 0deg));
    opacity: 0;
}
.polaroid.in { opacity: 1; }
.polaroid img { width: 100%; display: block; border-radius: 2px; background: #e8dccb; }
.polaroid figcaption {
    position: absolute;
    left: 0; right: 0; bottom: 0.5rem;
    text-align: center;
    font-family: var(--font-script), 'Noto Serif Bengali', 'Baloo Da 2', serif;
    font-size: 1.4rem;
    line-height: 1;
    color: #7a4a3c;
}
.polaroid::after {
    content: '';
    position: absolute;
    top: -9px; left: 50%;
    transform: translateX(-50%) rotate(-4deg);
    width: 64px; height: 20px;
    background: rgba(224, 169, 46, 0.28);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.polaroid:hover {
    transform: rotate(0deg) scale(1.035);
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.6);
    z-index: 3;
}
@media (max-width: 768px) {
    .photo-grid { columns: 2 150px; column-gap: 0.7rem; }
    .polaroid { padding: 0.4rem 0.4rem 1.9rem; }
    .polaroid figcaption { font-size: 1.15rem; }
    .polaroid::after { width: 48px; height: 16px; }
}
@media (max-width: 480px) { .photo-grid { columns: 2 120px; } }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(8, 4, 7, 0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease;
    padding: 2rem;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-stage { position: relative; display: flex; flex-direction: column; align-items: center; max-width: 88vw; }
.lb-img {
    max-width: 88vw; max-height: 80vh;
    border-radius: 6px;
    border: 1px solid var(--color-line);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    object-fit: contain;
    background: var(--color-surface);
}
.lb-caption { margin-top: 1rem; display: flex; align-items: center; gap: 1rem; }
.lb-year { font-family: var(--font-display), 'Baloo Da 2', serif; font-size: 1.4rem; color: var(--color-accent-bright); }
.lb-count { font-family: var(--font-mono), 'Noto Serif Bengali', sans-serif; font-size: 0.8rem; letter-spacing: 0.2em; color: var(--color-text-muted); }
.lb-close {
    position: absolute; top: 1.25rem; right: 1.5rem;
    width: 46px; height: 46px; border-radius: 50%;
    border: 1px solid var(--color-line);
    background: rgba(0, 0, 0, 0.35);
    color: var(--color-text);
    font-size: 1.6rem; line-height: 1;
    cursor: none;
    transition: all 0.3s ease;
    display: flex; align-items: center; justify-content: center;
}
.lb-close:hover { background: var(--color-accent-bright); color: var(--color-bg); border-color: var(--color-accent-bright); }
.lb-nav {
    width: 54px; height: 54px; flex: 0 0 auto; border-radius: 50%;
    border: 1px solid var(--color-line);
    background: rgba(0, 0, 0, 0.35);
    color: var(--color-text);
    font-size: 2rem; line-height: 1;
    cursor: none;
    transition: all 0.3s ease;
    display: flex; align-items: center; justify-content: center;
}
.lb-nav:hover { background: var(--color-accent-bright); color: var(--color-bg); border-color: var(--color-accent-bright); transform: scale(1.08); }
@media (max-width: 768px) {
    .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; font-size: 1.5rem; z-index: 2; }
    .lb-prev { left: 0.5rem; }
    .lb-next { right: 0.5rem; }
    .lb-nav:hover { transform: translateY(-50%) scale(1.08); }
    .lb-img { max-width: 94vw; max-height: 74vh; }
    .lb-close { top: 0.75rem; right: 0.75rem; }
}
@media (hover: none) {
    .polaroid, .filter-chip, .lb-nav, .lb-close { cursor: auto; }
}

/* ============================================
   THE PROPOSAL — Instagram reel embed
   ============================================ */
.proposal-section {
    padding: 6rem 3rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.proposal-embed {
    display: flex;
    justify-content: center;
    margin-top: 2.75rem;
}
.ig-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: 22px;
    padding: 0.75rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.ig-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 1px;
    background: linear-gradient(135deg, transparent, var(--color-accent), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
}
.ig-frame iframe {
    width: 100%;
    height: 720px;
    border: 0;
    border-radius: 14px;
    display: block;
    background: #000;
}
.proposal-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-family: var(--font-mono), 'Noto Serif Bengali', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    transition: color 0.3s ease, gap 0.3s ease;
}
.proposal-link:hover { color: var(--color-accent-bright); gap: 0.85rem; }
@media (max-width: 768px) {
    .proposal-section { padding: 5rem 1.5rem; }
    .ig-frame iframe { height: 560px; }
}

/* ============================================
   GRAND PROPOSAL — concert stage treatment
   ============================================ */
.proposal-section.grand {
    position: relative;
    overflow: hidden;
    max-width: none;
    width: 100%;
    padding: 7rem 1.5rem 8rem;
    background: radial-gradient(ellipse at 50% -10%, #2a0d14 0%, #0b0407 72%);
}
.proposal-section.grand .proposal-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.stage-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.stage-glow {
    position: absolute;
    left: 50%; top: -12%;
    width: 130%; height: 72%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(246, 207, 107, 0.22), transparent 60%);
    filter: blur(24px);
}
.beam {
    position: absolute;
    top: -20%; left: 50%;
    width: 14vw; height: 130%;
    transform-origin: top center;
    background: linear-gradient(to bottom, rgba(246, 207, 107, 0.28), transparent 70%);
    filter: blur(6px);
    mix-blend-mode: screen;
    animation: beamSway 7s ease-in-out infinite alternate;
}
.beam-1 { transform: translateX(-50%) rotate(-24deg); animation-delay: 0s; }
.beam-2 { transform: translateX(-50%) rotate(-9deg); background: linear-gradient(to bottom, rgba(232, 106, 92, 0.26), transparent 70%); animation-delay: 1.2s; }
.beam-3 { transform: translateX(-50%) rotate(9deg); animation-delay: 0.6s; }
.beam-4 { transform: translateX(-50%) rotate(24deg); background: linear-gradient(to bottom, rgba(232, 106, 92, 0.26), transparent 70%); animation-delay: 1.8s; }
@keyframes beamSway { from { opacity: 0.3; } to { opacity: 0.65; } }
.bokeh { position: absolute; inset: 0; pointer-events: none; }
.bokeh span {
    position: absolute;
    bottom: -12px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(246, 207, 107, 0.95), rgba(246, 207, 107, 0));
    animation: floatUp linear infinite;
}
@keyframes floatUp {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    12% { opacity: 0.9; }
    100% { transform: translateY(-96vh) scale(1.4); opacity: 0; }
}
.proposal-kicker {
    display: inline-block;
    font-family: var(--font-mono), 'Noto Serif Bengali', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    color: var(--color-accent-bright);
    margin-bottom: 1.25rem;
    text-shadow: 0 0 16px rgba(246, 207, 107, 0.5);
}
.proposal-title {
    font-family: var(--font-display), 'Baloo Da 2', serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1.02;
    font-weight: 700;
    margin-bottom: 1.75rem;
    color: #fff;
    text-shadow: 0 4px 40px rgba(246, 207, 107, 0.35);
}
.proposal-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--color-accent-bright), var(--color-rose));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.proposal-lead {
    max-width: 660px;
    margin: 0 auto 2.75rem;
    font-family: var(--font-serif), 'Noto Serif Bengali', serif;
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--color-text-dim);
}
.proposal-lead .placard { color: var(--color-accent-bright); font-style: italic; }
.proposal-section.grand .ig-frame {
    position: relative;
    margin: 0 auto;
    background: #160a10;
    box-shadow: 0 0 0 1px rgba(246, 207, 107, 0.4), 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 90px rgba(246, 207, 107, 0.25);
}
.stage-mic {
    position: absolute;
    top: -1.6rem; left: 50%;
    transform: translateX(-50%);
    font-size: 1.7rem;
    filter: drop-shadow(0 0 10px rgba(246, 207, 107, 0.6));
    z-index: 3;
}
.proposal-strip-wrap { margin-top: 3rem; }
.strip-label {
    display: block;
    font-family: var(--font-mono), 'Noto Serif Bengali', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}
.proposal-strip { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.strip-shot {
    width: 120px; height: 120px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--color-line);
    padding: 0;
    cursor: none;
    background: none;
    transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}
.strip-shot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.strip-shot:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 16px 34px rgba(0, 0, 0, 0.6), 0 0 22px rgba(246, 207, 107, 0.3); }
.strip-shot:hover img { transform: scale(1.1); }
@media (max-width: 768px) {
    .proposal-section.grand { padding: 5rem 1.25rem 6rem; }
    .proposal-lead { font-size: 1.08rem; }
    .strip-shot { width: 84px; height: 84px; }
    .beam { width: 26vw; }
}
@media (prefers-reduced-motion: reduce) { .beam, .bokeh span { animation: none !important; } }
@media (hover: none) { .strip-shot { cursor: auto; } }

/* Proposal video (local mp4 centerpiece) */
.ig-frame video { width: 100%; height: auto; max-height: 78vh; display: block; border-radius: 14px; background: #000; }

/* FIX: kill leftover fadeInRight animation that shifted the hero photo up (translateY -50%) */
.hero-photo-frame { animation: none !important; }
