/* =========================================================
   Jodhpur Heritage Haveli - Modern Heritage Stylesheet
   Palette: Royal Marwar (maroon + gold + ivory)
   Typography: Playfair Display (serif) + Inter (sans)
   ========================================================= */

/* ---------- CSS Variables ---------- */
:root {
    /* Colors */
    --maroon: #7b2d26;
    --maroon-dark: #5e221d;
    --maroon-light: #a04540;
    --gold: #c9a227;
    --gold-light: #e0bf5a;
    --gold-dark: #a6841a;
    --ivory: #faf3e0;
    --cream: #f7eed6;
    --sand: #ede0c2;
    --charcoal: #2a1810;
    --brown: #4a2c20;
    --gray-900: #1a1410;
    --gray-700: #4a4036;
    --gray-500: #7a6f63;
    --gray-300: #d4c9b8;
    --gray-100: #f0e8d8;
    --white: #ffffff;
    --success: #2d7a4a;
    --danger: #b03a2e;

    /* Fonts */
    --font-head: 'Playfair Display', Georgia, serif;
    --font-deco: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-hindi: 'Tiro Devanagari Hindi', serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    /* Layout */
    --container: 95%;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(42, 24, 16, 0.08);
    --shadow-md: 0 8px 24px rgba(42, 24, 16, 0.12);
    --shadow-lg: 0 20px 60px rgba(42, 24, 16, 0.18);
    --shadow-gold: 0 8px 32px rgba(201, 162, 39, 0.25);

    /* Transitions */
    --t-fast: 0.2s ease;
    --t-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --t-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--ivory);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

::selection { background: var(--gold); color: var(--white); }

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    color: var(--maroon);
    line-height: 1.2;
    font-weight: 700;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.375rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

p { margin-bottom: 1rem; }
.lead { font-size: 1.125rem; color: var(--gray-700); }

/* ---------- Section Headings ---------- */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 1rem;
}
.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}
.section-eyebrow--left::before { display: none; }

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--maroon);
}
.section-title span { color: var(--gold-dark); font-style: italic; }

.section-subtitle {
    color: var(--gray-700);
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.0625rem;
}

.section { padding: var(--space-xl) 0; }
.section--tight { padding: var(--space-lg) 0; }
.section--cream { background: var(--cream); }
.section--ivory { background: var(--ivory); }
.section--maroon { background: var(--maroon); color: var(--cream); }
.section--maroon h2, .section--maroon h3 { color: var(--gold-light); }
.section--maroon .section-eyebrow { color: var(--gold-light); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--t-base);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    line-height: 1;
}
.btn--gold {
    background: var(--gold);
    color: var(--maroon-dark);
    box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(201, 162, 39, 0.4);
}
.btn--maroon {
    background: var(--maroon);
    color: var(--cream);
}
.btn--maroon:hover {
    background: var(--maroon-dark);
    transform: translateY(-2px);
}
.btn--outline {
    background: transparent;
    color: var(--maroon);
    border-color: var(--maroon);
}
.btn--outline:hover {
    background: var(--maroon);
    color: var(--cream);
}
.btn--outline-light {
    background: transparent;
    color: var(--cream);
    border-color: rgba(255, 255, 255, 0.4);
}
.btn--outline-light:hover {
    background: var(--cream);
    color: var(--maroon);
    border-color: var(--cream);
}
.btn--ghost {
    background: rgba(250, 243, 224, 0.1);
    color: var(--cream);
    border-color: rgba(250, 243, 224, 0.2);
    backdrop-filter: blur(8px);
}
.btn--ghost:hover {
    background: rgba(250, 243, 224, 0.2);
    border-color: var(--gold);
}
.btn--lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn--block { width: 100%; }

/* ---------- Top Bar ---------- */
.top-bar {
    background: var(--maroon-dark);
    color: var(--cream);
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}
.top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.top-bar__left { display: flex; gap: 1.5rem; align-items: center; }
.top-bar__right { display: flex; gap: 1.5rem; align-items: center; }
.top-bar__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--cream);
    opacity: 0.9;
}
.top-bar__link:hover { color: var(--gold-light); opacity: 1; }
.top-bar__address { display: inline-flex; align-items: center; gap: 0.4rem; opacity: 0.9; }
.top-bar__social { display: flex; gap: 0.5rem; }
.top-bar__social a {
    width: 28px; height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--cream);
    font-size: 0.75rem;
}
.top-bar__social a:hover { background: var(--gold); color: var(--maroon-dark); }

