/* ==========================================================================
   KRISHNA VILLA — Boutique Homestay, Udaipur
   Shared stylesheet for all pages
   Palette: Deep Maroon #7a1f2b · Royal Gold #c9a227 · Cream #fdf6ec · Ink #2e2a26
   ========================================================================== */

:root {
  --wine: #7a1f2b;
  --wine-dark: #5c1620;
  --wine-deep: #43101a;
  --gold: #c9a227;
  --gold-soft: #e3c567;
  --cream: #fdf6ec;
  --sand: #f4e9d8;
  --ink: #2e2a26;
  --muted: #6b6257;
  --line: #e6dcc9;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(67, 16, 26, 0.14);
  --shadow-sm: 0 4px 12px rgba(67, 16, 26, 0.08);
  --radius: 14px;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Poppins", "Segoe UI", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.wrap-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* ==========================================================================
   TOP BAR — always visible phone / WhatsApp / email
   ========================================================================== */
.topbar {
  background: var(--wine-deep);
  color: #f3d9a0;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  flex-wrap: wrap;
}
.topbar a { color: #fff; display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: var(--gold-soft); }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar .tb-item .ico { width: 14px; height: 14px; opacity: 0.9; }

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(253, 246, 236, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-soft), var(--gold) 60%, #9a7a1c);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--wine-deep);
  font-weight: 700;
}
.brand-name { font-family: var(--serif); font-size: 1.35rem; line-height: 1.1; color: var(--wine); }
.brand-name small { display: block; font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-size: 0.88rem; font-weight: 500; letter-spacing: 0.03em; color: var(--ink); position: relative; padding: 6px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--wine); }
.nav-cta {
  background: var(--wine); color: #fff !important;
  padding: 10px 20px !important; border-radius: 40px; font-weight: 600;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--wine-dark); }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 42px; height: 42px; position: relative;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--wine);
  margin: 5px auto; transition: 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 13px 28px;
  border-radius: 40px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.25s ease;
  text-align: center;
}
.btn-gold { background: var(--gold); color: var(--wine-deep); }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-wine { background: var(--wine); color: #fff; }
.btn-wine:hover { background: var(--wine-dark); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-outline { background: transparent; color: var(--wine); border-color: var(--wine); }
.btn-outline:hover { background: var(--wine); color: #fff; }
.btn-white { background: #fff; color: var(--wine); }
.btn-white:hover { background: var(--sand); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-lg { padding: 16px 38px; font-size: 0.98rem; }

/* ==========================================================================
   SECTION SCAFFOLD
   ========================================================================== */
section { padding: 84px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.kicker {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--wine);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-sub { color: var(--muted); font-size: 1.02rem; }
.section-head .rule {
  width: 60px; height: 3px; background: var(--gold); border-radius: 3px;
  margin: 16px auto 0;
}

.sand-bg { background: var(--sand); }
.white-bg { background: #fff; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 110px 24px 90px;
  overflow: hidden;
}
.hero .hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(67,16,26,0.55), rgba(67,16,26,0.62));
}
.hero-inner { position: relative; z-index: 2; max-width: 800px; }
.hero-kicker {
  letter-spacing: 0.34em; text-transform: uppercase; font-size: 0.78rem;
  color: var(--gold-soft); margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 1.08;
  margin-bottom: 22px;
  text-shadow: 0 3px 18px rgba(0,0,0,0.35);
}
.hero p {
  font-size: 1.1rem; color: #f6e8cf; max-width: 620px; margin: 0 auto 34px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: #fff; font-size: 1.6rem; opacity: 0.85; animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

.page-hero {
  position: relative; text-align: center; color: #fff;
  padding: 110px 24px 80px;
}
.page-hero .hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(67,16,26,0.6), rgba(67,16,26,0.7));
}
.page-hero .hero-inner { position: relative; z-index: 2; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 12px; }
.page-hero p { color: #f6e8cf; max-width: 600px; margin: 0 auto; }
.breadcrumb { margin-top: 18px; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-soft); }
.breadcrumb a:hover { color: #fff; }

/* ==========================================================================
   USP STRIP
   ========================================================================== */
.usp-strip { background: var(--wine); color: #fff; padding: 0; }
.usp-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.usp-item { padding: 30px 22px; text-align: center; border-left: 1px solid rgba(255,255,255,0.14); }
.usp-item:first-child { border-left: none; }
.usp-item .usp-ico { font-size: 1.7rem; margin-bottom: 10px; }
.usp-item h3 { font-family: var(--serif); font-size: 1.05rem; margin-bottom: 4px; color: var(--gold-soft); }
.usp-item p { font-size: 0.82rem; color: #ecdcc2; }

/* ==========================================================================
   CARDS & GRIDS
   ========================================================================== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .ph { aspect-ratio: 4/3; width: 100%; object-fit: cover; }
.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-family: var(--serif); font-size: 1.22rem; color: var(--wine); margin-bottom: 8px; }
.card-body p { font-size: 0.92rem; color: var(--muted); margin-bottom: 14px; }
.card-body .card-meta { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.price { font-family: var(--serif); color: var(--wine); font-weight: 700; font-size: 1.05rem; }
.price small { font-family: var(--sans); font-size: 0.72rem; color: var(--muted); font-weight: 400; }
.link-arrow { color: var(--gold); font-weight: 600; font-size: 0.86rem; letter-spacing: 0.05em; }
.link-arrow:hover { color: var(--wine); }
.tag { display: inline-block; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; background: var(--sand); color: var(--wine); padding: 4px 10px; border-radius: 30px; margin-bottom: 10px; font-weight: 600; }

/* feature list with check icons */
.feature-list li { padding: 7px 0 7px 30px; position: relative; font-size: 0.95rem; color: #4a443c; }
.feature-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 7px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); color: var(--wine-deep);
  font-size: 0.72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ==========================================================================
   ROOMS (page-specific)
   ========================================================================== */
.room-list { display: grid; gap: 44px; }
.room-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  display: grid; grid-template-columns: 1fr 1fr;
}
.room-item:nth-child(even) .room-ph { order: 2; }
.room-ph { min-height: 340px; }
.room-info { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.room-info h2 { font-family: var(--serif); font-size: 1.7rem; color: var(--wine); margin: 8px 0 6px; }
.room-info .room-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 16px; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 22px; }
.room-amenities span {
  font-size: 0.76rem; background: var(--sand); color: var(--wine);
  padding: 6px 14px; border-radius: 30px; font-weight: 500;
}
.room-rate { display: flex; align-items: baseline; gap: 8px; margin-bottom: 20px; }
.room-rate .amt { font-family: var(--serif); font-size: 2rem; color: var(--wine); font-weight: 700; }
.room-rate .per { color: var(--muted); font-size: 0.85rem; }

/* ==========================================================================
   EXPERIENCES
   ========================================================================== */
.exp-item { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 420px; display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.exp-item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.exp-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(67,16,26,0.05), rgba(67,16,26,0.85)); }
.exp-item .exp-body { position: relative; z-index: 2; padding: 30px; width: 100%; }
.exp-item h3 { font-family: var(--serif); font-size: 1.35rem; margin-bottom: 6px; }
.exp-item p { font-size: 0.88rem; color: #f0e2c8; margin-bottom: 12px; }
.exp-item .tag { background: rgba(201,162,39,0.9); color: #fff; }
.exp-item .duration { font-size: 0.78rem; color: var(--gold-soft); letter-spacing: 0.06em; }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid .g-item { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery-grid .g-item img, .gallery-grid .g-item .ph { aspect-ratio: 1/1; width: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-grid .g-item:hover img, .gallery-grid .g-item:hover .ph { transform: scale(1.06); }
.gallery-grid .g-item .g-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 16px 12px;
  background: linear-gradient(180deg, transparent, rgba(67,16,26,0.85));
  color: #fff; font-size: 0.82rem; letter-spacing: 0.05em;
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-grid .g-item:hover .g-cap { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1200;
  background: rgba(20, 10, 14, 0.94);
  display: none; align-items: center; justify-content: center; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.6); }
.lightbox .lb-caption { color: #ddd; text-align: center; margin-top: 16px; font-size: 0.9rem; letter-spacing: 0.05em; }
.lightbox .lb-close {
  position: absolute; top: 24px; right: 32px; background: none; border: none;
  color: #fff; font-size: 2.6rem; cursor: pointer; line-height: 1;
}
.lightbox .lb-prev, .lightbox .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); border: none; color: #fff;
  width: 50px; height: 50px; border-radius: 50%; font-size: 1.4rem; cursor: pointer; transition: 0.2s;
}
.lightbox .lb-prev { left: 24px; }
.lightbox .lb-next { right: 24px; }
.lightbox .lb-prev:hover, .lightbox .lb-next:hover { background: var(--gold); color: var(--wine-deep); }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testi-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.testi-card .quote { font-size: 2.4rem; line-height: 1; color: var(--gold); font-family: var(--serif); }
.testi-card p.txt { font-size: 0.96rem; color: #4a443c; font-style: italic; margin: 10px 0 20px; flex: 1; }
.testi-card .who { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line); padding-top: 16px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--wine); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; }
.testi-card .who .nm { font-weight: 600; font-size: 0.92rem; }
.testi-card .who .pl { font-size: 0.78rem; color: var(--muted); }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 0.9rem; }
.rating-banner {
  background: var(--wine); color: #fff; border-radius: var(--radius);
  padding: 36px; text-align: center; margin-bottom: 52px;
}
.rating-banner .big { font-family: var(--serif); font-size: 3.4rem; color: var(--gold-soft); }
.rating-banner p { color: #ecdcc2; font-size: 0.92rem; }

/* ==========================================================================
   STATS
   ========================================================================== */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; text-align: center; }
.stat-num { font-family: var(--serif); font-size: 2.6rem; color: var(--wine); font-weight: 700; }
.stat-label { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }

/* ==========================================================================
   MAP
   ========================================================================== */
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; filter: saturate(0.9); }
.map-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-top: 34px; }
.map-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.map-card h4 { font-family: var(--serif); color: var(--wine); font-size: 1.05rem; margin-bottom: 8px; }
.map-card p { font-size: 0.88rem; color: var(--muted); }
.map-card .dist { color: var(--gold); font-weight: 600; font-size: 0.8rem; }

/* ==========================================================================
   CONTACT / FORM
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.contact-card h3 { font-family: var(--serif); color: var(--wine); font-size: 1.2rem; margin-bottom: 16px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; color: var(--wine); margin-bottom: 6px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: 10px;
  font-family: var(--sans); font-size: 0.94rem; background: var(--cream); color: var(--ink);
  transition: 0.2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(201,162,39,0.18);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 10px; }
.whatsapp-big {
  display: block; text-align: center; background: #128c7e; color: #fff;
  padding: 16px; border-radius: 12px; font-weight: 600; margin-top: 16px; transition: 0.2s;
}
.whatsapp-big:hover { background: #0e6b5f; }
.contact-meta { margin-top: 18px; border-top: 1px solid var(--line); padding-top: 18px; }
.contact-meta p { font-size: 0.92rem; margin-bottom: 8px; color: #4a443c; }
.contact-meta strong { color: var(--wine); }
.contact-meta .gold { color: var(--gold); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-q { padding: 18px 22px; font-weight: 600; font-size: 0.96rem; color: var(--wine); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq-q .plus { color: var(--gold); font-size: 1.3rem; transition: 0.3s; flex-shrink: 0; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 22px 20px; font-size: 0.9rem; color: var(--muted); }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(120deg, var(--wine-deep), var(--wine));
  color: #fff; text-align: center; padding: 70px 24px; border-radius: 0;
}
.cta-banner h2 { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }
.cta-banner p { color: #ecdcc2; max-width: 560px; margin: 0 auto 28px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--wine-deep); color: #d9c6a6; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; }
.footer h4 { font-family: var(--serif); color: var(--gold-soft); font-size: 1.05rem; margin-bottom: 16px; }
.footer p { font-size: 0.88rem; line-height: 1.8; }
.footer ul li { margin-bottom: 9px; }
.footer ul a { font-size: 0.88rem; transition: 0.2s; }
.footer ul a:hover { color: var(--gold-soft); padding-left: 5px; }
.footer .fbrand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer .fbrand .brand-mark { width: 50px; height: 50px; }
.footer .fbrand .brand-name { color: #fff; font-size: 1.5rem; }
.footer .fbrand small { color: var(--gold); }
.footer .social { display: flex; gap: 12px; margin-top: 18px; }
.footer .social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; transition: 0.25s;
}
.footer .social a:hover { background: var(--gold); color: var(--wine-deep); border-color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0; text-align: center; font-size: 0.8rem; color: #a99177;
}

/* ==========================================================================
   REVEAL ANIMATION
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: 76px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column; align-items: flex-start;
    padding: 22px 24px 30px; gap: 6px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    transform: translateY(-120%); transition: transform 0.35s ease;
    z-index: 800;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 12px 0; font-size: 1rem; width: 100%; }
  .nav-links .nav-cta { text-align: center; margin-top: 8px; }
  .grid-2 { grid-template-columns: 1fr; }
  .room-item, .room-item:nth-child(even) .room-ph { grid-template-columns: 1fr; order: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 60px 0; }
  .hero { min-height: 70vh; }
}

@media (max-width: 600px) {
  .topbar .wrap { justify-content: center; text-align: center; }
  .topbar .tb-item { gap: 12px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .room-info { padding: 28px; }
  .room-item .room-ph { min-height: 240px; }
  .hero-actions .btn { width: 100%; }
  .usp-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.14); }
  .usp-item:first-child { border-top: none; }
  .lightbox .lb-prev { left: 8px; } .lightbox .lb-next { right: 8px; }
}
