:root {
    --accent-blush: #DDA7A5;
    --accent-rose: #C88A88;
    --accent-dark: #8A4858;
    --accent-velvet: #642838;
    --accent-gold: #C5A059;
    --accent-light: #FAF2F0;
    --accent-border: #EED8D6;
    --bg-page: #FAF6F4;
    --surface: #FFFFFF;
    --text-main: #3C3034;
    --text-muted: #7E6B71;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-script: 'Alex Brush', cursive;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    --shadow-soft: 0 12px 35px rgba(138, 72, 88, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: var(--font-body);
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.65;
    overflow-x: hidden;
}

body.no-scroll { overflow: hidden !important; }
.container { max-width: 1050px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.hidden { display: none !important; }

/* ==========================================================================
   BLOOMING ROSE PETALS OPENING EFFECT (Design 05 Unique)
   ========================================================================== */
#blush-intro {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: radial-gradient(circle at 50% 50%, #FAF0EE 0%, #EED5D2 100%);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s ease;
}

#blush-intro.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.blush-bloom-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blush-frosted-panel {
    position: absolute;
    width: 100%;
    height: 50.1%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 2;
    transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.blush-frosted-panel.panel-top {
    top: 0;
    border-bottom: 2px solid rgba(221, 167, 165, 0.5);
}

.blush-frosted-panel.panel-bottom {
    bottom: 0;
    border-top: 2px solid rgba(221, 167, 165, 0.5);
}

#blush-intro.opened .panel-top { transform: translateY(-100%); }
#blush-intro.opened .panel-bottom { transform: translateY(100%); }

.blush-center-flower {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 2.8rem 3rem;
    border-radius: 36px;
    border: 1.5px solid rgba(221, 167, 165, 0.4);
    box-shadow: 0 25px 60px rgba(138, 72, 88, 0.18), 0 5px 20px rgba(0,0,0,0.03);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.7s ease;
}

#blush-intro.opened .blush-center-flower {
    transform: scale(0.85);
    opacity: 0;
    pointer-events: none;
}

.blush-flower-core {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rose-layer {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid var(--accent-blush);
    animation: rose-pulse 3s infinite ease-in-out;
}

.rose-layer.layer-1 { width: 90px; height: 90px; opacity: 0.3; animation-delay: 0s; }
.rose-layer.layer-2 { width: 70px; height: 70px; opacity: 0.5; animation-delay: 0.5s; }
.rose-layer.layer-3 { width: 50px; height: 50px; opacity: 0.8; animation-delay: 1s; }

@keyframes rose-pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.08) rotate(15deg); }
}

.rose-heart {
    font-size: 1.8rem;
    color: var(--accent-dark);
    z-index: 3;
    animation: heart-beat 2.2s infinite ease-in-out;
}

@keyframes heart-beat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.blush-intro-meta .blush-tag {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-rose);
    font-weight: 600;
}

.blush-intro-meta .blush-couple {
    font-family: var(--font-script);
    font-size: 3rem;
    color: var(--accent-dark);
    line-height: 1.1;
    margin: 0.3rem 0;
}

.blush-intro-meta .blush-date {
    display: inline-block;
    padding: 0.35rem 1.2rem;
    background: var(--accent-light);
    border: 1px solid var(--accent-border);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-top: 0.4rem;
}

.blush-pulse-hint {
    margin-top: 1.6rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-dark);
    font-weight: 700;
    animation: pulse-gate 2s infinite ease-in-out;
}

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

/* ==========================================================================
   FLOATING ACTION BUTTONS
   ========================================================================== */
.lang-switch-btn, .music-toggle {
    position: fixed; z-index: 1000;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--surface); color: var(--accent-dark);
    border: 1.5px solid var(--accent-border); box-shadow: var(--shadow-soft);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s;
}
.lang-switch-btn { top: 1.2rem; right: 1.2rem; font-weight: 700; font-size: 0.75rem; gap: 3px; }
.music-toggle { bottom: 1.5rem; right: 1.5rem; }
.lang-switch-btn:hover, .music-toggle:hover { transform: scale(1.08); background: var(--accent-light); }

/* ==========================================================================
   1. FRENCH CHATEAU SCALLOPED ARCH HERO
   ========================================================================== */
.chateau-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem;
    overflow: hidden;
    text-align: center;
}

.chateau-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    transform: scale(1.04);
    filter: brightness(0.92);
    z-index: 1;
}

