/* ==========================================
   Winston Village Gulu — style.css
   Airbnb-Inspired Luxury Hotel Design
   Palette: Deep Espresso · Warm Sand · Gold
   Fonts: Cormorant Garamond + DM Sans
   ========================================== */

:root {
    /* Core Palette */
    --espresso:     #1A120B;
    --espresso-mid: #2C1A0E;
    --bark:         #3D2314;
    --amber:        #C47D3E;
    --amber-light:  #D4924F;
    --gold:         #E8B86D;
    --sand:         #F5EDD8;
    --sand-light:   #FAF6EE;
    --cream:        #FFFDF9;
    --white:        #FFFFFF;

    /* Text */
    --text-dark:    #1A120B;
    --text-mid:     #4A3728;
    --text-muted:   #8C7260;
    --text-light:   #B8A090;

    /* Utility */
    --border:       rgba(196, 125, 62, 0.18);
    --shadow-soft:  0 2px 20px rgba(26, 18, 11, 0.06);
    --shadow-card:  0 8px 40px rgba(26, 18, 11, 0.10);
    --shadow-hover: 0 16px 60px rgba(26, 18, 11, 0.16);
    --radius-sm:    8px;
    --radius-md:    14px;
    --radius-lg:    24px;
    --transition:   all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    --header-h: 74px;
}

/* ======= RESET ======= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ======= TYPOGRAPHY ======= */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    line-height: 1.15;
    color: var(--espresso);
}
em { font-style: italic; color: var(--amber); }

/* ======= CONTAINER ======= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ======= SECTION ======= */
.section { padding: 100px 0; }
.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}
.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1px;
    background: var(--amber);
}
.section-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    margin-bottom: 1.1rem;
    line-height: 1.15;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 3rem;
}

/* ======= BUTTONS ======= */
.btn-primary {
    display: inline-block;
    background: var(--amber);
    color: var(--white);
    padding: 0.85rem 2.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: var(--transition);
    border: 2px solid var(--amber);
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--amber-light);
    border-color: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196,125,62,0.35);
}
.btn-ghost {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 0.85rem 2.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: 2px solid rgba(255,255,255,0.55);
    transition: var(--transition);
    cursor: pointer;
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
}
.btn-sm {
    display: inline-block;
    background: var(--espresso);
    color: var(--white);
    padding: 0.55rem 1.4rem;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: var(--transition);
}
.btn-sm:hover {
    background: var(--amber);
    transform: translateY(-1px);
}
.btn-reserve {
    display: inline-block;
    background: var(--amber);
    color: var(--white);
    padding: 0.65rem 1.6rem;
    border-radius: 8px;
    font-size: 0.87rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-reserve:hover {
    background: var(--amber-light);
    transform: translateY(-1px);
}

/* ======= LOADING SCREEN ======= */
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--espresso);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
    width: 72px;
    height: 72px;
    background: var(--amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    animation: pulse-loader 1.4s ease-in-out infinite;
    overflow: hidden;
}
.loader-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.loader-text-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--white);
}
.loader-tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 2rem;
}
.loading-bar-wrap {
    width: 180px;
    height: 2px;
    background: rgba(255,255,255,0.15);
    border-radius: 1px;
    overflow: hidden;
}
.loading-bar {
    height: 100%;
    width: 0%;
    background: var(--gold);
    border-radius: 1px;
    transition: width 0.3s ease;
}
@keyframes pulse-loader {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

/* ======= HEADER ======= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: var(--header-h);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}
.header.scrolled {
    background: rgba(250,246,238,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(26,18,11,0.10);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
}
.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
}
.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    transition: color 0.3s;
}
.header.scrolled .logo-text { color: var(--espresso); }
.nav { display: flex; align-items: center; gap: 0.5rem; }
.nav-list { display: flex; gap: 0.3rem; }
.nav-link {
    font-size: 0.87rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    padding: 0.45rem 0.75rem;
    border-radius: 6px;
    transition: var(--transition);
    letter-spacing: 0.01em;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.header.scrolled .nav-link { color: var(--text-mid); }
.header.scrolled .nav-link:hover { color: var(--espresso); background: var(--sand); }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.header.scrolled .nav-toggle span { background: var(--espresso); }

/* ======= HERO ======= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: hero-zoom 18s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,18,11,0.75) 0%, rgba(26,18,11,0.35) 60%, rgba(26,18,11,0.15) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-top: var(--header-h);
}
.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.3rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(232,184,109,0.4);
    border-radius: 50px;
    background: rgba(232,184,109,0.08);
}
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5.8rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 1.4rem;
}
.hero-title em { color: var(--gold); }
.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}
.hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}
.hero-scroll-hint span {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scroll-pulse 1.8s ease-in-out infinite;
}
@keyframes scroll-pulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ======= STATS BAR ======= */
.stats-bar {
    background: var(--espresso);
    padding: 2rem 0;
}
.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.8rem 3rem;
}
.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
}
.stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
}

