/* ==========================================================================
   Hotel Sidhartha Agra — Design tokens
   Palette: 60% ivory (bg), 30% emerald (primary), 10% antique gold (accent)
   ========================================================================== */
:root{
  --emerald:        #0E6B4F;
  --emerald-dark:    #0A5540;
  --emerald-tint:    #E6F0EA;
  --sandstone:       #C9A377;
  --sandstone-tint:  #F3E7D6;
  --gold:            #B8943F;
  --gold-light:      #D9BC79;
  --ivory:           #FBF7EF;
  --ivory-deep:      #F5EFE1;
  --surface:         #FFFFFF;
  --heading:         #2B2016;
  --body:            #5B5952;
  --border:          #E6DCC6;

  --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;
  --shadow-soft: 0 20px 50px -25px rgba(43, 32, 22, 0.35);
  --shadow-card: 0 10px 30px -18px rgba(43, 32, 22, 0.28);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after{ box-sizing: border-box; }
html{
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body{
  margin: 0;
  background: var(--ivory);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{ margin: 0; color: var(--heading); font-weight: 500; }
p{ margin: 0; }
button{ font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
svg{ display: block; }

.skip-link{
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--emerald); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus{ left: 0; }

:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

/* ==========================================================================
   Type utilities
   ========================================================================== */
.eyebrow{
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald);
  margin: 0 0 10px;
}
.eyebrow--light{ color: var(--gold-light); }

.h2{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 5.4vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--heading);
}
.h2--light{ color: var(--ivory); }

.body-lg{
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--body);
  max-width: 52ch;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }

.btn--primary{
  background: var(--emerald);
  color: var(--ivory);
  box-shadow: 0 14px 30px -14px rgba(14,107,79,.65);
}
.btn--primary:hover{ background: var(--emerald-dark); }

.btn--ghost{
  border: 1.5px solid var(--border);
  color: var(--heading);
  background: rgba(255,255,255,.5);
}
.btn--ghost:hover{ border-color: var(--gold); color: var(--emerald); }

.btn--glass{
  color: var(--ivory);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.4);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.btn--glass:hover{ background: rgba(255,255,255,.2); }

.btn--light{
  background: var(--ivory);
  color: var(--emerald-dark);
}
.btn--light:hover{ background: #fff; }

.btn--outline-light{
  border: 1.5px solid rgba(251,247,239,.55);
  color: var(--ivory);
}
.btn--outline-light:hover{ border-color: var(--gold-light); color: var(--gold-light); }

.link-arrow{
  font-weight: 700;
  color: var(--emerald);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 3px;
  display: inline-block;
  transition: color .2s var(--ease);
}
.link-arrow:hover{ color: var(--gold); }

/* ==========================================================================
   Navbar — glassmorphism
   ========================================================================== */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
}
.nav__topbar{
  padding-bottom: 10px;
}
.nav__topbar-inner{
  display: flex;
  justify-content: center;
  padding-block: 0;
}
.nav__topbar-pill{
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
  max-width: calc(100% - 20px);
  padding: 8px 20px;
  border-radius: 999px;
  background: rgba(9, 17, 13, .38);
  border: 1px solid rgba(251,247,239,.25);
  font-size: .76rem;
  font-weight: 600;
  color: rgba(251,247,239,.92);
  transition: background-color .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
}
.nav.is-scrolled .nav__topbar-pill{
  background: rgba(255,255,255,.6);
  border-color: rgba(230,220,198,.85);
  color: var(--heading);
}
.nav__topbar-label{
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .68rem;
  color: var(--gold-light);
}
.nav.is-scrolled .nav__topbar-label{ color: var(--gold); }
.nav__topbar-pill a{ transition: color .2s var(--ease); }
.nav__topbar-pill a:hover{ color: var(--gold-light); }
.nav.is-scrolled .nav__topbar-pill a:hover{ color: var(--emerald); }
.nav__topbar-sep{ opacity: .5; }
.nav__topbar-noparking{
  color: #ffb3b3;
  letter-spacing: .01em;
}
.nav.is-scrolled .nav__topbar-noparking{ color: #b02a2a; }
@media (max-width: 460px){
  .nav__topbar-label{ display: none; }
}

.nav__inner{
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav.is-scrolled{
  background: rgba(251, 247, 239, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 8px 30px -20px rgba(43,32,22,.4);
  border-bottom: 1px solid rgba(230, 220, 198, .7);
  padding: 10px 0;
}

.nav__brand{
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__mark{
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--emerald);
  color: var(--gold-light);
  flex-shrink: 0;
}
.nav.is-scrolled .nav__mark,
.hero .nav__mark{ color: var(--gold-light); }

.nav__brandtext{ display: flex; flex-direction: column; line-height: 1.15; }
.nav__title{
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--ivory);
}
.nav.is-scrolled .nav__title{ color: var(--heading); }
.nav__subtitle{
  font-size: 9.5px;
  letter-spacing: .14em;
  font-weight: 700;
  color: rgba(251,247,239,.75);
}
.nav.is-scrolled .nav__subtitle{ color: var(--emerald); }

.nav__links{
  display: none;
  align-items: center;
  gap: 30px;
  font-size: .92rem;
  font-weight: 600;
  color: rgba(251,247,239,.92);
}
.nav.is-scrolled .nav__links{ color: var(--heading); }
.nav__links a{ position: relative; padding: 4px 0; }
.nav__links a::after{
  content: "";
  position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 1.5px; background: var(--gold);
  transition: right .25s var(--ease);
}
.nav__links a:hover::after{ right: 0; }

.nav__actions{ display: flex; align-items: center; gap: 14px; }
.nav__cta-desktop{ display: none; padding: 10px 20px; font-size: .86rem; }
.nav.is-scrolled .btn--ghost{ background: rgba(255,255,255,.6); }
.nav:not(.is-scrolled) .btn--ghost{
  color: var(--ivory);
  border-color: rgba(251,247,239,.45);
  background: rgba(255,255,255,.08);
}

.nav__toggle{
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(251,247,239,.4);
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  transition: background-color .3s var(--ease), border-color .3s var(--ease);
}
.nav.is-scrolled .nav__toggle{ background: rgba(255,255,255,.6); border-color: var(--border); }
.nav__toggle span{
  width: 18px; height: 1.6px;
  background: var(--ivory);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav.is-scrolled .nav__toggle span{ background: var(--heading); }
.nav__toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(6.6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6.6px) rotate(-45deg); }
/* Keep the toggle visible (dark X) once the panel is open, even over light hero content */
.nav__toggle[aria-expanded="true"] span{ background: var(--heading); }

.mobile-menu{
  position: fixed;
  inset: 0;
  background: rgba(20, 26, 22, .55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility 0s linear .3s;
  z-index: 999;
  display: flex;
  justify-content: flex-end;
}
.mobile-menu.is-open{
  opacity: 1;
  visibility: visible;
  transition: opacity .3s var(--ease), visibility 0s linear 0s;
}
.mobile-menu__panel{
  width: min(84vw, 360px);
  height: 100%;
  max-height: 100dvh;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .38s var(--ease);
  box-shadow: -20px 0 50px -20px rgba(0,0,0,.35);
  padding-top: max(88px, calc(env(safe-area-inset-top, 0px) + 78px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.mobile-menu.is-open .mobile-menu__panel{ transform: translateX(0); }
.mobile-menu nav{
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 4px 32px 20px;
}
.mobile-menu a{
  font-family: var(--font-display);
  font-size: 1.42rem;
  color: var(--heading);
  font-weight: 500;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(67,20,7,.08);
  opacity: 0;
  transform: translateX(16px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  transition-delay: calc(var(--i, 0) * 45ms);
}
.mobile-menu.is-open a{ opacity: 1; transform: translateX(0); }
.mobile-menu__cta{
  flex: 0 0 auto;
  margin: 8px 32px calc(24px + env(safe-area-inset-bottom, 0px));
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s var(--ease) .15s, transform .4s var(--ease) .15s;
}
.mobile-menu.is-open .mobile-menu__cta{ opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Hero — scroll-scrubbed frame sequence
   ========================================================================== */
.hero{
  position: relative;
  background: var(--emerald-dark);
}
.hero__pin{
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero__media{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__frame{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) hue-rotate(-6deg) brightness(0.92);
}
.hero__scrim{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,20,15,.55) 0%, rgba(10,20,15,.15) 30%, rgba(10,20,15,.35) 62%, rgba(9,17,13,.92) 100%),
    linear-gradient(120deg, rgba(14,107,79,.35), rgba(184,148,63,.18));
  mix-blend-mode: normal;
}
.hero__arch{
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  width: min(92vw, 640px);
  aspect-ratio: 1 / 1.15;
  border: 1px solid rgba(217,188,121,.4);
  border-bottom: none;
  border-radius: 50% 50% 0 0 / 62% 62% 0 0;
  opacity: .55;
  pointer-events: none;
}

.hero__content{
  position: relative;
  z-index: 2;
  padding: 0 20px calc(96px + env(safe-area-inset-bottom, 0px));
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  will-change: transform, opacity;
}
.hero__eyebrow{ color: var(--gold-light); justify-content: center; }
.hero__title{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 9.5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin-bottom: 18px;
}
.hero__desc{
  color: rgba(251,247,239,.85);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 46ch;
  margin: 0 auto 32px;
}
.hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero__scrollcue{
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(251,247,239,.7);
}
.hero__scrollcue span{
  width: 1px; height: 30px;
  background: linear-gradient(180deg, rgba(217,188,121,0), var(--gold-light), rgba(217,188,121,0));
  animation: scrollcue 1.8s ease-in-out infinite;
}
.hero__scrollcue small{ font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
@keyframes scrollcue{
  0%{ transform: scaleY(.4); opacity: .3; }
  50%{ transform: scaleY(1); opacity: 1; }
  100%{ transform: scaleY(.4); opacity: .3; }
}

/* height of the scrollable hero track — controls scrub length */
.hero{ height: 260vh; }
@media (max-width: 640px){
  .hero{ height: 230vh; }
}

/* ==========================================================================
   Sections — shared rhythm
   ========================================================================== */
.section{ padding: 76px 0; position: relative; }
.section-head{ max-width: 640px; margin-bottom: 44px; }
.section-head--center{ margin-inline: auto; text-align: center; }
.section-head--center .body-lg{ margin-inline: auto; }
.section-head__desc{ margin-top: 14px; }

/* ==========================================================================
   About
   ========================================================================== */
.about{ background: var(--ivory); }
.about__grid{
  display: grid;
  gap: 44px;
  align-items: center;
}
.about__visual{ position: relative; order: -1; }

.arch-frame{
  position: relative;
  border-radius: 220px 220px 24px 24px / 160px 160px 24px 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 4.4;
}
.arch-frame img{
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.9) hue-rotate(-6deg) brightness(.96);
}
.arch-frame::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(14,107,79,.28), rgba(184,148,63,.12) 55%, rgba(43,32,22,.32));
}
.arch-frame--sand{ border-color: var(--sandstone); }

.about__badge{
  position: absolute;
  left: -14px; bottom: -14px;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 14px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.about__badge span{ font-family: var(--font-display); font-size: 1.2rem; color: var(--emerald); font-weight: 600; }
.about__badge small{ font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--body); }

.stat-row{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 30px;
}
.stat-pill{
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-pill strong{
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--emerald);
  font-weight: 600;
}
.stat-pill span{ font-size: .8rem; color: var(--body); }

/* ==========================================================================
   Rooms
   ========================================================================== */
.rooms{ background: var(--ivory-deep); }
.room-grid{
  display: grid;
  gap: 22px;
}
.room-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.room-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.room-card__top{ margin-bottom: 12px; }
.room-card__tag{
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--emerald);
  background: var(--emerald-tint);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.room-card__tag--sand{ color: #8a6a2d; background: var(--sandstone-tint); }
.room-card__top h3{
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
}
.room-card > p{ margin-bottom: 18px; }
.room-card__list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  margin-bottom: 22px;
}
.room-card__list li{
  font-size: .88rem;
  color: var(--body);
  padding-left: 18px;
  position: relative;
}
.room-card__list li::before{
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.room-card__link{
  font-weight: 700;
  color: var(--emerald);
  font-size: .9rem;
}
.room-card__link:hover{ color: var(--gold); }

.notice-card{
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--sandstone-tint);
  border: 1px solid var(--sandstone);
  border-radius: var(--radius-m);
  padding: 18px 20px;
  color: #6b5326;
}
.notice-card svg{ flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.notice-card strong{ color: #4d3b1c; }

/* ==========================================================================
   Facilities
   ========================================================================== */
.facilities{ background: var(--ivory); }
.facility-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.facility-card{
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 22px 18px;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.facility-card:hover{ transform: translateY(-3px); border-color: var(--gold); }
.facility-card__icon{
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--emerald);
  color: var(--ivory);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.facility-card__icon svg{ width: 21px; height: 21px; }
.facility-card h3{ font-size: 1rem; font-weight: 700; color: var(--heading); margin-bottom: 4px; }
.facility-card p{ font-size: .86rem; color: var(--body); }

/* ==========================================================================
   Restaurant
   ========================================================================== */
.restaurant{ background: var(--ivory-deep); }
.restaurant__grid{
  display: grid;
  gap: 40px;
  align-items: center;
}
.restaurant__copy .body-lg{ margin-bottom: 20px; }

/* ==========================================================================
   Location / Good to know
   ========================================================================== */
.location{ background: var(--ivory); }
.know-grid{
  display: grid;
  gap: 18px;
  margin-bottom: 40px;
}
.know-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.know-card__num{
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.know-card h3{ font-size: 1.05rem; margin-bottom: 8px; }
.know-card p{ font-size: .9rem; color: var(--body); }
.know-card p strong.blink{ color: #b02a2a; }

@keyframes blink{ 50%{ opacity: 0; } }
.blink{
  animation: blink 1s step-start infinite;
}

.map-wrap{
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  aspect-ratio: 16 / 11;
}
.map-wrap iframe{
  width: 100%; height: 100%;
  border: 0;
  filter: sepia(8%) saturate(92%);
}

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner{
  background: linear-gradient(135deg, var(--emerald-dark), var(--emerald) 60%, #124a3a);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before{
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(217,188,121,.25), transparent 55%);
}
.cta-banner__inner{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
}
.cta-banner__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer{
  background: #17241d;
  color: rgba(251,247,239,.75);
  padding: 64px 0 0;
}
.footer__grid{
  display: grid;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(251,247,239,.12);
}
.nav__brand--footer{ margin-bottom: 14px; }
.footer__brand p{ font-size: .88rem; max-width: 34ch; line-height: 1.6; }
.footer__col{ display: flex; flex-direction: column; gap: 12px; }
.footer__col h4{
  color: var(--gold-light);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer__col a{ font-size: .9rem; transition: color .2s var(--ease); }
.footer__col a:hover{ color: var(--gold-light); }
.footer__address{ font-size: .88rem; line-height: 1.6; margin-top: 4px; }

.footer__bottom{
  padding: 22px 20px;
  font-size: .8rem;
  color: rgba(251,247,239,.5);
}

/* ==========================================================================
   WhatsApp floating CTA
   ========================================================================== */
.whatsapp-fab{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #22a660;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px -10px rgba(20,80,50,.6);
  transition: transform .25s var(--ease);
}
.whatsapp-fab:hover{ transform: scale(1.08); }
@media (max-width: 640px){
  .whatsapp-fab{ right: 14px; bottom: calc(14px + env(safe-area-inset-bottom, 0px)); width: 52px; height: 52px; }
}

/* ==========================================================================
   Breakpoints
   ========================================================================== */
@media (min-width: 641px){
  .facility-grid{ grid-template-columns: repeat(3, 1fr); }
  .room-grid{ grid-template-columns: 1fr 1fr; }
  .know-grid{ grid-template-columns: repeat(3, 1fr); }
  .cta-banner__inner{ flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 860px){
  .nav__links{ display: flex; }
  .nav__cta-desktop{ display: inline-flex; }
  .nav__toggle{ display: none; }
  .mobile-menu{ display: none; }

  .about__grid{ grid-template-columns: 1fr 1fr; }
  .about__visual{ order: 0; }
  .restaurant__grid{ grid-template-columns: 1fr 1fr; }
  .restaurant .arch-frame{ order: 0; }

  .section{ padding: 110px 0; }
}

@media (min-width: 1024px){
  .facility-grid{ grid-template-columns: repeat(6, 1fr); }
  .stat-row{ grid-template-columns: repeat(4, 1fr); }
}