/* ═══════════════════════════════════════════════════════════════
   SHRI NILAYAM KUTIR — style.css
   Vernacular Luxury · Sacred Varanasi
   ═══════════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --ochre:       #C8843A;
  --deep-ochre:  #A0622A;
  --terracotta:  #B85C46;
  --cream:       #F5EFE0;
  --parchment:   #EDE3CC;
  --bone:        #F9F4EA;
  --dark-wood:   #1E1208;
  --mid-wood:    #4A2E14;
  --gold:        #C9973F;
  --gold-light:  #E8C87A;
  --sage:        #7A8C64;
  --charcoal:    #2A1E14;
  --ink:         #1A120A;
  --white-smoke: #FAF6EE;
  --glass-dark:  rgba(26,18,10,0.88);
  --shadow-sm:   0 2px 12px rgba(26,18,10,0.10);
  --shadow-md:   0 6px 28px rgba(26,18,10,0.16);
  --shadow-lg:   0 16px 56px rgba(26,18,10,0.22);
  --radius:      2px;
  --transition:  0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--white-smoke);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.75;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--parchment); }
::-webkit-scrollbar-thumb { background: var(--ochre); border-radius: 3px; }

/* ── TYPE HELPERS ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
}
em { font-style: italic; }
.cinzel {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 0.75rem;
  font-family: 'Cinzel', serif;
  display: block;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-intro {
  max-width: 600px;
  margin: 1rem auto 0;
  color: #5a3e28;
  font-size: 1.05rem;
  text-align: center;
}

.gold-rule {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.2rem 0 1.8rem;
}
.gold-rule.centered { margin: 1.2rem auto 1.8rem; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--gold);
  color: var(--dark-wood);
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(201,151,63,0.28);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,151,63,0.38);
}

.btn-outline {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,239,224,0.55);
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold-light);
  background: rgba(245,239,224,0.08);
}

/* ── SECTION BASE ── */
.section { padding: 6rem 6vw; }
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

/* ── ANIMATE ON SCROLL ── */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  height: 76px;
  transition: background 0.5s ease, height 0.4s ease, box-shadow 0.4s ease;
  background: linear-gradient(to bottom, rgba(26,18,10,0.6), transparent);
}
#navbar.scrolled {
  background: var(--glass-dark);
  height: 60px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  color: var(--cream);
}
.logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.56rem;
  letter-spacing: 0.35em;
  color: var(--gold-light);
  font-weight: 300;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.74rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.85);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  padding: 0.45rem 1.4rem !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold-light) !important;
  transition: background var(--transition), color var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--dark-wood) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 210;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--dark-wood);
  z-index: 190;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77,0,0.175,1);
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav ul {
  text-align: center;
  margin-bottom: 2.5rem;
}
.mobile-nav li { padding: 0.65rem 0; }
.mnav-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--cream);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mnav-link:hover { color: var(--gold-light); }
.mnav-link.cta-link {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  padding: 0.7rem 2rem;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  margin-top: 0.5rem;
  display: inline-block;
}
.mnav-contact {
  text-align: center;
  color: rgba(245,239,224,0.45);
  font-size: 0.82rem;
  line-height: 2;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease;
  transform: scale(1.04);
  animation: kenBurns 8s ease-in-out infinite alternate;
}
.hero-slide.active { opacity: 1; }
@keyframes kenBurns {
  from { transform: scale(1.04); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,18,10,0.35) 0%,
    rgba(26,18,10,0.55) 45%,
    rgba(26,18,10,0.78) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 820px;
}
.hero-eyebrow {
  font-size: 0.67rem;
  letter-spacing: 0.45em;
  color: var(--gold-light);
  display: block;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}
.hero-title em { color: var(--gold-light); }
.hero-divider {
  width: 55px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.2rem auto;
  opacity: 0;
  animation: fadeUp 1s 0.65s forwards;
}
.hero-subtitle {
  font-size: clamp(0.88rem, 2vw, 1.08rem);
  color: rgba(245,239,224,0.72);
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-bottom: 2.2rem;
  opacity: 0;
  animation: fadeUp 1s 0.75s forwards;
}
.hero-br { display: none; }
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-dots {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 24px;
  height: 2px;
  background: rgba(245,239,224,0.4);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  border: none;
}
.hero-dot.active {
  background: var(--gold-light);
  width: 36px;
}
.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(245,239,224,0.5);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll-cue span {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold-light));
  animation: scrollLine 1.6s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ═══════════════════════════════════════════════════════════════
   INTRO STRIP
   ═══════════════════════════════════════════════════════════════ */
