/* ===== _variables.css ===== */
:root {
    /* BRAND COLORS (Default LIGHT) */
    --bg: #FAF9F6;
    /* Cream Light */
    --card: #FFFFFF;
    /* White */
    --text: #2E4A33;
    /* Dark Green */
    --muted: #5C6B5F;
    /* Muted Green/Gray */
    --accent: #C5A059;
    /* Gold */
    --btn-bg: #2E4A33;
    /* Dark Green Button */
    --btn-text: #FAF9F6;
    /* Cream Text */

    /* TYPOGRAPHY */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

    /* SPACING */
    --header-height: 100px;
    --spacing-md: 60px;
    /* Consistent 15px spacing */

    /* BORDERS */
    --border-radius-lg: 30px;
    --border-radius-md: 20px;

    /* UTILS */
    --divider: rgba(0, 0, 0, 0.05);
}

/* DARK MODE OVERRIDES */
body.dark {
    --bg: #0f0f0f;
    --card: #1a1a1a;
    --text: #ffffff;
    --muted: #e5e5e5;
    /* Lighter gray, almost white */
    --btn-bg: #ffffff;
    --btn-text: #000000;
    --divider: rgba(255, 255, 255, 0.15);
    /* Visible divider in dark mode */
}

/* ===== _reset.css ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    overflow-x: hidden;
    padding-top: var(--header-height);
    -webkit-font-smoothing: antialiased;
    /* Smooth Theme Transition for ALL elements */
    transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

/* Ensure all interactive/structural elements transition smoothly */
header,
nav,
a,
button,
input,
select,
textarea,
.card,
.section-block,
.google-card,
.btn-pill {
    transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease, transform 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ===== _layout.css ===== */
/* UTILITIES */
.container {
    width: 100%;
    max-width: 100%;
    /* Full width to respect edge spacing */
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    /* Equal spacing on edges */
}

.text-center {
    text-align: center;
}

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

.text-gold {
    color: var(--accent);
}

.text-dark-green {
    color: var(--text);
}

.font-bold {
    font-weight: 700;
}

.text-muted {
    color: var(--muted);
}

.section-padding {
    padding: 80px 0;
    transition: background-color 0.5s ease;
    /* Ensure main background transitions smoothly */
}

/* WELCOME GRID SPECIFIC */
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    /* Increased gap as requested */
    align-items: stretch;
    /* Forces equal height */
    width: 100%;
}

.welcome-column {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.map-container {
    height: 100%;
    min-height: 400px;
    /* Fallback */
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: #e0e0e0;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Map Overlay */
.map-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--card);
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    transition: background 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.map-overlay i {
    color: var(--accent);
}

/* Dark Mode Overrides for Map Overlay */
body.dark .map-overlay {
    background: var(--card);
    /* Dark BG from variables */
    color: var(--text);
    /* Light Text from variables */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* ===== _header.css ===== */
header {
    height: var(--header-height);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.5s ease, border-color 0.5s ease;
}

body.dark header {
    background: rgba(15, 15, 15, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-left img {
    height: 60px;
    object-fit: contain;
}

.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.header-center nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--muted);
    font-size: 15px;
    font-weight: 500;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
    font-weight: 600;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ===== _hero.css ===== */
/* HERO SECTION */
.hero {
    min-height: 85vh;
    /* Increased height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 20px;
    margin: 0;
    padding-bottom: 140px;
    /* Shift content up */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    background-color: #000;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    /* No transition desired for hero */
}

/* Gradient removed as per user request for a sharp cut */

.hero-logo {
    max-width: 1300px;
    width: 90%;
    height: auto;
    margin-bottom: 0px;
    /* Removed spacing to pull text closer */
    filter: brightness(0) invert(1);
    /* Static white logo */
}

.hero p {
    font-size: 1.2rem;
    color: #ffffff !important;
    /* Force white */
    max-width: 800px;
    margin-bottom: 25px;
    margin-top: -60px;
    /* Pull text up significantly over the logo as requested */
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Added shadow for readability */
    position: relative;
    z-index: 2;
}

/* Hero Buttons - Static White */
.hero .btn-pill {
    background: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #ffffff !important;
    transition: transform 0.2s ease !important;
    /* Keep transform, remove color/bg transition */
    font-size: 16px;
    /* +2px from default 14px */
    padding: 12px 50px;
    /* Wider padding (50px) but not taller (12px) */
}

.hero .btn-pill.outline {
    background: transparent !important;
    color: #ffffff !important;
}

.hero .btn-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* ===== _components.css ===== */
/* BUTTONS */
.btn-pill {
    background: var(--btn-bg);
    color: var(--btn-text);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    /* Ensure it matches the rest of the site */
}

.btn-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 74, 51, 0.15);
}

.btn-pill.outline {
    background: transparent;
    border: 2px solid var(--text);
    color: var(--text);
}

.btn-google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 30px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-google img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.btn-google:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* CARDS */
/* CARDS */
.section-block {
    background: var(--card);
    /* Fix: Use variable for dark mode */
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    transition: background-color 0.5s ease, box-shadow 0.5s ease;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ... existing code ... */

.btn-google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 30px;
    background: var(--card);
    /* Fix: Use variable for dark mode */
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.5s ease;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* ... existing code ... */

.swiper-slide {
    height: auto;
    display: flex;
    box-sizing: border-box;
    /* Ensure padding doesn't affect width calcs */
}

.testimonial-card {
    background: var(--card);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.5s ease;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    flex: 1;
    /* Grow to fill the slide */
}

/* Make the link wrapper invisible but functional */
.testimonial-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    /* Ensure it behaves like a flex container if needed, or block */
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

/* Hover effects pass-through */
.testimonial-link:hover .testimonial-card {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--section-gap, 40px);
    /* Uses local variable from section or default 40px */
    margin-top: 40px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text);
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

/* GOOGLE REVIEWS */
.google-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: background-color 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: left;
    height: 100%;
}

