/* Elegant Google Fonts integration */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --color-primary: #7C533C;       /* Luxury Bronze/Brown */
    --color-primary-dark: #5C3D2B;  /* Deeper Bronze */
    --color-bg-footer: #FAF7F2;     /* Soft Cream White Footer */
    --color-dark: #222222;
    --color-white: #FAF4ED;         /* Warm Beige replacing white */
    --color-light-gray: #F0E8DD;    /* Warmer light gray */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-white);
    color: var(--color-dark);
    line-height: 1.6;
}

/* Header Navigation */
.main-header {
    background-color: var(--color-white);
    padding: 18px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #EDEDF0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand-logo .logo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.brand-logo .logo-mark {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 50%;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #4A4A4A;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu ul li a:hover, 
.nav-menu ul li.active a {
    color: var(--color-primary);
}

.nav-menu ul li.active a {
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 4px;
}

.btn-book-header {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-book-header:hover {
    background-color: var(--color-primary-dark);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    text-align: center;
    overflow: visible;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.9s ease;
}

.hero-bg-slide.is-active {
    opacity: 1;
}

.hero-bg-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    margin-top: -60px; /* offset for search card float */
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.btn-hero-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.btn-hero-secondary {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--color-dark);
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background-color: var(--color-white);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Floating Search Card */
.search-card-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 90%;
    max-width: 1140px;
    z-index: 10;
}

.search-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 15px;
    align-items: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.search-field label {
    font-size: 11px;
    font-weight: 700;
    color: #555555;
    letter-spacing: 0.5px;
    text-align: left;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 12px;
    width: 18px;
    height: 18px;
    color: var(--color-primary);
    pointer-events: none;
}

.search-field input,
.search-field select {
    width: 100%;
    background-color: var(--color-white);
    border: 1px solid #D2D2D7;
    border-radius: 6px;
    padding: 10px 12px 10px 40px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-dark);
    outline: none;
    height: 44px;
    transition: border-color 0.2s ease;
    cursor: pointer;
}

.search-field input:focus,
.search-field select:focus {
    border-color: var(--color-primary);
}

.btn-search {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 6px;
    padding: 10px 30px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    transition: background-color 0.3s ease;
}

.btn-search:hover {
    background-color: var(--color-primary-dark);
}

.search-btn-icon {
    width: 16px;
    height: 16px;
}

/* Property Overview Section */
.property-overview-section {
    padding: 130px 0 0;
    background: #fff;
}

.property-overview-inner {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.property-about,
.property-reservation {
    margin: 0 auto;
    text-align: center;
}

.property-about h2,
.property-reservation h2,
.property-location-quote h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: #c58f5f;
    margin-bottom: 12px;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.12;
}

.property-about p {
    font-size: 15px;
    color: #454545;
    margin-bottom: 10px;
    letter-spacing: 0.1px;
}

.property-about-address {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.property-about p:last-child {
    margin-bottom: 0;
}

.property-reservation {
    margin-top: 56px;
}

.reservation-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.reservation-photo,
.reservation-meta {
    min-height: 188px;
}

.reservation-photo {
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

.reservation-meta {
    background: #050505;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 16px;
    border-radius: 4px;
}

.reservation-meta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.15;
}

.reservation-meta p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 4px;
}

.reservation-meta strong {
    font-size: 26px;
    font-weight: 600;
}

.property-location {
    width: min(1360px, 93vw);
    margin: 44px auto 0;
}

.property-location-quote {
    background: #c58f5f;
    color: #fff;
    text-align: center;
    padding: 34px 20px 30px;
}

.property-location-quote h2 {
    color: #fff;
    font-size: clamp(34px, 4vw, 52px);
    margin-bottom: 10px;
}

.property-location-quote p {
    font-size: 14px;
    opacity: 0.95;
}

.property-location-map {
    min-height: 250px;
    background: linear-gradient(rgba(46, 30, 22, 0.6), rgba(46, 30, 22, 0.6)), url('../hero-slide-4.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
}

.location-map-link {
    background: #fff;
    color: #1d4ed8;
    text-decoration: none;
    font-weight: 600;
    padding: 11px 20px;
    border-radius: 8px;
}

.property-location-map p {
    margin-top: 12px;
    font-size: 13px;
    color: #e2e8f0;
}

/* Footer Section */
.main-footer {
    background-color: var(--color-bg-footer);
    color: #6b4f42;
    padding: 60px 8% 30px;
    font-size: 14px;
    border-top: 1px solid rgba(124,83,60,0.12);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(124,83,60,0.12);
}

.footer-brand-col h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2d1f17;
    margin-bottom: 15px;
}

