:root {
    --gold: #c9a45c;
    --gold-light: #f6d98f;
    --gold-dark: #9b7832;
    --dark: #080604;
    --dark-2: #100d09;
    --dark-3: #18130d;
    --cream: #f9f1df;
    --cream-2: #fff9ee;
    --ivory: #fffdf8;
    --text: #2b251c;
    --muted: #817568;
    --muted-2: #a79c8e;
    --white-soft: rgba(255, 255, 255, .84);
    --border: rgba(201, 164, 92, .26);
    --border-dark: rgba(255, 255, 255, .12);
    --shadow: 0 28px 90px rgba(8, 6, 4, .16);
    --shadow-strong: 0 40px 120px rgba(0, 0, 0, .38);
    --radius-xl: 34px;
    --radius-lg: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 0%, rgba(201, 164, 92, .12), transparent 32%),
        linear-gradient(180deg, #fffdf8 0%, #fffaf1 45%, #fff 100%);
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: .25s ease; }
img { max-width: 100%; display: block; }
main { padding-top: 106px; }
::selection { background: var(--gold); color: #111; }

.text-gold { color: var(--gold); }
.font-display { font-family: 'Marcellus', Georgia, serif; }
.bg-cream { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.bg-dark-luxury {
    background:
        radial-gradient(circle at 10% 0%, rgba(246, 217, 143, .16), transparent 34%),
        radial-gradient(circle at 92% 12%, rgba(201, 164, 92, .18), transparent 30%),
        linear-gradient(135deg, #070604, #151008 58%, #090704);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.bg-dark-luxury::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 76px 76px;
    opacity: .22;
    pointer-events: none;
}
.bg-dark-luxury > .container { position: relative; z-index: 1; }

/* TOP + NAV */
.top-ribbon {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 36px;
    z-index: 1040;
    background: #050403;
    color: rgba(255,255,255,.78);
    font-size: .78rem;
    border-bottom: 1px solid rgba(201,164,92,.18);
}
.top-ribbon .container { height: 36px; }
.top-ribbon span { margin-right: 18px; }
.top-ribbon i { color: var(--gold-light); margin-right: 6px; }

.luxury-navbar {
    top: 36px;
    background: rgba(8, 6, 4, .78);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(201,164,92,.2);
    box-shadow: 0 18px 55px rgba(0,0,0,.23);
    min-height: 76px;
    transition: .25s ease;
}
body.nav-scrolled .luxury-navbar {
    background: rgba(8, 6, 4, .96);
    min-height: 68px;
}
.brand-logo {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--gold-light);
    background: var(--gold);
    box-shadow: 0 0 0 7px rgba(201,164,92,.1), 0 16px 34px rgba(0,0,0,.32);
}
.brand-block { line-height: 1; display: grid; }
.brand-kicker {
    color: var(--gold-light);
    text-transform: uppercase;
    font-size: .62rem;
    letter-spacing: .34em;
    font-weight: 900;
}
.brand-text {
    color: #fff;
    font-family: 'Marcellus', Georgia, serif;
    font-size: 1.18rem;
    letter-spacing: .055em;
}
.navbar .nav-link {
    position: relative;
    color: rgba(255, 255, 255, .82);
    font-weight: 800;
    font-size: .84rem;
    padding-left: .7rem !important;
    padding-right: .7rem !important;
}
.navbar .nav-link::after {
    content: '';
    position: absolute;
    left: .7rem;
    right: .7rem;
    bottom: 1px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    transform: scaleX(0);
    transition: .25s ease;
}
.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--gold-light); }
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { transform: scaleX(1); }
.navbar-toggler { border-color: rgba(255,255,255,.16); border-radius: 16px; padding: 10px 12px; }
.navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(201,164,92,.18); }

