/* ========= HEADER ========= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    padding: 0.75rem 0;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
}

.logo-img {
    width: 36px;
    height: 36px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFFFF;
    transition: color 0.3s;
}

.site-header.scrolled .logo-text {
    color: var(--charcoal);
}

.main-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.main-nav a {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    transition: color 0.2s;
    text-decoration: none;
}

.site-header.scrolled .main-nav a {
    color: var(--charcoal);
}

.main-nav a:hover {
    color: var(--terracotta);
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
    }
}

/* ========= BOOK BUTTON ========= */
.book-now-btn {
    background: var(--terracotta);
    color: #FFFFFF;
    border: none;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.book-now-btn:hover {
    background: var(--terracotta-light);
}

.book-now-btn:active {
    transform: scale(0.97);
}

/* ========= MOBILE MENU ========= */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #FFFFFF;
    transition: all 0.3s;
}

.site-header.scrolled .mobile-menu-toggle span {
    background: var(--charcoal);
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 22, 19, 0.98);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav a {
    font-size: 1.5rem;
    font-weight: 500;
    color: #FFFFFF;
    text-decoration: none;
    letter-spacing: 0.05em;
}

.mobile-book-btn {
    margin-top: 1rem;
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
}

/* ========= HERO ========= */
.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-bottom: 5rem;
}

.hero-location {
    color: var(--gold-soft);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.5rem;
    color: #FFFFFF;
    line-height: 1.1;
    max-width: 600px;
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-primary {
    background: var(--terracotta);
    color: #FFFFFF;
    border: none;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s;
    font-size: 1rem;
}

.btn-primary:hover {
    background: var(--terracotta-light);
}

.btn-primary:active {
    transform: scale(0.97);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255,255,255,0.4);
    color: #FFFFFF;
    font-weight: 500;
    padding: 0.875rem 1.75rem;
    border-radius: 6px;
    transition: background 0.2s;
    text-decoration: none;
    font-size: 1rem;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(255,255,255,0.6);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ========= QUICK STATS ========= */
.quick-stats {
    background: #FFFFFF;
    position: relative;
    z-index: 20;
    padding: 2rem 0;
    margin-top: -1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    flex-shrink: 0;
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted);
}

/* ========= SECTIONS COMMON ========= */
.section-label {
    color: var(--terracotta);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-label.gold-label {
    color: var(--gold-soft);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    max-width: 700px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-desc {
    color: var(--muted);
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 3rem;
}

/* ========= PROPERTY SECTION ========= */
.property-section {
    background: var(--sand);
    padding: 5rem 0;
}

.property-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .property-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.property-img-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.property-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.property-img-card:hover img {
    transform: scale(1.03);
}

.img-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 500;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
}

.property-img-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bedroom-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.bedroom-card {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
    transition: box-shadow 0.2s;
}

.bedroom-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.bedroom-card svg {
    color: var(--terracotta);
    margin-bottom: 0.75rem;
}

.bedroom-card p {
    font-weight: 600;
    color: var(--charcoal);
    font-size: 0.9375rem;
}

.bedroom-card span {
    font-size: 0.8125rem;
    color: var(--muted);
}

/* ========= HIGHLIGHTS ========= */
.highlights-section {
    background: #FFFFFF;
    padding: 5rem 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .highlights-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.highlight-card {
    background: var(--sand);
    border-radius: 8px;
    padding: 1.5rem;
    transition: box-shadow 0.2s;
}

.highlight-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(184, 92, 58, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.highlight-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.highlight-card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ========= AMENITIES ========= */
.amenities-section {
    background: var(--sand-warm);
    padding: 5rem 0;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .amenities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.amenity-item {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: box-shadow 0.2s;
}

.amenity-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.amenity-item svg {
    color: var(--terracotta);
    flex-shrink: 0;
}

.amenity-item span {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--charcoal);
}

.amenities-more {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--muted);
}

/* ========= REVIEWS ========= */
.reviews-section {
    background: #FFFFFF;
    padding: 5rem 0;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.stars {
    display: flex;
    gap: 2px;
    color: var(--gold-soft);
}

.rating-score {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
}

.rating-count {
    font-size: 0.875rem;
    color: var(--muted);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.review-card {
    background: var(--sand);
    border-radius: 8px;
    padding: 1.75rem;
}

.review-stars {
    display: flex;
    gap: 2px;
    color: var(--gold-soft);
    margin-bottom: 1rem;
}

.review-text {
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.reviewer-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--charcoal);
}

.reviewer-type {
    font-size: 0.75rem;
    color: var(--muted);
}

.review-date {
    font-size: 0.75rem;
    color: var(--muted);
}

/* ========= ABOUT ========= */
.about-section {
    background: var(--charcoal-deep);
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.about-content h2 {
    color: #FFFFFF;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .about-content h2 {
        font-size: 2.5rem;
    }
}

.about-text p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(184, 92, 58, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-soft);
    flex-shrink: 0;
}

.badge-title {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.875rem;
}

.badge-sub {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 8px;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.about-brand-tag {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--terracotta);
    color: #FFFFFF;
    padding: 1.25rem;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    display: none;
}

@media (min-width: 768px) {
    .about-brand-tag {
        display: block;
    }
}

.about-brand-tag p {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.about-brand-tag span {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}

/* ========= LOCATION ========= */
.location-section {
    background: var(--sand);
    padding: 5rem 0;
}

.location-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .location-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.location-card {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid var(--border);
}

.location-card svg {
    color: var(--terracotta);
    margin-bottom: 0.75rem;
}

.location-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.location-card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    aspect-ratio: 21/9;
}

/* ========= CTA ========= */
.cta-section {
    background: #FFFFFF;
    padding: 5rem 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--charcoal-deep), var(--charcoal));
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-card {
        padding: 4rem 6rem;
    }
}

