/* =============================================
   RAAHI HOTEL & RESTAURANT
   Typography-first design
   Fonts: Cinzel · Cormorant Garamond · Jost
   Palette: Maroon #A11D2B · Gold #C9952A · Cream #FFFEE7
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Jost:wght@300;400;500;600&display=swap');

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

:root {
  --maroon:       #A11D2B;
  --maroon-dark:  #7A1520;
  --maroon-deep:  #3D0A10;
  --gold:         #C9952A;
  --gold-light:   #DFB04A;
  --cream:        #FFFEE7;
  --cream-mid:    #F7F5DC;
  --cream-dark:   #EDE8C4;
  --off-white:    #FDFCF4;
  --ink:          #1C0A0D;
  --ink-mid:      #4A1A20;
  --ink-soft:     #7A4A50;
  --border:       #DDD5A8;
  --T:            var(--transition);
  --transition:   .35s cubic-bezier(.4,0,.2,1);
  --shadow:       0 8px 40px rgba(61,10,16,.12);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--off-white);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Font roles ─────────────────────────── */
/* Cinzel        → all-caps labels, room names, section marks */
/* Cormorant     → display headings, pull quotes, large statements */
/* Jost          → body copy, nav, buttons, captions */

.f-cinzel    { font-family: 'Cinzel', serif; }
.f-cormnt    { font-family: 'Cormorant Garamond', serif; }
.f-jost      { font-family: 'Jost', sans-serif; }

/* ── Type Scale ─────────────────────────── */
h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem,6.5vw,5.4rem); font-weight: 300; line-height: 1.1; color: var(--cream); }
h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,4vw,3.2rem); font-weight: 400; line-height: 1.2; color: var(--maroon-deep); }
h3 { font-family: 'Cinzel', serif; font-size: clamp(1rem,1.8vw,1.25rem); font-weight: 500; letter-spacing: .12em; color: var(--maroon); }
h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 500; color: var(--maroon-deep); }

.eyebrow {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

p { color: var(--ink-soft); font-weight: 300; line-height: 1.85; }

/* gold ornament line (mirrors logo) */
.gold-rule {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin: 1.2rem 0;
}
.gold-rule::before,
.gold-rule::after {
  content: '';
  flex: 1;
  max-width: 56px;
  height: 1px;
  background: var(--gold);
}
.gold-rule .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.gold-rule-full {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 2rem 0;
}

/* ── Layout ─────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }
.section    { padding: 7rem 0; }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 4.5rem; }
.section-header h2 { margin: .6rem 0; }
.section-header p  { margin-top: .8rem; font-size: 1rem; }

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .9rem 2.4rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 2px;
}
.btn-maroon {
  background: var(--maroon);
  color: var(--cream);
}
.btn-maroon:hover { background: var(--maroon-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(161,29,43,.3); }

.btn-gold {
  background: var(--gold);
  color: var(--cream);
}
.btn-gold:hover { background: #b5821e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,149,42,.35); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,254,231,.45);
}
.btn-outline:hover { background: rgba(255,254,231,.08); border-color: var(--cream); }

.btn-outline-dark {
  background: transparent;
  color: var(--maroon);
  border: 1px solid var(--maroon);
}
.btn-outline-dark:hover { background: var(--maroon); color: var(--cream); }

/* ── NAVBAR ─────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,254,231,.97);
  backdrop-filter: blur(20px);
  padding: .85rem 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(61,10,16,.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-logo img {
  height: 72px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
  transition: var(--transition);
}
.navbar.scrolled .nav-logo {
  background: rgba(255,254,231,.25);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 4px 24px rgba(61,10,16,.1), inset 0 1px 0 rgba(255,255,255,.4);
}
.navbar.scrolled .nav-logo img { height: 54px; filter: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,254,231,.8);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--cream); }
.navbar.scrolled .nav-links a { color: var(--ink-mid); }
.navbar.scrolled .nav-links a:hover { color: var(--maroon); }

.nav-cta {
  font-size: .6rem !important;
  padding: .6rem 1.6rem;
  background: var(--maroon) !important;
  color: var(--cream) !important;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--maroon-dark) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--cream);
  border-radius: 1px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--maroon); }

/* ── HERO ───────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--maroon-deep);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Real photo background */
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(29,5,8,.92) 0%,
    rgba(61,10,16,.82) 45%,
    rgba(61,10,16,.5) 100%
  );
}