/* BUTTONS */
.btn {
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: -.01em;
    transition: .25s ease;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light) 58%, #fff0b8);
    color: #17110a;
    border: 1px solid rgba(255,255,255,.25);
    box-shadow: 0 18px 40px rgba(201,164,92,.28);
}
.btn-gold:hover {
    background: linear-gradient(135deg, #fff0b8, var(--gold-light), var(--gold));
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 24px 50px rgba(201,164,92,.36);
}
.btn-outline-gold {
    color: var(--gold-dark);
    border: 1px solid var(--gold);
    background: rgba(255,255,255,.58);
}
.btn-outline-gold:hover { color: #111; background: var(--gold-light); transform: translateY(-2px); }
.btn-outline-light { border-color: rgba(255,255,255,.48); }
.btn-outline-light:hover { color: #111 !important; background: #fff; }

/* SECTIONS */
.section-padding { padding: 112px 0; }
.section-padding-sm { padding: 74px 0; }
.section-subtitle {
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: .24em;
    font-size: .76rem;
    font-weight: 900;
}
.bg-dark-luxury .section-subtitle,
.page-hero .section-subtitle,
.hero-premium .section-subtitle { color: var(--gold-light); }
.section-title {
    color: var(--dark);
    font-family: 'Marcellus', Georgia, serif;
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -.035em;
}
.section-lead {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.82;
}
.luxury-divider {
    width: 112px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold-dark), transparent);
    margin: 24px 0;
}
.luxury-divider.center { margin-left: auto; margin-right: auto; }

/* HERO ACCUEIL */
.hero-premium {
    min-height: calc(100vh - 36px);
    margin-top: -106px;
    padding-top: 170px;
    padding-bottom: 92px;
    color: #fff;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(5,4,3,.96), rgba(10,8,5,.76) 50%, rgba(10,8,5,.22)),
        url('../images/hero-residence.jpeg') center/cover no-repeat;
}
.hero-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(246,217,143,.2), transparent 28%),
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: auto, 72px 72px, 72px 72px;
    mask-image: linear-gradient(90deg, #000, rgba(0,0,0,.78), transparent 92%);
    opacity: .5;
    pointer-events: none;
}
.hero-premium::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 170px;
    background: linear-gradient(0deg, #fffdf8, transparent);
}
.hero-content-premium { position: relative; z-index: 2; max-width: 790px; }
.eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 17px;
    border-radius: 999px;
    color: #ffe9ad;
    background: rgba(201,164,92,.12);
    border: 1px solid rgba(246,217,143,.36);
    font-size: .84rem;
    font-weight: 900;
    backdrop-filter: blur(12px);
}
.hero-premium h1 {
    font-family: 'Marcellus', Georgia, serif;
    font-size: clamp(3.1rem, 7.2vw, 7.3rem);
    line-height: .88;
    letter-spacing: -.055em;
    margin-top: 22px;
    text-wrap: balance;
}
.hero-premium p {
    color: rgba(255,255,255,.86);
    font-size: 1.14rem;
    line-height: 1.88;
    max-width: 700px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-mini-note {
    color: rgba(255,255,255,.74);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 24px;
    font-size: .94rem;
    max-width: 650px;
}
.hero-mini-note i { color: var(--gold-light); margin-top: 4px; }
.hero-visual-wrap { position: relative; z-index: 2; }
.hero-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    transform: rotate(-1.4deg);
}
.hero-mosaic img {
    width: 100%;
    height: 222px;
    object-fit: cover;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,.24);
    box-shadow: 0 24px 70px rgba(0,0,0,.38);
    filter: saturate(1.06) contrast(1.03);
}
.hero-mosaic img:nth-child(1) { grid-row: span 2; height: 460px; }
.hero-floating-card {
    position: absolute;
    left: -22px;
    bottom: 34px;
    width: min(336px, 86%);
    background: rgba(255,253,248,.94);
    color: var(--dark);
    border-radius: 28px;
    padding: 22px;
    box-shadow: 0 30px 90px rgba(0,0,0,.31);
    border: 1px solid rgba(201,164,92,.32);
    backdrop-filter: blur(14px);
}
.hero-floating-card .icon-box { margin-bottom: 12px; }