.cta-card h2 {
    color: #FFFFFF;
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .cta-card h2 {
        font-size: 2.5rem;
    }
}

.cta-card > p {
    color: rgba(255,255,255,0.7);
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

/* ========= FOOTER ========= */
.site-footer {
    background: var(--charcoal-deep);
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1rem;
}

.footer-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFFFFF;
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Playfair Display', serif;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--terracotta);
}

.footer-contact li {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact li svg {
    color: var(--terracotta);
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: background 0.2s;
}

.social-links a:hover {
    background: var(--terracotta);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
}

.footer-book-link {
    color: var(--terracotta);
    font-size: 0.75rem;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
}

/* ========= FLOATING BUTTON ========= */
.floating-book-btn {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 900;
    background: var(--terracotta);
    color: #FFFFFF;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 16px rgba(184, 92, 58, 0.4);
    transition: background 0.2s;
    font-size: 0.9375rem;
}

.floating-book-btn:hover {
    background: var(--terracotta-light);
}

@media (max-width: 767px) {
    .floating-book-btn.visible {
        display: flex;
    }
}

/* ========= BOOKING MODAL ========= */
.booking-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.booking-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.booking-modal-overlay .modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
}

.booking-modal {
    position: relative;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95);
    transition: transform 0.25s ease;
}

.booking-modal-overlay.active .booking-modal {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.modal-header h2 {
    font-size: 1.25rem;
}

.modal-header p {
    font-size: 0.875rem;
    color: var(--muted);
}

.modal-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: background 0.2s;
}

.modal-close:hover {
    background: var(--muted);
    color: #FFFFFF;
}

.modal-steps {
    display: flex;
    gap: 0.25rem;
    padding: 1rem 1.5rem 0;
}

.step-bar {
    flex: 1;
    height: 4px;
    border-radius: 4px;
    background: var(--muted);
    opacity: 0.2;
    transition: opacity 0.3s;
}

.step-bar.active {
    opacity: 1;
    background: var(--terracotta);
}

.modal-body {
    padding: 1.5rem;
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
}

/* Date Picker */
.date-picker-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.date-picker-container input[type="date"] {
    padding: 0.625rem 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--charcoal);
    background: #FFFFFF;
    cursor: pointer;
}

.date-picker-container input[type="date"]:focus {
    border-color: var(--terracotta);
    outline: none;
}

.date-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.date-field {
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    transition: border-color 0.2s;
}

.date-field.active {
    border-color: var(--terracotta);
    background: rgba(184, 92, 58, 0.05);
}

.date-field-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.date-field-value {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--charcoal);
    margin-top: 0.25rem;
}

.guest-selectors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.guest-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.25rem;
}

.guest-selectors select {
    width: 100%;
    padding: 0.625rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--charcoal);
    background: #FFFFFF;
    cursor: pointer;
}

.guest-selectors select:focus {
    border-color: var(--terracotta);
    outline: none;
}

/* Price Breakdown */
.price-breakdown {
    background: var(--sand);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.price-row span:first-child {
    color: var(--muted);
}

.price-row span:last-child {
    font-weight: 500;
}

.price-row.total {
    border-top: 1px solid var(--border);
    padding-top: 0.5rem;
    margin-top: 0.25rem;
    margin-bottom: 0;
}

.price-row.total span:first-child {
    font-weight: 600;
    color: var(--charcoal);
}

.price-row.total span:last-child {
    font-weight: 700;
    font-size: 1.125rem;
}

.availability-warning {
    background: #FEF2F2;
    color: #991B1B;
    font-size: 0.875rem;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.full-width {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1rem;
}

.btn-outline.full-width {
    background: transparent;
    color: var(--terracotta);
    border-color: var(--terracotta);
}

.btn-outline.full-width:hover {
    background: rgba(184, 92, 58, 0.05);
}

/* Booking Summary */
.booking-summary {
    background: var(--sand);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.summary-row span:first-child {
    color: var(--muted);
}

.summary-row span:last-child {
    font-weight: 500;
}

.summary-row.total {
    border-top: 1px solid var(--border);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.summary-row.total span:first-child {
    font-weight: 600;
    color: var(--charcoal);
}

.total-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--terracotta) !important;
}

/* Form */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--charcoal);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--charcoal);
    background: #FFFFFF;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.form-buttons button {
    flex: 1;
}

.booking-disclaimer {
    font-size: 0.75rem;
    color: var(--muted);
    text-align: center;
    margin-top: 0.75rem;
    line-height: 1.5;
}

/* Confirmation */
.confirmation-content {
    text-align: center;
    padding: 1.5rem 0;
}

.confirmation-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #DCFCE7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: #16A34A;
}

.confirmation-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.confirmation-content p {
    color: var(--muted);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.confirmation-details {
    background: var(--sand);
    border-radius: 8px;
    padding: 1rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

.confirmation-actions {
    display: flex;
    gap: 0.75rem;
}

.confirmation-actions a,
.confirmation-actions button {
    flex: 1;
    text-align: center;
    padding: 0.625rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}

.confirmation-actions .btn-outline {
    color: var(--terracotta);
    border: 1px solid var(--terracotta);
    background: transparent;
}

.confirmation-actions .btn-outline:hover {
    background: rgba(184, 92, 58, 0.05);
}

/* Spinner */
.spinner {
    display: inline-block;
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========= RESPONSIVE ========= */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-card h2 {
        font-size: 1.75rem;
    }

    .about-content h2 {
        font-size: 1.75rem;
    }
}