.google-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.google-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ccc;
    object-fit: cover;
}

.google-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    font-family: var(--font-sans);
    /* Update font to sans as requested */
}

.google-info span {
    font-size: 12px;
    color: #777;
    display: block;
}

.google-g-icon {
    margin-left: auto;
    width: 20px;
    height: 20px;
}

.google-stars {
    color: #F4B400;
    font-size: 14px;
    margin-bottom: 12px;
}

.google-text {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/* FORMS */
input,
select,
textarea {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    font-family: var(--font-sans);
    margin-bottom: 15px;
    font-size: 15px;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--accent);
}

/* DARK MODE FORM FIXES */
/* 1. White Calendar Icon in Dark Mode */
body.dark input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* 2. Custom Select Arrow for Alignment */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMzMzIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+PHBvbHlsaW5lIHBvaW50cz0iNiA5IDEyIDE1IDE4IDkiPjwvcG9seWxpbmU+PC9zdmc+');
    background-repeat: no-repeat;
    background-position: right 1.3rem center;
    /* Moved significantly left (1.3rem) */
    background-size: 1.2em;
    padding-right: 4rem;
    /* Increased space for arrow */
}

/* White Arrow in Dark Mode */
body.dark select {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+PHBvbHlsaW5lIHBvaW50cz0iNiA5IDEyIDE1IDE4IDkiPjwvcG9seWxpbmU+PC9zdmc+');
}

.testimonial-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--divider, rgba(0, 0, 0, 0.05));
    padding-top: 20px;
    position: relative;
    transition: border-color 0.5s ease;
    /* Smooth transition for the line too */
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: var(--text);
    font-family: var(--font-sans);
}

.testimonial-info span {
    font-size: 13px;
    color: var(--muted);
}

.testimonial-g-icon {
    position: absolute;
    right: 0;
    bottom: 5px;
    /* Aligned with avatar area */
    width: 24px;
    height: 24px;
}

/* SWIPER PAGINATION OVERRIDES */
.mySwiper {
    padding-bottom: 60px;
    /* Reserve space for pagination below cards */
}

.swiper-wrapper {
    padding-bottom: 0;
    align-items: stretch;
    /* Ensure slides stretch to match tallest */
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 16px !important;
    height: 4px !important;
    border-radius: 5px !important;
    margin: 0 6px !important;
    background: #ccc;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--accent) !important;
    opacity: 1 !important;
}

.swiper-pagination {
    bottom: 10px !important;
    /* Center vertically in the padding */
}

/* Toast Notification */
#toast-notification {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 50px;
    padding: 16px;
    position: fixed;
    z-index: 1000;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s, bottom 0.3s;
}

#toast-notification.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
}

#toast-notification.success {
    background-color: #2E4A33;
    /* Dark Green matching brand */
    color: #FAF9F6;
}

#toast-notification.error {
    background-color: #d32f2f;
    /* Red */
    color: #fff;
}

.field-invalid {
    border-color: #d32f2f !important;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.12);
}

/* REVIEW DRAG CURSOR */
.mySwiper,
.mySwiper .swiper-slide,
.mySwiper .testimonial-link,
.mySwiper .testimonial-card {
    cursor: grab;
}

.mySwiper.is-grabbing,
.mySwiper.is-grabbing .swiper-slide,
.mySwiper.is-grabbing .testimonial-link,
.mySwiper.is-grabbing .testimonial-card,
body.is-grabbing-reviews {
    cursor: grabbing !important;
}

/* FORM OVERFLOW SAFETY */
.reservation-form,
.auth-form,
.auth-form-card,
.section-block form {
    min-width: 0;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea,
.auth-form input,
.auth-form select,
.auth-form textarea {
    max-width: 100%;
    width: 100%;
    margin-bottom: 0;
}

/* PUBLIC GALLERY MASONRY */
.masonry-gallery {
    column-count: 4;
    column-gap: 22px;
}

.masonry-gallery .masonry-item {
    width: 100%;
}

@media (max-width: 1100px) {
    .masonry-gallery {
        column-count: 3;
    }
}

@media (max-width: 760px) {
    .masonry-gallery {
        column-count: 2;
    }
}

@media (max-width: 520px) {
    .masonry-gallery {
        column-count: 1;
    }
}


/* ===== _footer.css ===== */
footer {
    background: var(--text);
    color: var(--bg);
    padding: 80px 0 40px;
    transition: background-color 0.5s ease, color 0.5s ease;
}

body.dark footer {
    background: #000;
    color: #fff;
}

footer .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* 3 Equal columns */
    gap: 60px;
    margin-bottom: 60px;
}