.footer-brand-col p {
    line-height: 1.7;
    max-width: 320px;
}

.footer-links-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: #2d1f17;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

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

.footer-links-col ul li {
    margin-bottom: 10px;
}

.footer-links-col ul li a {
    text-decoration: none;
    color: #7C533C;
    transition: color 0.3s ease;
}

.footer-links-col ul li a:hover {
    color: #4e3226;
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    display: flex;
    justify-content: center;
    font-size: 12px;
    opacity: 0.8;
}

/* Luxury resort homepage overrides */
body.home-page {
    background:
        radial-gradient(circle at top, rgba(197, 143, 95, 0.12), transparent 34%),
        linear-gradient(180deg, #fcf8f3 0%, #fffdf9 28%, #f4ede5 100%);
    color: #2b2420;
}

.home-page .main-header {
    background: rgba(255, 251, 246, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(138, 90, 58, 0.12);
    box-shadow: 0 10px 30px rgba(91, 61, 43, 0.08);
}

.home-page .brand-logo .logo-link {
    color: #8a5a3a;
}

.home-page .nav-menu ul li a {
    color: #5f5751;
}

.home-page .btn-book-header {
    background: linear-gradient(135deg, #c58f5f 0%, #8a5a3a 100%);
    box-shadow: 0 10px 24px rgba(138, 90, 58, 0.25);
}

.home-page .hero-section {
    height: 100vh;
    min-height: 680px;
    align-items: center;
    justify-content: flex-start;
    padding-left: 8%;
    padding-right: 8%;
    padding-bottom: 0;
}

.home-page .hero-bg-slider::before {
    background: linear-gradient(180deg, rgba(17, 26, 28, 0.18) 0%, rgba(17, 26, 28, 0.58) 100%);
}

.home-page .hero-content {
    max-width: 600px;
    margin-top: 0;
    padding: 0;
    border-radius: 0;
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    text-align: left;
}

.home-page .hero-kicker,
.home-page .section-kicker {
    margin-bottom: 12px;
    color: #e4bb8f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.home-page .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(56px, 8vw, 100px);
    line-height: 0.95;
    margin-bottom: 18px;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.25);
}

.home-page .hero-subtitle {
    max-width: 460px;
    margin: 0 0 28px;
    font-size: 17px;
    color: rgba(255, 247, 240, 0.9);
}

.home-page .hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px;
    margin-bottom: 28px;
}

.home-page .hero-stat {
    min-width: 170px;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.home-page .hero-stat-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #fff7f0;
    margin-bottom: 4px;
}

.home-page .hero-stat-label {
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255, 247, 240, 0.72);
}

.home-page .btn-hero-primary,
.home-page .btn-hero-secondary {
    border-radius: 999px;
    padding: 13px 30px;
}

.home-page .hero-buttons {
    justify-content: flex-start;
}

