/* ==========================================================================
   RUCHI CATERING - LUXURY STATIC LANDING PAGE STYLES
   Design System: Ivory, Burnished Gold & Rich Charcoal
   Typography: Cormorant Garamond (Serif) & Manrope (Sans) & Noto Serif Malayalam
   ========================================================================== */

:root {
  /* Core Palette */
  --color-bg: #FAF6EE;
  --color-bg-alt: #F4ECE0;
  --color-surface: #FFFFFF;
  --color-surface-trans: rgba(255, 255, 255, 0.88);
  --color-surface-dark: #1E1A16;

  /* Typography Colors (strict WCAG AA compliance) */
  --color-text: #191613;
  --color-text-muted: #595248;       /* 5.3:1 contrast ratio against #FAF6EE */
  --color-text-light: #F7F3EB;
  --color-text-gold: #855819;        /* 4.8:1 contrast ratio against #FAF6EE */

  /* Gold & Metallic Accents */
  --gold-primary: #B38637;
  --gold-light: #E8CC88;
  --gold-dark: #7D5315;
  --gold-border: rgba(179, 134, 55, 0.35);
  --gold-border-subtle: rgba(179, 134, 55, 0.18);
  --gold-glow: rgba(209, 172, 96, 0.22);
  --gold-gradient: linear-gradient(135deg, #B38637 0%, #E8CC88 45%, #946722 100%);
  --gold-surface: linear-gradient(180deg, rgba(247, 238, 220, 0.6) 0%, rgba(243, 230, 207, 0.9) 100%);

  /* Kerala Cultural Subtle Accents */
  --green-leaf: #234E35;
  --green-leaf-tint: #EEF4F0;
  --maroon-syrian: #6B1D2F;
  --maroon-tint: #FBF0F2;
  --saffron-dum: #B85D1B;
  --saffron-tint: #FCF4ED;

  /* Fonts */
  --font-serif: 'Cormorant Garamond', Garamond, Georgia, serif;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-ml: 'Noto Serif Malayalam', 'Cormorant Garamond', Georgia, serif;

  /* Elevations & Shadows */
  --shadow-sm: 0 2px 8px rgba(25, 22, 19, 0.05);
  --shadow-md: 0 8px 24px rgba(25, 22, 19, 0.08);
  --shadow-lg: 0 16px 40px rgba(25, 22, 19, 0.12);
  --shadow-gold: 0 10px 30px rgba(179, 134, 55, 0.18);

  /* Layout */
  --container-max: 1240px;
  --container-pad: clamp(1.25rem, 4vw, 2.5rem);
  --header-height: 76px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   Reset & Baseline
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: auto; /* Handled smoothly by Lenis */
  -webkit-text-size-adjust: 100%;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
}

body {
  position: relative;
  min-height: 100vh;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Accessibility Focus Ring */
:focus-visible {
  outline: 2.5px solid var(--gold-primary);
  outline-offset: 3px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1.5rem;
  z-index: 9999;
  background: var(--color-surface-dark);
  color: var(--gold-light);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 1.5rem;
}

/* Visually Hidden */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Luxury Grain Overlay */
.grain-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 900;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Base Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.18;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

button, input, select, textarea {
  font: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.text-center {
  text-align: center;
}

/* --------------------------------------------------------------------------
   Section Ornamentation & Headers
   -------------------------------------------------------------------------- */
.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header.text-center {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-gold);
  margin-bottom: 0.875rem;
}
.diamond-mark {
  color: var(--gold-primary);
  font-size: 0.9em;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--color-text);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(1rem, 1.25vw, 1.1875rem);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Buttons & CTAs
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 1.875rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  min-height: 48px; /* 44px+ minimum tap target */
  text-align: center;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #1A1308;
  border: 1px solid var(--gold-primary);
  box-shadow: 0 4px 14px rgba(179, 134, 55, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(179, 134, 55, 0.35);
  background: linear-gradient(135deg, #BE9140 0%, #F0D492 50%, #A37429 100%);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--gold-border);
}
.btn-secondary:hover {
  border-color: var(--gold-primary);
  background: rgba(179, 134, 55, 0.08);
  color: var(--color-text-gold);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-text);
}
.btn-outline:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

.btn-large {
  padding: 1.125rem 2.25rem;
  font-size: 1.0625rem;
}

.btn-block {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 800;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background-color: rgba(250, 246, 238, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--gold-border-subtle);
  box-shadow: 0 4px 20px rgba(25, 22, 19, 0.04);
}

.header-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  height: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.brand-link {
  justify-self: start;
  min-width: 0;
}

.desktop-nav {
  justify-self: center;
}

.header-actions {
  justify-self: end;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-sm);
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-text);
  line-height: 1;
}
.brand-tagline {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  color: var(--color-text-gold);
  font-weight: 600;
  margin-top: 3px;
}