.quick-reservation {
    position: relative;
    z-index: 5;
    margin-top: -56px;
}
.quick-reservation-card {
    background: rgba(255,253,248,.96);
    border: 1px solid rgba(201,164,92,.32);
    box-shadow: 0 28px 80px rgba(8,6,4,.16);
    border-radius: 32px;
    padding: 20px;
    backdrop-filter: blur(20px);
}
.quick-reservation-card .form-control,
.quick-reservation-card .form-select {
    border-radius: 999px;
    min-height: 52px;
    border: 1px solid rgba(8,6,4,.12);
}

/* CARDS */
.luxury-card {
    position: relative;
    border: 1px solid rgba(8,6,4,.06);
    border-radius: 31px;
    background: rgba(255,255,255,.92);
    box-shadow: var(--shadow);
    overflow: hidden;
    height: 100%;
    transition: .3s ease;
}
.luxury-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(246,217,143,.16), transparent 30%, transparent 70%, rgba(8,6,4,.04));
    pointer-events: none;
    opacity: .75;
    z-index: 1;
}
.luxury-card:hover { transform: translateY(-9px); box-shadow: 0 34px 100px rgba(8,6,4,.2); }
.luxury-card img {
    height: 270px;
    width: 100%;
    object-fit: cover;
    transition: .48s ease;
}
.luxury-card:hover img { transform: scale(1.045); }
.luxury-card-body { padding: 27px; position: relative; z-index: 2; }
.luxury-card .card-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    color: #16100a;
    background: linear-gradient(135deg, var(--gold-light), #fff1bc);
    border-radius: 999px;
    padding: 7px 13px;
    font-weight: 900;
    font-size: .75rem;
    box-shadow: 0 12px 25px rgba(0,0,0,.16);
}
.icon-box {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201,164,92,.16), rgba(246,217,143,.12));
    color: var(--gold-dark);
    font-size: 1.42rem;
    margin-bottom: 18px;
    border: 1px solid rgba(201,164,92,.16);
}
.service-tile {
    background: rgba(255,255,255,.92);
    border-radius: 28px;
    padding: 27px;
    height: 100%;
    border: 1px solid rgba(8,6,4,.065);
    box-shadow: 0 20px 55px rgba(8,6,4,.09);
    transition: .25s ease;
    position: relative;
    overflow: hidden;
}
.service-tile::after {
    content: '';
    position: absolute;
    right: -38px;
    top: -38px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(201,164,92,.1);
}
.service-tile:hover { transform: translateY(-7px); border-color: var(--border); }
.service-tile h5 { font-weight: 900; color: var(--dark); position: relative; z-index: 1; }
.service-tile p, .service-tile .icon-box { position: relative; z-index: 1; }

.stats-strip {
    background:
        radial-gradient(circle at 0% 0%, rgba(246,217,143,.16), transparent 36%),
        linear-gradient(135deg, #080604, #171108);
    color: #fff;
    border-radius: 36px;
    padding: 30px;
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(201,164,92,.2);
}
.stat-item { border-left: 2px solid var(--gold-light); padding-left: 18px; }
.stat-item strong {
    display: block;
    font-family: 'Marcellus', Georgia, serif;
    color: #fff;
    font-size: 2.6rem;
    line-height: 1;
}
.stat-item span { color: rgba(255,255,255,.7); font-size: .88rem; }

.image-stack { position: relative; min-height: 525px; }
.image-stack img {
    position: absolute;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: var(--shadow);
    border: 8px solid #fffdf8;
}
.image-stack .img-main { width: 78%; height: 430px; right: 0; top: 0; }
.image-stack .img-small { width: 54%; height: 262px; left: 0; bottom: 0; }
.image-stack .img-badge {
    position: absolute;
    right: 32px;
    bottom: 34px;
    background: rgba(255,253,248,.95);
    border-radius: 24px;
    padding: 18px 22px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
    color: var(--text);
}
.feature-list i { color: var(--gold-dark); margin-top: 4px; }
.bg-dark-luxury .feature-list li { color: rgba(255,255,255,.84); }
.bg-dark-luxury .feature-list i { color: var(--gold-light); }

.gallery-img {
    height: 290px;
    width: 100%;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 18px 45px rgba(8,6,4,.14);
}
.gallery-collage {
    display: grid;
    grid-template-columns: 1.15fr .85fr 1fr;
    grid-template-rows: 252px 252px;
    gap: 16px;
}
.gallery-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,.12);
}
.gallery-collage img:nth-child(1) { grid-row: span 2; }
.gallery-collage img:nth-child(4) { grid-column: span 2; }
.gallery-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 34px; }
.gallery-filter button {
    border: 1px solid rgba(8,6,4,.12);
    background: #fff;
    color: var(--text);
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 900;
}
.gallery-filter button.active,
.gallery-filter button:hover { background: var(--dark); color: var(--gold-light); border-color: var(--dark); }
.gallery-item { cursor: zoom-in; }

