/* ==========================================================================
   SEVANA — 100% Vegetarian Restaurant in Eastcote, London
   Exact Design System & Stylesheet (Identical to reference site)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=Manrope:wght@400;500;600;700&family=Caveat:wght@500&display=swap');

/* --- Design Tokens --- */
:root {
  --radius: 0.25rem;
  --bottle: #163b2f;
  /* deep bottle green */
  --bottle-deep: #0f2a20;
  /* dark bottle green */
  --cream: #f5f0e6;
  /* warm cream */
  --stone: #ded8cc;
  /* stone */
  --gold: #c99e4e;
  /* warm gold */
  --gold-hover: #d4ab5d;
  --ink: #152922;
  /* dark ink */
  --background: #faf8f5;
  /* light background */
  --foreground: var(--ink);
  --card: #ffffff;
  --card-foreground: var(--ink);
  --muted: #eae5dc;
  --muted-foreground: #5b756b;
  --accent: var(--gold);
  --accent-foreground: var(--bottle-deep);
  --border: #e3ded4;

  /* Typography */
  --font-display: "Fraunces", "Times New Roman", Georgia, serif;
  --font-sans: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --font-script: "Caveat", cursive;
}

/* --- Base & Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Lenis Smooth Scrolling --- */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}


body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
}

::selection {
  background: var(--bottle);
  color: var(--cream);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  text-wrap: balance;
  font-weight: 400;
  line-height: 1.02;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: inherit;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

button {
  font: inherit;
  letter-spacing: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

address {
  font-style: normal;
}

/* --- Typography Utilities --- */
.font-display {
  font-family: var(--font-display);
}

.font-sans {
  font-family: var(--font-sans);
}

.font-script {
  font-family: var(--font-script);
}

.display-xl {
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  font-size: clamp(2.75rem, 11vw, 10rem);
  font-weight: 400;
  line-height: 0.96;
}

.display-lg {
  font-family: var(--font-display);
  letter-spacing: -0.035em;
  font-size: clamp(2.25rem, 7.5vw, 6.5rem);
  font-weight: 400;
  line-height: 0.98;
}

.display-md {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  font-size: clamp(1.75rem, 4.2vw, 3.25rem);
  font-weight: 400;
  line-height: 1;
}

.body-lede {
  letter-spacing: -0.01em;
  font-size: clamp(1.0625rem, 1.3vw, 1.3125rem);
  line-height: 1.6;
}

.eyebrow {
  font-family: var(--font-sans);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 1.0875rem;
  font-weight: 600;
}

/* --- Colors --- */
.bg-bottle {
  background-color: var(--bottle);
}

.bg-bottle-deep {
  background-color: var(--bottle-deep);
}

.bg-cream {
  background-color: var(--cream);
}

.bg-stone {
  background-color: var(--stone);
}

.bg-gold {
  background-color: var(--gold);
}

.bg-background {
  background-color: var(--background);
}

.text-cream {
  color: var(--cream);
}

.text-bottle {
  color: var(--bottle);
}

.text-bottle-deep {
  color: var(--bottle-deep);
}

.text-gold {
  color: var(--gold);
}

.text-muted {
  color: var(--muted-foreground);
}

/* --- Layout --- */
.container-custom {
  width: 100%;
  /* max-width: 110rem; */
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 640px) {
  .container-custom {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background-color: var(--cream);
  color: var(--bottle);
  border: 1px solid var(--cream);
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--bottle-deep);
}

.btn-secondary {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border: 1px solid rgba(245, 240, 230, 0.35);
  color: var(--cream);
  background: transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--cream);
  background-color: var(--cream);
  color: var(--bottle);
}

.btn-bottle-outline {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border: 1px solid rgba(22, 59, 47, 0.3);
  color: var(--bottle);
  background: transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-bottle-outline:hover {
  border-color: var(--bottle);
  background-color: var(--bottle);
  color: var(--cream);
}

.btn-link-hover {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: inherit;
  transition: color 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-link-hover:hover {
  color: var(--gold);
}

/* --- Animations & Effects --- */
@keyframes ken-burns {
  0% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1.12);
  }
}

.ken-burns {
  animation: 18s ease-out both ken-burns;
}

.img-zoom {
  overflow: hidden;
  position: relative;
  background-color: rgba(222, 216, 204, 0.6);
}

.img-zoom img {
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-zoom:hover img {
  transform: scale(1.05);
  filter: brightness(1.02);
}

/* --- Upgraded Scroll Reveal System --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  will-change: opacity, transform;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade {
  opacity: 0;
  will-change: opacity;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95) translateY(24px);
  will-change: opacity, transform;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal[data-shown="true"],
.reveal.shown,
.reveal-fade[data-shown="true"],
.reveal-fade.shown,
.reveal-scale[data-shown="true"],
.reveal-scale.shown {
  opacity: 1;
  transform: none;
}

/* Staggered entry classes for grids and item sequences */
.stagger-1 {
  transition-delay: 0.08s;
}

.stagger-2 {
  transition-delay: 0.16s;
}

.stagger-3 {
  transition-delay: 0.24s;
}

.stagger-4 {
  transition-delay: 0.32s;
}

.stagger-5 {
  transition-delay: 0.40s;
}

.stagger-6 {
  transition-delay: 0.48s;
}


/* --- Aspect Ratios --- */
.aspect-\[3\/2\] {
  aspect-ratio: 3/2;
}

.aspect-\[3\/4\] {
  aspect-ratio: 3/4;
}

.aspect-\[4\/5\] {
  aspect-ratio: 4/5;
}

.aspect-square {
  aspect-ratio: 1;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  background-color: transparent;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  -webkit-transition: background-color 0.4s ease, -webkit-backdrop-filter 0.4s ease;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.scrolled {
  background-color: rgba(15, 42, 32, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
}

.header-logo-img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}

.header-logo:hover .header-logo-img {
  transform: rotate(12deg) scale(1.05);
}

.footer-logo-img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

@media (min-width: 640px) {
  .header-logo {
    font-size: 2.5rem;
    letter-spacing: 0.22em;
  }
}

.header-menu-list {
  display: none;
  align-items: center;
  gap: 2.25rem;
  color: var(--cream);
}

@media (min-width: 1024px) {
  .header-menu-list {
    display: flex;
  }
}

.header-nav-link {
  font-family: var(--font-sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.7875rem;
  font-weight: 600;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  position: relative;
  color: var(--cream);
}

.header-nav-link:hover {
  color: var(--gold);
}

.header-cta-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta-desktop {
    display: block;
  }
}

.mobile-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cream);
  padding: 0.5rem;
  min-height: 2.75rem;
  font-family: var(--font-sans);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.6875rem;
  font-weight: 600;
  background: transparent;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-nav-btn {
    display: none;
  }
}

.mobile-nav-panel {
  display: none;
  background-color: var(--cream);
  color: var(--bottle);
  margin-top: 0.75rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.mobile-nav-panel.open {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-nav-panel {
    display: none !important;
  }
}

.mobile-nav-panel ul {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 1.25rem;
}

@media (min-width: 640px) {
  .mobile-nav-panel ul {
    padding: 0.5rem 2rem;
  }
}

.mobile-nav-panel li {
  border-bottom: 1px solid rgba(22, 59, 47, 0.1);
}

.mobile-nav-panel li:last-child {
  border-bottom: none;
}

.mobile-nav-panel a {
  display: block;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--bottle);
}

/* ==========================================================================
   Hero Slider Section (Sakuri Style)
   ========================================================================== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 640px;
  max-height: 1100px;
  overflow: hidden;
  background-color: #0d1e17;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.1s;
  transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.1s;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  /* -webkit-mask-image: -webkit-radial-gradient(white, black); */
  /* mask-image: radial-gradient(white, black); */
}

.hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
  -webkit-transition: -webkit-transform 7.5s cubic-bezier(0.1, 0.5, 0.1, 1);
  transition: transform 7.5s cubic-bezier(0.1, 0.5, 0.1, 1);
}

.hero-slide.active .hero-slide-bg img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgb(7 20 15 / 38%) 0%, rgb(7 20 15 / 30%) 30%, rgb(7 20 15 / 31%) 60%, transparent 100%), linear-gradient(to right, rgb(7 20 15 / 30%) 0%, rgb(7 20 15 / 30%) 38%, rgb(7 20 15 / 0%) 68%, transparent 100%), linear-gradient(to bottom, rgb(7 20 15 / 42%) 0%, rgb(7 20 15 / 28%) 16%, #00000038 32%);
  pointer-events: none;
}

.hero-slide-overlay-soft {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 35%, transparent 35%, rgba(6, 16, 12, 0.42) 100%);
  pointer-events: none;
}

.hero-slide-content {
  position: relative;
  z-index: 10;
  text-align: left;
  color: #ffffff;
  width: 100%;
  max-width: 100%;
  /* max-width: 110rem; */
  padding: 0 1.25rem 5rem 1.25rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .hero-slide-content {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 5.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-slide-content {
    padding-left: 3rem;
    padding-right: 3rem;
    padding-bottom: 5.5rem;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.72);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.85s ease 0.25s, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.25s;
}

.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 0.85rem;
  height: 1px;
  background-color: rgba(245, 240, 230, 0.55);
}

.hero-eyebrow::after {
  content: "";
  display: inline-block;
  width: 0.85rem;
  height: 1px;
  background-color: rgba(245, 240, 230, 0.55);
}

.hero-slide.active .hero-eyebrow {
  opacity: 1;
  transform: translateY(0);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7.5vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  text-transform: none;
  color: #fbf9f5;
  line-height: 0.94;
  margin-bottom: 1.35rem;
  max-width: 16ch;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s ease 0.4s, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.hero-slide.active .hero-title {
  opacity: 1;
  transform: translateY(0);
}

.hero-lede {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(245, 240, 230, 0.88);
  max-width: 38rem;
  margin: 0 0 2.25rem 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease 0.55s, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.55s;
}

.hero-slide.active .hero-lede {
  opacity: 1;
  transform: translateY(0);
}

.hero-btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease 0.7s, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.7s;
}