.chateau-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 45%, rgba(250, 246, 244, 0.45) 0%, rgba(250, 246, 244, 0.88) 75%, var(--bg-page) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
}

.chateau-arch-card {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid var(--accent-border);
    border-radius: 40px 40px 24px 24px;
    padding: 4.5rem 3rem 3.5rem;
    box-shadow: 0 25px 60px rgba(138, 72, 88, 0.12), 0 4px 15px rgba(0,0,0,0.03);
}

.arch-cameo-crest {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--accent-blush);
    color: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 6px 18px rgba(138, 72, 88, 0.18);
}

.chateau-pretitle {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-rose);
    display: block;
    margin-bottom: 0.6rem;
}

.chateau-names {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 4.8rem);
    font-weight: 400;
    color: var(--accent-dark);
    line-height: 1.15;
    margin: 0.6rem 0;
}

.chateau-names .c-amp {
    font-family: var(--font-script);
    font-size: clamp(3rem, 7.5vw, 5.2rem);
    color: var(--accent-rose);
    margin: 0 0.4rem;
}

.chateau-rose-garland {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.2rem 0;
}
.chateau-rose-garland.left-align { justify-content: flex-start; }

.g-line { height: 1.5px; width: 60px; background: var(--accent-border); }
.g-line.short { width: 35px; }
.g-flower { font-size: 1.1rem; color: var(--accent-rose); }

.chateau-hero-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 1.8rem;
    line-height: 1.65;
}

.chateau-date-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--accent-light);
    border: 1px solid var(--accent-border);
    padding: 0.65rem 1.6rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-dark);
    box-shadow: 0 4px 15px rgba(138, 72, 88, 0.06);
    margin-bottom: 2.2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.pill-sep { opacity: 0.4; }

.chateau-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-chateau-rose, .btn-chateau-pearl {
    padding: 0.9rem 2.2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-chateau-rose {
    background: linear-gradient(135deg, var(--accent-rose), var(--accent-dark));
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 18px rgba(138, 72, 88, 0.25);
}
.btn-chateau-rose:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138, 72, 88, 0.35);
}

.btn-chateau-pearl {
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent-dark);
    border: 1.5px solid var(--accent-blush);
}
.btn-chateau-pearl:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

/* ==========================================================================
   2. ANTIQUE CAMEO MEDALLION COUNTDOWN
   ========================================================================== */
.chateau-countdown-section {
    padding: 5.5rem 0;
    background: var(--surface);
    border-top: 1px solid var(--accent-border);
    border-bottom: 1px solid var(--accent-border);
}

.chateau-subheading {
    display: inline-block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: var(--accent-rose);
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.chateau-section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.6rem);
    color: var(--accent-dark);
    font-weight: 400;
    margin-bottom: 0.8rem;
}

.cursive-heading {
    font-family: var(--font-script) !important;
    font-size: clamp(2.8rem, 6vw, 3.8rem) !important;
    color: var(--accent-dark);
}

.cameo-countdown-grid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 2.2rem auto 2.5rem;
}

.cameo-medallion-pill {
    width: 95px;
    height: 125px;
    background: var(--accent-light);
    border: 2px solid var(--accent-blush);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(138, 72, 88, 0.1);
    transition: transform 0.3s ease;
}
.cameo-medallion-pill:hover { transform: translateY(-3px); }

.cameo-inner-ring {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cameo-num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--accent-dark);
    line-height: 1;
}

.cameo-lbl {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-top: 0.3rem;
    font-weight: 600;
}

.cameo-sep {
    font-size: 1.4rem;
    color: var(--accent-blush);
}

.chateau-calendar-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* ==========================================================================
   3. PARISIAN SALON SCRAPBOOK (STORY)
   ========================================================================== */
.chateau-story-section {
    padding: 6rem 0;
}

.chateau-story-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 3.5rem;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
}

.salon-scrapbook-card {
    position: relative;
    background: var(--surface);
    border: 2px solid var(--accent-border);
    border-radius: 20px;
    padding: 1.5rem 1.5rem 2rem;
    box-shadow: 0 20px 50px rgba(138, 72, 88, 0.12);
    transform: rotate(-1.5deg);
    transition: transform 0.4s ease;
}
.salon-scrapbook-card:hover { transform: rotate(0deg) scale(1.02); }

.scrapbook-silk-bow {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8rem;
    color: var(--accent-dark);
    z-index: 5;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.15));
}