/* ---------- Header ---------- */
.site-header {
    background: var(--ivory);
    border-bottom: 1px solid var(--gray-300);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all var(--t-base);
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(250, 243, 224, 0.95);
    backdrop-filter: blur(12px);
}
.site-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .4rem 1.5rem;
    gap: 1rem;
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.brand__logo {
    height: 90px;
    width: auto;
    object-fit: contain;
}
.brand__text { display: flex; flex-direction: column; }
.brand__name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--maroon);
    line-height: 1.1;
}
.brand__tag {
    font-size: 0.75rem;
    color: var(--gold-dark);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ---------- Main Nav ---------- */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.main-nav__list {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}
.main-nav__list a {
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--t-fast);
}
.main-nav__list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--t-base);
}
.main-nav__list a:hover,
.main-nav__list a.active {
    color: var(--maroon);
}
.main-nav__list a:hover::after,
.main-nav__list a.active::after {
    width: 100%;
}
.main-nav__cta {
    margin-left: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}
.main-nav__close { display: none; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    cursor: pointer;
}
.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--maroon);
    border-radius: 2px;
    transition: all var(--t-base);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* ---------- Floating Buttons ---------- */
.wa-float,
.call-float {
    position: fixed;
    right: 1.5rem;
    z-index: 99;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--shadow-md);
    transition: all var(--t-base);
    animation: pulse 2.5s infinite;
}
.wa-float { bottom: 1.5rem; background: #25d366; }
.call-float { bottom: 5.5rem; background: var(--maroon); }
.wa-float:hover, .call-float:hover { transform: scale(1.1); }

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
}
.call-float { animation: pulse-maroon 2.5s infinite; }
@keyframes pulse-maroon {
    0%, 100% { box-shadow: 0 0 0 0 rgba(123, 45, 38, 0.4); }
    50% { box-shadow: 0 0 0 14px rgba(123, 45, 38, 0); }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    color: var(--cream);
    overflow: hidden;
    padding: 4rem 0;
}
.hero--slider { padding: 0; min-height: 92vh; }
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}
.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    inset: 0;
}
.hero-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.65, 0, 0.35, 1);
    transform: scale(1.05);
}
.hero-slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-slider__slide.active {
    opacity: 1;
    transform: scale(1);
    animation: heroSlideZoom 7s ease-out forwards;
}
@keyframes heroSlideZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.12); }
}

/* Hero Slider Nav buttons */
.hero-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(250, 243, 224, 0.15);
    color: var(--cream);
    border: 1px solid rgba(201, 162, 39, 0.4);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 5;
    transition: all var(--t-base);
    cursor: pointer;
}
.hero-slider__nav:hover {
    background: var(--gold);
    color: var(--maroon-dark);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.08);
}
.hero-slider__nav--prev { left: 2rem; }
.hero-slider__nav--next { right: 2rem; }

