/* Luxury Template — Black/Gold, Editorial Premium
   Palette: --accent-color (gold), dark warm blacks, warm grays
   ========================================================== */

/* === Foundations === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-family); color: #d4d0c8; background: #0c0b09; line-height: 1.7; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
a { color: var(--accent-color); text-decoration: none; transition: opacity 0.3s; }
a:hover { opacity: 0.85; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* === Animations === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
    0% { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}
@keyframes subtlePulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--delay, 0s);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Header === */
.site-header {
    background: rgba(12,11,9,0.95);
    border-bottom: 1px solid rgba(191,168,118,0.12);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.site-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo-img { height: 44px; }
.logo-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--accent-color);
    letter-spacing: 5px;
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-links a {
    color: #8a8578;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: color 0.3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--accent-color); opacity: 1; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid var(--accent-color);
    color: var(--accent-color) !important;
    font-size: 10px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: background 0.3s, color 0.3s;
    margin-left: 8px;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
    background: var(--accent-color);
    color: #0c0b09 !important;
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    width: 38px;
    height: 38px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--accent-color);
    position: absolute;
    left: 8px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle span:nth-child(1) { top: 12px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg); top: 19px; }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg); top: 19px; }

/* === Hero === */
.hero {
    min-height: 100vh;
    background: #0c0b09 center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(12,11,9,0.35) 0%, rgba(12,11,9,0.65) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-content {
    text-align: center;
    color: #fff;
    padding: 32px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
.hero-rule {
    width: 56px;
    height: 1px;
    background: var(--accent-color);
    margin: 0 auto 28px;
    opacity: 0.7;
}
.hero-content h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.1;
}
.hero-content p {
    font-size: clamp(14px, 1.5vw, 17px);
    color: rgba(176,168,152,0.9);
    letter-spacing: 2px;
    margin-bottom: 44px;
    font-weight: 300;
}
.hero-cta {
    display: inline-block;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 16px 48px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}
.hero-cta:hover {
    background: var(--accent-color);
    color: #0c0b09;
    text-decoration: none;
    opacity: 1;
    transform: translateY(-1px);
}

/* === Section Headers === */
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
    display: block;
    color: var(--accent-color);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 14px;
}
.section-header h2, .section-header h1 {
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 300;
    color: #f0ece4;
    letter-spacing: 2px;
}
.property-count {
    color: #6a6458;
    font-size: 13px;
    letter-spacing: 2px;
    margin-top: 14px;
    text-transform: uppercase;
    font-weight: 500;
}

/* === Collection Grid === */
.collection-section { padding: 100px 0 120px; }
.no-listings {
    text-align: center;
    color: #5a5850;
    font-size: 16px;
    padding: 80px 0;
    letter-spacing: 1px;
}
.collection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.collection-item { overflow: hidden; }
.collection-item.featured { grid-column: 1 / -1; }
.item-link {
    display: block;
    color: inherit;
    text-decoration: none;
}
.item-image {
    aspect-ratio: 3/2;
    overflow: hidden;
    background: #1a1915;
    position: relative;
}
.collection-item.featured .item-image { aspect-ratio: 21/9; }
.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.item-link:hover .item-image img { transform: scale(1.05); }
.item-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1915 0%, #222018 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3a3830;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(12,11,9,0.85) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.item-link:hover .item-overlay { opacity: 1; }
.item-badge {
    font-size: 11px;
    color: rgba(240,236,228,0.8);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}