.scrapbook-inner-photo {
    width: 100%;
    height: 380px;
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    border: 1px solid var(--accent-border);
}

.scrapbook-caption {
    margin-top: 1.2rem;
    text-align: center;
}

.s-script {
    display: block;
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--accent-dark);
    line-height: 1;
}

.s-date {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-rose);
    margin-top: 0.2rem;
    font-weight: 600;
}

.salon-text-col {
    text-align: left;
}

.salon-body-p {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    line-height: 1.85;
    color: var(--text-main);
    margin-bottom: 1.4rem;
}

.salon-poetry-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--accent-dark);
    border-left: 3.5px solid var(--accent-blush);
    padding: 0.8rem 1.5rem;
    margin: 1.8rem 0;
    background: var(--accent-light);
    border-radius: 0 16px 16px 0;
    line-height: 1.65;
}

.salon-signature-block {
    margin-top: 2rem;
}

.salon-signature-block span {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.cursive-sign {
    font-family: var(--font-script);
    font-size: 2.8rem;
    color: var(--accent-dark);
    font-weight: 400;
    margin-top: 0.2rem;
}

/* ==========================================================================
   4. FRENCH BISTRO MENU ITINERARY (TIMELINE)
   ========================================================================== */
.chateau-timeline-section {
    padding: 6rem 0;
    background: var(--surface);
    border-top: 1px solid var(--accent-border);
    border-bottom: 1px solid var(--accent-border);
}

.chateau-menu-card {
    max-width: 780px;
    margin: 3.5rem auto 0;
    background: var(--bg-page);
    border: 2px solid var(--accent-border);
    border-radius: 28px;
    padding: 3.5rem 3rem;
    box-shadow: 0 20px 50px rgba(138, 72, 88, 0.08);
}

.menu-ornament-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1.5px dashed var(--accent-border);
}

.m-deco { font-size: 1.4rem; color: var(--accent-rose); }
.m-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 4px;
    color: var(--accent-dark);
    font-weight: 600;
}

.menu-courses-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.menu-course-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.course-time-box {
    width: 75px;
    flex-shrink: 0;
    text-align: right;
    padding-top: 0.2rem;
}

.c-time {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-dark);
}

.course-dot-lead {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-blush);
    border: 3px solid var(--surface);
    box-shadow: 0 0 0 2px var(--accent-rose);
    margin-top: 0.45rem;
    flex-shrink: 0;
}

.course-details {
    flex: 1;
    text-align: left;
}

.course-title-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.35rem;
}

.c-icon { font-size: 1.3rem; }

.course-title-wrap h3 {
    font-family: var(--font-heading);
    font-size: 1.22rem;
    color: var(--accent-dark);
    font-weight: 600;
}

.course-details p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.highlight-course .course-dot-lead {
    background: var(--accent-dark);
    box-shadow: 0 0 0 3px var(--accent-blush);
}
.highlight-course .course-title-wrap h3 {
    color: var(--accent-dark);
}

/* ==========================================================================
   5. CHATEAU ESTATE CONCIERGE (LOCATION)
   ========================================================================== */
.chateau-location-section {
    padding: 6rem 0;
}

.chateau-estate-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 3.5rem;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
}

.estate-card {
    background: var(--surface);
    border: 1.5px solid var(--accent-border);
    border-radius: 28px;
    padding: 3.5rem 2.8rem;
    box-shadow: 0 18px 45px rgba(138, 72, 88, 0.09);
    text-align: left;
}

.estate-address {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin: 0.4rem 0 1.2rem;
}

.estate-desc {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

.estate-concierge-notes {
    background: var(--accent-light);
    border-radius: 16px;
    padding: 1.2rem 1.4rem;
    margin-bottom: 1.8rem;
    border-left: 3.5px solid var(--accent-rose);
}

.note-line {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-main);
}
.note-line:last-child { margin-bottom: 0; }

.estate-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.estate-img-frame {
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center;
    border-radius: 28px;
    border: 1.5px solid var(--accent-border);
    box-shadow: 0 18px 45px rgba(138, 72, 88, 0.12);
    position: relative;
    overflow: hidden;
}

.estate-seal-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    padding: 0.55rem 1.4rem;
    border-radius: 24px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-dark);
    border: 1px solid var(--accent-border);
}