.desktop-nav .nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.85rem, 1.8vw, 1.65rem);
  flex-wrap: nowrap;
}
.nav-link {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text);
  position: relative;
  padding: 0.35rem 0;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}
.nav-link:hover {
  color: var(--color-text-gold);
}
.nav-link:hover::after {
  width: 100%;
}

.nav-index {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-text-gold);
  margin-right: 0.35rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.header-cta {
  padding: 0.5rem 1.1rem;
  font-size: 0.8125rem;
  min-height: 44px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: transparent;
  color: var(--color-text-gold);
  border-color: var(--gold-primary);
  box-shadow: none;
}
.header-cta:hover {
  background: rgba(179, 134, 55, 0.1);
  color: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: none;
}

.header-wa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  color: #1FA855;
  background: rgba(255, 255, 255, 0.65);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}
.header-wa-icon:hover {
  background: #FFFFFF;
  border-color: var(--gold-primary);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--gold-border);
  padding: 0.5rem 0.9rem;
  font-size: 0.8125rem;
  min-height: 44px;
}

.site-header.header--hero {
  background-color: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

.site-header.header--hero .brand-name,
.site-header.header--hero .nav-link,
.site-header.header--hero .mobile-toggle .toggle-bar {
  color: #F7F3EB;
}

.site-header.header--hero .brand-tagline,
.site-header.header--hero .nav-index {
  color: var(--gold-light);
}

.site-header.header--hero .nav-link::after {
  background: var(--gold-light);
}

.site-header.header--hero .header-cta {
  background: rgba(25, 22, 19, 0.18);
  color: var(--gold-light);
  border: 1px solid rgba(232, 204, 136, 0.75);
  box-shadow: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.site-header.header--hero .header-cta:hover {
  background: rgba(232, 204, 136, 0.16);
  color: #FFFFFF;
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

.site-header.header--hero.scrolled {
  background-color: rgba(250, 246, 238, 0.94);
}

.site-header.header--hero.scrolled .brand-name,
.site-header.header--hero.scrolled .nav-link,
.site-header.header--hero.scrolled .mobile-toggle .toggle-bar {
  color: var(--color-text);
}

.site-header.header--hero.scrolled .brand-tagline,
.site-header.header--hero.scrolled .nav-index {
  color: var(--color-text-gold);
}

.site-header.header--hero.scrolled .header-cta {
  background: transparent;
  color: var(--color-text-gold);
  border-color: var(--gold-primary);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header.header--hero.scrolled .header-cta:hover {
  background: rgba(179, 134, 55, 0.1);
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}


/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold-border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0.4rem 0.65rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background-color: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-toggle[aria-expanded="true"] .toggle-bar:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}
.mobile-toggle[aria-expanded="true"] .toggle-bar:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}
.site-header.header--hero .header-wa-icon {
  background: rgba(25, 22, 19, 0.35);
  border-color: rgba(247, 243, 235, 0.35);
  color: #5FE07A;
}
.site-header.header--hero .mobile-toggle {
  border-color: rgba(247, 243, 235, 0.35);
  color: #F7F3EB;
}
.site-header.header--hero.scrolled .header-wa-icon {
  background: rgba(255, 255, 255, 0.85);
}

/* Mobile Drawer */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  height: calc(100dvh - var(--header-height));
  background-color: var(--color-bg);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  border-top: 1px solid var(--gold-border-subtle);
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-inner {
  padding: 2.5rem var(--container-pad) 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--color-text);
  display: block;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(25, 22, 19, 0.05);
}
.mobile-action-btn,
.form-actions .btn-primary {
  background: transparent;
  color: var(--color-text-gold);
  border: 1px solid var(--gold-primary);
  box-shadow: none;
}
.mobile-action-btn:hover,
.form-actions .btn-primary:hover {
  background: rgba(179, 134, 55, 0.1);
  color: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: none;
}

.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   Section atmosphere backgrounds
   -------------------------------------------------------------------------- */
.has-section-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.section-backdrop {
  position: absolute;
  inset: -5%;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.14;
  pointer-events: none;
  will-change: transform;
}

.section-backdrop--hero {
  inset: 0;
  opacity: 0.38;
  background-position: center 40%;
}

.section-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(250, 246, 238, 0.9) 0%,
    rgba(250, 246, 238, 0.96) 50%,
    rgba(250, 246, 238, 0.99) 100%
  );
}

.section-scrim--hero {
  background: linear-gradient(
    125deg,
    rgba(250, 246, 238, 0.93) 0%,
    rgba(250, 246, 238, 0.8) 48%,
    rgba(250, 246, 238, 0.68) 100%
  );
}

