/* ═══════════════════════════════════════════
   Patram Haveli — immersive fine dining
   ═══════════════════════════════════════════ */

:root {
  --bg: #0a0a0a;
  --bg-soft: #111010;
  --bg-card: #161514;
  --ink: #f2ede6;
  --ink-dim: #9c948a;
  --gold: #c9a25e;
  --gold-soft: #e6cf9f;
  --line: rgba(242, 237, 230, 0.1);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { color: inherit; text-decoration: none; }

.container { width: min(1240px, 92vw); margin-inline: auto; }

.section { padding: clamp(90px, 12vw, 160px) 0; }

.hide-mobile { display: inline; }

::selection { background: var(--gold); color: #0a0a0a; }

/* ── Custom scrollbar ── */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2c2a27; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ═══════════ PRELOADER ═══════════ */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.preloader-inner { text-align: center; }
.preloader-logo {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.45em;
  display: block;
  margin-bottom: 28px;
  color: var(--ink);
}
.preloader-bar {
  width: min(260px, 60vw); height: 1px;
  background: var(--line);
  margin: 0 auto 14px;
  overflow: hidden;
}
.preloader-fill { width: 0%; height: 100%; background: var(--gold); }
.preloader-count {
  font-size: 0.7rem; letter-spacing: 0.3em; color: var(--ink-dim);
}

/* ═══════════ CURSOR ═══════════ */
.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0;
  border-radius: 50%; pointer-events: none; z-index: 999;
}
.cursor {
  width: 36px; height: 36px;
  border: 1px solid rgba(201, 162, 94, 0.55);
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease),
              background 0.3s, border-color 0.3s;
}
.cursor.is-hover {
  width: 64px; height: 64px;
  background: rgba(201, 162, 94, 0.1);
  border-color: var(--gold);
}
.cursor-dot {
  width: 4px; height: 4px; background: var(--gold);
  transform: translate(-50%, -50%);
}
@media (hover: none), (max-width: 768px) {
  .cursor, .cursor-dot { display: none; }
}

/* ═══════════ NAVIGATION ═══════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px clamp(20px, 4vw, 56px);
  transition: background 0.5s, padding 0.5s, backdrop-filter 0.5s;
}
.nav.is-scrolled {
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.3rem; letter-spacing: 0.32em; font-weight: 500;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 3vw, 40px); }
.nav-links a {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-dim); transition: color 0.3s;
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  border: 1px solid var(--gold);
  padding: 10px 22px;
  color: var(--gold) !important;
  transition: background 0.35s, color 0.35s !important;
}
.nav-cta:hover { background: var(--gold); color: #0a0a0a !important; }

.nav-burger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 7px; padding: 6px;
}
.nav-burger span {
  width: 26px; height: 1.5px; background: var(--ink);
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(4.25px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { transform: translateY(-4.25px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(10, 10, 10, 0.97);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 34px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--serif); font-size: 2rem; letter-spacing: 0.1em;
  color: var(--ink-dim); transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative; height: 100svh; min-height: 640px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-video-wrap { position: absolute; inset: 0; }
.hero-video {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0.7) 100%),
    linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.25) 40%, rgba(10,10,10,0.9) 100%);
}
.hero-grain {
  position: absolute; inset: -100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.06;
  animation: grain 8s steps(10) infinite;
  pointer-events: none;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-4%, 3%); }
  40% { transform: translate(3%, -5%); }
  60% { transform: translate(-3%, 4%); }
  80% { transform: translate(4%, -2%); }
}

.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 20px; }
.hero-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.5em; color: var(--gold-soft);
  margin-bottom: 26px;
}
.hero-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(3.2rem, 10vw, 8.2rem);
  line-height: 1.02; letter-spacing: 0.01em;
  margin-bottom: 30px;
}
.line-mask { display: block; overflow: hidden; }
.line-mask .line { display: block; }
.line-italic { font-style: italic; color: var(--gold-soft); }
.hero-sub {
  color: var(--ink-dim); font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  max-width: 560px; margin: 0 auto 42px;
}
.hero-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 17px 38px;
  border: 1px solid var(--gold);
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.3s;
  cursor: pointer;
}
.btn-solid { background: var(--gold); color: #0a0a0a; }
.btn-solid:hover { background: transparent; color: var(--gold); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(242,237,230,0.35); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-bottom {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 56px) 32px;
}
.hero-scroll {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.68rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--ink-dim);
}
.hero-scroll-line {
  width: 1px; height: 56px; background: var(--line); position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: ""; position: absolute; top: -50%; left: 0;
  width: 100%; height: 50%; background: var(--gold);
  animation: scrollLine 2s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { top: -50%; } 100% { top: 110%; }
}
.hero-meta {
  display: flex; flex-direction: column; gap: 6px; text-align: right;
  font-size: 0.7rem; letter-spacing: 0.22em; color: var(--ink-dim);
  text-transform: uppercase;
}

/* ═══════════ MARQUEE ═══════════ */
.marquee {
  border-block: 1px solid var(--line);
  padding: 22px 0; overflow: hidden;
  background: var(--bg-soft);
}
.marquee-track {
  display: flex; align-items: center; gap: 48px;
  width: max-content; will-change: transform;
}
.marquee-track span {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  color: var(--ink-dim); white-space: nowrap;
}
.marquee-track i { color: var(--gold); font-style: normal; font-size: 0.85rem; }