/* Vertical text decoration */
.hero-vert-text {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: 'Cinzel', serif;
  font-size: .55rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(201,149,42,.4);
  white-space: nowrap;
  z-index: 3;
}

/* Large background R watermark */
.hero-watermark {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18rem, 30vw, 36rem);
  font-weight: 300;
  line-height: 1;
  color: rgba(201,149,42,.06);
  pointer-events: none;
  user-select: none;
  letter-spacing: -.02em;
  z-index: 2;
}

/* Gold line decorations */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 9rem 0 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
.hero-text-col { max-width: 580px; }

/* Floating image panel — rahi005 */
.hero-img-col {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hero-feat-img {
  position: relative;
  width: 88%;
  max-width: 420px;
}
.hero-feat-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-feat-img::before {
  content: '';
  position: absolute;
  top: 1.4rem;
  right: -1.4rem;
  bottom: -1.4rem;
  left: 1.4rem;
  border: 1px solid rgba(201,149,42,.4);
  z-index: -1;
  pointer-events: none;
}
.hero-feat-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(29,5,8,.55) 0%, transparent 55%);
  pointer-events: none;
}
.hero-feat-caption {
  position: absolute;
  bottom: 1.2rem;
  left: 1.5rem;
  z-index: 1;
  font-family: 'Cinzel', serif;
  font-size: .52rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,254,231,.7);
}

.hero-tag {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-left: 1.2rem;
  position: relative;
}
.hero-tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: .8rem; height: 1px;
  background: var(--gold);
}

.hero h1 { margin-bottom: .8rem; }
.hero h1 em { font-style: italic; color: rgba(255,254,231,.65); display: block; font-size: .78em; }

.hero-sub {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  color: rgba(255,254,231,.55);
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 2.5rem;
  letter-spacing: .02em;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 2.5rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: 'Cinzel', serif;
  font-size: .55rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(201,149,42,.5);
}
.hero-scroll::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: .5;
  animation: grow 2.2s ease-in-out infinite;
}
@keyframes grow {
  0%,100% { width: 40px; }
  50%      { width: 70px; }
}

/* ── BOOK BAR ─────────────────────────────── */
.book-bar {
  background: var(--cream);
  border-top: 3px solid var(--maroon);
  border-bottom: 1px solid var(--border);
  padding: 1.8rem 0;
  box-shadow: var(--shadow);
}
.book-form {
  display: grid;
  grid-template-columns: repeat(4,1fr) auto;
  gap: 1rem;
  align-items: end;
}
.book-field label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.book-field input,
.book-field select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: .88rem;
  color: var(--ink);
  background: var(--off-white);
  outline: none;
  transition: border-color var(--transition);
}
.book-field input:focus,
.book-field select:focus { border-color: var(--maroon); }

/* ── STATS ─────────────────────────────── */
.stats-strip {
  background: var(--maroon);
  padding: 2.2rem 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  text-align: center;
  gap: 1rem;
  position: relative;
}
.stats-inner > div { position: relative; }
.stats-inner > div:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(201,149,42,.25);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}
.stat-lbl {
  font-family: 'Cinzel', serif;
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,254,231,.5);
  margin-top: .4rem;
}

/* ── ABOUT ─────────────────────────────── */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
/* Real interior photo above quote panel */
.about-img-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.8rem;
}
.about-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform .6s ease;
}
.about-img-wrap:hover img { transform: scale(1.04); }
.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
}
/* Pull-quote panel */
.about-quote-panel {
  position: relative;
  padding: 3rem;
  border: 1px solid var(--border);
  border-radius: 2px;
}
.about-quote-panel::before {
  content: '';
  position: absolute;
  top: -3px; left: 2rem;
  width: 80px; height: 3px;
  background: var(--maroon);
}
.about-quote-panel::after {
  content: '';
  position: absolute;
  bottom: -3px; right: 2rem;
  width: 80px; height: 3px;
  background: var(--gold);
}
.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.35;
  color: var(--maroon-deep);
  position: relative;
}
.pull-quote::before {
  content: '\201C';
  font-size: 8rem;
  line-height: 0;
  vertical-align: -.35em;
  margin-right: .1em;
  color: var(--gold);
  opacity: .4;
  font-style: normal;
}
.about-quote-sub {
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  letter-spacing: .25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 1.5rem;
  display: block;
}
/* small facts grid under panel */
.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 1.5rem;
  border: 1px solid var(--border);
}
.about-fact {
  background: var(--cream);
  padding: 1.2rem 1.4rem;
  text-align: center;
}
.about-fact-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--maroon);
  line-height: 1;
}
.about-fact-lbl {
  font-family: 'Cinzel', serif;
  font-size: .55rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: .3rem;
}