/* Hero Slider Dots */
.hero-slider__dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 5;
}
.hero-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(250, 243, 224, 0.4);
    border: 1px solid rgba(201, 162, 39, 0.6);
    cursor: pointer;
    transition: all var(--t-base);
}
.hero-slider__dot.active {
    background: var(--gold);
    width: 36px;
    border-radius: 6px;
    border-color: var(--gold);
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(42, 24, 16, 0.85) 0%, rgba(94, 34, 29, 0.7) 50%, rgba(123, 45, 38, 0.4) 100%);
    z-index: -1;
}
.hero__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}
.hero__inner--centered {
    grid-template-columns: 1fr;
    max-width: 800px;
}
.hero__content { max-width: 640px; }
.hero--slider .hero__content { max-width: 800px; }
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}
.hero__title {
    color: var(--cream);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.hero__title span {
    color: var(--gold-light);
    font-style: italic;
    display: block;
}
.hero__text {
    font-size: 1.125rem;
    color: rgba(250, 243, 224, 0.9);
    margin-bottom: 2rem;
    max-width: 540px;
}
.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 162, 39, 0.3);
}
.hero__stat-num {
    font-family: var(--font-head);
    font-size: 2.25rem;
    color: var(--gold-light);
    line-height: 1;
    font-weight: 700;
}
.hero__stat-label {
    font-size: 0.8125rem;
    color: rgba(250, 243, 224, 0.7);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* ---------- Rooms Carousel (2 rooms per slide) ---------- */
.rooms-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.rooms-carousel__viewport {
    flex: 1;
    overflow: hidden;
}
.rooms-carousel__track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}
.rooms-carousel__slide {
    flex: 0 0 100%;
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.rooms-carousel__slide.active {
    opacity: 1;
}
.rooms-carousel__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 0 0.5rem;
}
.rooms-carousel__nav {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--maroon);
    color: var(--cream);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all var(--t-base);
    box-shadow: var(--shadow-sm);
    z-index: 5;
}
.rooms-carousel__nav:hover {
    background: var(--gold);
    color: var(--maroon-dark);
    transform: scale(1.08);
}
.rooms-carousel__nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.rooms-carousel__nav--prev { order: 0; }
.rooms-carousel__viewport { order: 1; }
.rooms-carousel__nav--next { order: 2; }
.rooms-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2rem;
}
.rooms-carousel__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--sand);
    border: 1px solid var(--maroon);
    cursor: pointer;
    transition: all var(--t-base);
}
.rooms-carousel__dot.active {
    background: var(--maroon);
    width: 36px;
    border-radius: 6px;
}

/* ---------- Hero Booking Card ---------- */
.booking-card {
    background: rgba(250, 243, 224, 0.96);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201, 162, 39, 0.3);
    position: relative;
}
.booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--maroon));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.booking-card__title {
    font-size: 1.5rem;
    color: var(--maroon);
    margin-bottom: 0.25rem;
}
.booking-card__subtitle {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}
.booking-card__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.booking-card__field { display: flex; flex-direction: column; }
.booking-card__field--full { grid-column: 1 / -1; }
.booking-card__field label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
}
.booking-card__field input,
.booking-card__field select {
    padding: 0.75rem 0.875rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--charcoal);
    font-size: 0.9375rem;
    transition: border var(--t-fast);
}
.booking-card__field input:focus,
.booking-card__field select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

/* ---------- Page Header (Inner pages) ---------- */
.page-header {
    position: relative;
    padding: 6rem 0 3.5rem;
    color: var(--cream);
    text-align: center;
    overflow: hidden;
}
.page-header__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.page-header__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-header__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(42, 24, 16, 0.85) 0%, rgba(94, 34, 29, 0.75) 100%);
    z-index: -1;
}
.page-header__title {
    color: var(--cream);
    margin-bottom: 0.75rem;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
}
.page-header__title span { color: var(--gold-light); font-style: italic; }
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: rgba(250, 243, 224, 0.8);
    flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb__sep { opacity: 0.5; }

/* ---------- Cards Grid ---------- */
.grid {
    display: grid;
    gap: 2rem;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Room Card ---------- */
.room-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--t-base);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-100);
}
.room-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.room-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--cream);
}
.room-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.room-card:hover .room-card__image img { transform: scale(1.08); }
.room-card__price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--maroon);
    color: var(--cream);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9375rem;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(8px);
}
.room-card__price small { font-size: 0.75rem; opacity: 0.7; font-weight: 400; }
.room-card__body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.room-card__title {
    font-size: 1.375rem;
    color: var(--maroon);
    margin-bottom: 0.5rem;
}
.room-card__meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}
.room-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.room-card__meta i { color: var(--gold-dark); }
.room-card__desc {
    color: var(--gray-700);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    flex: 1;
}
.room-card__amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}
.room-card__amenity {
    background: var(--cream);
    color: var(--brown);
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
}
.room-card__actions {
    display: flex;
    gap: 0.5rem;
}
.room-card__actions .btn { flex: 1; }

