/* ==========================================================================
   RAWLA UDAIPUR — Core Stylesheet
   Modern Heritage Luxury  |  Bootstrap 5 base + custom design system
   Palette: Ivory / Sandstone / Beige / Muted Gold / Charcoal / Dark Brown
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Surfaces */
  --ivory:        #FBF8F1;
  --warm-white:   #FEFCF8;
  --sandstone:    #EFE6D5;
  --sandstone-2:  #E3D6BE;
  --beige:        #CDB98F;

  /* Ink */
  --charcoal:     #262019;
  --brown:        #4A3826;
  --text:         #3C332A;
  --muted:        #857A68;

  /* Gold */
  --gold:         #9E7E3A;
  --gold-light:   #C4A560;
  --gold-soft:    #E9D9B4;

  /* Lines & shadow */
  --line:         #E0D5C0;
  --shadow-sm:    0 4px 18px rgba(48, 38, 24, 0.06);
  --shadow-md:    0 16px 40px rgba(48, 38, 24, 0.10);
  --shadow-lg:    0 30px 70px rgba(38, 30, 18, 0.16);

  /* Type */
  --serif:  "Playfair Display", Georgia, serif;
  --sans:   "Inter", -apple-system, "Segoe UI", sans-serif;

  /* Rhythm */
  --section-y:   clamp(4.5rem, 9vw, 9rem);
  --radius:      14px;
  --radius-lg:   22px;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--ivory);
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.1px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1.1rem; }

a { color: var(--brown); text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--gold-soft); color: var(--charcoal); }

/* Fluid type scale */
.display-xl { font-size: clamp(2.7rem, 6.5vw, 5.4rem); }
.display-lg { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
.display-md { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.lead-lux   { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--muted); font-weight: 300; }

/* --------------------------------------------------------------------------
   3. SHARED LAYOUT HELPERS
   -------------------------------------------------------------------------- */
.section       { padding-block: var(--section-y); }
.section--tight{ padding-block: clamp(3rem, 6vw, 5.5rem); }
.bg-sand       { background: var(--sandstone); }
.bg-warm       { background: var(--warm-white); }
.bg-charcoal   { background: var(--charcoal); color: var(--sandstone); }
.bg-charcoal h1,.bg-charcoal h2,.bg-charcoal h3 { color: var(--warm-white); }

.container-lux { max-width: 1240px; margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 3rem); }
.narrow        { max-width: 760px; margin-inline: auto; }

/* Eyebrow label — letterspaced, gold, with a short rule */
.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--sans);
  font-size: .72rem; font-weight: 600; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ""; width: 30px; height: 1px; background: var(--gold-light);
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: ""; width: 30px; height: 1px; background: var(--gold-light);
}

.section-head { max-width: 640px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-weight: 300; }

/* Suryavanshi sun — signature divider mark */
.sun-mark {
  width: 46px; height: 46px; display: inline-block;
  color: var(--gold-light);
}
.sun-divider {
  display: flex; align-items: center; justify-content: center; gap: 1.1rem;
  margin: 1.4rem 0;
}
.sun-divider::before, .sun-divider::after {
  content: ""; height: 1px; width: min(90px, 18vw);
  background: linear-gradient(90deg, transparent, var(--line));
}
.sun-divider::after { background: linear-gradient(90deg, var(--line), transparent); }

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn-lux {
  --btn-bg: var(--charcoal); --btn-fg: var(--warm-white);
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-size: .82rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .95rem 2.1rem; border-radius: 50px; border: 1px solid var(--btn-bg);
  background: var(--btn-bg); color: var(--btn-fg);
  cursor: pointer; position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), color .4s var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn-lux span { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: .6rem; }