.intro-strip {
  background: var(--dark-wood);
  border-top: 1px solid rgba(201,151,63,0.2);
  border-bottom: 1px solid rgba(201,151,63,0.2);
}
.intro-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2vw;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 2rem;
  color: var(--parchment);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  font-weight: 300;
}
.strip-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.strip-divider {
  width: 1px;
  height: 24px;
  background: rgba(201,151,63,0.25);
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════ */
.about-section {
  background: var(--bone);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 42%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--bone);
  aspect-ratio: 1;
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute;
  top: -1.2rem;
  left: -1.2rem;
  width: 84px;
  height: 84px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  color: var(--dark-wood);
  text-transform: uppercase;
  gap: 2px;
  box-shadow: var(--shadow-sm);
  font-family: 'Cinzel', serif;
}
.badge-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0;
}
.about-text h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 0.2rem; }
.about-lead {
  font-size: 1.05rem;
  color: var(--mid-wood);
  margin-bottom: 1rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.7;
}
.about-text p { margin-bottom: 0.9rem; font-size: 0.95rem; color: #4a3222; line-height: 1.8; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
  margin-top: 1.4rem;
}
.feat {
  font-size: 0.82rem;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.feat span { color: var(--gold); font-size: 0.7rem; }

/* ═══════════════════════════════════════════════════════════════
   SUITES
   ═══════════════════════════════════════════════════════════════ */
.suites-section { background: var(--white-smoke); }
.suites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}
.suite-card {
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.suite-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.suite-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.suite-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.suite-card:hover .suite-img-wrap img { transform: scale(1.06); }
.suite-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,18,10,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.suite-card:hover .suite-overlay { opacity: 1; }
.suite-reserve-btn {
  padding: 0.65rem 1.8rem;
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  transition: background 0.3s;
}
.suite-reserve-btn:hover {
  background: var(--gold);
  color: var(--dark-wood);
}
.suite-body {
  padding: 1.4rem 1.5rem 1.6rem;
}
.suite-top {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 0.2rem;
}
.suite-num {
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.2em;
}
.suite-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  color: var(--charcoal);
}
.suite-myth {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 0.8rem;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}
.suite-desc {
  font-size: 0.88rem;
  color: #5a3e28;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.suite-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
  border-top: 1px solid var(--parchment);
  padding-top: 0.9rem;
}
.suite-amenities li {
  font-size: 0.72rem;
  color: var(--mid-wood);
  letter-spacing: 0.04em;
}
.suite-amenities li::before { content: "· "; color: var(--gold); }
.suites-cta { text-align: center; }

/* ═══════════════════════════════════════════════════════════════
   AMENITIES (FULL-BLEED)
   ═══════════════════════════════════════════════════════════════ */
.amenities-section { padding: 0; }
.amenities-bg {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.amenities-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,18,10,0.82);
}
.amenities-content {
  position: relative;
  z-index: 1;
  padding: 6rem 6vw;
  text-align: center;
}
.amenities-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.amenities-content h2.light { color: var(--cream); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 2.5rem auto 0;
}
.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: var(--parchment);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.amenity-item:hover { color: var(--gold-light); }
.amenity-item svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
  transition: color var(--transition);
}
.amenity-item:hover svg { color: var(--gold-light); }

/* ═══════════════════════════════════════════════════════════════
   DINING
   ═══════════════════════════════════════════════════════════════ */