.hero-slide.active .hero-btn-group {
  opacity: 1;
  transform: translateY(0);
}

.btn-hero-primary {
  display: inline-flex;
  min-height: 2.85rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.8rem 1.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background-color: #ebe5d8;
  color: #123024;
  border: 1px solid #ebe5d8;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-hero-primary:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #0b1f17;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.btn-hero-secondary {
  display: inline-flex;
  min-height: 2.85rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.8rem 1.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid rgba(245, 240, 230, 0.35);
  color: var(--cream);
  background: rgba(13, 30, 23, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius);
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-hero-secondary:hover {
  border-color: var(--cream);
  background-color: rgba(245, 240, 230, 0.12);
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 25;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  pointer-events: auto;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0.5rem 1rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.hero-scroll-indicator:hover {
  transform: translateX(-50%) translateY(4px);
}

.hero-scroll-text {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.55);
  transition: color 0.3s ease;
}

.hero-scroll-indicator:hover .hero-scroll-text {
  color: var(--gold);
}

.hero-scroll-line {
  width: 1px;
  height: 1.65rem;
  background: linear-gradient(to bottom, rgba(245, 240, 230, 0.55) 0%, rgba(245, 240, 230, 0) 100%);
  animation: heroScrollPulse 2.4s ease-in-out infinite;
  transition: background 0.3s ease;
}

.hero-scroll-indicator:hover .hero-scroll-line {
  background: linear-gradient(to bottom, var(--gold) 0%, rgba(201, 158, 78, 0) 100%);
}

@keyframes heroScrollPulse {

  0%,
  100% {
    transform: scaleY(0.65);
    opacity: 0.4;
  }

  50% {
    transform: scaleY(1);
    opacity: 0.95;
  }
}

.slider-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.65);
  padding: 1.5rem 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s ease, transform 0.25s ease;
}

.slider-arrow-btn:hover {
  color: #ffffff;
}

.slider-arrow-btn.prev {
  left: 2.5rem;
}

.slider-arrow-btn.prev:hover {
  transform: translateY(-50%) translateX(-4px);
}

.slider-arrow-btn.next {
  right: 2.5rem;
}

.slider-arrow-btn.next:hover {
  transform: translateY(-50%) translateX(4px);
}

@media (max-width: 768px) {
  .slider-arrow-btn.prev {
    left: 0.75rem;
  }

  .slider-arrow-btn.next {
    right: 0.75rem;
  }

  .slider-arrow-btn svg {
    width: 42px;
  }

  .hero-slider {
    min-height: 560px;
    height: 90vh;
  }

  .hero-slide-content {
    padding-top: 0;
    padding-bottom: 3.5rem;
  }

  .hero-scroll-indicator {
    display: none;
  }
}

.slider-pagination {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.slider-dot {
  width: 2.5rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.slider-dot::before {
  content: '';
  position: absolute;
  top: -8px;
  bottom: -8px;
  left: 0;
  right: 0;
}

.slider-dot.active {
  background: var(--gold);
  width: 4rem;
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.85);
}

.slider-counter {
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  margin-left: 0.75rem;
}

.slider-counter-current {
  color: var(--gold);
  font-weight: 600;
}

/* ==========================================================================
   Origins Section (Light Background, Split Layout)
   ========================================================================== */
.section-origins {
  position: relative;
  z-index: 35;
  border-top: 1px solid rgba(201, 158, 78, 0.45);
  background-color: var(--cream);
  color: var(--bottle);
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (min-width: 640px) {
  .section-origins {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

/* Decorative Overlapping Foliage Leaves */
.foliage-divider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  pointer-events: none;
  z-index: 40;
}

.foliage-leaf {
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.35));
  user-select: none;
  will-change: transform;
}

.foliage-left {
  left: -2.5rem;
  top: 0;
  transform: translateY(-50%);
  width: clamp(140px, 20vw, 320px);
  height: auto;
}

.foliage-right {
  right: -2rem;
  top: 0;
  transform: translateY(-50%);
  width: clamp(140px, 20vw, 300px);
  height: auto;
}

@media (max-width: 768px) {
  .foliage-left {
    width: clamp(110px, 26vw, 180px);
    left: -1.5rem;
  }

  .foliage-right {
    width: clamp(110px, 26vw, 170px);
    right: -1.5rem;
  }
}

.origins-layout-grid {
  display: block;
}

@media (min-width: 1024px) {
  .origins-layout-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 4rem;
  }
}

.origins-sticky-col {
  grid-column: span 5 / span 5;
}

@media (min-width: 1024px) {
  .origins-sticky-box {
    position: sticky;
    top: 8rem;
  }
}

.origins-heading-sub {
  display: block;
  color: rgba(22, 59, 47, 0.45);
}

.origins-indicators {
  margin-top: 2.5rem;
  display: none;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .origins-indicators {
    display: flex;
  }
}