.item-price-badge {
    font-size: 13px;
    color: var(--accent-color);
    letter-spacing: 1px;
    font-weight: 500;
}
.item-content { padding: 24px 4px 8px; }
.item-content h3 {
    font-size: 22px;
    font-weight: 400;
    color: #f0ece4;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
.item-link:hover .item-content h3 { color: var(--accent-color); }
.item-location {
    color: #8a8578;
    font-size: 14px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.item-meta {
    display: flex;
    gap: 20px;
    color: #6a6458;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.item-price {
    color: var(--accent-color);
    font-size: 14px;
    letter-spacing: 1px;
}
.item-excerpt {
    color: #8a8578;
    font-size: 15px;
    line-height: 1.7;
    margin-top: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* === Listing Detail === */
.listing-detail { padding-bottom: 100px; }
.listing-hero-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4px;
    position: relative;
}
.gallery-main-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #1a1915;
    cursor: pointer;
}
.gallery-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-main-image:hover img { transform: scale(1.02); }
.gallery-side-images {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
}
.gallery-side-image {
    overflow: hidden;
    background: #1a1915;
    position: relative;
    cursor: pointer;
}
.gallery-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-side-image:hover img { transform: scale(1.03); }
.gallery-view-all {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(12,11,9,0.85);
    border: 1px solid rgba(191,168,118,0.4);
    color: #f0ece4;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.3s, border-color 0.3s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.gallery-view-all:hover {
    background: rgba(12,11,9,0.95);
    border-color: var(--accent-color);
}
.gallery-count {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(12,11,9,0.8);
    color: #d4d0c8;
    padding: 6px 14px;
    font-size: 12px;
    letter-spacing: 1px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.listing-header {
    text-align: center;
    padding: 56px 0 32px;
}
.header-rule {
    width: 40px;
    height: 1px;
    background: var(--accent-color);
    margin: 0 auto 24px;
    opacity: 0.7;
}
.listing-header h1 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 300;
    color: #f0ece4;
    letter-spacing: 2px;
    margin-bottom: 8px;
    line-height: 1.2;
}
.listing-location {
    color: #8a8578;
    font-size: 15px;
    letter-spacing: 1px;
}
.listing-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}
.action-btn {
    background: none;
    border: 1px solid rgba(191,168,118,0.2);
    color: #8a8578;
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.3s, border-color 0.3s;
}
.action-btn:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}
.listing-stats {
    display: flex;
    justify-content: center;
    gap: 56px;
    padding: 32px 0;
    border-top: 1px solid rgba(191,168,118,0.12);
    border-bottom: 1px solid rgba(191,168,118,0.12);
    margin-bottom: 48px;
}
.stat { text-align: center; }
.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 300;
    color: var(--accent-color);
    line-height: 1.2;
}
.stat-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #8a8578;
    font-weight: 600;
}
.listing-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 56px;
    align-items: start;
}
.listing-description h2, .listing-amenities h2, .listing-rules h2 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 20px;
}
.listing-description p {
    color: #b0a898;
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.8;
}
.amenities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}
.amenity-tag {
    padding: 10px 22px;
    border: 1px solid rgba(191,168,118,0.15);
    color: #d4d0c8;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: border-color 0.3s, color 0.3s;
}
.amenity-tag:hover {
    border-color: rgba(191,168,118,0.4);
    color: #f0ece4;
}
.listing-rules { margin-top: 8px; }
.listing-rules p { color: #8a8578; line-height: 1.8; }

/* === Gallery Lightbox === */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(6,5,4,0.96);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-lightbox.active {
    display: flex;
    opacity: 1;
}
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    background: none;
    border: none;
    color: #8a8578;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 8px;
    transition: color 0.3s;
    z-index: 2;
}
.lightbox-close:hover { color: #f0ece4; }
.lightbox-counter {
    position: absolute;
    top: 28px;
    left: 28px;
    color: #6a6458;
    font-size: 13px;
    letter-spacing: 2px;
    z-index: 2;
}
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6a6458;
    font-size: 48px;
    cursor: pointer;
    padding: 16px;
    line-height: 1;
    transition: color 0.3s;
    z-index: 2;
    -webkit-user-select: none;
    user-select: none;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { color: #f0ece4; }
.lightbox-image {
    max-width: 85vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-image img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

/* === Booking Widget === */
.booking-widget {
    background: rgba(21,20,15,0.8);
    border: 1px solid rgba(191,168,118,0.18);
    padding: 32px;
    position: sticky;
    top: 92px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.booking-price-header {
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(191,168,118,0.1);
}
.booking-rate {
    font-size: 34px;
    font-weight: 300;
    color: var(--accent-color);
}
.booking-rate-label { color: #8a8578; font-size: 14px; }
.booking-field { margin-bottom: 16px; }
.booking-field label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8a8578;
    margin-bottom: 8px;
}
.booking-field input, .booking-field select {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(191,168,118,0.18);
    background: rgba(12,11,9,0.8);
    color: #f0ece4;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    appearance: none;
    -webkit-appearance: none;
}
.booking-field input:focus, .booking-field select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 1px rgba(191,168,118,0.1);
}
.booking-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8578' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.booking-summary {
    border-top: 1px solid rgba(191,168,118,0.1);
    padding-top: 18px;
    margin-bottom: 18px;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: #8a8578;
}
.summary-total {
    border-top: 1px solid rgba(191,168,118,0.18);
    padding-top: 14px;
    margin-top: 10px;
    font-weight: 400;
    color: var(--accent-color);
    font-size: 18px;
}
.booking-btn {
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.35s ease, color 0.35s ease, transform 0.2s ease;
    position: relative;
}
.booking-btn:hover:not(:disabled) {
    background: var(--accent-color);
    color: #0c0b09;
    transform: translateY(-1px);
}
.booking-btn:active:not(:disabled) { transform: translateY(0); }
.booking-btn:disabled { opacity: 0.25; cursor: not-allowed; }
.booking-min-nights {
    text-align: center;
    color: #5a5850;
    font-size: 12px;
    margin-top: 12px;
    letter-spacing: 1px;
}

/* === Checkout === */
.checkout-page { padding: 60px 0 100px; }
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 56px;
    align-items: start;
}
.form-block { margin-bottom: 40px; }
.form-block h2 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8a8578;
    margin-bottom: 8px;
}
.form-input {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(191,168,118,0.18);
    background: rgba(12,11,9,0.8);
    color: #f0ece4;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 1px rgba(191,168,118,0.1);
}
.summary-card {
    background: rgba(21,20,15,0.8);
    border: 1px solid rgba(191,168,118,0.18);
    padding: 28px;
    position: sticky;
    top: 92px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.summary-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    margin-bottom: 20px;
}
.summary-card h3 {
    font-size: 20px;
    font-weight: 400;
    color: #f0ece4;
    margin-bottom: 20px;
}
.summary-dates, .summary-pricing {
    border-top: 1px solid rgba(191,168,118,0.1);
    padding-top: 14px;
    margin-top: 14px;
}
.date-row, .price-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: #8a8578;
}
.total-row {
    border-top: 1px solid rgba(191,168,118,0.18);
    padding-top: 14px;
    margin-top: 8px;
    font-weight: 400;
    color: var(--accent-color);
    font-size: 18px;
}

