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

:root {
  --bg: #0B0907;
  --ivory: #EDE8DF;
  --ivory-dim: rgba(237,232,223,0.55);
  --gold: #C49A2C;
  --warm: #2A1D14;
  --border: rgba(237,232,223,0.1);
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ivory);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── HEADER ─────────────────────────────── */
#hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.75rem 4rem;
  transition: background .4s ease, padding .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
#hdr.scrolled {
  background: rgba(11,9,7,0.95);
  backdrop-filter: blur(14px);
  padding: 1.1rem 4rem;
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'EB Garamond', serif;
  font-size: 1.4rem;
  letter-spacing: .22em;
  color: var(--ivory);
  text-decoration: none;
  font-weight: 500;
}
nav { display: flex; align-items: center; gap: 2.5rem; }
nav a {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  text-decoration: none;
  transition: color .3s;
}
nav a:hover { color: var(--ivory); }
.nav-cta {
  border: 1px solid rgba(237,232,223,0.25);
  padding: .55rem 1.4rem !important;
  color: var(--ivory) !important;
  transition: background .3s !important;
}
.nav-cta:hover { background: rgba(237,232,223,0.07) !important; }

/* ─── HERO ───────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: -12%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,9,7,0.55) 0%,
    rgba(11,9,7,0.25) 45%,
    rgba(11,9,7,0.78) 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 1.1rem;
}
.hero__label {
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  font-weight: 400;
}
.hero__name {
  font-family: 'EB Garamond', serif;
  font-size: clamp(5.5rem, 15vw, 13rem);
  font-weight: 400;
  letter-spacing: .06em;
  line-height: 1;
  color: var(--ivory);
}
.hero__rule {
  width: 56px; height: 1px;
  background: var(--gold);
}
.hero__sub {
  font-size: .68rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  font-weight: 400;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* ─── STORY ──────────────────────────────── */
.story {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 88vh;
}
.story__img { overflow: hidden; }
.story__img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transform: scale(1.06);
  transition: transform 1.2s ease;
}
.story.in-view .story__img img { transform: scale(1); }
.story__text {
  padding: 6rem 5rem;
  display: flex; flex-direction: column; justify-content: center; gap: 1.6rem;
  background: var(--warm);
}
.eyebrow {
  display: block;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.story__text h2 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 400;
  line-height: 1.25;
}
.story__text p {
  font-size: .95rem;
  line-height: 1.9;
  color: var(--ivory-dim);
  max-width: 40ch;
}
.story__detail {
  display: flex; gap: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}
.story__detail span {
  font-size: .72rem;
  letter-spacing: .08em;
  color: var(--ivory-dim);
}

/* ─── PULL QUOTE ─────────────────────────── */
.pullquote {
  padding: 7rem 4rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.pullquote__inner { max-width: 820px; margin: 0 auto; }
.pullquote blockquote {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ivory);
}