/* ======= ROOMS SECTION ======= */
.rooms-section { background: var(--sand-light); }
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.8rem;
    margin-top: 0;
}
.room-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(28px);
}
.room-card.visible { opacity: 1; transform: translateY(0); }
.room-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}
.room-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.room-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.room-card:hover .room-img-wrap img { transform: scale(1.07); }
.room-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--white);
    color: var(--espresso);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
}
.room-popular {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--amber);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
}
.room-info { padding: 1.5rem; }
.room-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}
.room-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.room-info p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.2rem; }
.room-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.room-price { font-size: 0.88rem; color: var(--text-muted); }
.room-price strong { font-size: 1rem; color: var(--espresso); font-weight: 700; }
.room-price span { font-size: 0.8rem; }
.featured-room { border: 2px solid var(--amber); }

/* ======= AMENITIES SECTION ======= */
.amenities-section { background: var(--cream); }
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}
.amenity-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem 1.6rem;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(24px);
}
.amenity-card.visible { opacity: 1; transform: translateY(0); }
.amenity-card:hover {
    border-color: var(--amber);
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}
.amenity-icon {
    width: 52px;
    height: 52px;
    background: var(--sand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    color: var(--amber);
    transition: var(--transition);
}
.amenity-card:hover .amenity-icon { background: var(--amber); color: var(--white); }
.amenity-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.97rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}
.amenity-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }

/* ======= ABOUT SECTION ======= */
.about-section { background: var(--sand-light); }
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-img-col { position: relative; }
.about-img-stack { position: relative; }
.about-img-main {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
}
.about-img-accent {
    position: absolute;
    bottom: -2.5rem;
    right: -2.5rem;
    width: 200px;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 5px solid var(--white);
    box-shadow: var(--shadow-card);
}
.about-award-badge {
    position: absolute;
    top: 1.5rem;
    left: -1.5rem;
    background: var(--espresso);
    color: var(--white);
    padding: 1rem 1.3rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-card);
}
.award-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.4rem; }
.award-text { font-size: 0.72rem; line-height: 1.4; opacity: 0.8; }
.about-text-col .section-title { margin-bottom: 1.2rem; }
.about-text-col p { font-size: 1rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 1.1rem; }
.about-values { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 1.8rem; }
.value-item { display: flex; gap: 1rem; align-items: flex-start; }
.value-icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.value-item strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--espresso); margin-bottom: 0.2rem; }
.value-item p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.5; }

/* ======= BLOG SECTION ======= */
.blog-section { background: var(--cream); }
.blog-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 1.8rem;
    align-items: start;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(22px);
}
.blog-card.visible { opacity: 1; transform: translateY(0); }
.blog-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.blog-img-wrap { position: relative; overflow: hidden; }
.featured-blog .blog-img-wrap { height: 300px; }
.blog-card:not(.featured-blog) .blog-img-wrap { height: 190px; }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.06); }
.blog-category {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--amber);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
}
.blog-content { padding: 1.5rem; }
.blog-date { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.04em; margin-bottom: 0.5rem; }
.blog-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 0.7rem;
}
.blog-card:not(.featured-blog) .blog-content h3 { font-size: 1.1rem; }
.blog-content p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.blog-link { font-size: 0.83rem; font-weight: 700; color: var(--amber); letter-spacing: 0.03em; }
.blog-link:hover { color: var(--amber-light); }

/* ======= RESERVATION SECTION ======= */
.reserve-section { background: var(--sand-light); }
.reserve-wrapper {
    max-width: 820px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem 3.5rem;
    box-shadow: var(--shadow-card);
}
.reserve-form { display: flex; flex-direction: column; gap: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-size: 0.82rem; font-weight: 700; color: var(--text-mid); letter-spacing: 0.04em; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream);
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
    -webkit-appearance: none;
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(196,125,62,0.12);
    background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238C7260' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.5rem; }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit { width: 100%; font-size: 1rem; padding: 1rem; border-radius: var(--radius-sm); }