.section-scrim--alt {
  background: linear-gradient(
    180deg,
    rgba(244, 236, 224, 0.88) 0%,
    rgba(244, 236, 224, 0.95) 55%,
    rgba(244, 236, 224, 0.98) 100%
  );
}

.has-section-bg > .container,
.hero-section.has-section-bg > .hero-viewport {
  position: relative;
  z-index: 2;
}

.media-focus-center {
  object-position: center center;
}

.media-focus-upper {
  object-position: center 32%;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
  perspective: 1200px;
}

.hero-section.has-section-bg {
  overflow: hidden;
}

.hero-viewport {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
  overflow: visible;
}

.hero-stage-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}

.hero-media {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-media-frame {
  transform-origin: center center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-gold);
  aspect-ratio: 16 / 9;
  background-color: var(--color-bg-alt);
}

.hero-feature-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--gold-border);
  padding: 0.4rem 1.125rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.badge-malayalam {
  font-family: var(--font-ml);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.badge-divider {
  width: 4px;
  height: 4px;
  background-color: var(--gold-primary);
  border-radius: 50%;
}
.badge-text {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-size: clamp(2.8rem, 6.2vw, 5.2rem);
  line-height: 1.12;
  margin-bottom: 1.5rem;
  letter-spacing: -0.015em;
  overflow: visible;
}
.title-serif {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--color-text);
}
.title-highlight {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-block;
  padding: 0.06em 0.12em 0.02em;
  line-height: 1.15;
}

.hero-description {
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  color: var(--color-text-muted);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.25rem;
  line-height: 1.65;
}

.hero-button-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
}

/* --------------------------------------------------------------------------
   Cinematic hero & editorial rhythm (Marluce-inspired)
   -------------------------------------------------------------------------- */
.hero-section--cinematic {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
  display: block;
  overflow: hidden;
  perspective: none;
}

.hero-cinematic-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-cinematic-poster,
.hero-cinematic-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: contrast(1.04) saturate(1.05);
}

.hero-cinematic-photo {
  z-index: 1;
}

.hero-cinematic-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    165deg,
    rgba(25, 22, 19, 0.5) 0%,
    rgba(25, 22, 19, 0.68) 42%,
    rgba(25, 22, 19, 0.9) 100%
  );
}

.hero-section--cinematic .hero-viewport {
  position: relative;
  z-index: 2;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--header-height) + 1.5rem);
  padding-bottom: clamp(2.5rem, 8vw, 4.5rem);
}

.hero-stage-cinematic {
  width: 100%;
  max-width: 40rem;
}

.hero-section--cinematic .hero-content {
  align-items: flex-start;
  text-align: left;
  max-width: none;
  margin: 0;
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.6rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.15rem;
}

.hero-kicker-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-primary);
  opacity: 0.85;
  flex-shrink: 0;
}

.hero-title--cinematic {
  color: #F7F3EB;
  font-size: clamp(2.35rem, 7.2vw, 4.35rem);
  line-height: 1.1;
  margin-bottom: 1.15rem;
}

.hero-title--cinematic .title-serif {
  color: #F7F3EB;
}

.title-highlight--script {
  font-style: italic;
  color: var(--gold-light);
  display: block;
  margin-top: 0.12em;
}

.hero-description--cinematic {
  color: rgba(247, 243, 235, 0.88);
  margin-left: 0;
  margin-right: 0;
  max-width: 36rem;
}

.btn-hero-primary {
  background: rgba(25, 22, 19, 0.18);
  color: var(--gold-light);
  border: 1px solid rgba(232, 204, 136, 0.75);
  box-shadow: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.btn-hero-primary:hover {
  background: rgba(232, 204, 136, 0.16);
  color: #FFFFFF;
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: none;
}

.btn-hero-ghost {
  background: transparent;
  color: #F7F3EB;
  border: 1px solid rgba(247, 243, 235, 0.6);
  box-shadow: none;
}

.btn-hero-ghost:hover {
  background: rgba(247, 243, 235, 0.14);
  color: #FFFFFF;
  border-color: rgba(247, 243, 235, 0.85);
}

.hero-footnote {
  margin-top: 1.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.62);
}

.editorial-marquee {
  overflow: hidden;
  border-block: 1px solid var(--gold-border-subtle);
  background: var(--color-surface-dark);
  padding: 0.6rem 0;
}

.editorial-marquee-track {
  display: flex;
  width: max-content;
  animation: editorial-marquee 34s linear infinite;
}

.editorial-marquee-track span {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
  padding-right: 0.25rem;
}

@keyframes editorial-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.scene-break {
  padding: clamp(2.25rem, 5vw, 3.5rem) 0;
  background: var(--color-bg-alt);
  text-align: center;
  border-bottom: 1px solid var(--gold-border-subtle);
}

.scene-break-inner {
  max-width: 36rem;
}

