@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,500&family=Cinzel:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ==================================================== */
/* THEME VARIABLES                                      */
/* ==================================================== */
:root {
    --primary-deep: #0B5D4B;
    --primary-medium: #0e7a63;
    --primary-light: #23a184;
    --accent-gold: #D4AF37;
    --accent-gold-light: #e6c869;
    --accent-gold-dark: #a8842a;
    --bg-light: #F8F6F2;
    --bg-card: #ffffff;
    --text-dark: #2a2521;
    --text-muted: #756e64;
    --gold-gradient: linear-gradient(135deg, #e6c869 0%, #D4AF37 50%, #a8842a 100%);
    --emerald-gradient: linear-gradient(135deg, #f6f5f0 0%, #ece8dd 100%);
    --font-heading: 'Cinzel', serif;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --shadow-sm: 0 1px 3px rgba(11, 93, 75, 0.06);
    --shadow-md: 0 4px 16px rgba(11, 93, 75, 0.08);
    --shadow-lg: 0 14px 34px rgba(11, 93, 75, 0.1);
    --shadow-gold: 0 0 18px rgba(212, 175, 55, 0.35);
    --border-radius: 14px;
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ==================================================== */
/* ANIMATIONS                                            */
/* ==================================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGold {
    0%, 100% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.18); border-color: rgba(212, 175, 55, 0.25); }
    50% { box-shadow: 0 0 22px rgba(212, 175, 55, 0.4); border-color: rgba(212, 175, 55, 0.6); }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.05; }
    50% { opacity: 0.09; }
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.12); }
}

@keyframes particleRise {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.9; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-620px) translateX(var(--drift, 20px)); opacity: 0; }
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes houseSway {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(-2deg); }
}

@keyframes glowPulse {
    0%, 100% { filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.35)); }
    50% { filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.7)); }
}

.reveal {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-left { opacity: 0; transform: translateX(-55px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right { opacity: 0; transform: translateX(55px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal-right.active { opacity: 1; transform: translateX(0); }

.reveal-zoom { opacity: 0; transform: scale(0.9); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal-zoom.active { opacity: 1; transform: scale(1); }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; letter-spacing: 1px; }

/* ==================================================== */
/* ORNAMENT DIVIDER                                      */
/* ==================================================== */
.ornament-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 22px auto;
    width: 100%;
    max-width: 320px;
}
.ornament-line { flex-grow: 1; height: 1px; background: var(--gold-gradient); }
.ornament-symbol {
    color: var(--accent-gold);
    margin: 0 16px;
    font-size: 1.3rem;
    display: flex; align-items: center; justify-content: center;
}

/* ==================================================== */
/* AUDIO CONTROLLER                                      */
/* ==================================================== */
.audio-controller {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 10px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    animation: pulseGold 3s ease-in-out infinite;
}
.audio-controller:hover { transform: scale(1.12); border-color: var(--accent-gold); }
.audio-controller svg { fill: var(--primary-deep); width: 20px; height: 20px; }

/* ==================================================== */
/* FLOATING PARTICLES                                    */
/* ==================================================== */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
}
.particle {
    position: absolute;
    bottom: -20px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-gold-light) 0%, var(--accent-gold) 70%, transparent 100%);
    opacity: 0;
    animation: particleRise linear infinite;
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.6);
}

/* ==================================================== */
/* HERO SECTION                                          */
/* ==================================================== */
.hero {
    position: relative;
    padding: 130px 0 90px;
    color: var(--text-dark);
    text-align: center;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 22s ease-in-out infinite alternate;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 93, 75, 0.72) 0%, rgba(11, 93, 75, 0.55) 35%, rgba(248, 246, 242, 0.94) 92%, #F8F6F2 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(circle at 50% 30%, rgba(255, 227, 150, 0.18), transparent 60%);
    mix-blend-mode: screen;
    animation: bgPulse 8s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 5;
    animation: fadeInUp 1.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-eyebrow {
    font-size: 0.9rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent-gold-light);
    margin-bottom: 14px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 6px;
    color: #ffffff;
    text-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

