:root {
    --accent-blush: #DDA7A5;
    --accent-rose: #C88A88;
    --accent-dark: #8A4858;
    --accent-velvet: #642838;
    --accent-gold: #C5A059;
    --accent-light: #FAF2F0;
    --accent-border: #EED8D6;
    
    --bg-entrance: #F5F1EE;
    --bg-salon: #F4E8EA;
    --bg-dining: #4A1C29;
    --bg-ballroom: #EBDCBF;
    --bg-library: #5E4031;
    --bg-chamber: #3B2A43;
    --bg-music: #D2D8D1;
    --bg-gallery: #F1F3F2;
    --bg-courtyard: #CFE0E8;

    --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);
    color: var(--text-main);
    line-height: 1.65;
    overflow-x: hidden;
    background-color: var(--bg-entrance);
}

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); 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); 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 ACTIONS */
.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); }

/* ==========================================================================
   GENERAL TYPOGRAPHY & DECORATIONS
   ========================================================================== */
.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(2.2rem, 4.5vw, 3.2rem); color: var(--accent-dark); font-weight: 400; margin-bottom: 0.8rem; }
.cursive-heading { font-family: var(--font-script) !important; font-size: clamp(3rem, 6vw, 4.2rem) !important; color: var(--accent-dark); }
.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); }
.salon-sub-text { font-size: 0.95rem; color: var(--text-muted); max-width: 580px; margin: 0.5rem auto 1.8rem; }

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

/* DARK ROOMS TEXT OVERRIDES */
.room-dining, .room-library, .room-chamber { color: #FAF2F0; }
.room-dining .chateau-section-title, .room-library .chateau-section-title, .room-chamber .chateau-section-title { color: #FFFFFF; }
.room-dining .cursive-heading, .room-library .cursive-heading, .room-chamber .cursive-heading { color: var(--accent-gold); }
.room-dining .chateau-subheading, .room-library .chateau-subheading, .room-chamber .chateau-subheading { color: var(--accent-gold); }
.room-dining .g-line, .room-library .g-line, .room-chamber .g-line { background: rgba(255,255,255,0.2); }
.room-dining .salon-sub-text, .room-library .salon-sub-text, .room-chamber .salon-sub-text { color: rgba(255,255,255,0.7); }
.room-dining .g-flower, .room-library .g-flower, .room-chamber .g-flower { color: var(--accent-gold); }

/* BUTTONS */
.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); }

/* ==========================================================================
   ROOM TRANSITIONS: DOORFRAMES
   ========================================================================== */