.origin-indicator-item {
  transition: opacity 0.5s ease, color 0.5s ease;
  opacity: 0.35;
  color: inherit;
}

.origin-indicator-item.active {
  opacity: 1;
  color: var(--gold);
}

.origins-chapters-col {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .origins-chapters-col {
    grid-column: 7 / span 6;
    margin-top: 0;
    gap: 8rem;
  }
}

.origins-article {
  min-height: auto;
}

@media (min-width: 1024px) {
  .origins-article {
    min-height: 60vh;
  }
}

.origins-article-text {
  margin-top: 1.5rem;
}

.origins-article-text p {
  color: rgba(22, 59, 47, 0.8);
  margin-top: 1rem;
  max-width: 28rem;
}

/* ==========================================================================
   Mood / Menu Section
   ========================================================================== */
.section-menu-mood {
  background-color: var(--background);
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (min-width: 640px) {
  .section-menu-mood {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

@media (min-width: 1024px) {
  .section-menu-mood {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

.mood-section-grid {
  margin-top: 3rem;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .mood-section-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 4rem;
  }
}

.mood-tabs-col {
  grid-column: span 5 / span 5;
}

.mood-tablist {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.mood-tab-button {
  display: flex;
  min-height: 4rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  text-align: left;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
  width: 100%;
}

.mood-tab-button span:first-child {
  font-family: var(--font-display);
  font-size: 1.875rem;
}

@media (min-width: 640px) {
  .mood-tab-button span:first-child {
    font-size: 2.25rem;
  }
}

.mood-tab-arrow {
  color: var(--gold);
  padding-right: 0.25rem;
  transform: translateX(-0.5rem);
  opacity: 0;
  transition: all 0.3s ease;
}

.mood-tab-button.active {
  color: var(--bottle);
}

.mood-tab-button.active .mood-tab-arrow {
  transform: translateX(0);
  opacity: 1;
}

.mood-panel-body {
  margin-top: 2rem;
}

.mood-items-ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mood-items-ul li {
  color: rgba(21, 41, 34, 0.8);
  font-size: 1.125rem;
}

.mood-showcase-col {
  grid-column: span 12 / span 12;
}

@media (min-width: 1024px) {
  .mood-showcase-col {
    grid-column: 7 / span 6;
  }
}

.mood-image-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background-color: rgba(222, 216, 204, 0.4);
}

.mood-slide-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.5s ease;
}

.mood-slide-layer.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}


/* ==========================================================================
   Features / Core Values Section
   ========================================================================== */
.section-features {
  background-color: var(--cream);
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

@media (min-width: 640px) {
  .section-features {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (min-width: 1024px) {
  .section-features {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem 2rem;
  text-align: center;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2.5rem;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.5rem;
}

.feature-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.feature-item:hover .feature-icon-wrap {
  transform: translateY(-4px) scale(1.05);
}

.feature-icon {
  width: 4.5rem;
  height: 4.5rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--bottle);
  line-height: 1.25;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.feature-description {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  max-width: 26ch;
  margin: 0 auto;
}

/* ==========================================================================
   Seva Section — Royal Indian Luxury Heritage
   ========================================================================== */
.section-seva-royal {
  background-color: #081a13;
  color: #f6f1e7;
  padding: 7rem 0 8rem 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

@media (min-width: 1024px) {
  .section-seva-royal {
    padding: 8rem 0 9rem 0;
  }
}

/* Ambient Warm Candlelight Glow */
.royal-ambient-light {
  position: absolute;
  top: 10%;
  right: 15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 158, 78, 0.1) 0%, rgba(8, 26, 19, 0) 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

/* Architectural Indian Jali / Arch Line Watermark */
.royal-jali-bg {
  position: absolute;
  top: -50px;
  right: -30px;
  width: 580px;
  height: 720px;
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(rgba(201, 158, 78, 0.6) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Two-Column Grid */
.royal-grid-container {
  display: grid;
  gap: 3.5rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .royal-grid-container {
    grid-template-columns: 1fr 1.25fr;
    gap: 4.5rem;
    align-items: start;
  }
}

/* Left Narrative Column */
.royal-content-col {
  position: relative;
}

/* Royal Eyebrow with Ornamental Diamond Flourishes */
.royal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.6rem;
}

.royal-eyebrow .ornament {
  font-size: 0.65rem;
  opacity: 0.75;
}

/* Sanskrit Hindi Watermark + English Foreground Headline Lockup */
.royal-headline-lockup {
  position: relative;
  margin-bottom: 2.25rem;
}

/* Sanskrit "सेवा" Watermark (High-Contrast Royal Devanagari) */
.royal-devnagari-watermark {
  position: absolute;
  top: -1.75rem;
  left: -0.4rem;
  font-family: 'Rozha One', 'Noto Serif Devanagari', serif;
  font-size: clamp(6.5rem, 13vw, 12rem);
  line-height: 0.86;
  color: rgba(22, 65, 48, 0.65);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  font-weight: 400;
  letter-spacing: -0.01em;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.royal-title-english {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 7.5vw, 6.6rem);
  line-height: 0.94;
  font-weight: 400;
  color: #f6f1e7;
  letter-spacing: -0.03em;
  margin: 0;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

.royal-subtitle-english {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.15;
  font-weight: 400;
  color: #cca45c;
  letter-spacing: -0.02em;
  margin-top: 0.4rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Narrative Paragraphs */
.royal-body-lede {
  font-size: clamp(1rem, 1.3vw, 1.42rem);
  line-height: 1.65;
  color: rgba(246, 241, 231, 0.88);
  font-weight: 400;
  margin-bottom: 1.65rem;
  /* max-width: 40rem; */
}

.royal-body-detail {
  font-size: clamp(0.92rem, 1.18vw, 1.02rem);
  line-height: 1.7;
  color: rgba(246, 241, 231, 0.72);
  margin-bottom: 0;
  max-width: 35rem;
}

/* Royal Heritage Motto Card */
.royal-motto-box {
  margin-bottom: 2.5rem;
  padding: 1.15rem 1.4rem;
  border-left: 2px solid var(--gold);
  background: linear-gradient(90deg, rgba(201, 158, 78, 0.08) 0%, rgba(201, 158, 78, 0) 100%);
  border-radius: 0 8px 8px 0;
  max-width: 34rem;
}

.royal-motto-sanskrit {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: #f6f1e7;
  line-height: 1.4;
}

.royal-motto-translation {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
}

/* Buttons */
.royal-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.75rem;
}

.btn-royal-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 1px solid rgba(201, 158, 78, 0.7);
  background: linear-gradient(135deg, rgba(201, 158, 78, 0.15) 0%, rgba(201, 158, 78, 0.04) 100%);
  color: #f6f1e7;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-size: 0.92rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-royal-gold:hover {
  background: var(--gold);
  color: #081a13;
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(201, 158, 78, 0.35);
  transform: translateY(-2px);
}

.btn-royal-story {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: rgba(246, 241, 231, 0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 158, 78, 0.4);
  padding-bottom: 0.25rem;
  transition: all 0.25s ease;
}

.btn-royal-story:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
  gap: 0.85rem;
}

/* ==========================================================================
   Right Column: Royal Showcase Image Slider (Clean Rounded Showcase)
   ========================================================================== */
.royal-gallery-stage {
  position: relative;
  /* width: 80%; */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: clamp(4.25rem, 6.5vw, 14.2rem);
  /* left: 130px; */
}

.seva-slider-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 420px;
  max-height: 880px;
  border-radius: 1.25rem;
  overflow: hidden;
  background-color: #081a13;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 158, 78, 0.18);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}

.seva-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.seva-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.85s;
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.85s;
  z-index: 1;
}

.seva-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.seva-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  -webkit-transform: scale(1.0);
  transform: scale(1.0);
  -webkit-transition: -webkit-transform 6s ease;
  transition: transform 6s ease;
}

.seva-slide.active img {
  -webkit-transform: scale(1.0);
  transform: scale(1.0);
}

/* Fast Motion Dynamics for Slide 2 */
.seva-slide.slide-fast {
  -webkit-transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s;
}

.seva-slide.slide-fast img {
  -webkit-transition: -webkit-transform 2.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: transform 2.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.seva-slide.slide-fast.active img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

/* Subtle Vignette Overlay */
.seva-slider-viewport::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 26, 19, 0.45) 0%, transparent 40%),
    linear-gradient(to bottom, rgba(8, 26, 19, 0.25) 0%, transparent 25%);
  pointer-events: none;
  z-index: 3;
}

/* Navigation Arrow Controls */
.seva-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(8, 26, 19, 0.72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 158, 78, 0.35);
  color: #f6f1e7;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.seva-slider-viewport:hover .seva-slider-arrow,
.seva-slider-arrow:focus-visible {
  opacity: 1;
  visibility: visible;
}

.seva-slider-arrow.prev {
  left: 1.25rem;
}

.seva-slider-arrow.next {
  right: 1.25rem;
}

.seva-slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #081a13;
  transform: translateY(-50%) scale(1.08);
}

/* Pagination Dots */
.seva-slider-pagination {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(8, 26, 19, 0.65);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 158, 78, 0.25);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.seva-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(246, 241, 231, 0.38);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.seva-dot:hover {
  background: rgba(246, 241, 231, 0.75);
}

.seva-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 999px;
}

@media (max-width: 768px) {
  .seva-slider-viewport {
    aspect-ratio: 16 / 11;
    min-height: 280px;
    border-radius: 1rem;
  }

  .seva-slider-arrow {
    opacity: 1;
    visibility: visible;
    width: 2.35rem;
    height: 2.35rem;
  }

  .seva-slider-arrow.prev {
    left: 0.75rem;
  }

  .seva-slider-arrow.next {
    right: 0.75rem;
  }
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.section-reviews-block {
  background-color: var(--bottle-deep);
  color: var(--cream);
  padding-bottom: 6rem;
}

@media (min-width: 640px) {
  .section-reviews-block {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
}

/* ==========================================================================
   Reviews Carousel (Continuous Glide + Cursor Drag + Nav Arrows)
   ========================================================================== */
.reviews-header-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.reviews-carousel-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviews-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(14, 43, 30, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-bright, #ebd08d);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
}

.reviews-nav-btn:hover {
  background: var(--gold, #c99e4e);
  color: #061710;
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.45);
}

.reviews-carousel-wrapper {
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.reviews-carousel-viewport {
  overflow: hidden;
  position: relative;
  width: 100%;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  padding: 0.5rem 0 1.5rem 0;
}

.reviews-carousel-viewport.is-dragging {
  cursor: grabbing !important;
}

.reviews-carousel-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  will-change: transform;
}

.reviews-carousel-slide {
  flex: 0 0 500px;
  width: 500px;
  display: flex;
}

@media (max-width: 1024px) {
  .reviews-carousel-slide {
    flex: 0 0 440px;
    width: 440px;
  }
}

@media (max-width: 768px) {
  .reviews-carousel-slide {
    flex: 0 0 360px;
    width: 360px;
  }
}

@media (max-width: 480px) {
  .reviews-carousel-slide {
    flex: 0 0 calc(100vw - 3rem);
    width: calc(100vw - 3rem);
  }
}

.reviews-carousel-slide .review-box,
.review-box {
  width: 100%;
  min-height: 250px;
  border: 1px solid rgba(245, 240, 230, 0.15);
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-box-quote {
  font-family: var(--font-display);
  color: rgba(245, 240, 230, 0.9);
  font-size: 1.5rem;
  line-height: 1.25;
}

.review-box-author {
  color: rgba(245, 240, 230, 0.45);
  margin-top: 1.5rem;
}

/* ==========================================================================
   Life at Sevana (Photo Grid)
   ========================================================================== */
.section-life-gallery {
  background-color: var(--background);
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (min-width: 640px) {
  .section-life-gallery {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

/* ==========================================================================
   Life at Sevana — Curated 8-Image Editorial Gallery Mosaic
   ========================================================================== */
.sevana-gallery-mosaic {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .sevana-gallery-mosaic {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
  }
}

.sevana-gallery-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .sevana-gallery-col {
    gap: 1.25rem;
  }
}

.sevana-gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: #1a3429;
  /* border: 1px solid rgba(22, 59, 47, 0.1); */
  box-shadow: 0 8px 22px -4px rgba(22, 59, 47, 0.08);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease;
  display: block;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
}

.sevana-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -8px rgba(15, 42, 32, 0.2);
  border-color: rgba(201, 158, 78, 0.5);
}

.sevana-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.sevana-gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.03);
}

/* Perfect alignment across all 4 columns: Top row is 4:3 (landscape), Bottom row is 3:4 (portrait) */
.sevana-gallery-item.gallery-top-item {
  aspect-ratio: 4 / 3;
}

.sevana-gallery-item.gallery-bottom-item {
  aspect-ratio: 3 / 4;
}

/* Individual Uncropped Aspect Ratios matching exact photo dimensions (used by Carousel) */
.ratio-food {
  aspect-ratio: 1403 / 1121;
}

.ratio-drinks {
  aspect-ratio: 1086 / 1448;
}

.ratio-booth {
  aspect-ratio: 729 / 978;
}

.ratio-shrikhand {
  aspect-ratio: 1448 / 1086;
}

.ratio-global {
  aspect-ratio: 1362 / 1155;
}

.ratio-chaat {
  aspect-ratio: 1086 / 1448;
}

.ratio-kulfi {
  aspect-ratio: 1232 / 1600;
}

.ratio-rest {
  aspect-ratio: 1284 / 1225;
}

/* ==========================================================================
   Infinite Auto-Sliding & Cursor-Draggable 4-Image Carousel
   ========================================================================== */
.gallery-carousel-wrapper {
  margin-top: 3.5rem;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.gallery-carousel-viewport {
  overflow: hidden;
  position: relative;
  width: 100%;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  padding: 0.35rem 0 1rem 0;
}

.gallery-carousel-viewport.is-dragging {
  cursor: grabbing !important;
}

.gallery-carousel-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  height: 380px;
  will-change: transform;
}

@media (min-width: 1024px) {
  .gallery-carousel-track {
    height: 440px;
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .gallery-carousel-track {
    height: 280px;
    gap: 1rem;
  }
}

/* Individual slides in infinite carousel */
.gallery-carousel-slide {
  flex: 0 0 auto;
  height: 100%;
  aspect-ratio: 4 / 3;
}

.gallery-carousel-card {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: #1a3429;
  /* border: 1px solid rgba(22, 59, 47, 0.1); */
  box-shadow: 0 8px 22px -4px rgba(22, 59, 47, 0.08);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease;
  text-decoration: none;
  cursor: pointer;
}

.gallery-carousel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -8px rgba(15, 42, 32, 0.2);
  border-color: rgba(201, 158, 78, 0.5);
}

.gallery-carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.gallery-carousel-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.03);
}