.scene-break-kicker {
  font-family: var(--font-ml);
  font-size: clamp(1.35rem, 4.5vw, 2rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text-gold);
  margin-bottom: 0.75rem;
}

.scene-break-caption {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.signatures-section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--color-bg);
}

.section-eyebrow--editorial {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-no {
  color: var(--gold-primary);
  font-weight: 700;
}

.signatures-editorial {
  display: flex;
  flex-direction: column;
  gap: clamp(2.25rem, 5vw, 3.75rem);
  margin-top: 0.5rem;
}

.signature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  align-items: center;
}

.signature-card--reverse .signature-card-media {
  order: 2;
}

.signature-card-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--gold-border-subtle);
  box-shadow: var(--shadow-md);
}

.signature-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.03) saturate(1.04);
}

.signature-card-media--editorial {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(184, 134, 11, 0.18) 0%, transparent 70%),
    linear-gradient(165deg, var(--color-bg-alt) 0%, #f5efe4 45%, #ebe3d4 100%);
}

.signature-media-roman {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 12vw, 5.5rem);
  font-weight: 600;
  line-height: 1;
  color: rgba(184, 134, 11, 0.35);
}

.signature-media-caption {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0 1rem;
}

.service-card-media img {
  filter: contrast(1.02) saturate(1.03);
}

.signature-roman {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--gold-primary);
  line-height: 1;
  display: block;
  margin-bottom: 0.45rem;
}

.signature-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-gold);
  display: block;
  margin-bottom: 0.45rem;
}

.signature-title {
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  margin-bottom: 0.65rem;
}

.signature-desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.signature-link {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-gold);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.signature-link:hover {
  color: var(--gold-dark);
}
.hint-text {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-gold);
}
.hint-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--gold-primary) 0%, rgba(179, 134, 55, 0) 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0.3); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0.3); transform-origin: bottom; }
}

/* --------------------------------------------------------------------------
   Heritage Stats Section
   -------------------------------------------------------------------------- */
.stats-section {
  position: relative;
  padding: 4.5rem 0;
  background-color: var(--color-bg-alt);
  border-top: 1px solid var(--gold-border-subtle);
  border-bottom: 1px solid var(--gold-border-subtle);
}

.stats-section .stat-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--gold-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  padding: 1.5rem;
  border-left: 2px solid var(--gold-border);
  transition: transform 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-left-color: var(--gold-primary);
}

.stat-figure {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 4.5vw, 4.25rem);
  font-weight: 600;
  line-height: 1;
  color: var(--color-text-gold);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat-text-figure {
  color: var(--color-text);
}
.stat-plus {
  font-size: 0.65em;
  color: var(--gold-primary);
}

.stat-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.375rem;
}
.stat-detail {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Heritage & Story Section
   -------------------------------------------------------------------------- */
.story-section {
  padding: clamp(5rem, 8vw, 8rem) 0;
  position: relative;
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.story-visual-col {
  display: grid;
  gap: 1rem;
}

.story-visual-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  max-height: min(520px, 70vh);
  min-height: 0;
  width: 100%;
  background: linear-gradient(145deg, #F5ECE0 0%, #E8DCBE 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.story-image-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.story-image-backdrop::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(25, 22, 19, 0.15) 0%,
    rgba(25, 22, 19, 0.55) 55%,
    rgba(25, 22, 19, 0.82) 100%
  );
  pointer-events: none;
}

.story-image-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-card-inner {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 4rem 1.5rem 1.35rem;
  background: linear-gradient(180deg, transparent 0%, rgba(25, 22, 19, 0.86) 100%);
}

.story-emblem-seal {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.seal-malayalam {
  font-family: var(--font-ml);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.seal-en {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.story-emblem-seal .seal-malayalam,
.story-emblem-seal .seal-en {
  color: var(--gold-light);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.story-quote-card {
  background: var(--color-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.quote-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-bottom: 1px solid var(--gold-border-subtle);
}
.quote-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
  filter: contrast(1.02) saturate(1.02);
}

.quote-body {
  padding: clamp(1.25rem, 3vw, 1.75rem);
}
.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}
.quote-text--ml {
  font-family: var(--font-ml);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-style: normal;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.875rem;
}
.quote-text:last-of-type {
  margin-bottom: 0.875rem;
}
.quote-author {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-gold);
}
.quote-author--name {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 600;
  line-height: 1.4;
  font-style: normal;
}
.quote-author-line {
  display: block;
}
.quote-author-brand {
  color: var(--color-text-gold);
  font-weight: 700;
}

.story-text-col .body-text-block {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.story-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gold-border-subtle);
}
.pillar-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.pillar-bullet {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
  padding-top: 2px;
}
.pillar-title {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}
.pillar-desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Services Section (3D Tilt Cards)
   -------------------------------------------------------------------------- */
.services-section {
  padding: clamp(5rem, 8vw, 8rem) 0;
  background-color: var(--color-bg-alt);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--gold-border-subtle);
  border-radius: var(--radius-md);
  padding: 0;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  transform-style: preserve-3d;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-border);
}