.btn-lux::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: var(--gold); transform: translateY(101%);
  transition: transform .45s var(--ease);
}
.btn-lux:hover { color: var(--warm-white); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-lux:hover::after { transform: translateY(0); }

.btn-lux--gold { --btn-bg: var(--gold); --btn-fg: var(--warm-white); }
.btn-lux--gold::after { background: var(--charcoal); }

.btn-lux--ghost {
  --btn-bg: transparent; --btn-fg: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-lux--ghost::after { background: var(--charcoal); }
.btn-lux--ghost:hover { color: var(--warm-white); }

.btn-lux--light { --btn-bg: transparent; --btn-fg: var(--warm-white); border-color: rgba(255,255,255,.55); }
.btn-lux--light::after { background: var(--warm-white); }
.btn-lux--light:hover { color: var(--charcoal); }

/* Text link with animated underline */
.link-underline {
  font-family: var(--sans); font-size: .82rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--brown);
  display: inline-flex; align-items: center; gap: .5rem; position: relative;
}
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }
.link-underline svg { transition: transform .4s var(--ease); }
.link-underline:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   5. NAVBAR
   -------------------------------------------------------------------------- */
.nav-lux {
  position: fixed; inset: 0 0 auto 0; z-index: 1040;
  padding-block: 1.15rem;
  transition: background .45s var(--ease), padding .45s var(--ease), box-shadow .45s var(--ease);
}
.nav-lux .container-lux { display: flex; align-items: center; justify-content: space-between; }

.nav-brand { display: flex; flex-direction: column; line-height: 1; text-align: left; }
.nav-brand .brand-name {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600; letter-spacing: .04em;
  color: var(--warm-white); transition: color .4s var(--ease);
}
.nav-brand .brand-sub {
  font-family: var(--sans); font-size: .58rem; font-weight: 600; letter-spacing: .38em;
  text-transform: uppercase; color: var(--gold-light); margin-top: 4px;
}

.nav-menu { display: flex; align-items: center; gap: 2.1rem; list-style: none; margin: 0; padding: 0; }
.nav-menu a {
  font-family: var(--sans); font-size: .82rem; font-weight: 500; letter-spacing: .04em;
  color: rgba(255,255,255,.86); position: relative; padding-bottom: 3px;
}
.nav-menu a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold-light); transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--warm-white); }
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; gap: 1.2rem; }
.nav-phone {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .84rem; font-weight: 600; color: rgba(255,255,255,.9);
}
.nav-phone svg { color: var(--gold-light); }

/* Scrolled state */
.nav-lux.scrolled {
  background: rgba(251, 248, 241, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px rgba(48,38,24,.08);
  padding-block: .75rem;
}
.nav-lux.scrolled .brand-name { color: var(--charcoal); }
.nav-lux.scrolled .nav-menu a { color: var(--text); }
.nav-lux.scrolled .nav-phone { color: var(--charcoal); }
.nav-lux.scrolled .nav-toggle span { background: var(--charcoal); }

/* Inner-page navbar (no hero behind it) starts solid */
.nav-lux.nav-solid {
  background: rgba(251, 248, 241, 0.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px rgba(48,38,24,.07);
}
.nav-lux.nav-solid .brand-name { color: var(--charcoal); }
.nav-lux.nav-solid .nav-menu a { color: var(--text); }
.nav-lux.nav-solid .nav-phone { color: var(--charcoal); }
.nav-lux.nav-solid .nav-toggle span { background: var(--charcoal); }

/* Mobile toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 6px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--warm-white); transition: .3s var(--ease); }

/* Mobile drawer */
.nav-drawer {
  position: fixed; inset: 0; z-index: 1050;
  background: var(--charcoal); color: var(--warm-white);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 1.6rem; transform: translateX(100%); transition: transform .5s var(--ease);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a {
  font-family: var(--serif); font-size: 1.7rem; color: var(--sandstone);
}
.nav-drawer a:hover { color: var(--gold-light); }
.nav-drawer .drawer-close {
  position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: 0;
  color: var(--sandstone); font-size: 2rem; cursor: pointer; line-height: 1;
}
.nav-drawer .drawer-foot { margin-top: 1.5rem; text-align: center; }
.nav-drawer .drawer-foot a { font-family: var(--sans); font-size: .95rem; }

@media (max-width: 991px) {
  .nav-menu, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
}

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: var(--warm-white); overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,20,14,.55) 0%, rgba(26,20,14,.28) 40%, rgba(26,20,14,.72) 100%);
}
.hero__inner { position: relative; z-index: 2; padding-top: 6rem; }
.hero .eyebrow { color: var(--gold-light); }
.hero .eyebrow::before, .hero .eyebrow::after { background: var(--gold-light); }
.hero h1 { color: var(--warm-white); max-width: 15ch; margin-bottom: 1.3rem; }
.hero__lead { max-width: 46ch; color: rgba(255,255,255,.85); font-weight: 300; font-size: 1.12rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-size: .66rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.7);
}
.scroll-cue .line { width: 1px; height: 46px; background: rgba(255,255,255,.5); position: relative; overflow: hidden; }
.scroll-cue .line::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: var(--gold-light); animation: cueDrop 2.2s var(--ease) infinite;
}
@keyframes cueDrop { 0% { top: -50%; } 60%,100% { top: 100%; } }