.about-text h2 { margin-bottom: .6rem; }
.about-text p  { margin-bottom: 1.2rem; }
.value-list { margin: 1.5rem 0 2rem; }
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--border);
}
.value-item:first-child { border-top: 1px solid var(--border); }
.value-mark {
  font-family: 'Cinzel', serif;
  font-size: .7rem;
  color: var(--gold);
  letter-spacing: .1em;
  flex-shrink: 0;
  padding-top: .1rem;
}
.value-item h4 { font-size: 1rem; margin-bottom: .15rem; }
.value-item p  { font-size: .88rem; margin: 0; }

/* ── FEATURES / USP ─────────────────────────── */
.features { background: var(--off-white); }

/* new USP cards */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.usp-card {
  padding: 3.5rem 2.5rem;
  border-right: 1px solid var(--border);
  background: var(--off-white);
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
  text-align: center;
}
.usp-card:last-child { border-right: none; }
.usp-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  transform: scaleX(0);
  transition: transform .5s ease;
}
.usp-card:hover::after  { transform: scaleX(1); }
.usp-card:hover { background: var(--cream); }

.usp-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(161,29,43,.06);
  position: absolute;
  top: .5rem; right: 1rem;
  pointer-events: none;
  user-select: none;
}
.usp-icon-wrap {
  width: 68px; height: 68px;
  margin: 0 auto 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,149,42,.35);
  border-radius: 50%;
  background: rgba(201,149,42,.06);
  color: var(--gold);
  transition: var(--transition);
}
.usp-card:hover .usp-icon-wrap {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--cream);
}
.usp-svg { width: 30px; height: 30px; }
.usp-card h3 {
  font-size: .82rem;
  margin-bottom: 0;
  position: relative;
}
.usp-line {
  width: 32px; height: 1px;
  background: var(--gold);
  margin: 1rem auto;
  opacity: .6;
}
.usp-card p { font-size: .88rem; line-height: 1.85; }

/* legacy — keep so old .feat-grid classes don't 404 */
.feat-grid { display:none; }
.feat-grid-3 { display:none; }
.feat-card {
  padding: 2.8rem 2rem;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.feat-card:last-child { border-right: none; }
.feat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--maroon);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.feat-card:hover::after  { transform: scaleX(1); }
.feat-card:hover { background: var(--cream); }
.feat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(161,29,43,.1);
  line-height: 1;
  margin-bottom: .5rem;
  display: block;
}
.feat-card h3 { font-size: .8rem; margin-bottom: .7rem; }
.feat-card p  { font-size: .88rem; }

/* ── ROOMS ─────────────────────────────── */
.rooms { background: var(--cream); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.room-card {
  border: 1px solid var(--border);
  background: var(--off-white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.room-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
  z-index: 5;
}
.room-card:hover::before  { transform: scaleX(1); }
.room-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.room-card-header {
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--maroon-deep);
}
/* Real photo */
.room-header-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .65s ease;
}
.room-card:hover .room-header-img { transform: scale(1.07); }

/* Dark gradient overlay so text stays legible */
.room-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(29,5,8,.45) 0%,
    rgba(61,10,16,.82) 100%
  );
  z-index: 1;
}

/* Decorative large numeral inside header */
.room-bg-num {
  position: absolute;
  right: -1rem;
  top: -1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(255,254,231,.07);
  pointer-events: none;
  user-select: none;
  z-index: 2;
}
.room-roman {
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: .3em;
  color: var(--gold);
  margin-bottom: .6rem;
  position: relative;
  z-index: 2;
}
.room-card-header h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--cream);
  position: relative;
  z-index: 2;
  line-height: 1.3;
}
.room-card-header p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,254,231,.65);
  position: relative;
  z-index: 2;
  margin-top: .3rem;
}

.room-card-body { padding: 1.8rem 2rem; }
.room-card-body > p { font-size: .9rem; margin-bottom: 1.4rem; line-height: 1.8; }
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 1.6rem;
}
.amenity-tag {
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  padding: .32rem .85rem;
  background: var(--cream-mid);
  border: 1px solid var(--border);
  color: var(--ink-mid);
  border-radius: 1px;
}
.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

/* ── DINING ─────────────────────────────── */
.dining { background: var(--off-white); }