/* 1. Left Column (Brand) - Strict Center */
.footer-brand {
    text-align: center;
    padding-left: 0;
}

/* Center the logo image */
footer img[alt="La Quinta Luna Logo"] {
    height: 100px !important;
    margin: -30px auto 10px auto;
    /* Move UP (-30px) and CLOSER to description (10px) */
    display: block;
    filter: brightness(0) invert(1);
    position: relative;
    /* Ensure it layers correctly if overlapping */
    z-index: 1;
}

/* Center Social Icons (now in brand) */
.footer-brand .social-icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    font-size: 1.5rem;
    justify-content: center;
}


/* 2. Middle Column (Navigation) - Box Center, Text Left */
.footer-nav {
    display: flex;
    justify-content: center;
    /* Center the wrapper */
}

/* 3. Right Column (Contact) - Box Center, Text Left */
.footer-contact {
    display: flex;
    justify-content: center;
    /* Center the wrapper */
    padding-right: 80px;
    /* Fix: Increase right spacing to match left side (~138px total) */
}

/* The inner wrapper ensuring text stays left aligned but block is centered */
.footer-content-wrapper {
    text-align: left;
    max-width: 100%;
    /* Ensure it doesn't overflow */
}

/* Typography Updates */
.footer h4 {
    color: #fff;
    margin-bottom: 20px;
    font-family: var(--font-sans);
    /* "misma tipografia que el boton" (Inter) */
    font-size: 18px;
    /* "sube 2px" (assuming base was ~16px) */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-nav ul {
    line-height: 2;
    padding: 0;
    list-style: none;
    /* Ensure no bullets */
}

.footer-nav a {
    opacity: 0.7;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
    opacity: 0.5;
    font-size: 14px;
}

.footer-logo {
    filter: brightness(0) invert(1);
}


/* ===== _responsive.css ===== */
/* MOBILE MENU & RESPONSIVE */
.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: var(--bg);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 80px 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu a {
    font-size: 22px;
    font-family: var(--font-serif);
}

@media (min-width: 901px) {
    .mobile-menu {
        display: none !important;
    }
}

@media (max-width: 900px) {
    header {
        padding: 0 20px;
    }

    .header-center {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .header-login {
        display: none;
    }
}


/* ===== cupora-inspired admin + portal additions ===== */
html { scroll-behavior: smooth; }
body {
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
}
main { overflow: hidden; }
*, *::before, *::after { box-sizing: border-box; }
a, button, summary, [role="button"], .btn, .btn-pill, .nav-link, .mobile-toggle, .testimonial-link, .swiper, .swiper-slide, .status-pill { cursor: pointer; }
input, textarea { cursor: text; }
select { cursor: pointer; }
img { max-width: 100%; }
.page-top-spacing { padding-top: 138px; }
.portal-spacing-top { margin-top: 24px; }
.flash-offset { padding-top: calc(var(--header-height) + 22px); }
.flash-card {
    margin: 0 auto 28px;
    padding: 18px 22px;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(22, 40, 28, 0.08);
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
}
.flash-card--success { border: 1px solid rgba(46, 74, 51, 0.16); }
.flash-card--error { border: 1px solid rgba(198, 66, 55, 0.18); }
body.dark .flash-card { background: rgba(26, 26, 26, 0.96); }
.container--wide { width: min(calc(100% - 52px), 1500px); margin-inline: auto; }
.container--narrow { width: min(calc(100% - 52px), 1240px); margin-inline: auto; }
.site-header-bar {
    height: var(--header-height);
    padding: 0 28px;
}
.site-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    height: 100%;
}
.brand-link { display: inline-flex; align-items: center; }
.theme-toggle {
    background: transparent;
    border: 1px solid rgba(46,74,51,.18);
    color: var(--text);
    min-width: unset;
    padding: 10px 14px;
}
.theme-toggle img { width: 20px; height: 20px; display: block; }
.header-cta-main { min-width: 152px; }
.mobile-close {
    position: absolute;
    top: 28px;
    right: 26px;
    font-size: 30px;
    background: transparent;
    border: 0;
    color: var(--text);
}
.mobile-accent-link { color: var(--accent); }
body.dark .theme-toggle { border-color: rgba(255,255,255,.16); }

.intro-card.page-intro-card,
.surface-card {
    background: rgba(255,255,255,.90);
    border-radius: 34px;
    box-shadow: 0 18px 42px rgba(22, 40, 28, 0.08);
}
body.dark .intro-card.page-intro-card,
body.dark .surface-card { background: rgba(24, 24, 24, 0.92); box-shadow: 0 18px 42px rgba(0,0,0,0.22); }
.page-intro-card { padding: clamp(30px, 3.4vw, 42px); }
.page-intro-card h1 { font-size: clamp(2.8rem, 5vw, 4.75rem); margin-top: 8px; }
.page-intro-card p { max-width: 900px; margin: 18px auto 0; }
.hero-content-shell { display:flex; flex-direction:column; align-items:center; justify-content:center; min-height:100%; }
.hero-actions-row { display:flex; gap:20px; justify-content:center; margin-top:20px; flex-wrap:wrap; }
.reservation-band { background: var(--bg); position: relative; z-index: 10; }
.reservation-shell {
    max-width: 1400px;
    margin: -120px auto 0;
    background: var(--card);
    padding: 42px 40px;
    border-radius: 34px;
    box-shadow: 0 16px 40px rgba(22, 40, 28, 0.10);
    transition: background-color .5s ease;
}
.reservation-shell--inner { margin-top: 28px; }
.reservation-kicker {
    letter-spacing: 2px;
    font-size: 18px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 18px;
}
.reservation-form {
    width: 100%;
}
.reservation-form-grid {
    display: grid;
    gap: 20px;
}
.reservation-form-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.reservation-form-row { margin-top: 20px; }
.form-group { position: relative; margin: 0; }
.form-group label,
.form-field span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 600;
}
.form-field {
    display: grid;
    gap: 10px;
}
.form-field input,
.form-field select,
.form-field textarea,
.form-group input,
.form-group select,
.form-group textarea,
.auth-form input,
.auth-form select,
.auth-form textarea,
.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 52px;
    margin: 0;
    padding: 14px 18px;
    border-radius: 18px;
    border: 1px solid rgba(197,160,89,.55);
    background: rgba(255,255,255,.9);
    color: var(--text);
    box-shadow: none;
}
.form-group textarea,
.form-field textarea,
.auth-form textarea,
.admin-form textarea { min-height: 140px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.auth-form input:focus,
.auth-form select:focus,
.auth-form textarea:focus,
.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    outline: none;
    border-color: #ff9800;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.12);
}
body.dark .form-group input,
body.dark .form-group select,
body.dark .form-group textarea,
body.dark .form-field input,
body.dark .form-field select,
body.dark .form-field textarea,
body.dark .auth-form input,
body.dark .auth-form select,
body.dark .auth-form textarea,
body.dark .admin-form input,
body.dark .admin-form select,
body.dark .admin-form textarea {
    background: rgba(15, 15, 15, .92);
    color: #fff;
    border-color: rgba(197,160,89,.75);
}
.validation-tooltip {
    position: absolute;
    bottom: 100%;
    left: 0;
    background-color: #ff9800;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-family: var(--font-sans);
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 25;
    display: none;
    margin-bottom: 8px;
}
.validation-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 10px;
    border-width: 5px;
    border-style: solid;
    border-color: #ff9800 transparent transparent transparent;
}
.validation-tooltip.show {
    display: block;
    animation: fadeInValidation 0.25s ease;
}
@keyframes fadeInValidation {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
.field-invalid {
    border-color: #ff9800 !important;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.12) !important;
}
.form-security { margin-top: 20px; }
.reservation-submit {
    width: 100%;
    font-size: 18px;
    margin-top: 25px;
    justify-content: center;
}
.auth-page { padding: 54px 0 72px; min-height: calc(100vh - 220px); }
.auth-shell { width: min(calc(100% - 30px), 1180px); margin-inline: auto; }
.auth-hero,
.auth-form-card {
    overflow: hidden;
}
.auth-form-card { box-shadow: none; }
.auth-grid,
.customer-auth-grid,
.admin-form-grid,
.admin-link-grid,
.customer-program-grid,
.admin-grid {
    display: grid;
    gap: 18px;
}
.auth-grid,
.customer-auth-grid,
.admin-form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.auth-full,
.customer-auth-grid__full,
.admin-form-grid__full { grid-column: 1 / -1; }
.auth-remember,
.auth-actions,
.customer-auth-actions,
.customer-hero-actions,
.customer-badge-row,
.customer-memory-list,
.customer-quote-list,
.customer-event-list,
.customer-perks-list,
.admin-form-actions,
.table-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.auth-actions,
.customer-auth-actions,
.admin-form-actions,
.customer-hero-actions { margin-top: 10px; }
.customer-hero-card,
.customer-section-card,
.customer-program-card,
.admin-section,
.metric-card,
.review-card,
.admin-login-card,
.customer-auth-card {
    padding: clamp(28px, 3.4vw, 42px);
}
.customer-hero-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: calc(var(--header-height) + 18px);
}
.customer-hero-card h1,
.customer-auth-card h1,
.promo-detail-hero h1 { font-size: clamp(42px, 4.8vw, 68px); margin-bottom: 14px; }
.customer-hero-actions { justify-content: flex-end; }
.admin-grid--metrics { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.metric-card h2,
.customer-program-card h2,
.customer-section-card h2,
.admin-section__header h2 { font-size: clamp(32px, 3.6vw, 50px); margin-bottom: 12px; }
.customer-program-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.customer-badge-row { margin-top: 18px; }
.customer-badge {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(46, 74, 51, 0.08);
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
}
.customer-progress-box,
.customer-perks-list article,
.customer-quote-list article,
.customer-memory-list article,
.customer-event-card {
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(46, 74, 51, 0.05);
}
body.dark .customer-badge,
body.dark .customer-progress-box,
body.dark .customer-perks-list article,
body.dark .customer-quote-list article,
body.dark .customer-memory-list article,
body.dark .customer-event-card { background: rgba(255,255,255,0.05); }
.customer-memory-list { display: grid; }
.customer-memory-list article {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}
.customer-memory-list article span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 62px;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(197,160,89,0.16);
    color: #8f6f2f;
    font-weight: 700;
}
.customer-event-list { display: grid; }
.customer-event-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.customer-quote-note { color: var(--muted); font-size: 15px; margin-top: 8px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    transition: transform 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
    text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: #fff; background: var(--accent); }
.btn-primary:hover { background: #b99349; box-shadow: 0 12px 24px rgba(197,160,89,.25); }
.btn-secondary {
    background: rgba(46, 74, 51, 0.08);
    color: var(--text);
}
body.dark .btn-secondary { background: rgba(255,255,255,0.08); }
.btn-danger { background: #b94c43; color: #fff; }
.btn-small { min-height: 40px; padding: 0 18px; font-size: 14px; }
.btn-outline { background: rgba(46, 74, 51, 0.08); color: var(--text); }
.pill { display:inline-flex; align-items:center; justify-content:center; min-height:46px; padding:0 24px; border-radius:999px; background:var(--accent); color:#fff; font-weight:700; }
.cards { display:grid; gap:20px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card { background: rgba(255,255,255,.90); border-radius: 28px; box-shadow: 0 16px 34px rgba(22,40,28,.08); padding: 24px; }
body.dark .card { background: rgba(24,24,24,.92); }
.admin-section table,
main table {
    width: 100%;
    border-collapse: collapse;
}
.admin-section th,
.admin-section td,
main th,
main td {
    padding: 16px 14px;
    border-bottom: 1px solid rgba(46,74,51,.08);
    text-align: left;
    vertical-align: top;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-transform: capitalize;
    background: rgba(46, 74, 51, 0.10);
}
.status-pill--approved,
.status-pill--active,
.status-pill--ready { background: rgba(46, 107, 61, 0.14); color: #2f6b3d; }
.status-pill--rejected,
.status-pill--pending,
.status-pill--expired,
.status-pill--failed { background: rgba(198, 66, 55, 0.14); color: #c64237; }
.status-pill--inactive { background: rgba(46, 74, 51, 0.10); color: var(--text); }
.admin-body {
    background: linear-gradient(180deg, rgba(197,160,89,0.12) 0%, rgba(250,249,246,1) 28%);
    color: var(--text);
}
body.dark.admin-body { background: linear-gradient(180deg, rgba(0,0,0,0.42) 0%, rgba(15,15,15,1) 28%); }
.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
}
.admin-sidebar {
    padding: 28px 22px;
    border-right: 1px solid rgba(46, 74, 51, 0.10);
    background: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    height: 100vh;
}
body.dark .admin-sidebar { background: rgba(26,26,26,0.90); border-color: rgba(255,255,255,.08); }
.admin-brand { display: grid; gap: 12px; margin-bottom: 30px; }
.admin-brand img { width: 168px; }
.admin-brand span { font-size: 14px; font-weight: 700; color: var(--muted); }
.admin-nav { display: grid; gap: 10px; margin-bottom: 24px; }
.admin-nav a {
    display: block;
    padding: 14px 18px;
    border-radius: 18px;
    background: transparent;
    transition: background-color 0.2s ease;
}
.admin-nav a.is-active,
.admin-nav a:hover { background: rgba(197,160,89,0.18); }
.admin-main { padding: 34px clamp(18px, 3vw, 42px) 48px; }
.admin-topbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}
.admin-topbar h1 { font-size: clamp(38px, 4vw, 56px); }
.admin-topbar__meta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.82);
    box-shadow: 0 10px 24px rgba(22,40,28,.08);
}
body.dark .admin-topbar__meta { background: rgba(26,26,26,.90); }
.table-wrap { width: 100%; overflow-x: auto; }
.admin-table {
    width: 100%;
    min-width: 860px;
    border-collapse: collapse;
}
.admin-table th,
.admin-table td {
    padding: 16px 14px;
    border-bottom: 1px solid rgba(46, 74, 51, 0.08);
    text-align: left;
    vertical-align: top;
}
.admin-table td small,
.customer-event-card small { display: block; margin-top: 4px; color: var(--muted); }
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.photo-card {
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255,255,255,0.88);
    box-shadow: 0 16px 30px rgba(22,40,28,0.08);
}
body.dark .photo-card { background: rgba(24,24,24,0.95); }
.photo-card img { width: 100%; display: block; }
.photo-card__body { display: grid; gap: 14px; padding: 14px; }
.admin-preview-image { aspect-ratio: 16 / 10; object-fit: cover; border-radius: 24px; }
.admin-inline-editor summary { list-style: none; }
.admin-inline-editor summary::-webkit-details-marker { display:none; }
.reviews-band { background: var(--bg); }
.reviews-shell { padding-inline: 40px; max-width: 100%; }
.reviews-header { margin-bottom: 64px; }
.reviews-header h2 { font-size: 3rem; margin-top: 10px; }
.reviews-swiper,
.mySwiper {
    cursor: grab;
    user-select: none;
}
.reviews-swiper.is-grabbing,
.mySwiper.is-grabbing { cursor: grabbing; }
body.is-grabbing-reviews,
body.is-grabbing-reviews * { cursor: grabbing !important; }
.swiper-slide { height: auto; display: flex; }
.testimonial-link { display: flex; width: 100%; height: 100%; color: inherit; text-decoration: none; cursor: grab; }
.testimonial-link:active { cursor: grabbing; }
.testimonial-card {
    width: 100%;
    height: 100%;
    padding: 30px;
    border-radius: 30px;
    border: 1px solid rgba(46, 74, 51, 0.10);
    background: rgba(255,255,255,0.92);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
body.dark .testimonial-card { background: rgba(24,24,24,0.95); border-color: rgba(255,255,255,.08); }
.testimonial-link:hover .testimonial-card { transform: translateY(-2px); border-color: rgba(197,160,89,0.46); box-shadow: 0 14px 26px rgba(22,40,28,.08); }
.testimonial-stars { font-size: 14px; }
.testimonial-text { color: var(--text); line-height: 1.7; font-size: 15px; }
.testimonial-footer { display:flex; align-items:center; gap:14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 999px; object-fit: cover; }
.testimonial-info { display: grid; gap: 4px; }
.testimonial-info h4 { margin: 0; font-size: 16px; font-family: var(--font-sans); }
.testimonial-info span { font-size: 13px; color: var(--muted); }
.testimonial-g-icon { width: 22px; height: 22px; margin-left: auto; }
.external-pagination { position: relative !important; inset: auto !important; margin: 28px auto 0 !important; }
.review-form-panel {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 22px;
    margin-top: 40px;
    padding: clamp(28px, 4vw, 40px);
}
.review-form { display: grid; gap: 16px; }
.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}
.promo-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.promo-card--lead { grid-column: 2; }
.promo-card__media-link { display:block; }
.promo-card__media,
.promo-detail-image {
    width: 100%;
    display: block;
    border-radius: 28px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}
.promo-card__embed-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 28px;
    aspect-ratio: 16 / 10;
    background: #000;
}
.promo-card__embed-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.promo-card__body { padding: 24px; display:grid; gap: 12px; }
.promo-card__body h2,
.promo-card__body h3 { font-size: clamp(30px, 3vw, 42px); }
.promo-card__actions { display:flex; gap:12px; flex-wrap:wrap; margin-top: 8px; }
.promo-detail-hero {
    display:grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 24px;
    padding: clamp(28px, 3.4vw, 42px);
}
.promo-detail-body { padding: clamp(28px, 3.4vw, 42px); }
.rich-copy { color: var(--text); line-height: 1.85; white-space: normal; }
.empty-state-copy {
    margin-top: 28px;
    text-align: center;
    font-size: 1.05rem;
    color: var(--muted);
}
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 12px;
    gap: 22px;
    align-items: start;
}
.gallery-card {
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    grid-row: span var(--gallery-span);
    height: calc(var(--gallery-span) * 12px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.gallery-card--lead { grid-column: 2; }
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex: 1;
}
.gallery-card figcaption {
    padding: 14px 16px;
    color: var(--muted);
    font-size: 14px;
    background: rgba(255,255,255,.88);
}
body.dark .gallery-card figcaption { background: rgba(24,24,24,.94); }
.welcome-copy-card h2 { font-size: 2.5rem; margin: 20px 0; }
.welcome-intro { font-size: 1.1rem; line-height: 1.8; margin-bottom: 30px; }
.welcome-feature-list { display: grid; gap: 14px; margin-bottom: 26px; }
.welcome-feature-item { display:flex; gap:14px; align-items:flex-start; }
.welcome-feature-item p { margin: 4px 0 0; }
.welcome-link-btn { background: var(--bg); color: var(--text); }
.footer-copy { opacity: .78; line-height: 1.7; }
.footer-contact p { opacity: .78; margin-bottom: 10px; }
.footer-logout-btn { width: 100%; justify-content: center; }
#toast-notification {
    visibility: hidden;
    min-width: 260px;
    max-width: 360px;
    background-color: rgba(32, 48, 36, .96);
    color: #fff;
    text-align: center;
    border-radius: 999px;
    padding: 14px 18px;
    position: fixed;
    z-index: 9999;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
    opacity: 0;
    transition: opacity .25s ease, bottom .25s ease, visibility .25s ease;
}
#toast-notification.show { visibility: visible; opacity: 1; bottom: 34px; }
#toast-notification.error { background: rgba(170, 60, 46, .96); }
@media (max-width: 1180px) {
    .admin-grid--metrics,
    .photo-grid,
    .promo-grid,
    .gallery-masonry,
    .review-form-panel,
    .promo-detail-hero,
    .customer-program-grid,
    .admin-form-grid,
    .customer-auth-grid { grid-template-columns: 1fr 1fr; }
    .promo-card--lead,
    .gallery-card--lead { grid-column: auto; }
    .admin-shell { grid-template-columns: 1fr; }
    .admin-sidebar { position: static; height: auto; border-right: 0; border-bottom: 1px solid rgba(46,74,51,.10); }
}
@media (max-width: 920px) {
    .site-header-bar { padding: 0 20px; }
    .header-center { display: none; }
    .header-login { display: none; }
    .site-header-inner { grid-template-columns: auto 1fr auto; }
    .mobile-toggle { display:block; }
    .reservation-form-grid--2,
    .auth-grid,
    .customer-auth-grid,
    .admin-form-grid,
    .customer-program-grid,
    .review-form-panel,
    .promo-detail-hero,
    .gallery-masonry,
    .promo-grid,
    .photo-grid { grid-template-columns: 1fr; }
    .gallery-masonry { grid-auto-rows: auto; }
    .gallery-card { height: auto; }
    .gallery-card img { height: auto; aspect-ratio: auto; }
    .customer-hero-card,
    .customer-event-card,
    .customer-memory-list article,
    .admin-topbar { flex-direction: column; align-items: stretch; }
    .customer-hero-card { margin-top: calc(var(--header-height) + 8px); }
    .container,
    .container--wide,
    .container--narrow { width: min(calc(100% - 30px), 100%); }
    .reviews-shell { padding-inline: 0; }
    .reservation-shell { padding: 28px 20px; margin-top: -90px; }
    .page-top-spacing { padding-top: 118px; }
}
@media (max-width: 560px) {
    header { padding: 0 16px; }
    .header-left img { height: 48px; }
    .hero-actions-row { width: 100%; }
    .hero-actions-row .btn-pill { width: 100%; }
    .footer-contact { padding-right: 0; }
    .page-intro-card h1,
    .reviews-header h2 { font-size: 2.2rem; }
    .customer-hero-card h1,
    .promo-detail-hero h1 { font-size: 2.4rem; }
    .metric-card h2,
    .customer-program-card h2,
    .customer-section-card h2,
    .admin-section__header h2,
    .promo-card__body h2,
    .promo-card__body h3 { font-size: 2rem; }
}