/* Inner page banner (smaller hero for sub-pages) */
.page-banner {
  position: relative; min-height: 56vh; display: flex; align-items: flex-end;
  color: var(--warm-white); overflow: hidden;
}
.page-banner__bg { position: absolute; inset: 0; }
.page-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-banner__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,20,14,.35), rgba(26,20,14,.75));
}
.page-banner__inner { position: relative; z-index: 2; padding-bottom: 3.4rem; padding-top: 8rem; }
.page-banner h1 { color: var(--warm-white); }
.breadcrumb-lux { display: flex; gap: .6rem; align-items: center; font-size: .8rem; color: rgba(255,255,255,.75); margin-bottom: 1rem; }
.breadcrumb-lux a { color: rgba(255,255,255,.75); }
.breadcrumb-lux a:hover { color: var(--gold-light); }
.breadcrumb-lux .sep { color: var(--gold-light); }

/* --------------------------------------------------------------------------
   7. BOOKING BAR
   -------------------------------------------------------------------------- */
.booking-bar {
  position: relative; z-index: 5; margin-top: -3.4rem;
}
.booking-card {
  background: var(--warm-white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 1.6rem 1.8rem;
  display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 1.1rem; align-items: end;
  border: 1px solid var(--line);
}
.booking-field { display: flex; flex-direction: column; gap: .35rem; }
.booking-field label {
  font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold);
}
.booking-field input, .booking-field select {
  border: 0; border-bottom: 1px solid var(--line); background: transparent;
  padding: .5rem 0; font-family: var(--sans); font-size: .98rem; color: var(--charcoal);
  outline: none; transition: border-color .3s var(--ease);
}
.booking-field input:focus, .booking-field select:focus { border-color: var(--gold); }
.booking-card .btn-lux { justify-content: center; white-space: nowrap; }
@media (max-width: 991px) {
  .booking-card { grid-template-columns: 1fr 1fr; }
  .booking-card .btn-lux { grid-column: 1 / -1; }
}
@media (max-width: 540px) { .booking-card { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   8. CARDS (rooms, experiences, attractions)
   -------------------------------------------------------------------------- */
.room-card {
  background: var(--warm-white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  display: flex; flex-direction: column; height: 100%;
}
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.room-card__media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.room-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.room-card:hover .room-card__media img { transform: scale(1.07); }
.room-card__tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: rgba(38,32,25,.72); backdrop-filter: blur(6px);
  color: var(--warm-white); font-size: .68rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; padding: .4rem .85rem; border-radius: 40px;
}
.room-card__body { padding: 1.6rem 1.7rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.room-card__body h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.room-card__meta {
  display: flex; flex-wrap: wrap; gap: 1rem; margin: .3rem 0 1rem;
  font-size: .82rem; color: var(--muted);
}
.room-card__meta span { display: inline-flex; align-items: center; gap: .4rem; }
.room-card__meta svg { color: var(--gold); }
.room-card__desc { color: var(--muted); font-size: .95rem; font-weight: 300; margin-bottom: 1.3rem; flex: 1; }
.room-card__foot { display: flex; align-items: center; justify-content: space-between; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.room-card__price { display: flex; flex-direction: column; line-height: 1.2; gap: .32rem; }
.room-card__price .amt { font-family: var(--serif); font-size: 1.4rem; color: var(--charcoal); }
.room-card__price .unit { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* Arched (jharokha) media — signature frame */
.arched { border-radius: 180px 180px var(--radius) var(--radius); }
.arched-top { border-top-left-radius: 999px; border-top-right-radius: 999px; }

/* Feature (why choose us) */
.feature { text-align: center; padding: 1.5rem 1rem; }
.feature__icon {
  width: 64px; height: 64px; margin: 0 auto 1.2rem; display: grid; place-items: center;
  border-radius: 50%; background: var(--sandstone); color: var(--gold);
  border: 1px solid var(--line);
}
.feature h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.feature p { color: var(--muted); font-size: .93rem; font-weight: 300; }

/* Amenity chip grid */
.amenity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.amenity {
  display: flex; align-items: center; gap: .9rem; padding: 1.1rem 1.2rem;
  background: var(--warm-white); border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.amenity:hover { transform: translateY(-3px); border-color: var(--beige); }
.amenity svg { color: var(--gold); flex-shrink: 0; }
.amenity span { font-size: .92rem; font-weight: 500; color: var(--text); }

/* --------------------------------------------------------------------------
   9. SPLIT / IMAGE-TEXT
   -------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split__badge {
  position: absolute; bottom: -28px; right: -18px;
  background: var(--charcoal); color: var(--warm-white); border-radius: var(--radius);
  padding: 1.2rem 1.5rem; box-shadow: var(--shadow-lg);
}
.split__badge .num { font-family: var(--serif); font-size: 2.2rem; color: var(--gold-light); line-height: 1; }
.split__badge .lbl { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sandstone); }
@media (max-width: 767px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__badge { right: 1rem; bottom: -22px; }
}

/* Stat row */
.stat-row { display: flex; flex-wrap: wrap; gap: 2.5rem; margin-top: 2rem; }
.stat .n { font-family: var(--serif); font-size: 2.4rem; color: var(--gold); line-height: 1; }
.stat .l { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: .3rem; }

/* --------------------------------------------------------------------------
   10. GALLERY
   -------------------------------------------------------------------------- */
.masonry { columns: 3; column-gap: 1rem; }
.masonry .m-item { break-inside: avoid; margin-bottom: 1rem; border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.masonry .m-item img { width: 100%; transition: transform 1s var(--ease); }
.masonry .m-item::after {
  content: ""; position: absolute; inset: 0; background: rgba(38,30,18,.0); transition: background .4s var(--ease);
}
.masonry .m-item:hover img { transform: scale(1.06); }
.masonry .m-item:hover::after { background: rgba(38,30,18,.22); }
.masonry .m-item .m-plus {
  position: absolute; inset: 0; display: grid; place-items: center; z-index: 2;
  color: #fff; opacity: 0; transition: opacity .4s var(--ease);
}
.masonry .m-item:hover .m-plus { opacity: 1; }
@media (max-width: 991px) { .masonry { columns: 2; } }
@media (max-width: 560px) { .masonry { columns: 1; } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1200; background: rgba(20,15,9,.94);
  display: none; align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 84vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close, .lightbox .lb-nav {
  position: absolute; background: none; border: 0; color: #fff; cursor: pointer;
  opacity: .8; transition: opacity .3s; 
}
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { opacity: 1; }
.lightbox .lb-close { top: 1.6rem; right: 1.8rem; font-size: 2.2rem; line-height: 1; }
.lightbox .lb-nav { top: 50%; transform: translateY(-50%); font-size: 2.6rem; }
.lightbox .lb-prev { left: 1.5rem; }
.lightbox .lb-next { right: 1.5rem; }

/* --------------------------------------------------------------------------
   11. TESTIMONIALS
   -------------------------------------------------------------------------- */
.testi-track { position: relative; max-width: 780px; margin-inline: auto; text-align: center; }
.testi { display: none; }
.testi.active { display: block; animation: fadeUp .7s var(--ease); }
.testi .stars { color: var(--gold-light); letter-spacing: .2em; margin-bottom: 1.2rem; }
.testi blockquote {
  font-family: var(--serif); font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-style: italic;
  line-height: 1.4; color: var(--charcoal); margin: 0 0 1.5rem;
}
.testi .who { font-weight: 600; letter-spacing: .04em; }
.testi .where { font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .14em; }
.testi-dots { display: flex; gap: .55rem; justify-content: center; margin-top: 2rem; }
.testi-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 0; background: var(--beige); cursor: pointer;
  opacity: .5; transition: .3s var(--ease);
}
.testi-dots button.active { opacity: 1; background: var(--gold); width: 26px; border-radius: 6px; }

/* --------------------------------------------------------------------------
   12. FAQ (accordion)
   -------------------------------------------------------------------------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.5rem 0; font-family: var(--serif); font-size: 1.2rem; color: var(--charcoal);
}
.faq-q .ic { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--gold); transition: .4s var(--ease); }
.faq-item.open .faq-q .ic { transform: rotate(45deg); background: var(--gold); color: #fff; border-color: var(--gold); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a p { color: var(--muted); font-weight: 300; padding-bottom: 1.5rem; margin: 0; }

/* --------------------------------------------------------------------------
   13. INSTAGRAM STRIP
   -------------------------------------------------------------------------- */
.insta-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: .35rem; }
.insta-strip a { position: relative; overflow: hidden; aspect-ratio: 1; display: block; }
.insta-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.insta-strip a::after {
  content: ""; position: absolute; inset: 0; background: rgba(38,30,18,0); transition: background .4s;
  display: grid; place-items: center;
}
.insta-strip a:hover img { transform: scale(1.1); }
.insta-strip a:hover::after { background: rgba(38,30,18,.3); }
@media (max-width: 767px) { .insta-strip { grid-template-columns: repeat(3, 1fr); } }

/* --------------------------------------------------------------------------
   14. MAP / CONTACT
   -------------------------------------------------------------------------- */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); height: 100%; min-height: 340px; border: 1px solid var(--line); }
.map-embed iframe, .map-placeholder { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
.map-placeholder {
  background: var(--sandstone-2); display: grid; place-items: center; color: var(--brown);
  text-align: center; gap: .5rem;
}

.contact-form { display: grid; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.field input, .field textarea, .field select {
  background: var(--warm-white); border: 1px solid var(--line); border-radius: 10px;
  padding: .85rem 1rem; font-family: var(--sans); font-size: .95rem; color: var(--charcoal);
  outline: none; transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(158,126,58,.1);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .82rem; color: var(--muted); }
.form-status { font-size: .9rem; padding: .8rem 1rem; border-radius: 10px; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: #EAF3E7; color: #3B6E32; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* Info list */
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.4rem; }
.info-list li { display: flex; gap: 1rem; }
.info-list .i-ic { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; background: var(--sandstone);
  display: grid; place-items: center; color: var(--gold); border: 1px solid var(--line); }
.info-list .i-t { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.info-list .i-v { color: var(--charcoal); font-weight: 500; }
.info-list .i-v a { color: var(--charcoal); }

/* --------------------------------------------------------------------------
   15. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; color: var(--warm-white); text-align: center; }
.cta-band__bg { position: absolute; inset: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: rgba(26,20,14,.72); }
.cta-band__inner { position: relative; z-index: 2; }
.cta-band h2 { color: var(--warm-white); }
.cta-band p { color: rgba(255,255,255,.82); }

/* --------------------------------------------------------------------------
   16. FOOTER
   -------------------------------------------------------------------------- */
.footer { background: var(--charcoal); color: rgba(255,255,255,.7); padding-top: clamp(3.5rem, 7vw, 6rem); }
.footer a { color: rgba(255,255,255,.7); }
.footer a:hover { color: var(--gold-light); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2.5rem; }
.footer__brand .brand-name { font-family: var(--serif); font-size: 1.9rem; color: var(--warm-white); letter-spacing: .04em; }
.footer__brand .brand-sub { font-size: .58rem; letter-spacing: .34em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.2rem; }
.footer__brand p { font-size: .92rem; font-weight: 300; max-width: 34ch; }
.footer h4 { color: var(--warm-white); font-size: 1.05rem; margin-bottom: 1.3rem; font-family: var(--sans); font-weight: 600; letter-spacing: .04em; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; font-size: .92rem; }
.footer__social { display: flex; gap: .7rem; margin-top: 1.2rem; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18);
  display: grid; place-items: center; transition: .4s var(--ease); }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-3px); }
.footer__bar { margin-top: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid rgba(255,255,255,.12);
  padding: 1.6rem 0; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; }
.footer__bar .links { display: flex; gap: 1.4rem; flex-wrap: wrap; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   17. SCROLL REVEAL & MOTION
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* Page loader */
.loader {
  position: fixed; inset: 0; z-index: 2000; background: var(--ivory);
  display: grid; place-items: center; transition: opacity .6s var(--ease), visibility .6s;
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader .sun-load { width: 66px; height: 66px; color: var(--gold); animation: sunSpin 8s linear infinite; }
.loader .load-name { font-family: var(--serif); font-size: 1.3rem; letter-spacing: .1em; color: var(--charcoal); margin-top: 1rem; }
@keyframes sunSpin { to { transform: rotate(360deg); } }

/* Legal pages */
.legal h3 { font-size: 1.4rem; margin: 2rem 0 .6rem; }
.legal p { color: var(--text); font-weight: 300; }
.legal .lead-lux { color: var(--muted); margin-bottom: 1rem; }

/* Utilities */
.mt-lux { margin-top: 2.2rem; }
.text-center { text-align: center; }
.gold { color: var(--gold); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px;
}

/* Crest logo */
.nav-brand { flex-direction: row; align-items: center; gap: .55rem; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav-crest {
  display: block; width: 42px; height: 42px; flex: 0 0 auto;
  background-color: var(--warm-white);
  -webkit-mask: url(../img/logo-crest-light-w.png) center / contain no-repeat;
          mask: url(../img/logo-crest-light-w.png) center / contain no-repeat;
  transition: background-color .4s var(--ease);
}
.nav-lux.scrolled .nav-crest,
.nav-lux.nav-solid .nav-crest { background-color: var(--charcoal); }
.footer-crest { width: 116px; height: auto; margin-bottom: 1rem; display: block; }
.load-crest { width: 150px; height: auto; display: block; margin: 0 auto 1rem;
  animation: crestPulse 2.4s ease-in-out infinite; }
@keyframes crestPulse { 0%,100% { opacity: .6; transform: scale(.97); } 50% { opacity: 1; transform: scale(1); } }

/* Crest logo — img toggle */
.nav-crest { background: none; -webkit-mask: none; mask: none; width: auto; height: 44px; }
.nav-crest img { display: block; width: auto; height: 44px; }
.nav-crest .crest-on-light { display: none; }
.nav-lux.scrolled .nav-crest .crest-on-dark,
.nav-lux.nav-solid .nav-crest .crest-on-dark { display: none; }
.nav-lux.scrolled .nav-crest .crest-on-light,
.nav-lux.nav-solid .nav-crest .crest-on-light { display: block; }

/* Crest nav — kill legacy background box */
.nav-lux .nav-crest,
.nav-lux.nav-solid .nav-crest,
.nav-lux.scrolled .nav-crest { background: none !important; -webkit-mask: none !important; mask: none !important; }

/* Distances / getting here */
.dist-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.4rem; }
@media (max-width: 720px){ .dist-grid { grid-template-columns: 1fr; } }
.dist-card { background: var(--warm-white); border: 1px solid var(--sandstone-2); border-radius: 14px; padding: 1.6rem 1.8rem; }
.dist-card__title { display: flex; align-items: center; gap: .6rem; font-family: var(--serif); font-size: 1.3rem; margin: 0 0 1rem; color: var(--charcoal); }
.dist-card__title svg { color: var(--gold); flex: 0 0 auto; }
.dist-list { list-style: none; margin: 0; padding: 0; }
.dist-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .62rem 0; border-top: 1px solid var(--sandstone); font-size: .98rem; color: var(--text); }
.dist-list li:first-child { border-top: none; }
.dist-list .dist { font-weight: 600; color: var(--gold); white-space: nowrap; }
.dist-sub { font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }

/* hero scrim strengthen */
.hero__bg::after { background:
  linear-gradient(90deg, rgba(26,20,14,.72) 0%, rgba(26,20,14,.34) 46%, rgba(26,20,14,.06) 100%),
  linear-gradient(180deg, rgba(26,20,14,.34) 0%, rgba(26,20,14,.14) 45%, rgba(26,20,14,.76) 100%); }

/* floating action buttons */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 900; width: 56px; height: 56px;
  border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.24); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.wa-float:hover { transform: translateY(-3px) scale(1.05); color: #fff; box-shadow: 0 14px 30px rgba(0,0,0,.3); }
.wa-float svg { width: 32px; height: 32px; }
.to-top { position: fixed; right: 24px; bottom: 90px; z-index: 900; width: 46px; height: 46px; padding: 0;
  border: none; border-radius: 50%; background: var(--charcoal); color: var(--warm-white); cursor: pointer;
  display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(10px);
  box-shadow: 0 10px 26px rgba(0,0,0,.24); transition: opacity .35s var(--ease), transform .35s var(--ease), background .3s var(--ease); }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold); }
.to-top svg { width: 22px; height: 22px; }
@media (max-width: 560px){ .wa-float{ width:52px; height:52px; right:16px; bottom:16px; } .to-top{ right:19px; bottom:80px; } }

/* barrio logo */
.barrio-logo { width: 300px; max-width: 74%; height: auto; display: block; margin: 0 auto 1.6rem;
  border-radius: 14px; box-shadow: 0 12px 28px rgba(0,0,0,.14); }

/* places nearby */
.places-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
@media (max-width: 980px){ .places-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .places-grid { grid-template-columns: 1fr; } }
.place { display: flex; align-items: center; gap: 1rem; min-width: 0; background: var(--warm-white);
  border: 1px solid var(--sandstone-2); border-radius: 14px; padding: 1rem 1.15rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.place:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(38,32,25,.08); }
.place__ic { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 10px; background: var(--sandstone);
  color: var(--gold); display: grid; place-items: center; }
.place__ic svg { width: 19px; height: 19px; }
.place__body { flex: 1 1 auto; min-width: 0; }
.place__body h3 { font-family: var(--serif); font-size: 1.08rem; color: var(--charcoal); margin: 0 0 .12rem; }
.place__body p { margin: 0; font-size: .82rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.place__meta { flex: 0 0 auto; display: flex; flex-direction: column; align-items: flex-end; gap: .18rem; text-align: right; }
.place__dist { font-weight: 600; color: var(--charcoal); font-size: .9rem; }
.place__time { display: inline-flex; align-items: center; gap: .3rem; color: var(--gold); font-size: .82rem; white-space: nowrap; }
.place__time svg { width: 13px; height: 13px; }