/* ==========================================================================
   6. SALON SEATING CHART & FLOORPLAN
   ========================================================================== */
.chateau-seating-section {
    padding: 6rem 0;
    background: var(--surface);
    border-top: 1px solid var(--accent-border);
    border-bottom: 1px solid var(--accent-border);
}

.salon-sub-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0.5rem auto 1.8rem;
}

.chateau-search-wrap {
    max-width: 480px;
    margin: 1.8rem auto 2.2rem;
}

.search-cameo-input {
    position: relative;
    display: flex;
    align-items: center;
}

.cameo-search-icon {
    position: absolute;
    left: 18px;
    font-size: 1.2rem;
    pointer-events: none;
}

.search-cameo-input input {
    width: 100%;
    padding: 1rem 1.8rem 1rem 3.2rem;
    border-radius: 35px;
    border: 1.5px solid var(--accent-border);
    background: var(--bg-page);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-main);
    outline: none;
    box-shadow: 0 4px 16px rgba(138, 72, 88, 0.06);
    transition: all 0.3s;
}

.search-cameo-input input:focus {
    border-color: var(--accent-rose);
    background: #FFFFFF;
    box-shadow: 0 6px 22px rgba(138, 72, 88, 0.16);
}

.chateau-seating-results {
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

.seating-result-item, .seating-card, .seating-match-card {
    background: var(--bg-page);
    border: 1.5px solid var(--accent-border);
    border-radius: 16px;
    padding: 1.2rem 1.6rem;
    margin-bottom: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.2s ease;
}
.seating-result-item:hover, .seating-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 72, 88, 0.12);
}

.seating-guest-name, .seating-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-dark);
}
.seating-table-badge, .table-badge {
    background: var(--accent-light);
    color: var(--accent-dark);
    padding: 0.4rem 1.1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid var(--accent-border);
}

.chateau-floorplan-container {
    max-width: 900px;
    margin: 2rem auto 0;
    background: #FFFFFF;
    border: 1.5px solid var(--accent-border);
    border-radius: 28px;
    padding: 2.5rem 2rem;
    box-shadow: 0 15px 40px rgba(138, 72, 88, 0.08);
}

.floorplan-header {
    margin-bottom: 1.2rem;
    text-align: center;
}
.floorplan-header h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--accent-dark);
    margin-bottom: 0.3rem;
}
.floorplan-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.floorplan-stage {
    position: relative;
    width: 100%;
    height: 500px;
    background: var(--bg-page);
    border: 1.5px dashed var(--accent-border);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 1rem;
}

.floorplan-head-table {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent-rose), var(--accent-dark));
    color: #FFFFFF;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(138, 72, 88, 0.3);
    z-index: 5;
    text-align: center;
    padding: 0.2rem 0.5rem;
}
.floorplan-head-table .table-title { font-weight: 700; font-size: 0.85rem; }

.floorplan-dance-floor {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 115px;
    height: 75px;
    border: 2px dashed var(--accent-rose);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-dark);
    background: var(--accent-light);
    gap: 3px;
    z-index: 2;
    user-select: none;
}

.floorplan-table {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid var(--accent-rose);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
    z-index: 4;
}
.floorplan-table.shape-rect { border-radius: 10px; width: 88px; height: 52px; }
.floorplan-table.shape-rect.rotated { width: 52px; height: 88px; }
.floorplan-table:hover, .floorplan-head-table:hover {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 6px 20px rgba(138, 72, 88, 0.25);
}
.floorplan-table .table-num { font-size: 1.1rem; font-weight: 700; }
.floorplan-table.highlighted, .floorplan-head-table.highlighted {
    box-shadow: 0 0 0 4px var(--accent-gold), 0 6px 22px rgba(138, 72, 88, 0.4) !important;
    transform: translate(-50%, -50%) scale(1.22) !important;
    border-color: var(--accent-gold) !important;
    z-index: 10 !important;
}

/* ==========================================================================
   7. FRENCH SALON REPLY CARD (RSVP)
   ========================================================================== */
.chateau-rsvp-section {
    padding: 6rem 0;
}

.chateau-rsvp-card {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    background: #FFFFFF;
    border: 2px solid var(--accent-border);
    border-radius: 32px;
    padding: 4.2rem 3.2rem;
    box-shadow: 0 22px 55px rgba(138, 72, 88, 0.1);
    text-align: center;
}

.rsvp-wax-crest {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--accent-blush);
    color: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 6px 18px rgba(138, 72, 88, 0.15);
}