.home-page .btn-hero-primary {
    background: linear-gradient(135deg, #c58f5f 0%, #8a5a3a 100%);
    box-shadow: 0 16px 28px rgba(138, 90, 58, 0.28);
}

.home-page .btn-hero-secondary {
    background: rgba(255, 251, 246, 0.92);
    color: #4b3a2f;
}

.home-page .search-card-container {
    transform: translate(-50%, 54%);
}

.home-page .search-card {
    background: rgba(255, 251, 246, 0.92);
    backdrop-filter: blur(14px);
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(138, 90, 58, 0.12);
    box-shadow: 0 24px 56px rgba(84, 55, 34, 0.16);
}

.home-page .search-field label {
    color: #786657;
    letter-spacing: 1.5px;
}

.home-page .search-field input,
.home-page .search-field select {
    background-color: #fbf7f2;
    border-color: #e5d8cb;
    border-radius: 12px;
}

.home-page .btn-search {
    background: linear-gradient(135deg, #c58f5f 0%, #8a5a3a 100%);
    border-radius: 14px;
    box-shadow: 0 14px 24px rgba(138, 90, 58, 0.22);
}

.home-page .property-overview-section {
    padding: 170px 0 96px;
    background:
        radial-gradient(circle at top, rgba(197, 143, 95, 0.08), transparent 40%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(244, 237, 229, 0.92) 100%);
}

.home-page .property-overview-inner {
    width: min(1180px, 92vw);
    display: grid;
    gap: 34px;
}

.home-page .property-about,
.home-page .property-reservation {
    background: rgba(255, 251, 246, 0.84);
    border: 1px solid rgba(138, 90, 58, 0.12);
    border-radius: 28px;
    padding: 42px 32px;
    box-shadow: 0 22px 48px rgba(73, 48, 30, 0.08);
    backdrop-filter: blur(8px);
}

.home-page .property-about h2,
.home-page .property-reservation h2,
.home-page .property-location-quote h2 {
    color: #8a5a3a;
    text-shadow: none;
}

.home-page .property-about p {
    color: #5a5148;
}

.home-page .property-about-address {
    max-width: 880px;
}

.home-page .reservation-grid {
    margin-top: 26px;
    gap: 18px;
}

.home-page .reservation-photo,
.home-page .reservation-meta {
    min-height: 210px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(48, 31, 18, 0.08);
}

.home-page .reservation-meta {
    background: linear-gradient(180deg, #101313 0%, #050505 100%);
    border: 1px solid rgba(197, 143, 95, 0.22);
}

.home-page .reservation-meta h3 {
    font-size: 30px;
    color: #fff6ef;
}

.home-page .reservation-meta p {
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.home-page .reservation-meta strong {
    font-size: 24px;
    color: #e8c08f;
}

.home-page .property-location {
    max-width: min(1180px, 92vw);
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 28px 58px rgba(52, 34, 22, 0.14);
}

.home-page .property-location-quote {
    background: linear-gradient(135deg, #c48e5d 0%, #8a5a3a 100%);
    padding: 38px 24px 32px;
}

.home-page .property-location-quote h2 {
    color: #fff8f1;
    font-size: clamp(34px, 4.5vw, 56px);
}

.home-page .property-location-map {
    min-height: 320px;
    background: linear-gradient(rgba(46, 30, 22, 0.56), rgba(46, 30, 22, 0.56)), url('../hero-slide-4.jpg') center/cover no-repeat;
}

.home-page .location-map-link {
    background: rgba(255, 255, 255, 0.96);
    color: #8a5a3a;
    border-radius: 999px;
    padding: 12px 24px;
    box-shadow: 0 12px 22px rgba(15, 15, 15, 0.18);
}

.home-page .property-location-map p {
    color: rgba(255, 248, 240, 0.9);
}

.home-page .main-footer {
    background: #FAF7F2;
    color: #6b4f42;
}

.home-page .footer-container {
    border-bottom-color: rgba(124,83,60,0.12);
}

.home-page .footer-brand-col h3,
.home-page .footer-links-col h4 {
    color: #2d1f17;
}

.home-page .footer-links-col ul li a {
    color: #7C533C;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .search-card {
        grid-template-columns: repeat(2, 1fr);
    }
    .btn-search {
        grid-column: span 2;
    }
    .reservation-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .reservation-meta h3 {
        font-size: 24px;
    }
    .reservation-meta strong {
        font-size: 22px;
    }
    .home-page .hero-section {
        height: 700px;
        padding-left: 6%;
        padding-right: 6%;
    }
    .home-page .hero-content {
        max-width: 520px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    .search-card-container {
        position: relative;
        transform: none;
        left: 0;
        width: 100%;
        margin-top: 30px;
        padding: 0 15px;
    }
    .search-card {
        grid-template-columns: 1fr;
    }
    .btn-search {
        grid-column: span 1;
    }
    .property-overview-section {
        padding-top: 70px;
    }
    .property-about p {
        font-size: 13px;
    }
    .reservation-grid {
        grid-template-columns: 1fr;
    }
    .reservation-photo,
    .reservation-meta {
        min-height: 210px;
    }
    .property-location-quote h2 {
        font-size: 28px;
    }
    .property-location {
        width: 100%;
        margin-top: 34px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .home-page .main-header {
        border-radius: 0 0 18px 18px;
    }
    .home-page .hero-section {
        height: auto;
        min-height: 100svh;
        padding: 110px 6% 140px;
        justify-content: center;
    }
    .home-page .hero-content {
        max-width: 100%;
        text-align: center;
    }
    .home-page .hero-title {
        font-size: 48px;
    }
    .home-page .hero-subtitle {
        font-size: 16px;
        max-width: 100%;
        margin: 0 auto 24px;
    }
    .home-page .hero-stats {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
    }
    .home-page .hero-stat {
        min-width: 0;
        flex: 1;
    }
    .home-page .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .home-page .btn-hero-primary,
    .home-page .btn-hero-secondary {
        width: 100%;
    }
    .home-page .property-about,
    .home-page .property-reservation {
        padding: 28px 20px;
    }
    .home-page .property-location {
        margin-top: 34px;
    }
    .home-page .property-location-quote {
        padding: 30px 18px 26px;
    }
    .home-page .property-location-quote h2 {
        font-size: 28px;
    }
}

/* ============================================================
   HERO SCROLL HINT
   ============================================================ */
.hero-scroll-hint {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 248, 240, 0.75);
    pointer-events: none;
}

.hero-scroll-text {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.hero-scroll-hint svg {
    animation: scrollBounce 1.6s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ============================================================
   AMENITIES STRIP
   ============================================================ */
.amenities-strip {
    background: #fff;
    border-bottom: 1px solid rgba(138, 90, 58, 0.1);
    padding: 28px 5%;
}

.home-page .amenities-strip {
    padding-top: 100px;
}

.amenities-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 180px;
}

.amenity-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f9ece0 0%, #f4e0cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.amenity-icon-wrap svg {
    width: 22px;
    height: 22px;
    color: #8a5a3a;
}

.amenity-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #2b2420;
    margin-bottom: 2px;
}

.amenity-text span {
    font-size: 12px;
    color: #7a6a60;
}

.amenity-divider {
    width: 1px;
    height: 48px;
    background: rgba(138, 90, 58, 0.15);
    flex-shrink: 0;
}

/* ============================================================
   EXPERIENCE / ABOUT SECTION
   ============================================================ */
.experience-section {
    padding: 96px 5%;
    background: linear-gradient(180deg, #fff 0%, #faf4ed 100%);
}

.experience-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.experience-kicker {
    display: block;
    color: #c58f5f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.experience-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 3.5vw, 46px);
    font-weight: 600;
    color: #2b2420;
    line-height: 1.15;
    margin-bottom: 20px;
}

.experience-lead {
    font-size: 16px;
    line-height: 1.78;
    color: #5a5148;
    margin-bottom: 32px;
}

.experience-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.experience-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 251, 246, 0.92);
    border: 1px solid rgba(138, 90, 58, 0.12);
    border-radius: 12px;
}

.experience-contact-item svg {
    width: 18px;
    height: 18px;
    color: #8a5a3a;
    flex-shrink: 0;
    margin-top: 2px;
}

.experience-contact-item span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9a8070;
    margin-bottom: 3px;
}

.experience-contact-item strong {
    font-size: 13px;
    font-weight: 600;
    color: #2b2420;
    line-height: 1.4;
}

.experience-contact-full {
    grid-column: span 2;
}

.experience-image-wrap {
    position: relative;
}

.experience-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 30px 64px rgba(52, 34, 22, 0.18);
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 28px;
    left: -22px;
    background: #fff;
    border-radius: 16px;
    padding: 14px 22px;
    box-shadow: 0 14px 36px rgba(52, 34, 22, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.experience-badge-value {
    font-size: 22px;
    font-weight: 800;
    color: #c58f5f;
}

.experience-badge-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #9a8070;
    margin-top: 2px;
}

/* ============================================================
   STAYS / ROOMS SECTION
   ============================================================ */
.stays-section {
    padding: 80px 5%;
    background: #faf4ed;
}

.stays-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.stays-header {
    text-align: center;
    margin-bottom: 52px;
}

.stays-kicker {
    display: block;
    color: #c58f5f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.stays-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 600;
    color: #2b2420;
    margin-bottom: 14px;
}

.stays-subtitle {
    font-size: 16px;
    color: #7a6a60;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.65;
}

.stays-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.stay-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(52, 34, 22, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stay-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 52px rgba(52, 34, 22, 0.15);
}

.stay-card-image-wrap {
    height: 240px;
    overflow: hidden;
}

.stay-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.stay-card:hover .stay-card-image {
    transform: scale(1.06);
}

.stay-card-body {
    padding: 24px;
}

.stay-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: #2b2420;
    margin-bottom: 10px;
}

.stay-card-body > p {
    font-size: 14px;
    color: #6b5e54;
    line-height: 1.68;
    margin-bottom: 20px;
}

.stay-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #f0e8e0;
}