/* PAGE HERO */
.page-hero {
    min-height: 480px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(5,4,3,.91), rgba(10,8,5,.58), rgba(10,8,5,.18)),
        var(--page-bg, url('../images/cour-residence.jpeg')) center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: .26;
    mask-image: linear-gradient(90deg, #000, transparent 92%);
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 125px;
    background: linear-gradient(0deg, #fffdf8, transparent);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
    font-family: 'Marcellus', Georgia, serif;
    font-size: clamp(2.75rem, 5vw, 5.35rem);
    line-height: .94;
    letter-spacing: -.045em;
    max-width: 880px;
    text-wrap: balance;
}
.page-hero p.lead { max-width: 720px; color: rgba(255,255,255,.8); }

/* FORMS */
.alert-luxury {
    background: rgba(201,164,92,.12);
    border: 1px solid rgba(201,164,92,.28);
    color: #705522;
    border-radius: 18px;
}
.form-luxury,
.admin-card {
    background: rgba(255,255,255,.94);
    border-radius: 30px;
    border: 1px solid rgba(8,6,4,.065);
    box-shadow: var(--shadow);
    padding: 30px;
}
.form-control,
.form-select {
    border-radius: 18px;
    min-height: 52px;
    border: 1px solid rgba(8,6,4,.12);
    padding-left: 16px;
    background-color: #fffdf8;
}
textarea.form-control { border-radius: 22px; }
.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 .25rem rgba(201,164,92,.16);
    background-color: #fff;
}
.form-label { font-weight: 900; color: var(--dark); }

/* MAP + LOCATION */
.map-card {
    border: 1px solid rgba(201,164,92,.35);
    border-radius: 32px;
    overflow: hidden;
    background: #111;
    box-shadow: var(--shadow-strong);
}
.map-card iframe { display: block; width: 100%; min-height: 430px; }
.location-panel {
    background: rgba(255,253,248,.95);
    border: 1px solid rgba(201,164,92,.24);
    border-radius: 30px;
    padding: 30px;
    height: 100%;
    box-shadow: var(--shadow);
}
.location-mini {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}
.location-mini div {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    color: var(--muted);
}
.location-mini i { color: var(--gold-dark); margin-top: 4px; }