/* ═══════════ SECTION HEADINGS ═══════════ */
.section-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.section-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1.06; margin-bottom: 28px;
}
.section-title em { font-style: italic; color: var(--gold-soft); }

/* ═══════════ ABOUT ═══════════ */
.about { background: var(--bg); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px); align-items: center;
}
.about-body { color: var(--ink-dim); max-width: 480px; margin-bottom: 48px; }
.about-stats { display: flex; gap: clamp(28px, 4vw, 56px); }
.stat-num {
  font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--gold-soft); display: block; line-height: 1;
}
.stat-label {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-dim); margin-top: 8px; display: block;
}
.about-images { position: relative; height: clamp(420px, 46vw, 620px); }
.about-img {
  position: absolute; overflow: hidden; border-radius: 2px;
}
.about-img img { transition: transform 0.8s var(--ease); }
.about-img:hover img { transform: scale(1.06); }
.about-img-a { width: 62%; height: 74%; top: 0; left: 0; z-index: 2; }
.about-img-b { width: 48%; height: 58%; bottom: 0; right: 0; border: 6px solid var(--bg); }

/* ═══════════ SIGNATURE DISHES ═══════════ */
.signature { background: var(--bg-soft); }
.signature .container:first-child { margin-bottom: clamp(40px, 5vw, 70px); }
.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 36px);
}
.dish-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.5s;
}
.dish-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 162, 94, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}
.dish-img { aspect-ratio: 4 / 5; overflow: hidden; }
.dish-img img {
  transition: transform 0.9s var(--ease), filter 0.5s;
  filter: saturate(0.92);
}
.dish-card:hover .dish-img img { transform: scale(1.07); filter: saturate(1.05); }
.dish-info { padding: 26px 26px 30px; position: relative; }
.dish-info h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 1.45rem; margin-bottom: 8px;
}
.dish-info p { color: var(--ink-dim); font-size: 0.85rem; max-width: 85%; }
.dish-price {
  position: absolute; top: 28px; right: 26px;
  font-family: var(--serif); font-size: 1.2rem; color: var(--gold);
}

/* ═══════════ PARALLAX BREAK ═══════════ */
.break {
  position: relative; height: clamp(420px, 62vh, 640px);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.break-bg { position: absolute; inset: -18% 0; }
.break-bg::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(10, 10, 10, 0.62);
}
.break-content { position: relative; z-index: 2; text-align: center; padding: 0 20px; }
.break-content h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem); line-height: 1.1;
}
.break-content em { font-style: italic; color: var(--gold-soft); }
.break-content p {
  margin-top: 20px; color: var(--ink-dim);
  letter-spacing: 0.25em; text-transform: uppercase; font-size: 0.72rem;
}

/* ═══════════ MENU ═══════════ */
.menu { background: var(--bg); }
.menu-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(44px, 6vw, 100px);
}
.menu-img {
  margin-top: 44px; height: clamp(320px, 34vw, 480px);
  overflow: hidden; border-radius: 2px;
}
.menu-list { display: flex; flex-direction: column; gap: 8px; padding-top: 12px; }
.menu-item {
  padding: 26px 4px; border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease);
}
.menu-item:hover { padding-left: 14px; }
.menu-item-head { display: flex; align-items: baseline; gap: 14px; }
.menu-item h4 {
  font-family: var(--serif); font-weight: 500; font-size: 1.35rem;
  white-space: nowrap;
}
.menu-dots {
  flex: 1; border-bottom: 1px dotted rgba(242, 237, 230, 0.22);
  transform: translateY(-5px);
}
.menu-price { font-family: var(--serif); font-size: 1.15rem; color: var(--gold); }
.menu-item p { color: var(--ink-dim); font-size: 0.84rem; margin-top: 6px; }
.menu-btn { margin-top: 34px; text-align: center; }