/* ===== refined v5 overrides ===== */
.site-header-inner .header-center {
    position: static;
    left: auto;
    transform: none;
    justify-self: center;
    width: auto;
}
.site-header-inner .header-left { justify-self: start; }
.site-header-inner .header-right {
    justify-self: end;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}
.site-header-inner .header-center nav { justify-content: center; flex-wrap: wrap; }
.site-header-bar .brand-link img { width: auto; height: 62px; object-fit: contain; display: block; }
.admin-topbar__copy .eyebrow { display: block; margin-bottom: 8px; }
.admin-topbar h1,
.customer-hero-card h1,
.customer-auth-card h1,
.auth-hero h1,
.page-intro-card h1,
.review-form-panel h2,
.admin-section__header h2,
.metric-card h2,
.customer-program-card h2,
.customer-section-card h2 { margin: 0; }
.admin-main { padding-top: 22px; }
.admin-topbar { margin-bottom: 18px; align-items: center; }
.admin-sidebar { padding-top: 24px; }
.admin-brand img { width: 196px; max-width: 100%; }
.admin-topbar__meta { font-weight: 700; }
.portal-card-center,
.portal-card-center p,
.portal-card-center .eyebrow,
.portal-card-center h1,
.portal-card-center h2,
.portal-card-center h3 { text-align: center; }
.customer-hero-card {
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.customer-hero-copy { display: grid; gap: 12px; justify-items: center; }
.customer-hero-actions { justify-content: center; width: 100%; }
.customer-badge-row--centered,
.customer-perks-list--centered { justify-content: center; }
.customer-progress-box--centered { text-align: center; }
.customer-event-list--cards,
.customer-memory-list--cards { display: grid; gap: 14px; }
.customer-event-card--soft,
.customer-memory-list--cards article {
    background: rgba(46, 74, 51, 0.05);
    border-radius: 22px;
    padding: 18px 18px;
    justify-content: space-between;
}
body.dark .customer-event-card--soft,
body.dark .customer-memory-list--cards article { background: rgba(255,255,255,0.06); }
.admin-section__header--centered {
    justify-content: space-between;
    align-items: center;
    text-align: center;
}
.admin-section__header--stacked { justify-content: center; }
.empty-state-copy--boxed {
    padding: 18px;
    border-radius: 22px;
    background: rgba(46,74,51,.05);
    text-align: center;
}
.review-form-panel--with-google { display: grid; gap: 18px; }
.review-form-copy { text-align: center; }
.review-google-cta {
    display: grid;
    gap: 12px;
    justify-items: center;
    align-content: start;
}
.review-divider {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(197,160,89,.15);
    color: var(--text);
    font-weight: 800;
    text-transform: lowercase;
}
.auth-hero,
.auth-form-card,
.customer-auth-card,
.admin-login-card { overflow: visible; }
.auth-form input,
.auth-form select,
.auth-form textarea,
.admin-form input,
.admin-form select,
.admin-form textarea,
.admin-auth-field input,
.review-form input,
.review-form textarea,
.review-form select {
    width: 100%;
    max-width: 100%;
}
.auth-note { width: 100%; text-align: center; }
.auth-actions .btn-pill,
.customer-auth-actions .btn-pill,
.admin-auth-actions .btn-pill { width: 100%; }
@media (max-width: 920px) {
    .site-header-inner .header-right {
        gap: 10px;
    }
    .site-header-bar .brand-link img { height: 52px; }
    .customer-hero-actions,
    .admin-section__header--centered { flex-direction: column; }
    .admin-topbar__meta { align-self: flex-start; }
}
@media (max-width: 560px) {
    .site-header-bar { padding: 0 14px; }
    .site-header-inner { gap: 12px; }
    .theme-toggle { padding: 9px 12px; }
    .header-cta-main { min-width: 132px; }
    .customer-hero-card,
    .metric-card,
    .customer-program-card,
    .customer-section-card,
    .admin-section,
    .auth-hero,
    .auth-form-card { padding: 22px; border-radius: 28px; }
    .admin-brand img { width: 178px; }
    .admin-topbar h1,
    .customer-hero-card h1,
    .auth-hero h1 { font-size: clamp(2.1rem, 10vw, 2.8rem); }
}


/* ===== v6 final alignment fixes ===== */
body.admin-body,
body.admin-auth-page { padding-top: 0; margin: 0; }

.site-header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 100%;
}
.site-header-inner .header-left { flex: 0 0 auto; }
.site-header-inner .header-center {
    position: static;
    left: auto;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
}
.site-header-inner .header-center nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.2vw, 30px);
    flex-wrap: wrap;
}
.site-header-inner .header-right {
    flex: 0 0 auto;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.page-intro-card,
.page-intro-card .reservation-kicker,
.page-intro-card h1,
.page-intro-card p {
    text-align: center;
}
.page-intro-card {
    display: grid;
    justify-items: center;
    gap: 12px;
}
.page-intro-card h1 {
    max-width: 980px;
    margin-inline: auto;
    line-height: 0.98;
}
.page-intro-card p {
    max-width: 900px;
    margin: 0 auto;
}

.metric-card,
.metric-card .eyebrow,
.metric-card h2,
.metric-card p {
    text-align: center;
}
.metric-card {
    display: grid;
    justify-items: center;
    align-content: center;
    min-height: 190px;
}
.metric-card p { max-width: 28ch; margin-inline: auto; }

.service-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.service-highlight-card {
    padding: 30px;
    border-radius: 28px;
    background: var(--card);
    text-align: center;
    display: grid;
    justify-items: center;
    gap: 14px;
    box-shadow: 0 18px 42px rgba(22,40,28,.08);
}
body.dark .service-highlight-card { box-shadow: 0 18px 42px rgba(0,0,0,.22); }
.service-highlight-card .service-icon {
    font-size: 28px;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.service-highlight-card h3,
.service-highlight-card p { text-align: center; }
.service-highlight-card p { max-width: 28ch; margin: 0 auto; }

.review-form-panel.review-form-panel--with-google {
    justify-items: center;
    text-align: center;
    gap: 14px;
}
.review-form-copy,
.review-google-cta { width: 100%; }
.review-form-panel--with-google .review-form {
    width: min(100%, 560px);
    margin-inline: auto;
    justify-self: center;
    text-align: left;
}
.review-form-panel--with-google .review-form .form-group {
    width: 100%;
}
.review-form-panel--with-google .review-form button {
    justify-content: center;
}
.review-google-cta .btn-pill { min-width: min(100%, 360px); justify-content: center; }

.admin-main {
    padding-top: 10px;
}
.admin-topbar {
    margin-top: 0;
    margin-bottom: 20px;
}
.admin-grid--metrics + .admin-section {
    margin-top: 44px;
}
.admin-sidebar { padding-top: 18px; }
.admin-brand img { width: 220px; max-width: 100%; }

@media (max-width: 920px) {
    .site-header-inner {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 12px;
    }
    .site-header-inner .header-center { display: none; }
    .site-header-inner .header-right { margin-left: 0; }
    .review-form-panel--with-google .review-form { width: min(100%, 100%); }
}
@media (max-width: 560px) {
    .page-intro-card h1 { font-size: clamp(2.3rem, 11vw, 3.1rem); }
    .metric-card { min-height: 165px; }
    .review-google-cta .btn-pill { min-width: 100%; }
}

.review-form-copy h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin: 0; }
.review-form-copy h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); margin: 0; color: var(--text); }