.service-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--gold-border-subtle);
  background-color: var(--color-bg-alt);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card-media img {
  transform: scale(1.04);
}

.service-card .card-content {
  padding: 2rem 2rem 2.25rem;
}

.card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-gold);
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.625rem;
  margin-bottom: 1rem;
  color: var(--color-text);
  line-height: 1.25;
}

.card-description {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(25, 22, 19, 0.06);
  margin-bottom: 1.5rem;
}
.card-features li {
  font-size: 0.875rem;
  color: var(--color-text);
  position: relative;
  padding-left: 1.125rem;
}
.card-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-weight: bold;
}

.card-footer {
  margin-top: auto;
}
.card-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text-gold);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.card-link:hover {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

/* --------------------------------------------------------------------------
   Signature Menus Showcase (Tabbed Panels)
   -------------------------------------------------------------------------- */
.menu-showcase-section {
  padding: clamp(5rem, 8vw, 8rem) 0;
  background-color: var(--color-bg);
  position: relative;
}

.menu-tabs {
  display: flex;
  gap: 0.75rem;
  border-bottom: 1px solid var(--gold-border-subtle);
  margin-bottom: 3rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar {
  display: none;
}
.tab-btn {
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: color 0.3s ease;
  min-height: 44px;
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: background 0.3s ease;
}
.tab-btn.active {
  color: var(--color-text);
  font-weight: 700;
}
.tab-btn.active::after {
  background: var(--gold-gradient);
}
.tab-btn:hover {
  color: var(--color-text-gold);
}

.menu-panel {
  display: none;
}
.menu-panel.active {
  display: block;
  animation: fadeInPanel 0.4s ease-out;
}
@keyframes fadeInPanel {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-showcase-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}

.leaf-visual-card {
  background: linear-gradient(150deg, #1A3F29 0%, #0E2518 100%);
  border: 1px solid rgba(179, 134, 55, 0.4);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #FAF6EE;
  box-shadow: var(--shadow-lg);
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.leaf-visual-card.feast-theme-christian {
  background: linear-gradient(150deg, #4A1521 0%, #2A0911 100%);
}
.leaf-visual-card.feast-theme-malabar {
  background: linear-gradient(150deg, #5C2D0C 0%, #301705 100%);
}
.leaf-visual-card.feast-theme-counters {
  background: linear-gradient(150deg, #2E2922 0%, #151310 100%);
}

.leaf-visual-card--photo {
  position: relative;
  padding: 0;
  overflow: hidden;
  justify-content: flex-end;
  min-height: 100%;
  aspect-ratio: unset;
  display: block;
  align-self: stretch;
}

.menu-card-photo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.leaf-visual-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
  padding: 1.75rem 1.75rem 2rem;
  background: linear-gradient(
    180deg,
    rgba(25, 22, 19, 0.35) 0%,
    rgba(25, 22, 19, 0.55) 28%,
    rgba(25, 22, 19, 0.88) 62%,
    rgba(25, 22, 19, 0.96) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.875rem;
}

.leaf-visual-overlay .leaf-count {
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  line-height: 1.2;
}

.leaf-visual-overlay .feast-feature-box {
  margin: 0;
}

.leaf-visual-overlay .feast-feature-title {
  font-size: 1.25rem;
}

.leaf-visual-overlay .feast-feature-text {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.leaf-visual-overlay .feast-highlights span {
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
}

.leaf-banner {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.leaf-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.leaf-count {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: #FFFFFF;
}

.leaf-illustration {
  margin: 2rem 0;
}
.leaf-grid-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.625rem;
}
.leaf-dish-spot {
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(232, 204, 136, 0.35);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.leaf-dish-spot::after {
  content: attr(data-dish);
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  padding: 0 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feast-feature-box {
  margin: 1.5rem 0;
}
.feast-feature-title {
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}
.feast-feature-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.feast-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.feast-highlights span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(232, 204, 136, 0.3);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: var(--gold-light);
}

.leaf-note {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.menu-dishes-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.dish-item {
  background: var(--color-surface);
  border: 1px solid var(--gold-border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.dish-item:hover {
  transform: translateX(4px);
  border-color: var(--gold-border);
}
.dish-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.dish-name {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-text);
}
.dish-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-gold);
  background: rgba(179, 134, 55, 0.1);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-sm);
}
.dish-desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Process / How We Work Section
   -------------------------------------------------------------------------- */
.process-section {
  padding: clamp(5rem, 8vw, 8rem) 0;
  background-color: var(--color-bg-alt);
  position: relative;
}

.process-timeline {
  position: relative;
  margin-top: 3.5rem;
}

.timeline-line-track {
  position: absolute;
  top: 36px;
  left: 5%;
  width: 90%;
  height: 2px;
  background-color: rgba(179, 134, 55, 0.2);
  z-index: 1;
}
.timeline-line-fill {
  width: 0%;
  height: 100%;
  background: var(--gold-gradient);
  transition: width 0.3s ease-out;
}

.process-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.process-step-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step-marker {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--color-surface);
  border: 2px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.process-step-card:hover .step-marker {
  transform: scale(1.1);
  border-color: var(--gold-primary);
  background: var(--gold-gradient);
}
.step-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.process-step-card:hover .step-num {
  color: #1A1308;
}

.step-stage {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-gold);
  margin-bottom: 0.375rem;
  display: block;
}
.step-title {
  font-size: 1.35rem;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.step-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Parallax Visual Gallery
   -------------------------------------------------------------------------- */
.gallery-section {
  padding: clamp(5rem, 8vw, 8rem) 0;
  background-color: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gold-border-subtle);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.gallery-art {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.25rem;
  background-color: var(--color-bg-alt);
}

.gallery-item--landscape .gallery-art {
  aspect-ratio: 4 / 3;
}

.gallery-item--portrait-tall .gallery-art {
  aspect-ratio: 9 / 16;
}

.gallery-item--panoramic .gallery-art {
  aspect-ratio: 3 / 1;
}

.gallery-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.gallery-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(25, 22, 19, 0.05) 0%,
    rgba(25, 22, 19, 0.45) 70%,
    rgba(25, 22, 19, 0.75) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.art-overlay {
  position: relative;
  z-index: 2;
  background: rgba(25, 22, 19, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--gold-border-subtle);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  max-width: min(100%, 22rem);
  flex: 0 1 auto;
}

.art-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.25rem;
}
.art-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.25;
}

/* --------------------------------------------------------------------------
   Testimonials / Words from Hosts (Explicitly Honest Sample Guestbook)
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: clamp(5rem, 8vw, 8rem) 0;
  background-color: var(--color-bg-alt);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--gold-border-subtle);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold-primary);
  opacity: 0.45;
  margin-bottom: 0.5rem;
}
.testimonial-body {
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.75rem;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.host-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  border: 1px solid var(--gold-border);
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.host-details {
  display: flex;
  flex-direction: column;
}
.host-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-text);
}
.host-event {
  font-size: 0.75rem;
  color: var(--color-text-gold);
  font-weight: 600;
}

.testimonials-footnote .footnote-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Geographic Coverage & Map Section
   -------------------------------------------------------------------------- */
.coverage-section {
  padding: clamp(5rem, 8vw, 8rem) 0;
  background-color: var(--color-bg);
  position: relative;
}

.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}

.coverage-intro {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.district-tags-wrap {
  margin-bottom: 2rem;
}
.district-heading {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text);
  margin-bottom: 0.875rem;
}
.district-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pill {
  font-size: 0.8125rem;
  background: var(--color-surface);
  border: 1px solid var(--gold-border-subtle);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
}
.pill.primary-pill {
  background: rgba(179, 134, 55, 0.12);
  border-color: var(--gold-primary);
  color: var(--gold-dark);
  font-weight: 700;
}

.hq-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--color-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.hq-icon {
  color: var(--gold-primary);
  margin-top: 2px;
}
.hq-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.9375rem;
}
.hq-text > span {
  color: var(--color-text-muted);
  line-height: 1.6;
}
.hq-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gold-border-subtle);
  color: var(--color-text-muted);
  font-size: 0.75rem;
  line-height: 1.5;
  font-variant-numeric: tabular-nums;
}
.hq-credentials b {
  color: var(--color-text-gold);
  font-weight: 700;
}
.hq-map-link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-text-gold);
  margin-top: 0.5rem;
}
.hq-map-link:hover {
  color: var(--gold-dark);
}