/* Main two-column: large photo + info */
.dining-main-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.dining-main-img {
  position: relative;
  overflow: hidden;
}
.dining-main-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .65s ease;
}
.dining-main-img:hover img { transform: scale(1.04); }
.dining-main-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(29,5,8,.88) 0%, transparent 100%);
}
.dining-main-info p { margin-bottom: 1.2rem; }

/* 3-photo strip */
.dining-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.dining-photo-card {
  position: relative;
  overflow: hidden;
}
.dining-photo-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform .65s ease;
}
.dining-photo-card:hover img { transform: scale(1.06); }
.dining-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(to top, rgba(29,5,8,.9) 0%, transparent 100%);
}
.dining-photo-overlay h4 {
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: .25rem;
}
.dining-photo-overlay p {
  font-family: 'Cormorant Garamond', serif;
  font-size: .95rem;
  font-style: italic;
  color: rgba(255,254,231,.65);
  margin: 0;
}

/* keep old vars used elsewhere */
.dining-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
/* Left: Typography-based menu preview */
.menu-preview {
  border: 1px solid var(--border);
  background: var(--cream);
}
.menu-preview-header {
  background: var(--maroon-deep);
  padding: 1.8rem 2rem;
  position: relative;
  overflow: hidden;
}
.menu-preview-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(201,149,42,.18) 1px, transparent 0);
  background-size: 20px 20px;
}
.menu-preview-header h3 {
  font-family: 'Cinzel', serif;
  font-size: .75rem;
  letter-spacing: .25em;
  color: var(--cream);
  position: relative;
  z-index: 1;
}
.menu-preview-header p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,254,231,.5);
  position: relative; z-index: 1;
  margin-top: .2rem;
}
.menu-category {
  padding: 1.5rem 2rem .5rem;
}
.menu-cat-label {
  font-family: 'Cinzel', serif;
  font-size: .58rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .7rem;
}
.menu-cat-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .75rem 2rem;
  border-bottom: 1px dashed var(--border);
  transition: background var(--transition);
  gap: 1rem;
}
.menu-item:hover { background: var(--cream-mid); }
.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--maroon-deep);
}
.menu-item-desc {
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  color: var(--ink-soft);
  font-weight: 300;
  margin-top: .1rem;
}
.menu-item-right {
  flex-shrink: 0;
  text-align: right;
}
.menu-dot {
  font-size: .6rem;
  color: var(--gold);
  letter-spacing: .1em;
}

.dining-text .eyebrow  { display: block; margin-bottom: .4rem; }
.dining-text h2        { margin-bottom: .8rem; }
.dining-text p         { margin-bottom: 1.2rem; }
.cuisine-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.5rem 0 2rem;
}
.cuisine-chip {
  font-family: 'Cinzel', serif;
  font-size: .56rem;
  letter-spacing: .18em;
  padding: .45rem 1.1rem;
  border: 1px solid var(--maroon);
  color: var(--maroon);
  border-radius: 1px;
  transition: var(--transition);
}
.cuisine-chip:hover { background: var(--maroon); color: var(--cream); }
.timing-row {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 2rem;
}
.timing-cell {
  background: var(--off-white);
  padding: 1rem 1.2rem;
}
.timing-cell .meal {
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  letter-spacing: .2em;
  color: var(--maroon);
  text-transform: uppercase;
}
.timing-cell .time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--ink-mid);
  margin-top: .15rem;
}

/* ── EXPERIENCES ─────────────────────────── */
.experiences { background: var(--maroon-deep); }
.exp-header h2    { color: var(--cream); }
.exp-header .eyebrow { color: var(--gold); }
.exp-header p     { color: rgba(255,254,231,.5); margin-top: .5rem; }
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.exp-card {
  border: 1px solid rgba(201,149,42,.2);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
}
.exp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--gold);
  transition: height .5s ease;
}
.exp-card:hover::before { height: 100%; }
.exp-card:hover { background: rgba(255,254,231,.04); border-color: rgba(201,149,42,.4); }
.exp-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.exp-card h3 {
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  letter-spacing: .2em;
  color: var(--cream);
  margin-bottom: .6rem;
}
.exp-card p { font-size: .88rem; color: rgba(255,254,231,.45); }

