/* ============================================
   MADHVAN HOTEL & RESORT — MAIN STYLESHEET
   ============================================ */

/* ---- VARIABLES ---- */
:root {
  --gold:       #b8945a;
  --gold-light: #d4ad7a;
  --gold-dark:  #8a6a35;
  --forest:     #1a2e1e;
  --forest-mid: #2d4a32;
  --forest-light:#3d6042;
  --cream:      #f9f5ef;
  --cream-dark: #ede7db;
  --dark:       #0f1a10;
  --white:      #ffffff;
  --text:       #2a2a2a;
  --text-light: #6b6b6b;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
  --transition:   0.4s ease;
  --shadow:       0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.2);
  --radius:       4px;
  --radius-lg:    12px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- CONTAINER ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 6rem 0; }
.bg-forest { background: var(--forest); }
.bg-dark { background: var(--dark); }

/* ---- TYPOGRAPHY ---- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.section-title.light { color: var(--white); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 3rem;
}

.section-header.centered { text-align: center; }
.section-header.centered .section-desc { margin-left: auto; margin-right: auto; }

.body-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border: 1.5px solid rgba(255,255,255,0.7);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

.btn-outline-light {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border: 1.5px solid var(--gold-light);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-outline-light:hover { background: var(--gold-light); color: var(--dark); }

.btn-sm {
  display: inline-block;
  padding: 0.55rem 1.4rem;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-sm:hover { background: var(--gold); color: var(--white); }

.centered-cta { text-align: center; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  transition: all 0.5s ease;
}
.navbar.scrolled {
  background: rgba(26, 46, 30, 0.97);
  backdrop-filter: blur(12px);
  padding: 1rem 3rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-logo a {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
}
.nav-logo .logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--gold-light); }
.nav-phone svg { color: var(--gold); }

.navbar .btn-book {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.navbar .btn-book:hover { background: var(--gold-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1s ease, transform 6s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 20, 12, 0.72) 0%,
    rgba(10, 20, 12, 0.35) 60%,
    rgba(10, 20, 12, 0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8vw;
  max-width: 760px;
}
.hero-tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 8vw;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.scroll-line {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0% { left: -100%; }
  100% { left: 100%; }
}
.hero-dots {
  position: absolute;
  bottom: 3rem;
  right: 4rem;
  display: flex;
  gap: 0.6rem;
  z-index: 2;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.dot.active { background: var(--gold); border-color: var(--gold); }

/* ============================================
   WELCOME
   ============================================ */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.welcome-images {
  position: relative;
}
.wi-main {
  width: 85%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 520px;
  box-shadow: var(--shadow-lg);
}
.wi-accent {
  position: absolute;
  bottom: -4rem;
  right: 0;
  width: 55%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 6px solid var(--cream);
  box-shadow: var(--shadow);
}
.wi-badge {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--white);
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  width: 100px;
  box-shadow: var(--shadow);
}
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
.badge-txt {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  margin-top: 4px;
  opacity: 0.9;
}

.welcome-text { padding: 2rem 0; }

.welcome-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.stat { text-align: center; flex: 1; }
.stat span {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
}
.stat p {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}

/* ============================================
   FEATURES / WHY CHOOSE
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.feature-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.feature-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.7rem;
}
.feature-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ============================================
   ROOMS
   ============================================ */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.room-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.room-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-img img { transform: scale(1.06); }
.room-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
}
.room-tag.new { background: var(--forest); }
.room-body { padding: 1.5rem; }
.room-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 0.6rem;
}
.room-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.room-amenities span {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  background: var(--cream-dark);
  color: var(--forest);
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
}
.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
}
.room-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--forest);
}
.room-price em {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-light);
}

/* ============================================
   EXPERIENCES
   ============================================ */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.exp-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}
.exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,12,0.9) 0%, rgba(10,20,12,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transform: translateY(40px);
  transition: transform var(--transition);
}
.exp-card:hover .exp-overlay { transform: translateY(0); }
.exp-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.exp-overlay p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  opacity: 0;
  transition: opacity var(--transition) 0.1s;
}
.exp-card:hover .exp-overlay p { opacity: 1; }

/* ============================================
   GALLERY MASONRY
   ============================================ */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 1rem;
  padding: 0 2rem;
  margin-top: 3rem;
}
.gm-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.gm-item.tall { grid-row: span 2; }
.gm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gm-item:hover img { transform: scale(1.06); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testi-slider {
  position: relative;
  max-width: 720px;
  margin: 3rem auto 0;
  min-height: 220px;
}
.testi-card {
  display: none;
  text-align: center;
  padding: 3rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
}
.testi-card.active { display: block; }
.testi-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}
.testi-card p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.testi-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testi-author strong {
  display: block;
  color: var(--white);
  font-weight: 500;
  text-align: left;
}
.testi-author span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-align: left;
}
.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.tprev, .tnext {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all var(--transition);
}
.tprev:hover, .tnext:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.testi-dots { display: flex; gap: 0.5rem; }
.tdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background var(--transition);
}
.tdot.active { background: var(--gold); }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  position: relative;
  padding: 8rem 0;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 12, 0.72);
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem;
}
.footer-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
}
.footer-logo .logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-top: 2px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }
.social-links svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.contact-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}
.contact-list svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-list span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.contact-list a { color: rgba(255,255,255,0.5); }
.contact-list a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold-light); }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; color: white; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .welcome-grid { grid-template-columns: 1fr; gap: 4rem; }
  .wi-main { width: 100%; height: 400px; }
  .wi-accent { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .navbar { padding: 1.2rem 1.5rem; }
  .navbar.scrolled { padding: 0.9rem 1.5rem; }
  .nav-links, .nav-actions { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--dark);
    padding: 5rem 2rem 2rem;
    gap: 2rem;
    z-index: 999;
    align-items: flex-start;
  }
  .nav-links.open a { font-size: 1.4rem; color: white; }
  .hamburger { display: flex; z-index: 1001; }
  .hero-content { padding: 0 2rem; }
  .hero-ctas { flex-direction: column; }
  .features-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gm-item.tall { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section-pad { padding: 4rem 0; }
  .navbar { padding: 1rem 1.5rem; }
}

@media (max-width: 480px) {
  .exp-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .welcome-stats { gap: 1rem; }
}