/* ---------- Room Detail (Rooms page) ---------- */
.room-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid var(--gray-300);
}
.room-detail:last-child { border-bottom: none; }
.room-detail--reverse .room-detail__image { order: 2; }
.room-detail__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4 / 3;
}
.room-detail__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.room-detail__price-tag {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--maroon-dark);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}
.room-detail__content { padding: 1rem 0; }
.room-detail__title {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.room-detail__meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    color: var(--gray-700);
    font-size: 0.9375rem;
}
.room-detail__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.room-detail__meta i { color: var(--gold-dark); }
.room-detail__desc { margin-bottom: 1.5rem; color: var(--gray-700); }
.room-detail__amenities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.room-detail__amenities li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
}
.room-detail__amenities i { color: var(--gold-dark); }
.room-detail__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ---------- Feature Card ---------- */
.feature-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: all var(--t-base);
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}
.feature-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--cream), var(--sand));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--maroon);
    font-size: 1.5rem;
    transition: all var(--t-base);
}
.feature-card:hover .feature-card__icon {
    background: var(--maroon);
    color: var(--gold-light);
    transform: rotate(5deg) scale(1.05);
}
.feature-card__title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--maroon);
}
.feature-card__desc {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.5;
}

/* ---------- Section Split ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.split__media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media--stack { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.split__media--stack img { aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius-md); }

/* ---------- Stats / Highlights ---------- */
.highlight-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.highlight-list__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.highlight-list__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: var(--cream);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--maroon);
    font-size: 1.25rem;
}
.highlight-list__text { flex: 1; }
.highlight-list__title {
    font-size: 1rem;
    color: var(--maroon);
    margin-bottom: 0.25rem;
    font-weight: 600;
}
.highlight-list__desc {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.5;
}

/* ---------- Tour Card ---------- */
.tour-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--t-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.tour-card__image {
    aspect-ratio: 16 / 11;
    overflow: hidden;
    position: relative;
}
.tour-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.tour-card:hover .tour-card__image img { transform: scale(1.08); }
.tour-card__duration {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(250, 243, 224, 0.95);
    color: var(--maroon);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
}
.tour-card__body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.tour-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--maroon);
}
.tour-card__desc {
    color: var(--gray-700);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    flex: 1;
}
.tour-card__highlights {
    list-style: none;
    margin-bottom: 1.25rem;
}
.tour-card__highlights li {
    font-size: 0.8125rem;
    color: var(--gray-700);
    padding: 0.2rem 0;
    padding-left: 1.25rem;
    position: relative;
}
.tour-card__highlights li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ---------- Gallery ---------- */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}
.gallery-filter__btn {
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    background: transparent;
    color: var(--maroon);
    border: 1px solid var(--maroon);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--t-fast);
}
.gallery-filter__btn:hover,
.gallery-filter__btn.active {
    background: var(--maroon);
    color: var(--cream);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    background: var(--cream);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(42, 24, 16, 0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--t-base);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    color: var(--cream);
    font-size: 0.875rem;
    font-weight: 500;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    color: var(--cream);
    font-size: 1.5rem;
    opacity: 0;
    transition: all var(--t-base);
    width: 56px;
    height: 56px;
    background: rgba(201, 162, 39, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-item:hover .gallery-item__icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(26, 20, 16, 0.95);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox__img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background: rgba(250, 243, 224, 0.1);
    color: var(--cream);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid rgba(250, 243, 224, 0.3);
    transition: all var(--t-fast);
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    background: var(--gold);
    color: var(--maroon-dark);
}
.lightbox__close { top: 2rem; right: 2rem; }
.lightbox__prev { left: 2rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 2rem; top: 50%; transform: translateY(-50%); }

/* ---------- Testimonials ---------- */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.testimonial {
    background: var(--cream);
    padding: 2rem;
    border-radius: var(--radius-md);
    position: relative;
    border: 1px solid var(--sand);
}
.testimonial::before {
    content: '"';
    position: absolute;
    top: -1.5rem;
    left: 1.5rem;
    font-size: 5rem;
    font-family: var(--font-head);
    color: var(--gold);
    line-height: 1;
    background: var(--ivory);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--sand);
}
.testimonial__rating {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}
.testimonial__text {
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-family: var(--font-deco);
    font-size: 1.0625rem;
    line-height: 1.6;
}
.testimonial__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--maroon);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-family: var(--font-head);
}
.testimonial__name { font-weight: 600; color: var(--maroon); }
.testimonial__location { font-size: 0.8125rem; color: var(--gray-500); }