.stay-price-from {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9a8070;
    margin-bottom: 2px;
}

.stay-price strong {
    font-size: 20px;
    font-weight: 700;
    color: #8a5a3a;
    line-height: 1;
}

.stay-price strong span {
    font-size: 13px;
    font-weight: 500;
    color: #9a8a80;
}

.btn-stay-book {
    background: linear-gradient(135deg, #c58f5f 0%, #8a5a3a 100%);
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-stay-book:hover {
    box-shadow: 0 8px 22px rgba(138, 90, 58, 0.32);
    transform: translateY(-1px);
}

.stays-cta-row {
    text-align: center;
    margin-top: 36px;
}

.btn-see-all-rooms {
    display: inline-block;
    color: #8a5a3a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 2px solid rgba(138, 90, 58, 0.35);
    padding-bottom: 3px;
    transition: border-color 0.2s;
}

.btn-see-all-rooms:hover {
    border-color: #8a5a3a;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
    padding: 96px 5%;
    background: linear-gradient(180deg, #faf4ed 0%, #fff 100%);
}

.testimonials-inner {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-kicker {
    display: block;
    color: #c58f5f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.testimonials-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 3.5vw, 46px);
    font-weight: 600;
    color: #2b2420;
    margin-bottom: 48px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid rgba(138, 90, 58, 0.1);
    border-radius: 20px;
    padding: 28px;
    text-align: left;
    box-shadow: 0 8px 24px rgba(52, 34, 22, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.testimonial-card:hover {
    box-shadow: 0 18px 40px rgba(52, 34, 22, 0.1);
    transform: translateY(-3px);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.78;
    color: #5a5148;
    margin-bottom: 22px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c58f5f 0%, #8a5a3a 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #2b2420;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 12px;
    color: #9a8070;
}

/* ============================================================
   GALLERY STRIP
   ============================================================ */
.gallery-strip {
    line-height: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 360px;
}

.gallery-item {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.35s ease;
}

.gallery-item:hover::before {
    background: rgba(0, 0, 0, 0.08);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 22px;
}

.gallery-item-overlay span {
    color: rgba(255, 248, 240, 0.92);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================================
   LOCATION / CONTACT SECTION
   ============================================================ */
.location-section {
    padding: 72px 5%;
    background: #fff;
}

.home-page .location-section {
    background: linear-gradient(180deg, #fff 0%, #faf4ed 100%);
}

/* ============================================================
   FOOTER SOCIAL
   ============================================================ */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social-link {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbbdb6;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer-social-link:hover {
    background: rgba(197, 143, 95, 0.25);
    color: #e8c08f;
    border-color: rgba(197, 143, 95, 0.4);
}

/* ============================================================
   RESPONSIVE — COMPREHENSIVE MOBILE OPTIMIZATIONS
   ============================================================ */
@media (max-width: 992px) {
    .experience-inner {
        gap: 48px;
    }

    .stays-grid {
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Prevent iOS Safari automatic zoom on form focus */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="password"],
    input[type="date"],
    select,
    textarea {
        font-size: 16px !important;
    }

    /* Header & Mobile Navigation */
    .main-header {
        padding: 12px 4%;
        flex-wrap: wrap;
    }

    .brand-logo .logo-mark {
        width: 44px;
        height: 44px;
    }

    .brand-logo .logo-link {
        font-size: 18px;
    }

    .nav-menu {
        order: 3;
        width: 100%;
        margin-top: 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
    }

    .nav-menu ul {
        display: flex;
        gap: 16px;
        white-space: nowrap;
        width: max-content;
    }

    .nav-menu ul li a {
        font-size: 13px;
        padding: 6px 10px;
        background: #F8FAFC;
        border-radius: 20px;
        border: 1px solid #E2E8F0;
        display: inline-block;
    }

    .nav-menu ul li.active a {
        background: var(--color-primary);
        color: #FFF !important;
        border-color: var(--color-primary);
    }

    .header-action {
        gap: 8px;
    }

    .btn-book-header {
        padding: 8px 14px;
        font-size: 12.5px;
    }

    /* Hero Section Mobile Overhaul (Prevent Overlapping) */
    .hero-section {
        height: auto;
        min-height: auto;
        padding: 44px 16px 36px;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        background: linear-gradient(rgba(20, 12, 8, 0.45), rgba(20, 12, 8, 0.7)), url('../hero-slide-1.jpg') center/cover no-repeat;
    }

    .hero-content {
        margin-top: 0;
        padding: 0;
        width: 100%;
        margin-bottom: 24px;
        z-index: 3;
    }

    .hero-title {
        font-size: 32px !important;
        line-height: 1.15;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 13.5px;
        margin-bottom: 16px;
        line-height: 1.5;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
        margin-bottom: 18px;
    }

    .hero-stat {
        padding: 6px 10px;
        background: rgba(0, 0, 0, 0.35);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        backdrop-filter: blur(4px);
    }

    .hero-stat-value {
        font-size: 14px;
    }

    .hero-stat-label {
        font-size: 9.5px;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 10px;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    .hero-buttons a {
        flex: 1;
        padding: 10px 14px;
        font-size: 13px;
        text-align: center;
    }

    /* Floating Search Card Clean Mobile Placement (No Overlap) */
    .search-card-container {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        z-index: 4;
    }

    .search-card {
        background: #FAF7F2;
        border: 1.5px solid #EDE5DC;
        border-radius: 18px;
        padding: 18px 16px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .search-field {
        width: 100%;
        text-align: left;
    }

    .search-field label {
        font-size: 10.5px;
        font-weight: 800;
        letter-spacing: 0.5px;
        color: #7C533C;
    }

    .input-with-icon {
        background: #FFFFFF;
        border: 1.5px solid #E2E8F0;
        border-radius: 10px;
        padding: 8px 12px;
        height: 44px;
    }

    .input-with-icon input,
    .input-with-icon select {
        font-size: 13px;
        color: #0F172A;
    }

    .btn-search {
        width: 100%;
        height: 46px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 700;
        background: #7C533C;
        color: #FFFFFF;
        margin-top: 4px;
    }

    .hero-scroll-hint {
        display: none;
    }

    .home-page .amenities-strip {
        padding-top: 50px;
    }

    .amenities-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .amenity-divider {
        width: 100%;
        height: 1px;
        margin: 8px 0;
    }

    .amenity-item {
        min-width: 0;
        padding: 8px 0;
    }

    .experience-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .experience-image-wrap {
        order: -1;
    }

    .experience-image {
        height: 240px;
        border-radius: 16px;
    }

    .experience-badge {
        left: 12px;
        bottom: 16px;
        padding: 10px 14px;
    }

    .experience-contact-grid {
        grid-template-columns: 1fr;
    }

    .experience-contact-full {
        grid-column: span 1;
    }

    .stays-grid {
        grid-template-columns: 1fr;
    }

    .stay-card-image-wrap {
        height: 190px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .gallery-item {
        height: 180px;
    }

    .location-section {
        padding: 40px 4%;
    }

    /* Booking & Wizard Mobile Touch */
    .bk-container {
        padding: 14px 12px 60px;
    }

    .bk-grid {
        display: flex;
        flex-direction: column;
    }

    .bk-card {
        padding: 16px 14px;
        border-radius: 14px;
        margin-bottom: 16px;
    }

    .bk-room-box {
        flex-direction: column;
        gap: 14px;
    }

    .bk-room-right {
        text-align: left;
        border-top: 1px solid #F1F5F9;
        padding-top: 10px;
    }

    .bk-form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bk-actions {
        flex-direction: column-reverse;
        gap: 10px;
    }

    .bk-actions a, .bk-actions button {
        width: 100% !important;
        text-align: center;
        justify-content: center;
        padding: 14px 20px;
    }

    /* Interactive Calendar Mobile Adaptations */
    .rooms-cal-wrapper {
        padding: 0 10px !important;
        margin-bottom: 20px !important;
    }

    .rooms-cal-wrapper > div {
        padding: 16px 12px !important;
    }

    #guest-cal-grid > div {
        font-size: 9px !important;
    }

    #guest-cal-days > div {
        height: 42px !important;
        padding: 2px !important;
    }

    #guest-cal-days strong {
        font-size: 11px !important;
    }

    #guest-cal-days span {
        font-size: 8px !important;
    }
}