.rsvp-courtesy-p {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 580px;
    margin: 0 auto 2.4rem;
}

.chateau-form {
    text-align: left;
}

.c-form-group {
    margin-bottom: 1.3rem;
}

.c-form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 0.4rem;
}

.c-form-group input, .c-form-group select, .c-form-group textarea {
    width: 100%;
    padding: 0.88rem 1.15rem;
    border-radius: 14px;
    border: 1.5px solid var(--accent-border);
    background: var(--bg-page);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-main);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.c-form-group input:focus, .c-form-group select:focus, .c-form-group textarea:focus {
    border-color: var(--accent-rose);
    box-shadow: 0 0 0 3px rgba(221, 167, 165, 0.25);
    background: #FFFFFF;
}

.c-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

/* ==========================================================================
   8. SALON ORCHESTRA SOUNDTRACK (MUSIC)
   ========================================================================== */
.chateau-music-section {
    padding: 5.5rem 0;
    background: var(--surface);
    border-top: 1px solid var(--accent-border);
    border-bottom: 1px solid var(--accent-border);
}

.chateau-music-card {
    max-width: 600px;
    margin: 2.2rem auto 0;
    background: var(--surface);
    border: 1.5px solid var(--accent-border);
    border-radius: 28px;
    padding: 3rem 2.4rem;
    box-shadow: 0 15px 40px rgba(138, 72, 88, 0.08);
}

.chateau-music-form {
    display: flex;
    gap: 0.8rem;
    max-width: 560px;
    margin: 1.8rem auto 0;
    flex-wrap: wrap;
}

.chateau-music-form input {
    flex: 1;
    min-width: 240px;
    padding: 0.9rem 1.4rem;
    border-radius: 30px;
    border: 1.5px solid var(--accent-border);
    background: var(--bg-page);
    font-size: 0.95rem;
    outline: none;
}
.chateau-music-form input:focus {
    border-color: var(--accent-rose);
    background: #FFFFFF;
}

/* ==========================================================================
   9. SOUVENIR PHOTO ALBUM WALL
   ========================================================================== */
.chateau-photo-section {
    padding: 6rem 0;
}

.chateau-photo-box {
    max-width: 600px;
    margin: 2.2rem auto 0;
    background: var(--surface);
    border: 1.5px solid var(--accent-border);
    border-radius: 28px;
    padding: 3rem 2.4rem;
    box-shadow: 0 15px 40px rgba(138, 72, 88, 0.08);
}

.photo-dropzone {
    border: 2px dashed var(--accent-blush);
    border-radius: 18px;
    padding: 3rem 2rem;
    background: var(--bg-page);
    cursor: pointer;
    transition: all 0.3s;
}
.photo-dropzone:hover {
    background: var(--accent-light);
    border-color: var(--accent-rose);
}

.chateau-camera-icon {
    font-size: 2.6rem;
    display: block;
    margin-bottom: 0.5rem;
}

.photo-dropzone p {
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 0.3rem;
}

.photo-name-input-wrap input {
    width: 100%;
    padding: 0.85rem 1.2rem;
    border: 1.5px solid var(--accent-border);
    border-radius: 12px;
    background: var(--bg-page);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    margin: 1.2rem 0 1rem;
}
.photo-name-input-wrap input:focus {
    border-color: var(--accent-rose);
}

/* ==========================================================================
   10. CHATEAU COUTURE FOOTER
   ========================================================================== */
.chateau-footer {
    background: var(--accent-velvet);
    color: #FFFFFF;
    padding: 5.5rem 1.5rem 2.8rem;
    text-align: center;
}

.cameo-frame-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background-size: cover;
    background-position: center;
    border: 3px solid var(--accent-blush);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.footer-crest-icon { font-size: 1.8rem; margin-bottom: 0.5rem; color: var(--accent-blush); }

.footer-names-heading {
    font-size: 3.2rem;
    color: #FFFFFF;
    margin-bottom: 0.6rem;
}

.footer-ty-message {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: #EED8D6;
    max-width: 500px;
    margin: 0 auto 1.4rem;
}

.footer-date-tag {
    display: inline-block;
    padding: 0.35rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    color: #FFFFFF;
    margin-bottom: 2.5rem;
}

.footer-copyright-strip {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
    font-size: 0.72rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}
.footer-copyright-strip a {
    color: #EED8D6;
    text-decoration: none;
}