/* ---------- CTA Strip ---------- */
.cta-strip {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
    color: var(--cream);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}
.cta-strip::before,
.cta-strip::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.15), transparent 70%);
}
.cta-strip::before { top: -150px; left: -150px; }
.cta-strip::after { bottom: -150px; right: -150px; }
.cta-strip__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.cta-strip__text h2 { color: var(--gold-light); margin-bottom: 0.25rem; }
.cta-strip__text p { color: rgba(250, 243, 224, 0.85); margin: 0; }
.cta-strip__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--gray-900);
    color: var(--cream);
    padding: 4rem 0 0;
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}
.footer-logo {
    height: 100px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}
.footer-col--about p {
    color: rgba(250, 243, 224, 0.7);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
    width: 40px; height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.1);
    color: var(--gold-light);
    font-size: 1rem;
    transition: all var(--t-fast);
}
.footer-social a:hover {
    background: var(--gold);
    color: var(--maroon-dark);
    transform: translateY(-2px);
}
.footer-title {
    color: var(--gold-light);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-head);
    font-weight: 600;
}
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a {
    color: rgba(250, 243, 224, 0.7);
    font-size: 0.9375rem;
    transition: all var(--t-fast);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    align-items: flex-start;
    color: rgba(250, 243, 224, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
}
.footer-contact i {
    color: var(--gold);
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 18px;
}
.footer-contact a:hover { color: var(--gold-light); }

.footer-newsletter {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-newsletter__text h3 {
    color: var(--cream);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}
.footer-newsletter__text p {
    color: rgba(250, 243, 224, 0.7);
    font-size: 0.875rem;
    margin: 0;
}
.footer-newsletter__form {
    display: flex;
    gap: 0.5rem;
    min-width: 320px;
}
.footer-newsletter__form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    background: rgba(250, 243, 224, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    color: var(--cream);
    font-size: 0.9375rem;
}
.footer-newsletter__form input::placeholder { color: rgba(250, 243, 224, 0.5); }
.footer-newsletter__form input:focus {
    outline: none;
    border-color: var(--gold);
}
.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(250, 243, 224, 0.6);
    font-size: 0.875rem;
}
.footer-bottom__creds { margin-top: 0.25rem; font-size: 0.75rem; opacity: 0.7; }

/* ---------- Forms ---------- */
.form-group {
    margin-bottom: 1.25rem;
}
.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--maroon);
    margin-bottom: 0.5rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--charcoal);
    font-size: 0.9375rem;
    transition: border var(--t-fast), box-shadow var(--t-fast);
}
.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}
textarea.form-control {
    min-height: 120px;
    resize: vertical;
    font-family: var(--font-body);
}

/* ---------- Contact Section ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}
.contact-info {
    background: var(--maroon);
    color: var(--cream);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}
.contact-info::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.15), transparent 70%);
    border-radius: 50%;
}
.contact-info__eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.contact-info__title {
    color: var(--cream);
    margin-bottom: 2rem;
    font-size: 1.875rem;
}
.contact-info__list { list-style: none; margin-bottom: 2rem; }
.contact-info__list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}
.contact-info__list i {
    width: 44px;
    height: 44px;
    background: rgba(201, 162, 39, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 1.125rem;
    flex-shrink: 0;
}
.contact-info__list h4 {
    color: var(--gold-light);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
    font-family: var(--font-body);
    font-weight: 600;
}
.contact-info__list p,
.contact-info__list a {
    color: var(--cream);
    font-size: 0.9375rem;
    line-height: 1.5;
}
.contact-info__hours {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
}
.contact-info__hours h4 {
    color: var(--gold-light);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
}
.contact-info__hours p { color: var(--cream); font-size: 0.9375rem; margin: 0; }

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.contact-form__title {
    color: var(--maroon);
    margin-bottom: 0.5rem;
}
.contact-form__subtitle {
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

/* ---------- Map ---------- */
.map-embed {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    filter: sepia(0.15);
}