/* FOOTER */
.prefooter-cta { background: var(--cream); padding: 76px 0 0; }
.prefooter-card {
    background:
        linear-gradient(120deg, rgba(5,4,3,.95), rgba(16,12,7,.78)),
        url('../images/salle-fete.jpeg') center/cover no-repeat;
    color: #fff;
    border-radius: 40px;
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(201,164,92,.24);
}
.prefooter-card h2 { font-family: 'Marcellus', Georgia, serif; max-width: 780px; }
.prefooter-card p { color: rgba(255,255,255,.76); max-width: 780px; }
.footer-luxury {
    background:
        radial-gradient(circle at 0% 0%, rgba(201,164,92,.16), transparent 32%),
        #080604;
    color: #fff;
}
.footer-logo { width: 60px; height: 60px; border-radius: 50%; border: 2px solid var(--gold-light); object-fit: cover; }
.footer-text { color: rgba(255,255,255,.68); line-height: 1.76; }
.footer-luxury h6 { color: var(--gold-light); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; }
.footer-links { list-style: none; padding: 0; margin: 0; color: rgba(255,255,255,.68); }
.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--gold-light); }
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    font-size: 1.9rem;
    box-shadow: 0 16px 40px rgba(37,211,102,.34);
    z-index: 1050;
}
.whatsapp-float:hover { color: #fff; transform: translateY(-3px); }

/* ADMIN */
.admin-layout { background: #f5f1e9; }
.admin-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: 280px;
    background:
        radial-gradient(circle at 20% 0%, rgba(201,164,92,.18), transparent 34%),
        #080604;
    color: #fff;
    padding: 24px;
    overflow-y: auto;
    z-index: 1000;
    border-right: 1px solid rgba(201,164,92,.2);
}
.admin-sidebar .nav-link {
    color: rgba(255,255,255,.72);
    border-radius: 16px;
    padding: 12px 14px;
    margin-bottom: 6px;
    font-weight: 800;
}
.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background: rgba(201,164,92,.14);
    color: var(--gold-light);
}
.admin-main { margin-left: 280px; min-height: 100vh; }
.admin-topbar {
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(8,6,4,.06);
    padding: 20px 30px;
    position: sticky;
    top: 0;
    z-index: 20;
}
.admin-content { padding: 30px; }
.admin-stat-card {
    background: #fff;
    border-radius: 26px;
    padding: 24px;
    border: 1px solid rgba(8,6,4,.06);
    box-shadow: 0 18px 45px rgba(8,6,4,.08);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.admin-stat-card::after {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    right: -24px;
    top: -24px;
    border-radius: 50%;
    background: rgba(201,164,92,.13);
}
.admin-stat-card .stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,164,92,.13);
    color: var(--gold-dark);
    margin-bottom: 18px;
}
.table { vertical-align: middle; }
.table thead th { color: var(--muted); text-transform: uppercase; font-size: .78rem; letter-spacing: .05em; }

/* REVEAL */
.reveal-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 991px) {
    main { padding-top: 76px; }
    .top-ribbon { display: none; }
    .luxury-navbar { top: 0; background: rgba(8, 6, 4, .98); }
    .navbar-collapse { padding: 18px 0; }
    .navbar .nav-link { padding-top: .72rem; padding-bottom: .72rem; }
    .hero-premium { margin-top: -76px; padding-top: 126px; }
    .hero-mosaic { margin-top: 30px; }
    .hero-mosaic img:nth-child(1) { height: 360px; }
    .hero-mosaic img { height: 174px; }
    .quick-reservation { margin-top: 32px; }
    .image-stack { min-height: auto; display: grid; gap: 18px; }
    .image-stack img, .image-stack .img-main, .image-stack .img-small { position: static; width: 100%; height: 300px; }
    .image-stack .img-badge { position: static; }
    .gallery-collage { grid-template-columns: 1fr; grid-template-rows: none; }
    .gallery-collage img { height: 280px; }
    .gallery-collage img:nth-child(1), .gallery-collage img:nth-child(4) { grid-row: auto; grid-column: auto; }
    .prefooter-card { flex-direction: column; align-items: flex-start; padding: 34px; }
    .admin-sidebar { position: relative; width: 100%; min-height: auto; }
    .admin-main { margin-left: 0; }
}

@media (max-width: 576px) {
    .section-padding { padding: 78px 0; }
    .section-padding-sm { padding: 54px 0; }
    .page-hero { min-height: 380px; }
    .hero-premium h1 { font-size: 3.05rem; }
    .hero-actions .btn { width: 100%; }
    .quick-reservation-card { border-radius: 24px; }
    .form-luxury, .admin-card, .location-panel { padding: 22px; border-radius: 24px; }
    .prefooter-card { border-radius: 28px; }
    .brand-text { font-size: 1rem; }
    .brand-logo { width: 48px; height: 48px; }
    .whatsapp-float { right: 16px; bottom: 16px; width: 56px; height: 56px; }
    .map-card iframe { min-height: 360px; }
}