/* ═══════════ GALLERY ═══════════ */
.gallery { background: var(--bg-soft); }
.gallery .container:first-child { margin-bottom: clamp(40px, 5vw, 70px); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(150px, 15vw, 230px);
  grid-auto-flow: dense;
  gap: clamp(12px, 1.6vw, 22px);
}
.g-item {
  overflow: hidden; border-radius: 2px; position: relative;
}
.g-item img {
  transition: transform 0.9s var(--ease), filter 0.5s;
  filter: saturate(0.9);
}
.g-item:hover img { transform: scale(1.08); filter: saturate(1.1); }
.g-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.4), transparent 45%);
  opacity: 0; transition: opacity 0.5s;
}
.g-item:hover::after { opacity: 1; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ═══════════ TESTIMONIALS ═══════════ */
.testimonials { background: var(--bg); text-align: center; }
.quote-wrap { position: relative; min-height: 220px; margin-top: 20px; }
.quote {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  pointer-events: none;
}
.quote.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.quote p {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.35; max-width: 820px; margin: 0 auto 26px;
}
.quote cite {
  font-style: normal; font-size: 0.74rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
}
.quote-nav { display: flex; gap: 12px; justify-content: center; margin-top: 30px; }
.quote-dot {
  width: 34px; height: 2px; border: none; cursor: pointer;
  background: var(--line); transition: background 0.4s;
}
.quote-dot.active { background: var(--gold); }

/* ═══════════ RESERVE ═══════════ */
.reserve { position: relative; overflow: hidden; }
.reserve-bg { position: absolute; inset: 0; }
.reserve-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.82) 55%, rgba(10,10,10,0.6) 100%);
}
.reserve-inner { position: relative; z-index: 2; max-width: 640px; margin: 0; padding-left: max(calc((100vw - 1240px) / 2), 4vw); }
.reserve-form { margin-top: 20px; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px; margin-bottom: 22px;
}
.form-field label {
  display: block; font-size: 0.68rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--ink-dim); margin-bottom: 10px;
}
.form-field input, .form-field select {
  width: 100%; background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line); color: var(--ink);
  padding: 15px 16px; font-family: var(--sans); font-size: 0.9rem;
  border-radius: 2px; outline: none;
  transition: border-color 0.3s, background 0.3s;
  color-scheme: dark;
}
.form-field input:focus, .form-field select:focus {
  border-color: var(--gold); background: rgba(201, 162, 94, 0.06);
}
.reserve-btn { margin-top: 10px; width: 100%; }
.reserve-note { margin-top: 16px; font-size: 0.82rem; color: var(--gold-soft); min-height: 1.2em; }

/* ═══════════ FOOTER ═══════════ */
.footer { background: #070707; border-top: 1px solid var(--line); padding: 70px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 56px;
}
.footer-brand p { color: var(--ink-dim); margin-top: 18px; font-size: 0.88rem; }
.footer-col h5 {
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; font-weight: 500;
}
.footer-col p { color: var(--ink-dim); font-size: 0.88rem; }
.footer-col p a { color: var(--ink-dim); transition: color 0.3s; }
.footer-col p a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  border-top: 1px solid var(--line);
  padding-block: 24px;
  font-size: 0.72rem; letter-spacing: 0.14em; color: var(--ink-dim);
}

/* ═══════════ ACTIVE NAV LINK ═══════════ */
.nav-links a.is-active { color: var(--ink); }
.nav-links a.is-active:not(.nav-cta)::after { transform: scaleX(1); }
.mobile-menu a.is-active { color: var(--gold); }