.map-container-frame {
  height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-lg);
  background: #EAE3D5;
}

/* --------------------------------------------------------------------------
   FAQ Accordion Section
   -------------------------------------------------------------------------- */
.faq-section {
  padding: clamp(5rem, 8vw, 8rem) 0;
  background-color: var(--color-bg-alt);
  position: relative;
}

.faq-accordion {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--gold-border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s ease;
}
.faq-item.active {
  border-color: var(--gold-border);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  min-height: 48px;
}
.faq-question {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.35;
}
.faq-chevron {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  color: var(--gold-primary);
  line-height: 1;
  transition: transform 0.3s ease;
}
.faq-trigger[aria-expanded="true"] .faq-chevron {
  transform: rotate(45deg);
}

.faq-panel {
  display: none;
  border-top: 1px solid rgba(25, 22, 19, 0.05);
}
.faq-panel[hidden] {
  display: none;
}
.faq-panel:not([hidden]) {
  display: block;
}
.faq-panel-inner {
  padding: 1.5rem 1.75rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Reservation & Direct WhatsApp Enquiry Section
   -------------------------------------------------------------------------- */
.enquiry-section {
  padding: clamp(5rem, 8vw, 8rem) 0;
  background-color: var(--color-bg);
  position: relative;
}

.enquiry-card {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  background: var(--color-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.enquiry-header {
  margin-bottom: 2.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.req {
  color: #C0392B;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid rgba(25, 22, 19, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.8125rem 1rem;
  font-size: 0.9375rem;
  color: var(--color-text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(179, 134, 55, 0.15);
  background: #FFFFFF;
}
.form-input.has-error, .form-select.has-error {
  border-color: #C0392B;
}
.form-error {
  display: block;
  font-size: 0.75rem;
  color: #C0392B;
  margin-top: 0.35rem;
  min-height: 1rem;
}

.form-status-box {
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  text-align: center;
}
.form-status-box.success {
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  color: #1B5E20;
}
.form-status-box.error {
  background: #FFEBEE;
  border: 1px solid #FFCDD2;
  color: #B71C1C;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Site Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-surface-dark);
  color: var(--color-text-light);
  padding: clamp(4rem, 6vw, 6rem) 0 2.5rem;
  position: relative;
  border-top: 1px solid rgba(179, 134, 55, 0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
}
.footer-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  display: block;
}
.footer-sub {
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  color: rgba(247, 243, 235, 0.7);
  display: block;
}

.footer-legacy-text {
  font-size: 0.875rem;
  color: rgba(247, 243, 235, 0.75);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gold-light);
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--gold-border-subtle);
  border-radius: var(--radius-sm);
}
.social-link:hover {
  background: rgba(179, 134, 55, 0.15);
  border-color: var(--gold-primary);
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-link-list a {
  font-size: 0.875rem;
  color: rgba(247, 243, 235, 0.7);
}
.footer-link-list a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(247, 243, 235, 0.8);
  line-height: 1.5;
}
.contact-link {
  color: var(--gold-light);
  font-weight: 600;
}
.contact-link:hover {
  text-decoration: underline;
}

.footer-compliance {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(232, 204, 136, 0.22);
}
.footer-compliance-title {
  margin-bottom: 0.875rem;
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.footer-compliance-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.875rem;
  color: rgba(247, 243, 235, 0.68);
  font-size: 0.75rem;
  line-height: 1.5;
}
.footer-compliance-item:last-child {
  margin-bottom: 0;
}
.footer-compliance-item strong {
  color: rgba(247, 243, 235, 0.94);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  font-variant-numeric: tabular-nums;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(247, 243, 235, 0.6);
}

.footer-credit {
  margin-top: 1.25rem;
  text-align: center;
  color: rgba(247, 243, 235, 0.56);
  font-size: 0.75rem;
}

.footer-credit a {
  color: var(--gold-light);
  font-weight: 600;
}

.footer-credit a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1.75rem;
  bottom: 1.75rem;
  z-index: 950;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: #25D366;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(22, 55, 36, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(22, 55, 36, 0.4);
}

.floating-whatsapp:focus-visible {
  outline: 3px solid #FFFFFF;
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Responsive Layout & Breakpoint Adaptations
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .timeline-line-track {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .gallery-col {
    gap: 1.25rem;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }
}

@media (max-width: 860px) {
  .header-cta {
    display: none;
  }
  .mobile-toggle {
    display: inline-flex;
  }
  .header-container {
    grid-template-columns: 1fr auto;
  }
  .desktop-nav {
    display: none;
  }
  .story-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .story-visual-col {
    order: 1;
  }
  .story-text-col {
    order: 2;
  }
  .story-visual-frame {
    min-height: 0;
    max-height: none;
    aspect-ratio: 16 / 9;
  }
  .menu-showcase-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .leaf-visual-card--photo {
    min-height: unset;
    aspect-ratio: 4 / 3;
    height: auto;
    align-self: start;
  }
  .leaf-visual-overlay {
    padding: 1.25rem 1.25rem 1.5rem;
  }
  .menu-tabs {
    margin-bottom: 2rem;
    margin-left: calc(-1 * var(--container-pad));
    margin-right: calc(-1 * var(--container-pad));
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
  }
  .tab-btn {
    scroll-snap-align: start;
    flex-shrink: 0;
    font-size: 0.8125rem;
    padding: 0.65rem 0.9rem;
  }
  .dish-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .dish-item {
    padding: 1.15rem 1.25rem;
  }
  .coverage-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .gallery-masonry {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .gallery-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  .gallery-art {
    padding-bottom: 1rem;
  }
  .gallery-item--panoramic .gallery-art {
    aspect-ratio: 16 / 9;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .hero-section:not(.hero-section--cinematic) {
    min-height: 0;
    align-items: flex-start;
    padding-top: calc(var(--header-height) + 1rem);
    padding-bottom: 2.75rem;
  }
  .hero-section--cinematic .hero-viewport {
    min-height: 0;
    padding-top: calc(var(--header-height) + 0.75rem);
    padding-bottom: 2.25rem;
  }
  .hero-title:not(.hero-title--cinematic) {
    font-size: clamp(2rem, 9.2vw, 2.75rem);
  }
  .signature-card,
  .signature-card--reverse {
    grid-template-columns: 1fr;
  }
  .signature-card--reverse .signature-card-media {
    order: 0;
  }
  .brand-tagline {
    display: none;
  }
  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .hero-button-group {
    margin-bottom: 1.75rem;
  }
  .hero-badge {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    text-align: center;
  }
  .badge-text {
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
  }
  .map-container-frame {
    height: min(56vw, 320px);
    min-height: 240px;
  }
}

@media (min-width: 900px) {
  .hero-stage-split {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(2rem, 4vw, 4rem);
  }

  .hero-media {
    max-width: none;
    margin: 0;
    order: 2;
  }

  .hero-content {
    order: 1;
    margin: 0;
    max-width: none;
    align-items: flex-start;
    text-align: left;
  }

  .hero-button-group {
    justify-content: flex-start;
  }

  .hero-description {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-section--cinematic .hero-stage-cinematic {
    max-width: 44rem;
  }

  .hero-section--cinematic .hero-viewport {
    align-items: center;
    padding-bottom: 3rem;
  }
}

@media (max-width: 600px) {
  :root {
    --header-height: 72px;
    --container-pad: 1rem;
  }

  .header-container {
    padding-left: max(var(--container-pad), env(safe-area-inset-left));
    padding-right: max(var(--container-pad), env(safe-area-inset-right));
  }

  .container {
    padding-left: max(var(--container-pad), env(safe-area-inset-left));
    padding-right: max(var(--container-pad), env(safe-area-inset-right));
  }

  .stats-section,
  .story-section,
  .services-section,
  .menu-showcase-section,
  .process-section,
  .gallery-section,
  .testimonials-section,
  .coverage-section,
  .faq-section,
  .enquiry-section {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: clamp(1.75rem, 7.5vw, 2.2rem);
  }

  .section-eyebrow {
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    line-height: 1.45;
  }

  .section-header.text-center .section-eyebrow {
    justify-content: center;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
  .hero-button-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-button-group .btn {
    width: 100%;
  }
  .hero-scroll-hint {
    display: none;
  }
  .brand-name {
    font-size: 1.2rem;
  }
  .brand-logo {
    width: 40px;
    height: 40px;
  }
  .story-quote-card {
    padding: 1rem 1.1rem;
  }
  .quote-text {
    font-size: 0.9375rem;
  }
  .quote-text--ml {
    font-size: 0.875rem;
  }
  .seal-malayalam {
    font-size: 1.1rem;
  }
  .dish-name {
    font-size: 1.125rem;
  }
  .faq-trigger {
    padding: 1.1rem 1.15rem;
    gap: 0.75rem;
  }
  .faq-question {
    font-size: 1.05rem;
  }
  .faq-panel-inner {
    padding: 1.15rem 1.15rem 1.35rem;
  }
  .enquiry-card {
    padding: 1.5rem 1.15rem;
    border-radius: var(--radius-lg);
  }
  .enquiry-header {
    margin-bottom: 1.75rem;
  }
  .form-input,
  .form-select,
  .form-textarea {
    font-size: 1rem;
    padding: 0.75rem 0.875rem;
  }
  .btn-large {
    width: 100%;
    padding: 1rem 1.25rem;
  }
  .testimonial-card {
    padding: 1.5rem 1.25rem;
  }
  .stat-figure {
    font-size: clamp(2.5rem, 12vw, 3.25rem);
  }
  .service-card:hover {
    transform: none;
  }
  .gallery-item:hover {
    transform: none;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }
  .site-footer {
    padding-bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px));
  }
  .floating-whatsapp {
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 380px) {
  .brand-tagline {
    display: none;
  }
  .hero-title {
    font-size: 1.85rem;
  }
  .leaf-visual-overlay .leaf-count {
    font-size: 1.15rem;
  }
  .feast-highlights {
    gap: 0.35rem;
  }
}

/* --------------------------------------------------------------------------
   Reduced Motion Preferences
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hint-line {
    animation: none;
  }
  .editorial-marquee-track {
    animation: none;
  }
  .hero-cinematic-photo {
    display: none;
  }
}