/* ── TESTIMONIALS ─────────────────────────── */
.testimonials { background: var(--cream); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}
.testi-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  background: var(--off-white);
  position: relative;
  transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.testi-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  line-height: .6;
  color: var(--maroon);
  opacity: .15;
  margin-bottom: .5rem;
  display: block;
}
.testi-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--maroon-deep);
  line-height: 1.7;
  margin-bottom: 1.6rem;
}
.stars { color: var(--gold); font-size: .85rem; letter-spacing: .15em; margin-bottom: .9rem; }
.reviewer-name {
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: .2em;
  color: var(--maroon);
  text-transform: uppercase;
}
.reviewer-loc {
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  color: var(--ink-soft);
  margin-top: .2rem;
}

/* ── CTA BANNER ─────────────────────────── */
.cta-banner {
  background: var(--maroon);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: 'RAAHI';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Cinzel', serif;
  font-size: 18vw;
  font-weight: 700;
  color: rgba(255,254,231,.03);
  letter-spacing: .1em;
  pointer-events: none;
  white-space: nowrap;
}
.cta-banner h2 { color: var(--cream); margin: .5rem 0; }
.cta-banner .eyebrow { color: var(--gold); }
.cta-banner p  { color: rgba(255,254,231,.6); max-width: 500px; margin: 0 auto 2.2rem; font-size: 1rem; }