/* ═══════════ PAGE HERO (interior pages) ═══════════ */
.page-hero {
  position: relative; height: clamp(420px, 62svh, 620px);
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.page-hero-media { position: absolute; inset: 0; overflow: hidden; }
.page-hero-img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
}
.page-hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.3) 45%, rgba(10,10,10,0.94) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  width: min(1240px, 92vw); margin-inline: auto;
  padding-bottom: clamp(44px, 6vw, 80px);
}
.page-hero-content .hero-eyebrow { margin-bottom: 18px; }
.page-hero-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 1.04;
}
.page-hero-title em { font-style: italic; color: var(--gold-soft); }
.page-hero-sub {
  color: var(--ink-dim); max-width: 560px;
  margin-top: 18px; font-size: clamp(0.9rem, 1.3vw, 1rem);
}
.breadcrumb {
  font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-dim); margin-top: 26px;
}
.breadcrumb a { color: var(--ink-dim); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-style: normal; color: var(--gold); margin: 0 10px; }

/* ═══════════ PILLAR CARDS (home) ═══════════ */
.pillar-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 32px);
}
.pillar-card {
  position: relative; display: block;
  height: clamp(420px, 40vw, 560px);
  overflow: hidden; border-radius: 2px;
  border: 1px solid var(--line);
}
.pillar-card img {
  transition: transform 1s var(--ease), filter 0.6s;
  filter: saturate(0.88) brightness(0.85);
}
.pillar-card:hover img { transform: scale(1.06); filter: saturate(1.05) brightness(0.95); }
.pillar-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.2) 55%, transparent 100%);
}
.pillar-info {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: clamp(24px, 2.6vw, 38px);
}
.pillar-info .pillar-tag {
  font-size: 0.66rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 12px;
}
.pillar-info h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem); line-height: 1.1;
}
.pillar-info p { color: var(--ink-dim); font-size: 0.85rem; margin-top: 10px; max-width: 320px; }
.pillar-link {
  display: inline-block; margin-top: 18px;
  font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-soft);
  border-bottom: 1px solid rgba(201, 162, 94, 0.4);
  padding-bottom: 5px;
  transition: color 0.3s, border-color 0.3s;
}
.pillar-card:hover .pillar-link { color: var(--gold); border-color: var(--gold); }

/* ═══════════ SPLIT ROWS (alternating image / text) ═══════════ */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px); align-items: center;
}
.split + .split { margin-top: clamp(70px, 9vw, 130px); }
.split-img {
  height: clamp(340px, 36vw, 520px);
  overflow: hidden; border-radius: 2px;
}
.split-img img { transition: transform 0.8s var(--ease); }
.split-img:hover img { transform: scale(1.05); }
.split.reverse .split-img { order: 2; }
.split-body { color: var(--ink-dim); max-width: 480px; }
.split-body p + p { margin-top: 16px; }
.split-text .btn { margin-top: 34px; }
.split-meta {
  display: flex; gap: clamp(24px, 3vw, 44px); margin-top: 30px;
  padding-top: 26px; border-top: 1px solid var(--line);
}
.split-meta div span:first-child {
  font-family: var(--serif); font-size: 1.4rem; color: var(--gold-soft); display: block;
}
.split-meta div span:last-child {
  font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-dim); margin-top: 4px; display: block;
}

/* ═══════════ FEATURE GRID (amenities / services) ═══════════ */
.feature-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(40px, 5vw, 60px);
}
.feature {
  padding: clamp(24px, 2.6vw, 36px);
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 2px;
  transition: border-color 0.4s, transform 0.5s var(--ease);
}
.feature:hover { border-color: rgba(201, 162, 94, 0.4); transform: translateY(-6px); }
.feature i {
  font-style: normal; color: var(--gold); font-size: 1rem;
  display: block; margin-bottom: 16px;
}
.feature h4 {
  font-family: var(--serif); font-weight: 500; font-size: 1.2rem;
  margin-bottom: 8px;
}
.feature p { color: var(--ink-dim); font-size: 0.82rem; }

/* ═══════════ ROOM / VENUE CARDS ═══════════ */
.room-card .dish-img { aspect-ratio: 4 / 3; }
.room-tag, .venue-tag {
  display: inline-block;
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201, 162, 94, 0.35);
  padding: 5px 12px; border-radius: 2px; margin-bottom: 14px;
}
.room-specs {
  display: flex; gap: 18px; margin-top: 14px;
  font-size: 0.74rem; color: var(--ink-dim); letter-spacing: 0.06em;
}
.room-specs i { font-style: normal; color: var(--gold); margin-right: 6px; }
.room-price-line {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line);
  display: flex; align-items: baseline; justify-content: space-between;
}
.room-price { font-family: var(--serif); font-size: 1.3rem; color: var(--gold); }
.room-price small { font-family: var(--sans); font-size: 0.66rem; color: var(--ink-dim); letter-spacing: 0.14em; }