.form-success {
    text-align: center;
    padding: 3rem 2rem;
}
.success-icon {
    width: 64px;
    height: 64px;
    background: #10B981;
    color: var(--white);
    font-size: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.form-success h3 { font-size: 1.8rem; margin-bottom: 0.7rem; }
.form-success p { color: var(--text-muted); font-size: 0.95rem; }
.form-errors {
    background: #FEE2E2;
    border: 1px solid #FECACA;
    border-radius: var(--radius-sm);
    padding: 1rem 1.2rem;
    margin-bottom: 1.2rem;
}
.form-errors p { font-size: 0.87rem; color: #DC2626; line-height: 1.7; }

/* ======= CONTACT SECTION ======= */
.contact-section { background: var(--cream); }
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}
.contact-info .section-title { margin-bottom: 0.8rem; }
.contact-info > p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.3rem; margin-bottom: 2.2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { font-size: 1.3rem; width: 2rem; flex-shrink: 0; }
.contact-item strong { font-size: 0.85rem; font-weight: 700; color: var(--espresso); display: block; margin-bottom: 0.2rem; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-item p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.5; }
.contact-item a { color: var(--amber); }
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: #25D366;
    color: var(--white);
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: var(--transition);
}
.whatsapp-btn:hover { background: #1EAF56; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.3); }
.map-placeholder {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 420px;
    box-shadow: var(--shadow-card);
}
.map-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.map-pin-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--white);
    padding: 0.9rem 1.2rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    line-height: 1.5;
    box-shadow: var(--shadow-card);
    border-left: 3px solid var(--amber);
}
.map-pin-label strong { display: block; color: var(--espresso); font-size: 0.92rem; }

/* ======= CTA BANNER ======= */
.cta-banner {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,18,11,0.86) 0%, rgba(26,18,11,0.6) 100%);
}
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}
.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.15;
}
.cta-content h2 em { color: var(--gold); }
.cta-content p { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ======= FOOTER ======= */
.footer { background: var(--espresso); color: rgba(255,255,255,0.75); }
.footer-top { padding: 5rem 0 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 3rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
}
.footer-logo img { width: 36px; height: 36px; object-fit: contain; border-radius: 50%; }
.footer-logo span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; color: rgba(255,255,255,0.55); }
.social-links { display: flex; gap: 0.7rem; }
.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
}
.social-link:hover { background: var(--amber); color: var(--white); transform: translateY(-2px); }
.footer-col h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.3rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li, .footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.25s;
    line-height: 1.5;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
    padding: 1.5rem 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-legal a { color: rgba(255,255,255,0.4); margin: 0 0.1rem; transition: color 0.25s; }
.footer-legal a:hover { color: var(--gold); }

/* ======= SCROLL-TRIGGERED ANIMATIONS ======= */
[data-aos] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
[data-aos].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
    .about-inner { grid-template-columns: 1fr; gap: 3rem; }
    .about-img-col { order: -1; }
    .about-img-main { height: 380px; }
    .about-img-accent { bottom: -1.5rem; right: -1rem; }
    .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .featured-blog { grid-column: 1 / -1; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    :root { --header-h: 64px; }
    .section { padding: 70px 0; }
    .container { padding: 0 1.25rem; }

    .nav-toggle { display: flex; }
    .nav {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0; bottom: 0;
        background: var(--espresso);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 2rem 1.5rem;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
        overflow-y: auto;
    }
    .nav.open { transform: translateX(0); }
    .nav-list { flex-direction: column; gap: 0; width: 100%; }
    .nav-link {
        display: block;
        padding: 1rem 0.5rem;
        font-size: 1.2rem;
        color: rgba(255,255,255,0.85);
        border-bottom: 1px solid rgba(255,255,255,0.07);
        width: 100%;
    }
    .btn-reserve { margin-top: 1.5rem; align-self: flex-start; }

    .hero-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }
    .stat-item { padding: 0.8rem 1.5rem; }
    .stat-divider { display: none; }
    .stats-inner { gap: 0; justify-content: space-around; }

    .rooms-grid { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: 1fr 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .featured-blog { grid-column: auto; }

    .reserve-wrapper { padding: 2rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom .container { flex-direction: column; text-align: center; }

    .about-img-accent { display: none; }
    .about-award-badge { left: 1rem; }

    .map-placeholder { height: 280px; }
}

@media (max-width: 480px) {
    .amenities-grid { grid-template-columns: 1fr; }
    .hero-cta-row { flex-direction: column; align-items: flex-start; }
    .cta-btns { flex-direction: column; align-items: center; }
    .section-title { font-size: 2rem; }
}