/* === Payment === */
.payment-form-container { margin-top: 8px; }
.payment-header h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
}
.payment-total { color: #8a8578; margin-bottom: 20px; }
.payment-input {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(191,168,118,0.18);
    background: rgba(12,11,9,0.8);
    color: #f0ece4;
    font-size: 15px;
    margin-bottom: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}
.payment-input:focus { outline: none; border-color: var(--accent-color); }
.stripe-element, .square-element {
    padding: 14px;
    border: 1px solid rgba(191,168,118,0.18);
    background: rgba(12,11,9,0.8);
}
.payment-error { color: #c7584f; font-size: 14px; margin-top: 8px; }
.payment-btn {
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    font-family: inherit;
    margin-top: 16px;
    transition: background 0.35s ease, color 0.35s ease;
}
.payment-btn:hover:not(:disabled) { background: var(--accent-color); color: #0c0b09; }
.payment-btn:disabled { opacity: 0.25; }

/* === Confirmation === */
.confirm-page { padding: 100px 0; }
.confirm-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 56px 40px;
}
.confirm-rule { width: 40px; height: 1px; background: var(--accent-color); margin: 0 auto 24px; opacity: 0.7; }
.confirm-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--accent-color);
    margin-bottom: 16px;
}
.confirm-card h1 {
    font-size: 36px;
    font-weight: 300;
    color: #f0ece4;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.confirm-subtitle { color: #8a8578; font-size: 16px; margin-bottom: 48px; }
.confirm-details {
    text-align: left;
    border: 1px solid rgba(191,168,118,0.12);
    padding: 28px;
    margin-bottom: 32px;
}
.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(191,168,118,0.06);
}
.detail-row:last-child { border-bottom: none; }
.detail-row.total {
    border-top: 1px solid rgba(191,168,118,0.18);
    border-bottom: none;
    padding-top: 18px;
}
.detail-label { color: #6a6458; font-size: 14px; }
.detail-value { color: #f0ece4; font-weight: 400; }
.detail-row.total .detail-value { color: var(--accent-color); font-size: 22px; }
.confirm-note { color: #6a6458; font-size: 14px; margin-bottom: 32px; }
.btn-back {
    display: inline-block;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 14px 40px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: background 0.35s ease, color 0.35s ease;
}
.btn-back:hover { background: var(--accent-color); color: #0c0b09; text-decoration: none; opacity: 1; }

/* === Contact === */
.contact-page { padding: 80px 0 100px; }
.contact-layout { display: grid; grid-template-columns: 400px 1fr; gap: 56px; }
.contact-intro { color: #8a8578; font-size: 16px; margin-bottom: 40px; line-height: 1.8; }
.info-block { margin-bottom: 28px; }
.info-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6a6458;
    margin-bottom: 6px;
}
.info-block a { color: #d4d0c8; font-size: 16px; transition: color 0.3s; }
.info-block a:hover { color: var(--accent-color); opacity: 1; }
.contact-form .form-group { margin-bottom: 16px; }
.contact-form label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8a8578;
    margin-bottom: 8px;
}
.btn-submit {
    padding: 16px 48px;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.35s ease, color 0.35s ease, transform 0.2s ease;
}
.btn-submit:hover { background: var(--accent-color); color: #0c0b09; transform: translateY(-1px); }
.btn-submit:active { transform: translateY(0); }

/* === Footer === */
.site-footer {
    background: #0c0b09;
    border-top: 1px solid rgba(191,168,118,0.08);
    padding: 48px 0 40px;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
    color: #4a4840;
    font-size: 13px;
    letter-spacing: 1px;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}
.footer-links a {
    color: #6a6458;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--accent-color); opacity: 1; }
.footer-contact {
    margin-bottom: 20px;
}
.footer-contact a {
    color: #6a6458;
    font-size: 14px;
    transition: color 0.3s;
}
.footer-contact a:hover { color: var(--accent-color); opacity: 1; }
.footer-divider {
    width: 40px;
    height: 1px;
    background: rgba(191,168,118,0.15);
    margin: 20px auto;
}
.footer-content p { margin-bottom: 4px; }
.powered-by { margin-top: 12px; font-size: 11px; }
.powered-by a { color: #5a5850; transition: color 0.3s; }
.powered-by a:hover { color: var(--accent-color); opacity: 1; }

/* === Loading States === */
.skeleton {
    background: linear-gradient(90deg, #1a1915 0%, #252318 40%, #1a1915 80%);
    background-size: 800px 100%;
    animation: shimmer 1.5s infinite linear;
    border-radius: 0;
}
.skeleton-image { aspect-ratio: 3/2; }
.skeleton-text { height: 14px; margin-bottom: 12px; width: 60%; }
.skeleton-text.short { width: 35%; }

/* === Responsive === */
@media (max-width: 1024px) {
    .collection-grid { grid-template-columns: 1fr; }
    .collection-item.featured { grid-column: 1; }
    .listing-hero-gallery { grid-template-columns: 1fr; }
    .gallery-side-images { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .listing-content { grid-template-columns: 1fr; }
    .listing-sidebar { position: relative; top: auto; }
    .booking-widget { position: relative; top: auto; }
    .checkout-layout { grid-template-columns: 1fr; }
    .summary-card { position: relative; top: auto; }
    .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .site-nav { padding: 0 20px; }
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(12,11,9,0.98);
        flex-direction: column;
        padding: 80px 32px 40px;
        border-left: 1px solid rgba(191,168,118,0.1);
        gap: 24px;
        transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 200;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    .nav-links.nav-open {
        display: flex;
        right: 0;
    }
    .nav-toggle { display: block; z-index: 300; }
    .hero { min-height: 80vh; }
    .hero-content h1 { letter-spacing: 4px; }
    .hero-cta { padding: 14px 36px; }
    .listing-header h1 { letter-spacing: 1px; }
    .listing-stats { gap: 32px; flex-wrap: wrap; }
    .stat-number { font-size: 24px; }
    .collection-section { padding: 64px 0 80px; }
    .section-header { margin-bottom: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .item-overlay { opacity: 1; }
    .lightbox-prev, .lightbox-next { font-size: 32px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-image { max-width: 95vw; }
    .footer-links { flex-direction: column; gap: 16px; }
    .listing-actions { gap: 12px; }
    .action-btn { padding: 10px 16px; min-height: 44px; }
    .booking-btn, .payment-btn, .btn-submit { min-height: 48px; }
}
@media (max-width: 480px) {
    .gallery-side-images { grid-template-columns: 1fr; }
    .listing-stats { gap: 24px; }
}

/* === Print === */
@media print {
    .site-header, .site-footer, .nav-toggle, .booking-widget,
    .gallery-lightbox, .listing-actions, .hero-cta, .nav-cta { display: none !important; }
    body { background: #fff; color: #222; }
    .listing-header h1, .section-header h2, .confirm-card h1 { color: #111; }
    .listing-description p, .listing-rules p { color: #333; }
    .stat-number { color: #444; }
    .stat-label, .listing-location { color: #666; }
    .amenity-tag { border-color: #ccc; color: #333; }
    .confirm-details { border-color: #ddd; }
    .detail-label { color: #666; }
    .detail-value { color: #222; }
}