/* Names as the hero's star element */
.hero-title-names {
    font-size: 2.7rem;
    line-height: 1.3;
    letter-spacing: 1px;
    background: var(--gold-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 6s linear infinite;
    filter: drop-shadow(0 4px 18px rgba(0,0,0,0.35));
}

.hero-title-names .hero-amp {
    display: inline-block;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: 0.6em;
    margin: 0 14px;
    color: #f4efe2;
    -webkit-text-fill-color: #f4efe2;
    vertical-align: middle;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.25rem;
    max-width: 640px;
    margin: 22px auto 10px;
    font-weight: 500;
    color: #f4efe2;
    line-height: 1.8;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-host-names {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--accent-gold-light);
    margin: 26px 0 8px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}

/* ==================================================== */
/* LIVE COUNTDOWN TIMER                                  */
/* ==================================================== */
.countdown-box {
    max-width: 680px;
    margin: 36px auto 0;
    padding: 22px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: var(--shadow-lg);
}

.countdown-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent-gold-dark);
    margin-bottom: 16px;
    font-weight: 600;
    font-family: var(--font-body);
}

.countdown-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fdfbf5;
    padding: 12px 8px;
    border-radius: 10px;
    border: 1px solid #ede4cf;
    transition: var(--transition);
}
.countdown-item:hover { border-color: var(--accent-gold); transform: translateY(-3px); }

.countdown-number {
    font-size: 2.3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-deep);
    line-height: 1;
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 600;
}

/* Scroll cue */
.scroll-cue {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: #f4efe2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}
.scroll-cue .chevron {
    width: 10px; height: 10px;
    border-right: 2px solid var(--accent-gold-light);
    border-bottom: 2px solid var(--accent-gold-light);
    transform: rotate(45deg);
    animation: floatSlow 2s ease-in-out infinite;
}

/* ==================================================== */
/* OWNER / ABOUT SECTION                                 */
/* ==================================================== */
.about { padding: 100px 0; background-color: var(--bg-light); position: relative; }

.about-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 55px 45px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(11, 93, 75, 0.06);
}

.about-card::after {
    content: '';
    position: absolute;
    top: 15px; left: 15px; right: 15px; bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: calc(var(--border-radius) - 4px);
    pointer-events: none;
}

.section-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.greeting-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-medium);
    margin-bottom: 22px;
    font-family: var(--font-heading);
}

.about-p {
    font-size: 1.08rem;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 18px;
    line-height: 1.85;
}

/* Owner Details grid */
.owner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 620px;
    margin: 40px auto 0;
}

.owner-card {
    background: #fbfaf6;
    border: 1px solid #ede4cf;
    border-radius: 10px;
    padding: 22px 16px;
    transition: var(--transition);
}
.owner-card:hover { border-color: var(--accent-gold); transform: translateY(-4px); box-shadow: var(--shadow-sm); }

.owner-role {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold-dark);
    font-weight: 700;
    margin-bottom: 8px;
}

.owner-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-deep);
    font-weight: 600;
}

.family-block {
    margin-top: 44px;
    padding-top: 36px;
    border-top: 1px solid #ece6d8;
}

.family-label {
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-gold-dark);
    font-weight: 700;
    margin-bottom: 18px;
}

.family-names {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 34px;
}

.family-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-medium);
    position: relative;
    font-weight: 600;
}

/* Quote container */
.quote-container {
    background: #f0f8f4;
    color: var(--text-dark);
    border-radius: var(--border-radius);
    padding: 38px 28px;
    margin-top: 44px;
    border: 1px solid #d9ecdf;
    position: relative;
    overflow: hidden;
}
.quote-container::before {
    content: '\201C';
    position: absolute;
    font-size: 10rem;
    color: rgba(11, 93, 75, 0.05);
    top: -35px; left: 15px;
    font-family: serif;
    line-height: 1;
}
.quote-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-deep);
    line-height: 1.7;
    margin-bottom: 14px;
    position: relative;
}
.quote-author {
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold-dark);
    font-weight: 600;
}