/* ─── MENU ───────────────────────────────── */
.menu-section {
  padding: 7rem 6rem;
  background: #0F0C09;
}
.menu-section__head {
  display: flex; flex-direction: column; gap: .8rem;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.menu-section__head h2 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 400;
}
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 6rem;
}
.menu-col { display: flex; flex-direction: column; }
.menu-cat { margin-bottom: 3rem; }
.menu-cat__title {
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--border);
}
.menu-list { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.menu-list li { display: flex; align-items: baseline; }
.item-name {
  font-size: .92rem;
  color: var(--ivory);
  white-space: nowrap;
}
.item-dots {
  flex: 1;
  min-width: 1rem;
  border-bottom: 1px dotted rgba(237,232,223,0.18);
  margin: 0 .6rem .18rem;
}
.item-price {
  font-size: .88rem;
  color: var(--ivory-dim);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.item-price::before { content: "Rs "; font-size: .72em; }
.menu-divider {
  grid-column: 1 / -1;
  height: 1px;
  background: var(--border);
  margin: 1rem 0 3rem;
}
.menu-note {
  margin-top: 3rem;
  grid-column: 1 / -1;
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(237,232,223,0.28);
  text-align: center;
}

/* ─── IMAGE STRIPS ───────────────────────── */
.strips { display: flex; flex-direction: column; }
.strip {
  position: relative;
  height: 62vh;
  overflow: hidden;
}
.strip img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transform: scale(1.06);
  transition: transform 9s ease-out;
}
.strip.in-view img { transform: scale(1); }
.strip__overlay {
  position: absolute; inset: 0;
  background: rgba(11,9,7,0.42);
}
.strip__text {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  padding: 3rem 5rem;
}
.strip__text--right  { justify-content: flex-end; text-align: right; }
.strip__text--center { justify-content: center; align-items: center; text-align: center; }
.strip__text span {
  font-family: 'EB Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ivory);
  max-width: 520px;
  line-height: 1.25;
}

/* ─── VISIT ──────────────────────────────── */
.visit {
  padding: 7rem 6rem;
  background: var(--warm);
}
.visit__head {
  display: flex; flex-direction: column; gap: .8rem;
  margin-bottom: 4rem;
}
.visit__head h2 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 400;
}
.visit__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.visit__col {
  background: var(--warm);
  padding: 2.75rem 2.5rem;
  display: flex; flex-direction: column; gap: 1.1rem;
}
.visit__col h4 {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.visit__col p {
  font-size: .95rem;
  line-height: 1.85;
  color: var(--ivory-dim);
}
.visit__link {
  font-size: .76rem;
  letter-spacing: .08em;
  color: var(--ivory);
  text-decoration: none;
  border-bottom: 1px solid rgba(237,232,223,0.2);
  padding-bottom: .2rem;
  width: fit-content;
  transition: border-color .3s;
}
.visit__link:hover { border-color: var(--ivory); }

/* ─── FOOTER ─────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 1.6rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(237,232,223,0.28);
}

/* ─── PHOTO GALLERY ──────────────────────── */
.photogallery {
  padding: 7rem 6rem;
  background: var(--bg);
}
.photogallery__head {
  display: flex; flex-direction: column; gap: .8rem;
  margin-bottom: 3rem;
}
.photogallery__head h2 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 400;
}
.photogallery__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 4px;
}
.pg-cell { overflow: hidden; }
.pg-cell--wide { grid-column: 1; grid-row: 1; }
.pg-cell--tall { grid-column: 2; grid-row: 1 / 3; }
.pg-cell:nth-child(3) { grid-column: 1; grid-row: 2; }
.pg-cell img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .7s ease;
}
.pg-cell img:hover { transform: scale(1.04); }
.photogallery__source {
  margin-top: 1.25rem;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(237,232,223,0.25);
  text-align: right;
}

/* ─── REVIEWS ────────────────────────────── */
.reviews {
  padding: 7rem 6rem;
  background: #0F0C09;
}
.reviews__head {
  display: flex; flex-direction: column; gap: .8rem;
  margin-bottom: 4rem;
}
.reviews__head h2 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 400;
}
.reviews__meta {
  display: flex; align-items: center; gap: .8rem;
  margin-top: .4rem;
}
.reviews__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .06em;
}
.reviews__score {
  font-family: 'EB Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}
.reviews__count {
  font-size: .75rem;
  letter-spacing: .06em;
  color: var(--ivory-dim);
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 3rem;
}
.review-card {
  background: #0F0C09;
  padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.2rem;
}
.review-card__stars {
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: .08em;
}
.review-card__text {
  font-family: 'EB Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--ivory);
  flex: 1;
}
.review-card__author {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.reviews__cta {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ivory);
  text-decoration: none;
  border-bottom: 1px solid rgba(237,232,223,0.25);
  padding-bottom: .25rem;
  transition: border-color .3s;
}
.reviews__cta:hover { border-color: var(--ivory); }

/* ─── REVEAL ANIMATION ───────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