/* ==========================================================================
   Visit / CTA Banner
   ========================================================================== */
.section-visit-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.visit-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  overflow: hidden;
}

.visit-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visit-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: -10;
  background-color: rgba(15, 42, 32, 0.8);
}

.visit-cta-content {
  color: var(--cream);
  padding-top: 8rem;
  padding-bottom: 8rem;
}

@media (min-width: 640px) {
  .visit-cta-content {
    padding-top: 11rem;
    padding-bottom: 11rem;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--bottle-deep);
  color: var(--cream);
  /* padding-top: 6rem; */
  padding-bottom: 7rem;
  border-top: 1px solid rgba(245, 240, 230, 0.15);

}

@media (min-width: 1024px) {
  .site-footer {
    padding-bottom: 4rem;
  }
}

.footer-top-grid {
  display: grid;
  gap: 3rem;
  /* border-top: 1px solid rgba(245, 240, 230, 0.15); */
  padding-top: 3rem;
}

@media (min-width: 640px) {
  .footer-top-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .footer-top-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.footer-links-col {
  grid-column: span 1 / span 1;
}

@media (min-width: 1024px) {
  .footer-links-col {
    grid-column: span 2 / span 2;
  }
}

.footer-links-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.5rem 2rem;
}

@media (min-width: 640px) {
  .footer-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.footer-links-grid a {
  color: rgb(245 240 230 / 88%);
  font-size: 0.975rem;
  display: inline-flex;
  min-height: 2.25rem;
  align-items: center;
  font-weight: 600;
}

.footer-links-grid a:hover {
  color: var(--gold);
}

.footer-copyright {
  color: rgba(245, 240, 230, 0.35);
  margin-top: 4rem;
  font-size: 0.75rem;
}

/* --- Mobile Bottom Bar --- */
.mobile-sticky-bottom {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  /* border-top: 1px solid rgba(22, 59, 47, 0.15); */
  background-color: rgba(245, 240, 230, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: -1px 1px 12px 0px #213a2f;
  font-family: 'Fraunces';
}

@media (min-width: 1024px) {
  .mobile-sticky-bottom {
    display: none;
  }
}

.mobile-bottom-btn-menu {
  color: var(--bottle);
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mobile-bottom-btn-reserve {
  background-color: var(--bottle);
  color: var(--cream);
  display: flex;
  min-height: 3.5rem;
  width: 100%;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}

.mobile-bottom-btn-reserve:hover {
  background-color: var(--bottle-deep);
}

/* ==========================================================================
   Full Menu Page Styles
   ========================================================================== */
.menu-tab-btn {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  min-height: 2.5rem;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border: 1px solid rgba(22, 59, 47, 0.25);
  background-color: transparent;
  color: var(--bottle);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;

}

.menu-tab-btn:hover {
  border-color: var(--bottle);
  background-color: rgba(22, 59, 47, 0.05);
}

.menu-tab-btn.active {
  background-color: #ede7dc;
  color: var(--bottle);
  border-color: #ede7dc;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.menu-full-list {
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
  list-style: none;
  padding: 0;
}

.menu-full-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.menu-item-info {
  flex: 1;
}

.menu-item-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--bottle);
  line-height: 1.2;
}

.menu-item-desc {
  margin-top: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.6;
}

.menu-item-price-tag {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* 2-Column Grid for Rice, Breads & Accompaniments */
.menu-full-list.menu-grid-2col {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 3rem;
}

@media (min-width: 640px) {
  .menu-full-list.menu-grid-2col {
    grid-template-columns: repeat(2, 1fr);
  }
}

.menu-full-list.menu-grid-2col .menu-full-item {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(22, 59, 47, 0.1);
}

.menu-full-list.menu-grid-2col .menu-item-title {
  font-size: 1.1rem;
}

.hero-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-menu .body-lede {
  text-align: center;
}

.hero-menu .eyebrow {
  font-size: 1.5rem !important;
}

.header-box{
  display: flex;
    flex-direction: column;
    align-items: center;
}
@media (max-width: 480px) {

  .mood-section-grid,
  .royal-grid-container {
    display: flex !important;
    flex-direction: column;
  }

  .royal-gallery-stage {
    left: 0px !important;
    width: 100% !important;
    margin-top: 0px !important;
  }

  .section-reviews-block {
    padding-top: 6rem;
  }

  .hero-menu .eyebrow {
    font-size: 1rem !important;
  }

  .header-logo {
    font-size: 1.75rem !important;
  }

  .reveal {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .body-lede {
    text-align: center;
  }

  .res-btn {
    justify-content: center;
  }
}

@media (max-width:1024px) {
  .display-lg {
    text-align: center;
  }

  .mood-section-grid {
    display: flex !important;
    flex-direction: column;
  }

  .menu-tab-btn {
    width: 48% !important;
  }

  .reviews-header-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    align-content: center;
  }

  .review-stars {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .vist-all-btns {
    width: 60%;
  }

  .visit-btn {
    width: 48% !important;
  }
}

@media (max-width:480px) {
  .vist-all-btns {
    width: 100%;

    justify-content: center;
    flex-direction: column;
  }

  .visit-btn {
    width: 58% !important;
  }
}

/* ==========================================================================
   Luxury Scroll Interactions, Parallax & Micro-Animations
   ========================================================================== */

/* 1. Floating Luxury Back-to-Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 2.25rem;
  right: 2.25rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(15, 42, 32, 0.88);
  border: 1px solid rgba(201, 158, 78, 0.45);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4), 0 0 16px rgba(201, 158, 78, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 45;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.88);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top-btn:hover {
  background: var(--bottle-deep);
  border-color: var(--gold);
  color: #ffffff;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 24px rgba(201, 158, 78, 0.45);
}

.back-to-top-btn:active {
  transform: translateY(-1px) scale(0.96);
}

@media (max-width: 768px) {
  .back-to-top-btn {
    bottom: 5.5rem;
    /* clear mobile sticky bottom bar */
    right: 1.25rem;
    width: 42px;
    height: 42px;
  }
}

/* 3. "Scroll Over" & Hover Card Micro-Interactions */
.feature-item {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease,
    background-color 0.4s ease;
  border-radius: 8px;
  padding: 1.25rem 0.85rem;
}

.feature-item:hover {
  transform: translateY(-6px);
  background-color: rgba(22, 59, 47, 0.04);
}

.feature-item:hover .feature-icon-wrap {
  transform: translateY(-4px) scale(1.08);
}

.feature-item:hover .feature-icon {
  color: var(--gold);
}

.feature-item .feature-icon-wrap {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reviews Hover Elevation */
.review-box {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease,
    box-shadow 0.45s ease,
    background-color 0.4s ease;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.review-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.review-box:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 158, 78, 0.45);
  background-color: rgba(245, 240, 230, 0.05);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35), 0 0 20px rgba(201, 158, 78, 0.08);
}