.dining-section { background: var(--bone); }
.dining-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.dining-text h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
.dining-text p { font-size: 0.95rem; color: #4a3222; line-height: 1.8; margin-bottom: 1rem; }
.dining-highlights { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.dining-hl {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.dining-hl > span {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.dining-hl strong { display: block; font-size: 0.9rem; color: var(--charcoal); font-weight: 500; margin-bottom: 0.15rem; }
.dining-hl p { font-size: 0.84rem; color: #6a4a2e; margin: 0; }
.dining-images { position: relative; }
.dining-img-large {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.dining-img-large img { width: 100%; height: 100%; object-fit: cover; }
.dining-img-small {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 45%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 4px solid var(--bone);
}
.dining-img-small img { width: 100%; height: 100%; object-fit: cover; }

/* ═══════════════════════════════════════════════════════════════
   WELLNESS
   ═══════════════════════════════════════════════════════════════ */
.wellness-section { background: var(--white-smoke); }
.wellness-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.wellness-card {
  background: var(--bone);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wellness-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.wellness-card img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.wellness-card:hover img { transform: scale(1.05); }
.wellness-icon {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 36px;
  height: 36px;
  background: rgba(26,18,10,0.65);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wellness-icon svg { width: 18px; height: 18px; color: var(--gold-light); }
.wellness-card-body { padding: 1.2rem 1.3rem 1.4rem; }
.wellness-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.wellness-card-body p { font-size: 0.84rem; color: #5a3e28; line-height: 1.72; }

/* ═══════════════════════════════════════════════════════════════
   EXPERIENCES
   ═══════════════════════════════════════════════════════════════ */
.experiences-section { background: var(--parchment); }
.exp-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4vw;
  max-width: 1200px;
  margin: 0 auto 3rem;
  align-items: start;
}
.exp-text h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
.exp-text p { font-size: 0.94rem; color: #4a3222; line-height: 1.8; margin-top: 0.5rem; }
.landmark-row { display: flex; flex-direction: column; gap: 0; }
.landmark {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid rgba(160,98,42,0.15);
  transition: background var(--transition);
}
.landmark:hover { background: rgba(201,151,63,0.06); }
.landmark-dist {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  width: 56px;
  flex-shrink: 0;
  text-align: right;
}
.landmark-info strong { display: block; font-size: 0.92rem; color: var(--charcoal); font-weight: 500; }
.landmark-info span { font-size: 0.78rem; color: #7a5a3a; letter-spacing: 0.03em; }
.concierge-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--dark-wood);
  padding: 2.5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.concierge-text .cinzel {
  font-size: 0.65rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.4rem;
}
.concierge-text h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.concierge-text p { font-size: 0.88rem; color: rgba(245,239,224,0.65); max-width: 520px; }

/* ═══════════════════════════════════════════════════════════════
   CONFERENCE
   ═══════════════════════════════════════════════════════════════ */
.conference-section { background: var(--bone); }
.conf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.conf-img { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.conf-img img { width: 100%; height: 100%; object-fit: cover; }
.conf-text h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
.conf-text p { font-size: 0.95rem; color: #4a3222; line-height: 1.8; margin-bottom: 0.9rem; }
.conf-features {
  list-style: none;
  margin-bottom: 1.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1rem;
}
.conf-features li {
  font-size: 0.83rem;
  color: #5a3e28;
  padding-left: 0.8rem;
  position: relative;
}
.conf-features li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════════ */
.gallery-section { background: var(--white-smoke); }
.gallery-filters {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.gf-btn {
  padding: 0.45rem 1.4rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  border: 1px solid var(--parchment);
  color: var(--mid-wood);
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
}
.gf-btn.active, .gf-btn:hover {
  border-color: var(--gold);
  color: var(--dark-wood);
  background: var(--parchment);
}
.gallery-masonry {
  columns: 4;
  column-gap: 0.8rem;
  max-width: 1200px;
  margin: 0 auto;
}
.g-item {
  break-inside: avoid;
  margin-bottom: 0.8rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.g-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease, filter 0.3s;
}
.g-item:hover img { transform: scale(1.05); filter: brightness(0.85); }
.g-item::after {
  content: "↗";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: var(--cream);
  font-size: 1.5rem;
  opacity: 0;
  transition: all 0.3s;
}
.g-item:hover::after { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.g-item.hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,5,2,0.95);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-height: 80vh;
  max-width: 90vw;
  object-fit: contain;
  box-shadow: 0 8px 48px rgba(0,0,0,0.5);
}
.lb-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: var(--cream);
  font-size: 2.2rem;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lb-close:hover { opacity: 1; }
.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cream);
  font-size: 3rem;
  opacity: 0.6;
  transition: opacity 0.2s;
  padding: 0 1rem;
}
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-prev:hover, .lb-next:hover { opacity: 1; color: var(--gold-light); }
.lb-caption {
  color: rgba(245,239,224,0.55);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 0 2rem;
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.testimonials-section { background: var(--dark-wood); overflow: hidden; }
.testimonials-section .section-eyebrow { color: var(--gold-light); }
.testimonials-section h2 { color: var(--cream); }
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.testimonial-card {
  background: rgba(245,239,224,0.05);
  border: 1px solid rgba(201,151,63,0.2);
  padding: 2.2rem 2rem;
  flex: 0 0 calc(50% - 0.75rem);
  transition: opacity 0.4s;
}
.testimonial-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  font-style: italic;
  color: rgba(245,239,224,0.82);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}
.testimonial-card cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.testimonial-card cite strong { font-size: 0.9rem; color: var(--cream); font-weight: 500; }
.testimonial-card cite span { font-size: 0.76rem; color: rgba(245,239,224,0.45); letter-spacing: 0.05em; }
.stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.1em; margin-top: 0.3rem; }
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.testi-controls button {
  color: var(--cream);
  font-size: 1.8rem;
  opacity: 0.5;
  transition: opacity 0.2s, color 0.2s;
  line-height: 1;
}
.testi-controls button:hover { opacity: 1; color: var(--gold-light); }
.testi-dots { display: flex; gap: 6px; }
.testi-dot {
  width: 28px;
  height: 2px;
  background: rgba(245,239,224,0.2);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  border: none;
}
.testi-dot.active {
  background: var(--gold-light);
  width: 38px;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════ */
.contact-section { background: var(--bone); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5vw;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.contact-info h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
.contact-info > p { font-size: 0.93rem; color: #4a3222; line-height: 1.8; margin-bottom: 1.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: color 0.3s;
}
.contact-detail:hover { color: var(--ochre); }
.contact-detail svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.map-embed {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--parchment);
}

/* Form */
.contact-form-wrap {
  background: #fff;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-title {
  font-size: 0.8rem;
  color: var(--charcoal);
  margin-bottom: 1.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--parchment);
  letter-spacing: 0.25em;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group.full { grid-column: 1/-1; }
.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-wood);
  font-weight: 400;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--parchment);
  background: var(--bone);
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--transition);
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: #fff; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; justify-content: center; padding: 0.95rem; margin-top: 0.5rem; }
.form-note { font-size: 0.75rem; color: #8a6a4a; text-align: center; margin-top: 0.8rem; line-height: 1.6; }
.form-note a { color: var(--ochre); text-decoration: underline; }
.form-success {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(122,140,100,0.12);
  border: 1px solid var(--sage);
  padding: 1rem 1.2rem;
  margin-top: 1rem;
  border-radius: var(--radius);
}
.form-success[hidden] { display: none; }
.form-success svg { width: 20px; height: 20px; color: var(--sage); flex-shrink: 0; }
.form-success p { font-size: 0.88rem; color: var(--charcoal); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--dark-wood);
  color: rgba(245,239,224,0.65);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4vw;
  padding: 4.5rem 6vw 3rem;
  border-bottom: 1px solid rgba(201,151,63,0.15);
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo {
  font-size: 1.2rem;
  color: var(--cream);
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.footer-addr { font-size: 0.83rem; line-height: 1.8; margin-bottom: 0.8rem; }
.footer-phone {
  font-size: 0.95rem;
  color: var(--gold-light);
  transition: color 0.3s;
}
.footer-phone:hover { color: var(--cream); }
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  font-size: 0.83rem;
  color: rgba(245,239,224,0.55);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 6vw;
  font-size: 0.76rem;
  color: rgba(245,239,224,0.3);
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-craft { font-style: italic; color: rgba(201,151,63,0.4); }

/* ── BACK TO TOP ── */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--dark-wood);
  font-size: 1.4rem;
  line-height: 44px;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 150;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-top:hover { background: var(--gold-light); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .suites-grid { grid-template-columns: repeat(2, 1fr); }
  .wellness-cards { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 3; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .about-grid,
  .dining-grid,
  .conf-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .about-img-accent { right: 0; bottom: -1.5rem; }
  .dining-img-small { left: 0; }
  .exp-inner { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 100%; }
  .concierge-banner { flex-direction: column; text-align: center; }
  .hero-scroll-cue { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .section { padding: 4rem 5vw; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-br { display: block; }
  .hero-title { font-size: 2.8rem; }
  .suites-grid { grid-template-columns: 1fr; }
  .wellness-cards { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .form-row { grid-template-columns: 1fr; }
  .intro-strip-inner { flex-direction: column; gap: 0; }
  .strip-divider { width: 40px; height: 1px; }
  .strip-item { padding: 0.8rem 1rem; justify-content: center; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .about-img-accent { display: none; }
  .about-img-badge { display: none; }
  .dining-img-small { display: none; }
  .conf-features { grid-template-columns: 1fr; }
  .amenities-bg { background-attachment: scroll; }
  .contact-form-wrap { padding: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-scroll-cue { display: none; }
  .hero-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 400px) {
  .gallery-masonry { columns: 1; }
  .hero-title { font-size: 2.4rem; }
}