/* ==================================================== */
/* HOUSE NAME SECTION                                    */
/* ==================================================== */
.house-name-section {
    padding: 90px 0;
    background: var(--primary-deep);
    background-image:
        radial-gradient(circle at 15% 30%, rgba(212, 175, 55, 0.08), transparent 45%),
        radial-gradient(circle at 85% 70%, rgba(212, 175, 55, 0.08), transparent 45%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.house-name-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='84' viewBox='0 0 84 84'%3E%3Cpath d='M42 0l42 42-42 42L0 42z' fill='%23D4AF37' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: repeat;
    pointer-events: none;
}

.house-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.house-icon {
    width: 62px;
    height: 62px;
    animation: houseSway 4s ease-in-out infinite, glowPulse 3s ease-in-out infinite;
}
.house-icon path, .house-icon polygon { fill: var(--accent-gold-light); }

.house-name-label {
    position: relative;
    z-index: 2;
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 12px;
    font-weight: 600;
}

.house-name {
    position: relative;
    z-index: 2;
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 6px;
    background: var(--gold-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 5s linear infinite;
}

.house-name-sub {
    position: relative;
    z-index: 2;
    margin-top: 16px;
    color: rgba(255,255,255,0.7);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.15rem;
}

/* ==================================================== */
/* EVENT DETAILS                                         */
/* ==================================================== */
.details-section { padding: 95px 0; background: #f2efe7; }

.section-header { text-align: center; max-width: 620px; margin: 0 auto 50px; }
.section-header h2 { font-size: 2.1rem; color: var(--primary-deep); margin-bottom: 12px; }
.section-header p { font-size: 0.98rem; color: var(--text-muted); }

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.detail-card {
    background: var(--bg-card);
    padding: 44px 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border-bottom: 4px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.detail-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--accent-gold); }

.detail-icon {
    width: 64px; height: 64px;
    background: rgba(11, 93, 75, 0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 22px;
    color: var(--primary-medium);
    transition: var(--transition);
}
.detail-card:hover .detail-icon { background: var(--primary-medium); color: #ffffff; }
.detail-card svg { width: 26px; height: 26px; fill: currentColor; }

.detail-title { font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; color: var(--primary-deep); }
.detail-text { font-size: 1.05rem; color: var(--text-muted); font-weight: 500; }
.detail-highlight { font-weight: 700; color: var(--accent-gold-dark); font-size: 1.1rem; }

/* ==================================================== */
/* VENUE / LOCATION CARD                                 */
/* ==================================================== */
.venue-section { padding: 50px 0 100px; background: #f2efe7; }

.venue-card {
    max-width: 760px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-deep) 0%, #0d6e58 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
}

.venue-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 0l30 30-30 30L0 30z' fill='%23D4AF37' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: repeat;
    pointer-events: none;
}

.venue-body {
    position: relative;
    z-index: 2;
    padding: 56px 40px;
    text-align: center;
    color: #ffffff;
}

.venue-pin {
    width: 54px; height: 54px;
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    animation: floatSlow 3s ease-in-out infinite;
}
.venue-pin svg { width: 26px; height: 26px; fill: var(--accent-gold-light); }

.venue-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold-light);
    font-weight: 600;
    margin-bottom: 10px;
}

.venue-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: #ffffff;
}

.venue-address {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    max-width: 460px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.venue-card .btn-primary { box-shadow: 0 8px 24px rgba(0,0,0,0.25); }

/* ==================================================== */
/* GALLERY SECTION                                       */
/* ==================================================== */
.gallery-section { padding: 100px 0; background: var(--bg-light); }

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

.gallery-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.gallery-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.gallery-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.5s ease;
}
.gallery-card:hover img { transform: scale(1.12); }

.gallery-card.tall { grid-row: span 2; }

.gallery-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 22px 18px 16px;
    background: linear-gradient(180deg, transparent, rgba(11, 93, 75, 0.85) 85%);
    color: #fff;
    transform: translateY(8px);
    opacity: 0.92;
    transition: var(--transition);
}
.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ==================================================== */
/* CONTACT SECTION                                       */
/* ==================================================== */
.contact-section { padding: 100px 0; background: #f2efe7; text-align: center; }

.contact-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 10px; }

.contact-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 40px 42px;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 93, 75, 0.06);
    transition: var(--transition);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.contact-avatar {
    width: 68px; height: 68px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 700;
}