.door-transition-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
    margin: -40px 0; /* overlaps sections */
    pointer-events: none;
}
.chateau-doorframe {
    border: 3px solid var(--accent-gold);
    border-radius: 50% 50% 0 0 / 30% 30% 0 0;
    width: 260px;
    height: 120px;
    padding: 30px 20px;
    position: relative;
    text-align: center;
    background: var(--surface);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: none;
}
.doorframe-arch {
    position: absolute;
    top: 10px; left: 10px; right: 10px; bottom: 0;
    border: 1.5px dashed var(--accent-gold);
    border-radius: 50% 50% 0 0 / 30% 30% 0 0;
    border-bottom: none;
}
.doorframe-label {
    position: relative;
    z-index: 2;
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

/* ==========================================================================
   1. ENTRANCE HALL (HERO)
   ========================================================================== */
.room-entrance {
    background: var(--bg-entrance);
    position: relative;
    padding: 6rem 1.5rem 8rem;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.chandelier-svg { width: 100%; max-width: 300px; margin: 0 auto 2rem; color: var(--accent-gold); }
.entrance-names { font-family: var(--font-heading); font-size: clamp(3rem, 8vw, 5rem); color: var(--accent-dark); line-height: 1.1; margin: 1rem 0; }
.entrance-names .c-amp { font-family: var(--font-script); font-size: clamp(3.5rem, 8vw, 6rem); color: var(--accent-rose); margin: 0 0.5rem; }
.entrance-photo-arch {
    width: 100%;
    max-width: 400px;
    height: 500px;
    margin: 2rem auto;
    background-size: cover;
    background-position: center;
    border-radius: 50% 50% 0 0 / 25% 25% 0 0;
    border: 8px solid var(--surface);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.entrance-quote { font-family: var(--font-serif); font-style: italic; font-size: 1.3rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 2rem; }

/* ==========================================================================
   2. GRAND SALON (STORY)
   ========================================================================== */
.room-salon {
    background: var(--bg-salon);
    padding: 8rem 1.5rem;
    text-align: center;
}
.salon-oval-mirror {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 3/4;
    margin: 2rem auto 3rem;
    border-radius: 50%;
    border: 12px solid var(--accent-gold);
    box-shadow: inset 0 0 0 5px var(--surface), 0 25px 50px rgba(0,0,0,0.15);
    background-size: cover;
    background-position: center;
    position: relative;
}
.salon-oval-mirror::after {
    content: '❦';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: var(--accent-gold);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.salon-text-box { max-width: 700px; margin: 0 auto; }
.salon-body-p { font-family: var(--font-serif); font-size: 1.25rem; line-height: 1.8; color: var(--text-main); margin-bottom: 1.5rem; }
.cursive-sign { font-family: var(--font-script); font-size: 3rem; color: var(--accent-dark); margin-top: 1rem; }

/* ==========================================================================
   3. DINING ROOM (TIMELINE)
   ========================================================================== */
.room-dining {
    background: var(--bg-dining);
    padding: 8rem 1.5rem;
}
.chateau-menu-card { max-width: 780px; margin: 3.5rem auto 0; background: var(--surface); border: 2px solid var(--accent-gold); border-radius: 28px; padding: 3.5rem 3rem; box-shadow: 0 20px 50px rgba(0,0,0,0.3); color: var(--text-main); }
.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); }

/* ==========================================================================
   4. BALLROOM (COUNTDOWN & LOCATION)
   ========================================================================== */
.room-ballroom {
    background: var(--bg-ballroom);
    padding: 8rem 1.5rem;
    text-align: center;
}
.ballroom-clock { max-width: 600px; margin: 3rem auto; background: var(--surface); border-radius: 20px; padding: 2rem; border: 4px solid var(--accent-gold); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.cameo-countdown-grid { display: flex; justify-content: center; gap: 1rem; }
.cameo-medallion-pill { width: 90px; padding: 1rem 0; border-right: 1px dashed var(--accent-gold); }
.cameo-medallion-pill:last-child { border-right: none; }
.cameo-num { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 600; color: var(--accent-dark); }
.cameo-lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); font-weight: 600; display: block; margin-top: 0.5rem; }

.ballroom-venue-info { margin-top: 4rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.venue-panoramic-photo { width: 100%; height: 350px; background-size: cover; background-position: center; border-radius: 20px; border: 3px solid var(--surface); box-shadow: 0 15px 35px rgba(0,0,0,0.1); margin-bottom: 2rem; }
.venue-details { background: rgba(255,255,255,0.8); backdrop-filter: blur(10px); border-radius: 20px; padding: 2rem; border: 1px solid var(--surface); }

/* ==========================================================================
   5. LIBRARY (SEATING)
   ========================================================================== */
.room-library {
    background: var(--bg-library);
    padding: 8rem 1.5rem;
}
.search-cameo-input input { width: 100%; padding: 1rem 1.8rem 1rem 3.2rem; border-radius: 35px; border: 1.5px solid var(--accent-gold); background: rgba(255,255,255,0.1); font-size: 1rem; font-family: inherit; color: #FFF; outline: none; transition: all 0.3s; }
.search-cameo-input input::placeholder { color: rgba(255,255,255,0.6); }
.search-cameo-input input:focus { border-color: var(--surface); background: rgba(255,255,255,0.2); }
.cameo-search-icon { position: absolute; left: 18px; font-size: 1.2rem; pointer-events: none; color: var(--accent-gold); }
.chateau-seating-results { max-width: 500px; margin: 0 auto 2.5rem; }
.seating-result-item { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 16px; padding: 1.2rem 1.6rem; margin-bottom: 0.8rem; display: flex; justify-content: space-between; align-items: center; color: #FFF; }
.seating-table-badge { background: var(--accent-gold); color: var(--bg-library); padding: 0.4rem 1.1rem; border-radius: 20px; font-weight: 600; font-size: 0.85rem; }

.chateau-floorplan-container { max-width: 900px; margin: 2rem auto 0; background: var(--surface); border: 4px solid var(--accent-gold); border-radius: 20px; padding: 2.5rem 2rem; box-shadow: 0 15px 40px rgba(0,0,0,0.3); color: var(--text-main); }
.floorplan-stage { position: relative; width: 100%; height: 500px; background: var(--bg-entrance); border: 1.5px dashed var(--accent-border); border-radius: 15px; overflow: hidden; margin-top: 1rem; }
.floorplan-head-table { position: absolute; transform: translate(-50%, -50%); width: 160px; height: 52px; background: 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(0,0,0,0.2); z-index: 5; text-align: center; }
.floorplan-table { position: absolute; transform: translate(-50%, -50%); width: 68px; height: 68px; border-radius: 50%; background: #FFFFFF; border: 2px solid var(--accent-gold); 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.1); transition: transform 0.25s; z-index: 4; }
.floorplan-table.highlighted, .floorplan-head-table.highlighted { box-shadow: 0 0 0 4px var(--accent-rose) !important; transform: translate(-50%, -50%) scale(1.2) !important; z-index: 10 !important; }

/* ==========================================================================
   6. SECRET CHAMBER (RSVP)
   ========================================================================== */
.room-chamber {
    background: var(--bg-chamber);
    padding: 8rem 1.5rem;
}
.chateau-rsvp-card { max-width: 720px; margin: 0 auto; background: var(--surface); border: 2px solid var(--accent-gold); border-radius: 32px; padding: 4.2rem 3.2rem; box-shadow: 0 25px 60px rgba(0,0,0,0.4); text-align: center; color: var(--text-main); position: relative; }
.rsvp-wax-crest { position: absolute; top: -24px; left: 50%; transform: translateX(-50%); width: 50px; height: 50px; border-radius: 50%; background: #900C3F; color: #FFF; border: 3px solid var(--accent-gold); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; box-shadow: 0 6px 18px rgba(0,0,0,0.3); }
.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; }
.c-form-group input:focus, .c-form-group select:focus, .c-form-group textarea:focus { border-color: var(--accent-gold); }
.c-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

/* ==========================================================================
   7. MUSIC SALON (MUSIC)
   ========================================================================== */
.room-music {
    background: var(--bg-music);
    padding: 8rem 1.5rem;
}
.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(0,0,0,0.05); }
.chateau-music-form { display: flex; gap: 0.8rem; 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: #FFF; font-size: 0.95rem; outline: none; }

/* ==========================================================================
   8. GALLERY (PHOTO)
   ========================================================================== */
.room-gallery {
    background: var(--bg-gallery);
    padding: 8rem 1.5rem;
}
.chateau-photo-box { max-width: 600px; margin: 2.2rem auto 0; background: var(--surface); border: 2px solid var(--accent-gold); border-radius: 20px; padding: 3rem 2.4rem; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.photo-dropzone { border: 2px dashed var(--accent-gold); border-radius: 12px; padding: 3rem 2rem; background: rgba(197, 160, 89, 0.05); cursor: pointer; transition: all 0.3s; }
.photo-dropzone:hover { background: rgba(197, 160, 89, 0.15); }
.photo-name-input-wrap input { width: 100%; padding: 0.85rem 1.2rem; border: 1.5px solid var(--accent-border); border-radius: 12px; background: #FFF; font-family: inherit; font-size: 0.95rem; outline: none; margin: 1.2rem 0 1rem; }

/* ==========================================================================
   9. COURTYARD (FOOTER)
   ========================================================================== */
.room-courtyard {
    background: var(--bg-courtyard);
    color: var(--accent-dark);
    padding: 6rem 1.5rem 3rem;
    text-align: center;
}
.cameo-frame-circle { width: 150px; height: 150px; border-radius: 50%; margin: 0 auto 1.5rem; background-size: cover; background-position: center; border: 4px solid var(--surface); box-shadow: 0 15px 30px rgba(0,0,0,0.15); }
.footer-names-heading { font-size: 3.5rem; color: var(--accent-dark); margin-bottom: 0.6rem; }
.footer-ty-message { font-family: var(--font-serif); font-size: 1.25rem; color: var(--text-main); max-width: 500px; margin: 0 auto 1.4rem; }
.footer-date-tag { display: inline-block; padding: 0.4rem 1.5rem; background: var(--surface); border-radius: 30px; font-size: 0.9rem; color: var(--accent-dark); font-weight: 600; margin-bottom: 2.5rem; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .cameo-countdown-grid { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; gap: 0.35rem !important; }
    .cameo-medallion-pill { width: 100% !important; padding: 0.5rem 0 !important; border-right: none; border-bottom: 1px dashed var(--accent-gold); }
    .cameo-medallion-pill:last-child { border-bottom: none; }
    .c-form-row { grid-template-columns: 1fr; }
    .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; }
    .entrance-photo-arch { height: 350px; }
    .door-transition-wrap { margin: -30px 0; }
    .chateau-doorframe { width: 220px; height: 90px; padding: 20px 15px; }
    .floorplan-stage { height: 420px !important; }
}