.review-box:hover::before {
  opacity: 1;
}

/* Origins Article Scroll Hover */
.origins-article {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.origins-article:hover .img-zoom img {
  transform: scale(1.05);
}

/* Life at Sevana Photo Grid Hover */
.life-grid-container>div {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s ease;
  border-radius: 8px;
  overflow: hidden;
  height: fit-content;

}

.life-grid-container>div:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
  height: fit-content;
}

/* Subtle Shimmer on Premium Buttons */
.btn-primary,
.btn-secondary,
.btn-hero-secondary,
.btn-bottle-outline {
  position: relative;
  overflow: hidden;
}

.btn-primary::after,
.btn-secondary::after,
.btn-hero-secondary::after,
.btn-bottle-outline::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-20deg);
  transition: left 0.75s ease;
  pointer-events: none;
}

.btn-primary:hover::after,
.btn-secondary:hover::after,
.btn-hero-secondary:hover::after,
.btn-bottle-outline:hover::after {
  left: 180%;
}

/* Parallax Depth Transform utility */
.parallax-layer {
  will-change: transform;
  transition: transform 0.1s cubic-bezier(0, 0, 0.2, 1);
}

.btn-secondary:hover{
  color: var(--bottle) !important;
}

/* ==========================================================================
   Cookie Consent Banner
   ========================================================================== */