/* REVEAL TRANSITIONS */
.reveal { transition: opacity 0.8s ease, transform 0.8s ease; }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

/* ==========================================================================
   STRICT MOBILE RESPONSIVE RULES
   ========================================================================== */
@media (max-width: 768px) {
    /* FLOATING BUTTONS */
    .lang-switch-btn {
        top: 10px !important;
        right: 10px !important;
        height: 32px !important;
        padding: 0 10px !important;
        font-size: 0.72rem !important;
    }
    .music-toggle {
        bottom: 12px !important;
        right: 12px !important;
        width: 38px !important;
        height: 38px !important;
    }

    /* HERO */
    .chateau-hero { padding: 4rem 1rem 3rem; }
    .chateau-arch-card { padding: 3rem 1.4rem 2.2rem; }
    .chateau-names { font-size: clamp(2.2rem, 9vw, 3rem); }
    .chateau-date-pill { font-size: 0.85rem; padding: 0.5rem 1rem; }

    /* COUNTDOWN: 1 SINGLE ROW STRICT GUARANTEE */
    .cameo-countdown-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0.35rem !important;
        width: 100% !important;
        max-width: 360px !important;
        margin: 1.5rem auto !important;
    }
    .cameo-sep { display: none !important; }
    .cameo-medallion-pill {
        width: 100% !important;
        height: 90px !important;
        padding: 0.3rem 0.1rem !important;
        border-radius: 24px !important;
    }
    .cameo-num {
        font-size: clamp(1.4rem, 5.5vw, 2rem) !important;
        line-height: 1 !important;
    }
    .cameo-lbl {
        font-size: 0.6rem !important;
        letter-spacing: 1px !important;
    }

    /* STORY & ESTATE GRIDS */
    .chateau-story-grid, .chateau-estate-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .salon-scrapbook-card { transform: none; }
    .scrapbook-inner-photo { height: 280px; }
    .estate-img-frame { height: 280px; }
    .chateau-menu-card, .estate-card, .chateau-rsvp-card { padding: 2.2rem 1.4rem; }

    /* TIMELINE */
    .menu-course-row { gap: 1rem; }
    .course-time-box { width: 55px; }
    .c-time { font-size: 1.05rem; }

    /* FLOORPLAN MOBILE */
    .floorplan-stage { height: 420px !important; }
    .floorplan-head-table { width: 145px !important; height: 46px !important; }
    .floorplan-table { width: 58px !important; height: 58px !important; }
    .floorplan-table.shape-rect { width: 76px !important; height: 46px !important; }
    .floorplan-table.shape-rect.rotated { width: 46px !important; height: 76px !important; }
    .floorplan-table .table-num { font-size: 1rem !important; }
    .floorplan-dance-floor { width: 95px !important; height: 60px !important; }

    /* FORMS: 16px font-size to prevent iOS zoom */
    .c-form-row { grid-template-columns: 1fr; gap: 1rem; }
    .c-form-group input, .c-form-group select, .c-form-group textarea,
    .search-cameo-input input, .chateau-music-form input, .photo-name-input-wrap input {
        font-size: 16px !important;
    }
}

/* Button Vector SVG alignment */
.btn-chateau-rose, .btn-chateau-pearl {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   DESKTOP VIEWPORT ENHANCEMENTS (>= 992px)
   ========================================================================== */
@media (min-width: 992px) {
    .chateau-music-section, .chateau-photo-section {
        padding: 7.5rem 0;
    }
    .chateau-music-card, .chateau-photo-box {
        max-width: 720px;
        padding: 3.5rem 3.2rem;
        border-radius: 32px;
        border: 1.5px solid var(--accent-border);
        box-shadow: 0 25px 60px rgba(138, 72, 88, 0.12);
    }
    .chateau-arch-card {
        max-width: 860px;
        padding: 5rem 4rem;
    }
    .chateau-rsvp-card {
        max-width: 780px;
        padding: 4.2rem 3.6rem;
    }
    .chateau-estate-grid {
        grid-template-columns: 1.2fr 1fr;
        align-items: center;
    }
    .chateau-story-grid {
        grid-template-columns: 1fr 1.2fr;
        align-items: center;
    }
    .cameo-countdown-grid {
        max-width: 600px;
        gap: 1.2rem;
    }
    .cameo-medallion-pill {
        height: 125px;
    }
}