/* ---------- Nearby Attractions ---------- */
.attraction-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.attraction {
    display: flex;
    gap: 1rem;
    background: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    transition: all var(--t-fast);
}
.attraction:hover {
    border-color: var(--gold);
    transform: translateX(4px);
}
.attraction__icon {
    width: 48px;
    height: 48px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--maroon);
    flex-shrink: 0;
}
.attraction__name {
    font-weight: 600;
    color: var(--maroon);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}
.attraction__distance {
    color: var(--gold-dark);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.attraction__desc {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.5;
}

/* ---------- Hindi Quote ---------- */
.hindi-quote {
    font-family: var(--font-hindi);
    font-size: 1.5rem;
    color: var(--gold-dark);
    text-align: center;
    padding: 1rem 0;
    letter-spacing: 0.05em;
}

/* ---------- Alert ---------- */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
}
.alert--success {
    background: rgba(45, 122, 74, 0.1);
    color: var(--success);
    border: 1px solid rgba(45, 122, 74, 0.3);
}
.alert--error {
    background: rgba(176, 58, 46, 0.1);
    color: var(--danger);
    border: 1px solid rgba(176, 58, 46, 0.3);
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-gold { color: var(--gold-dark); }
.text-maroon { color: var(--maroon); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hero { min-height: auto; padding: 3rem 0; }
    .split { grid-template-columns: 1fr; gap: 2rem; }
    .room-detail { grid-template-columns: 1fr; gap: 1.5rem; }
    .room-detail--reverse .room-detail__image { order: 0; }
    .contact-grid { grid-template-columns: 1fr; }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .testimonials { grid-template-columns: 1fr; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .attraction-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .top-bar__inner { flex-direction: column; gap: 0.5rem; align-items: center; }
    .top-bar__left, .top-bar__right { flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .top-bar__address { display: none; }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--ivory);
        flex-direction: column;
        align-items: flex-start;
        padding: 4rem 2rem 2rem;
        gap: 0;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
        transition: right var(--t-base);
        overflow-y: auto;
        z-index: 200;
    }
    .main-nav.active { right: 0; }
    .main-nav__list {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0;
    }
    .main-nav__list li {
        border-bottom: 1px solid var(--gray-300);
    }
    .main-nav__list a {
        padding: 1rem 0;
        display: block;
    }
    .main-nav__list a::after { display: none; }
    .main-nav__cta {
        margin-top: 1rem;
        width: 100%;
    }
    .main-nav__close {
        display: flex;
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: var(--maroon);
    }
    .nav-toggle { display: flex; }

    .hero__stats { grid-template-columns: 1fr; gap: 1rem; }
    .hero--slider { min-height: 80vh; }
    .hero-slider__nav { width: 44px; height: 44px; font-size: 1rem; }
    .hero-slider__nav--prev { left: 0.75rem; }
    .hero-slider__nav--next { right: 0.75rem; }
    .booking-card { padding: 1.5rem; }
    .booking-card__row { grid-template-columns: 1fr; }
    .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .room-detail__amenities { grid-template-columns: 1fr; }
    /* Rooms carousel: 1 room per slide on mobile */
    .rooms-carousel__grid { grid-template-columns: 1fr; }
    .rooms-carousel__nav { width: 40px; height: 40px; font-size: 0.875rem; }
    .highlight-list { grid-template-columns: 1fr; }
    .cta-strip__inner { flex-direction: column; text-align: center; }
    .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-newsletter { flex-direction: column; text-align: center; }
    .footer-newsletter__form { width: 100%; min-width: 0; }
    .contact-form__row { grid-template-columns: 1fr; }
    .room-detail__actions { flex-direction: column; }
    .room-detail__actions .btn { width: 100%; }
    .room-card__actions { flex-direction: column; }
    .section { padding: 3rem 0; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; }
    .brand__tag { display: none; }
    .lightbox__prev, .lightbox__next { display: none; }
}

/* Print */
@media print {
    .top-bar, .nav-toggle, .wa-float, .call-float, .cta-strip, .footer-newsletter { display: none; }
    .site-header { position: static; box-shadow: none; }
}