.sevana-cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  max-width: 480px;
  background: rgba(15, 42, 32, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 158, 78, 0.35);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  padding: 1.25rem 1.5rem;
  z-index: 99999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  color: var(--cream, #f5f0e6);
  font-family: var(--font-body, 'Manrope', sans-serif);
}

.sevana-cookie-banner.sevana-cookie-banner--visible {
  opacity: 1;
  transform: translateY(0);
}

.sevana-cookie-banner.sevana-cookie-banner--hiding {
  opacity: 0;
  transform: translateY(20px);
}

.sevana-cookie-title {
  font-family: var(--font-display, 'Fraunces', serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gold, #c99e4e);
  margin-bottom: 0.4rem;
}

.sevana-cookie-desc {
  font-size: 0.865rem;
  line-height: 1.55;
  color: rgba(245, 240, 230, 0.8);
  margin-bottom: 1rem;
}

.sevana-cookie-desc a {
  color: var(--gold, #c99e4e);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sevana-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.cookie-btn {
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 1.15rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.cookie-btn-accept {
  background: var(--gold, #c99e4e);
  color: var(--bottle-deep, #0f2a20);
  border: 1px solid var(--gold, #c99e4e);
}

.cookie-btn-accept:hover {
  background: #dbb05f;
  color: #081a13;
}

.cookie-btn-essential {
  background: transparent;
  color: rgba(245, 240, 230, 0.75);
  border: 1px solid rgba(245, 240, 230, 0.25);
}

.cookie-btn-essential:hover {
  border-color: var(--gold, #c99e4e);
  color: var(--gold, #c99e4e);
}

@media (max-width: 640px) {
  .sevana-cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 5.5rem; /* Sits above sticky mobile navigation bar */
    max-width: none;
    padding: 1.1rem 1.25rem;
  }
}