/* ═══════════ TIMELINE (about) ═══════════ */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 40px; }
.timeline::before {
  content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px;
  width: 1px; background: var(--line);
}
.timeline-item { position: relative; padding-bottom: clamp(40px, 5vw, 60px); }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ""; position: absolute; left: -36px; top: 8px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 5px rgba(201, 162, 94, 0.15);
}
.timeline-year {
  font-family: var(--serif); font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--gold-soft); display: block; line-height: 1;
}
.timeline-item h4 {
  font-family: var(--serif); font-weight: 500; font-size: 1.25rem;
  margin: 12px 0 8px;
}
.timeline-item p { color: var(--ink-dim); font-size: 0.88rem; max-width: 560px; }

/* ═══════════ CTA BAND ═══════════ */
.cta-band {
  position: relative; overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--bg-soft);
  text-align: center;
  padding: clamp(70px, 9vw, 120px) 20px;
}
.cta-band h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.6rem); line-height: 1.1;
  margin-bottom: 16px;
}
.cta-band h2 em { font-style: italic; color: var(--gold-soft); }
.cta-band p { color: var(--ink-dim); max-width: 520px; margin: 0 auto 36px; }
.cta-band .hero-actions { justify-content: center; }

/* ═══════════ MENU COURSE HEADINGS ═══════════ */
.menu-course {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2rem); color: var(--gold-soft);
  margin: clamp(44px, 5vw, 64px) 0 6px;
}
.menu-course:first-child { margin-top: 0; }
.menu-course-note {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-dim); margin-bottom: 10px;
}
.veg-dot {
  display: inline-block; width: 9px; height: 9px;
  border: 1.5px solid #6faf6f; border-radius: 2px; margin-right: 9px;
  position: relative; top: 0; flex: none;
}
.veg-dot::after {
  content: ""; position: absolute; inset: 2px;
  background: #6faf6f; border-radius: 50%;
}
.veg-dot.non-veg { border-color: #b0603f; }
.veg-dot.non-veg::after { background: #b0603f; }

/* ═══════════ GALLERY SECTION HEADINGS ═══════════ */
.gallery-section-title {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2rem); color: var(--gold-soft);
  margin: clamp(50px, 6vw, 80px) 0 26px;
  display: flex; align-items: center; gap: 20px;
}
.gallery-section-title::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}

/* ═══════════ CONTACT ═══════════ */
.contact-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(44px, 6vw, 90px); align-items: start;
}
.contact-blocks { display: flex; flex-direction: column; gap: 30px; margin-top: 10px; }
.contact-block {
  padding: 26px 28px;
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 2px;
}
.contact-block h5 {
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; font-weight: 500;
}
.contact-block p { color: var(--ink-dim); font-size: 0.9rem; }
.contact-block a { color: var(--ink); transition: color 0.3s; }
.contact-block a:hover { color: var(--gold); }

.form-field textarea {
  width: 100%; background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line); color: var(--ink);
  padding: 15px 16px; font-family: var(--sans); font-size: 0.9rem;
  border-radius: 2px; outline: none; resize: vertical; min-height: 120px;
  transition: border-color 0.3s, background 0.3s;
  color-scheme: dark;
}
.form-field textarea:focus {
  border-color: var(--gold); background: rgba(201, 162, 94, 0.06);
}

/* ═══════════ REVEAL PRE-STATES (JS removes) ═══════════ */
.js [data-reveal],
.js [data-reveal-card] {
  opacity: 0;
}
.js .line-mask .line {
  transform: translateY(110%);
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .dish-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-card { height: clamp(320px, 44vw, 440px); }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .about-grid, .menu-grid { grid-template-columns: 1fr; }
  .about-images { order: -1; height: clamp(340px, 60vw, 460px); }
  .hero-meta { display: none; }
  .hide-mobile { display: none; }
  .reserve-inner { padding-inline: 4vw; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-img { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .dish-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .g-wide { grid-column: span 2; }
  .feature-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-grain, .hero-scroll-line::after { animation: none; }
  .js [data-reveal], .js [data-reveal-card] { opacity: 1; }
  .js .line-mask .line { transform: none; }
}