/* ── CONTACT ─────────────────────────────── */
.contact-sec { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: .6rem; }
.contact-info > p { margin-bottom: 2.2rem; }
.info-list { border: 1px solid var(--border); }
.info-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.3rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.info-item:last-child { border-bottom: none; }
.info-item:hover { background: var(--cream); }
.info-icon-box {
  width: 40px; height: 40px;
  background: var(--maroon);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.info-label {
  font-family: 'Cinzel', serif;
  font-size: .58rem;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: .25rem;
  display: block;
}
.info-value {
  font-family: 'Jost', sans-serif;
  font-size: .88rem;
  color: var(--ink-mid);
  line-height: 1.6;
}

.form-wrap {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 3rem;
}
.form-wrap .eyebrow { display: block; margin-bottom: .4rem; }
.form-wrap h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400; color: var(--maroon-deep); margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 1px;
  font-family: 'Jost', sans-serif;
  font-size: .9rem;
  color: var(--ink);
  background: var(--off-white);
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--maroon); background: var(--cream); }
.form-group textarea { resize: vertical; min-height: 110px; }
.success-msg {
  display: none;
  background: #fdf8e0;
  border-left: 3px solid var(--gold);
  color: var(--ink-mid);
  padding: 1rem 1.2rem;
  margin-bottom: 1.2rem;
  font-size: .88rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

/* ── FOOTER ─────────────────────────────── */
.footer {
  background: var(--maroon-deep);
  padding: 5rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,254,231,.07);
}
.footer-logo img { height: 70px; }
.footer-brand p {
  font-size: .86rem;
  color: rgba(255,254,231,.4);
  margin-top: 1.1rem;
  line-height: 1.8;
}
.footer-social { display: flex; gap: .6rem; margin-top: 1.5rem; }
.soc-btn {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,254,231,.12);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: .58rem;
  color: rgba(255,254,231,.45);
  transition: var(--transition);
}
.soc-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--cream); }

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: .58rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul a {
  font-size: .85rem;
  color: rgba(255,254,231,.4);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-contact li {
  display: flex; gap: .7rem;
  font-size: .83rem;
  color: rgba(255,254,231,.4);
  margin-bottom: .85rem;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-family: 'Cinzel', serif;
  font-size: .55rem;
  letter-spacing: .1em;
  color: rgba(255,254,231,.2);
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── HERO SLIDER ─────────────────────────── */
.hero-slider {
  position: relative;
  width: 88%;
  max-width: 420px;
}
.hero-slider::before {
  content: '';
  position: absolute;
  top: 1.4rem;
  right: -1.4rem;
  bottom: -1.4rem;
  left: 1.4rem;
  border: 1px solid rgba(201,149,42,.4);
  z-index: -1;
  pointer-events: none;
}
.hero-slides {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* dark gradient at bottom of slider */
.hero-slides::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(29,5,8,.5), transparent);
  pointer-events: none;
  z-index: 1;
}
.hero-slider-dots {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.hero-slider-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(201,149,42,.3);
  border: 1px solid rgba(201,149,42,.4);
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.hero-slider-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}
.hero-slider-dot:hover { background: rgba(201,149,42,.7); }

/* ── GALLERY ─────────────────────────────── */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: .9rem;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(29,5,8,0);
  transition: background .4s ease;
  pointer-events: none;
}
.gallery-item:hover::after { background: rgba(29,5,8,.28); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .65s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.g-wide { grid-column: span 2; }

/* ── MINIMAL FOOTER ─────────────────────── */
.footer-min {
  background: var(--maroon-deep);
  padding: 3rem 0 1.8rem;
}
.footer-min-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-min-logo img { height: 60px; }
.footer-min-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-min-nav a {
  font-family: 'Cinzel', serif;
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,254,231,.45);
  transition: color var(--transition);
}
.footer-min-nav a:hover { color: var(--gold); }
.footer-min-social { display: flex; gap: .5rem; }
.footer-min-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.5rem;
  font-family: 'Jost', sans-serif;
  font-size: .8rem;
  color: rgba(255,254,231,.35);
  margin-bottom: 1.5rem;
}
.footer-min-bottom {
  font-family: 'Cinzel', serif;
  font-size: .52rem;
  letter-spacing: .12em;
  color: rgba(255,254,231,.18);
  text-align: center;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,254,231,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .8rem;
}
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  transition: transform .3s ease, filter .3s ease;
}
.footer-credit:hover { transform: translateY(-2px); filter: brightness(1.2); }
.footer-credit img {
  height: 38px;
  width: auto;
  display: block;
}
.footer-credit-text {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.footer-credit-by {
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  font-weight: 300;
  letter-spacing: .05em;
  color: rgba(255,254,231,.65);
  white-space: nowrap;
}
.footer-credit-name {
  font-family: 'Cinzel', serif;
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .07em;
  color: rgba(255,254,231,.95);
  line-height: 1.55;
}

/* ── Animations ─────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ── Responsive ─────────────────────────── */
/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */

@media(max-width:1100px) {
  .usp-grid         { grid-template-columns: repeat(3,1fr); }
  .dining-main-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .dining-main-img img { height: 360px; }
  .rooms-grid       { grid-template-columns: 1fr 1fr; }
  .gallery-grid     { grid-template-columns: 1fr 1fr; grid-auto-rows: 240px; }
  .gallery-item.g-wide { grid-column: span 2; }
  .hero-content     { grid-template-columns: 1fr; }
  .hero-img-col     { display: none; }
}

@media(max-width:768px) {
  /* Navbar */
  .nav-links  { display: none; }
  .hamburger  { display: flex; }

  /* Layout grids */
  .about-grid     { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid   { grid-template-columns: 1fr; }
  .rooms-grid     { grid-template-columns: 1fr; }
  .usp-grid       { grid-template-columns: 1fr; }
  .usp-card       { border-right: 1px solid var(--border); border-bottom: none; }
  .usp-card:last-child { border-bottom: 1px solid var(--border); }

  /* Book form */
  .book-form { grid-template-columns: 1fr 1fr; }

  /* Stats */
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stats-inner > div:nth-child(2)::after { display: none; }

  /* Dining */
  .dining-main-grid     { grid-template-columns: 1fr; gap: 2rem; }
  .dining-main-img img  { height: 300px; }
  .dining-photo-strip   { grid-template-columns: 1fr; }
  .dining-photo-card img { height: 210px; }
  .timing-row            { grid-template-columns: 1fr 1fr; }

  /* Form */
  .form-row  { grid-template-columns: 1fr; }
  .form-wrap { padding: 2rem 1.4rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery-item.g-wide { grid-column: span 2; }

  /* Footer */
  .footer-min-top { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .footer-min-nav { gap: 1.2rem; }
  .footer-min-info { gap: .8rem 1.5rem; }
}

@media(max-width:540px) {
  /* Hero */
  .hero-content  { padding: 7rem 0 4rem; }
  .hero-btns     { flex-direction: column; align-items: flex-start; }
  .hero-vert-text { display: none; }

  /* Book form */
  .book-form { grid-template-columns: 1fr; }

  /* Stats */
  .stats-inner { grid-template-columns: 1fr 1fr; gap: .5rem; }

  /* USP */
  .usp-card { padding: 2.5rem 1.8rem; }
  .usp-num  { font-size: 4rem; }

  /* Timing row */
  .timing-row { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item.g-wide { grid-column: span 1; }

  /* Hero slider */
  .hero-slides { height: 320px; }
  .hero-slider-dots { gap: .35rem; }

  /* Container padding */
  .container { padding: 0 1.2rem; }
  .section   { padding: 5rem 0; }

  /* Section header */
  .section-header { margin-bottom: 3rem; }
}