.contact-name { font-size: 1.25rem; font-weight: 700; color: var(--primary-medium); margin-bottom: 4px; font-family: var(--font-heading); }
.contact-role { font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-gold-dark); margin-bottom: 22px; font-weight: 600; }

.contact-buttons { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.btn-call, .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: var(--transition);
}
.btn-call { background: var(--primary-deep); color: #fff; }
.btn-call:hover { background: var(--primary-medium); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1ebc59; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-call svg, .btn-whatsapp svg { width: 17px; height: 17px; fill: currentColor; }

/* ==================================================== */
/* BUTTONS (shared)                                      */
/* ==================================================== */
.btn {
    display: inline-block;
    padding: 13px 30px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 40px;
    cursor: pointer;
    transition: var(--transition);
}
.btn-primary {
    background: var(--gold-gradient);
    color: #0B5D4B;
    border: none;
    box-shadow: var(--shadow-sm);
    background-size: 200% auto;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); background-position: right center; }

/* ==================================================== */
/* FOOTER                                                 */
/* ==================================================== */
.footer {
    background: var(--primary-deep);
    color: #ffffff;
    padding: 70px 0 40px;
    text-align: center;
    border-top: 3px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='84' viewBox='0 0 84 84'%3E%3Cpath d='M42 0l42 42-42 42L0 42z' fill='%23D4AF37' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: repeat;
    pointer-events: none;
}

.footer-icon { width: 40px; height: 40px; margin: 0 auto 22px; opacity: 0.8; position: relative; z-index: 2; }
.footer-icon path, .footer-icon polygon { fill: var(--accent-gold-light); }

.footer-message {
    position: relative; z-index: 2;
    font-size: 1.15rem;
    max-width: 620px;
    margin: 0 auto 26px;
    line-height: 1.85;
    color: rgba(255,255,255,0.85);
    font-family: var(--font-display);
    font-style: italic;
}

.footer-love-label {
    position: relative; z-index: 2;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold-light);
    margin-bottom: 8px;
    font-weight: 600;
}

.footer-names {
    position: relative; z-index: 2;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 34px;
    letter-spacing: 1px;
}

.footer-bottom {
    position: relative; z-index: 2;
    margin-top: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
}

/* ==================================================== */
/* SCRATCH TO OPEN OVERLAY                               */
/* ==================================================== */
#scratchScreen {
    position: fixed;
    inset: 0;
    background: rgba(6, 38, 30, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.scratch-card {
    position: relative;
    width: 440px;
    height: 340px;
    max-width: 90%;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 4px solid #ffffff;
}

.scratch-content {
    position: absolute;
    text-align: center;
    pointer-events: none;
    width: 100%;
    padding: 26px;
    z-index: 1;
}

.scratch-house-icon { width: 54px; height: 54px; margin: 0 auto 10px; }
.scratch-house-icon path, .scratch-house-icon polygon { fill: var(--accent-gold-dark); }

#scratchCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: grab;
    z-index: 2;
    border-radius: 18px;
}

/* ==================================================== */
/* MEDIA QUERIES                                         */
/* ==================================================== */
@media (max-width: 992px) {
    .hero-title { font-size: 2.7rem; }
    .house-name { font-size: 2.5rem; letter-spacing: 4px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    html { font-size: 15px; }
    .hero { padding: 110px 0 80px; }
    .hero-title { font-size: 2.2rem; }
    .hero-host-names { font-size: 1.25rem; }
    .countdown-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
    .countdown-number { font-size: 1.6rem; }
    .about-card { padding: 38px 22px; }
    .owner-grid { grid-template-columns: 1fr; max-width: 320px; }
    .quote-container { padding: 30px 20px; }
    .quote-text { font-size: 1.2rem; }
    .house-name { font-size: 2.1rem; letter-spacing: 3px; }
    .venue-body { padding: 44px 26px; }
    .venue-name { font-size: 1.7rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .footer-details { flex-direction: column; gap: 20px; }
}

@media (max-width: 480px) {
    .family-names { gap: 10px 22px; }
    .contact-buttons { flex-direction: column; width: 100%; }
    .btn-call, .btn-whatsapp { width: 100%; justify-content: center; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .gallery-card.tall { grid-row: span 1; }
}

/* Respect reduced motion preference */
@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;
    }
}
