/* ===== ATHARVA CATERERS — MODERN REDESIGN ===== */

/* --- Font Face: Amulya Variable --- */
@font-face {
  font-family: 'Amulya';
  src: url('../fonts/Amulya-Variable.woff2') format('woff2'),
       url('../fonts/Amulya-Variable.woff') format('woff');
  font-weight: 300 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Amulya';
  src: url('../fonts/Amulya-VariableItalic.woff2') format('woff2'),
       url('../fonts/Amulya-VariableItalic.woff') format('woff');
  font-weight: 300 700;
  font-display: swap;
  font-style: italic;
}

/* --- Variables --- */
:root {
  --primary: #E84520;
  --primary-dark: #C93A1A;
  --secondary: #5C1A1B;
  --accent: #D4A017;
  --accent-light: #F0C75E;
  --forest: #2D5A3D;
  --cream: #FDF6EE;
  --sand: #F5E6D0;
  --charcoal: #1A1A18;
  --text: #1A1A18;
  --text-mid: #5A5850;
  --text-light: #75736A;
  --white: #FFFFFF;
  --font: 'Amulya', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xl: 24px;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 32px;
  transition: all 0.4s var(--ease);
}
.navbar.scrolled {
  background: rgba(253, 246, 238, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(232, 69, 32, 0.08);
}
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  height: 90px; max-width: 1240px; margin: 0 auto;
}
.logo-img { height: 72px; width: auto; transition: transform 0.3s var(--ease); }
.logo-img:hover { transform: scale(1.05); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.75);
  padding: 8px 16px; border-radius: 100px;
  transition: all 0.3s var(--ease);
}
.navbar.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--primary);
  background: rgba(232, 69, 32, 0.08);
}
.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--white) !important;
  color: var(--primary) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 69, 32, 0.3);
}
.navbar.scrolled .nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
}
.nav-toggle {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.navbar.scrolled .nav-toggle span { background: var(--charcoal); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; border-radius: 100px;
  font-family: var(--font); font-size: 15px; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--primary); color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--charcoal); border-color: var(--charcoal);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(232, 69, 32, 0.25);
}
.btn-outline {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: var(--white); color: var(--charcoal);
  border-color: var(--white);
  transform: translateY(-3px);
}
.btn-secondary {
  background: transparent; color: var(--primary);
  border-color: var(--primary);
}
.btn-secondary:hover {
  background: var(--primary); color: var(--white);
  transform: translateY(-3px);
}
.btn-dark {
  background: var(--charcoal); color: var(--white);
  border-color: var(--charcoal);
}
.btn-dark:hover {
  background: var(--primary); border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(232, 69, 32, 0.25);
}
.btn-cta {
  background: var(--accent); color: var(--charcoal);
  border-color: var(--accent); font-weight: 700;
}
.btn-cta:hover {
  background: var(--white); transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 160, 23, 0.3);
}
.btn svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(232, 69, 32, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(212, 160, 23, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 10%, rgba(92, 26, 27, 0.3) 0%, transparent 60%);
  animation: heroShift 12s ease-in-out infinite alternate;
}
@keyframes heroShift {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.05) translate(-2%, 1%); }
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
}
.hero-content {
  position: relative; z-index: 2; padding: 120px 0 80px;
  max-width: none; margin: 0; padding-left: 64px; padding-right: 32px;
}
.hero-tagline {
  font-size: 14px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 28px;
  animation: fadeUp 0.8s var(--ease) both;
}
.hero-title {
  font-size: clamp(48px, 7vw, 88px); font-weight: 700;
  color: var(--white); line-height: 1.05;
  margin-bottom: 28px; max-width: 800px;
  animation: fadeUp 0.8s var(--ease) 0.1s both;
}
.hero-subtitle {
  font-size: 18px; font-weight: 400;
  color: rgba(255, 255, 255, 0.72); line-height: 1.7;
  max-width: 520px; margin-bottom: 44px;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}
.hero-buttons {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease) 0.3s both;
}
.hero-image {
  position: absolute; right: -60px; bottom: 40px; z-index: 2;
  width: clamp(480px, 50vw, 750px);
  pointer-events: none;
  animation: fadeUp 1s var(--ease) 0.4s both;
}
.hero-image img {
  width: 100%; height: auto;
  background: transparent;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
}
/* Steam canvas */
.steam-canvas {
  position: absolute;
  top: -300px; left: 0;
  width: 100%; height: 470px;
  pointer-events: none;
  z-index: 4;
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeUp 0.8s var(--ease) 0.5s both;
}
.hero-scroll span {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
  background: var(--primary); padding: 16px 0; overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex; gap: 48px; animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-size: 14px; font-weight: 600; color: var(--white);
  letter-spacing: 2px; text-transform: uppercase;
  display: flex; align-items: center; gap: 48px;
  flex-shrink: 0;
}
.marquee-track span::after {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.4); flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
.section { padding: 120px 0; }
.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 4vw, 52px); font-weight: 700;
  color: var(--charcoal); line-height: 1.15; margin-bottom: 20px;
}
.section-subtitle {
  font-size: 17px; color: var(--text-mid);
  max-width: 520px; line-height: 1.7;
}

/* ===== SERVICES ===== */
.services-section { background: var(--white); }
.services-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.services-image {
  position: relative;
  margin-left: -80px;
}
.services-image img {
  width: 100%; height: auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.1));
}
.services-content .section-subtitle {
  margin-bottom: 36px; max-width: 480px;
}
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.service-card {
  background: var(--cream); border-radius: var(--radius-sm);
  padding: 24px 20px; position: relative; overflow: hidden;
  transition: all 0.5s var(--ease); cursor: default;
  border: 1px solid transparent;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 26, 24, 0.08);
  border-color: rgba(232, 69, 32, 0.1);
}
.service-card h3 {
  font-size: 17px; font-weight: 600; color: var(--charcoal);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 13px; color: var(--text-mid); line-height: 1.6;
}
.service-card .card-num {
  position: absolute; top: 12px; right: 16px;
  font-size: 48px; font-weight: 700;
  color: rgba(232, 69, 32, 0.04); line-height: 1;
}

/* ===== PACKAGES ===== */
.packages-section { background: var(--white); }
.packages-stack {
  display: flex; flex-direction: column; gap: 32px;
}
.pkg {
  display: grid; grid-template-columns: 340px 1fr; gap: 0;
  background: var(--sand); border-radius: var(--radius-xl);
  border: 1px solid rgba(26,26,24,0.08);
  overflow: hidden;
  transition: all 0.5s var(--ease);
  box-shadow: 0 4px 24px rgba(26,26,24,0.04);
}
.pkg:hover {
  box-shadow: 0 24px 64px rgba(26,26,24,0.1);
  transform: translateY(-4px);
}
.pkg-dark {
  background: var(--charcoal); color: var(--white);
  border-color: transparent;
}

/* Left column — info */
.pkg-left {
  padding: 44px 40px;
  display: flex; flex-direction: column;
  border-right: 1px solid rgba(26,26,24,0.06);
  position: relative;
}
.pkg-dark .pkg-left {
  border-right-color: rgba(255,255,255,0.06);
}
.pkg-num {
  font-size: 72px; font-weight: 700;
  color: rgba(232,69,32,0.05); line-height: 1;
  position: absolute; bottom: 20px; right: 20px;
}
.pkg-dark .pkg-num { color: rgba(255,255,255,0.04); }
.pkg-name {
  font-size: 26px; font-weight: 700; margin-bottom: 8px; line-height: 1.2;
}
.pkg-occasion {
  font-size: 13px; color: var(--text-light); line-height: 1.6;
  margin-bottom: 0;
}
.pkg-dark .pkg-occasion { color: rgba(255,255,255,0.45); }
.pkg-btn { margin-top: auto; }
.package-badge {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary); background: rgba(232,69,32,0.08);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
  width: fit-content;
}
.pkg-dark .package-badge {
  color: var(--accent); background: rgba(212,160,23,0.15);
}

/* Right column — menu items */
.pkg-right {
  padding: 40px 44px;
  display: flex; flex-direction: column; gap: 24px;
}
.pkg-cat-label {
  display: block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.pkg-dark .pkg-cat-label {
  color: var(--accent);
}
.pkg-items {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.pkg-chip {
  font-size: 14px; font-weight: 500;
  color: var(--text);
  background: var(--cream);
  padding: 8px 18px; border-radius: 100px;
  border: 1px solid rgba(26,26,24,0.1);
  transition: all 0.3s var(--ease);
}
.pkg-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.pkg-dark .pkg-chip {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.08);
}
.pkg-dark .pkg-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.pkg-chip-live {
  position: relative;
  padding-left: 30px;
}
.pkg-chip-live::before {
  content: '';
  position: absolute; left: 14px; top: 50%;
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e;
  transform: translateY(-50%);
  box-shadow: 0 0 6px rgba(34,197,94,0.5);
}
.pkg-more {
  font-size: 14px; color: var(--text-light);
  font-style: italic; line-height: 1.5;
}

/* Package with food image */
.pkg-has-img .pkg-right {
  position: relative; overflow: hidden;
}
.pkg-food-img {
  position: absolute;
  right: -40px; bottom: -40px;
  width: 340px; height: 340px;
  object-fit: contain;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.pkg-menu-overlay {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 24px;
}

/* Custom Menu CTA */
.custom-menu-section { background: var(--white); padding-top: 0; }
.custom-menu-card {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--secondary) 100%);
  border-radius: var(--radius-xl); padding: 72px 64px;
  position: relative; overflow: hidden;
}
.custom-menu-card .package-num {
  font-size: 200px; top: -20px; right: 40px;
}
.custom-menu-content { position: relative; z-index: 2; max-width: 560px; }
.custom-menu-content h2 {
  font-size: 36px; font-weight: 700; color: var(--white); margin-bottom: 16px;
}
.custom-menu-content p {
  font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 32px;
}

/* ===== ABOUT PREVIEW ===== */
.about-section { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 4/5; background: var(--sand);
  display: flex; align-items: center; justify-content: center;
}
/* soft radiance to give the logo a grand, lit-from-within feel */
.about-image-wrap::before {
  content: ''; position: absolute; z-index: 0; pointer-events: none;
  width: 90%; height: 90%; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, rgba(212,160,23,0.06) 45%, transparent 70%);
}
.about-image-wrap .grand-logo {
  position: relative; z-index: 1;
  width: 66%; max-width: 360px;
  filter: drop-shadow(0 14px 30px rgba(232,69,32,0.18));
}
.about-image-wrap::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: var(--radius-xl);
}
.about-text .section-title { max-width: 440px; }
.about-text p {
  font-size: 16px; color: var(--text-mid); line-height: 1.8;
  margin-bottom: 20px;
}
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin: 36px 0;
}
.about-stat {
  text-align: center; padding: 20px 12px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid rgba(26, 26, 24, 0.06);
}
.about-stat .num {
  font-size: 32px; font-weight: 700; color: var(--primary);
  line-height: 1; margin-bottom: 4px;
}
.about-stat .label {
  font-size: 12px; color: var(--text-light);
  letter-spacing: 1px; text-transform: uppercase;
}

/* ===== CTA BANNER ===== */
.cta-section {
  padding: 100px 0; position: relative; overflow: hidden;
}
.cta-card {
  background: var(--charcoal); border-radius: var(--radius-xl);
  padding: 80px 64px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(232, 69, 32, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(212, 160, 23, 0.1) 0%, transparent 60%);
}
.cta-card h2 {
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 700;
  color: var(--white); margin-bottom: 16px;
  position: relative;
}
.cta-card p {
  font-size: 17px; color: rgba(255,255,255,0.6);
  margin-bottom: 36px; max-width: 460px; margin-left: auto; margin-right: auto;
  position: relative;
}
.cta-card .btn { position: relative; }

/* ===== FOOTER ===== */
.footer { background: var(--charcoal); padding: 80px 0 0; position: relative; overflow: hidden; }
.footer .container { position: relative; z-index: 1; }
.footer-paan {
  --r: -8deg;
  position: absolute; z-index: 0; pointer-events: none;
  /* align left edge with the container's text column (max-width 1240 + 32px pad) */
  /* bottom set so the paan's visible tip rests just above the divider line */
  top: auto; bottom: 68px; left: max(32px, calc(50% - 588px)); width: 150px;
  transform: rotate(var(--r));
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.45));
  animation: spiceFloat 11s ease-in-out infinite alternate;
  will-change: transform;
}
@media (max-width: 1180px) {
  .footer-paan { width: 116px; left: 32px; bottom: 60px; opacity: 0.9; }
}
@media (max-width: 820px) {
  .footer-paan { display: none; }
  .footer::before { display: none; }
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 64px; flex-wrap: wrap;
}
.footer-brand { max-width: 320px; }
.footer-logo { height: 80px; margin-bottom: 20px; }
.footer-tagline {
  font-size: 15px; font-weight: 500; color: var(--accent); margin-bottom: 12px;
}
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.footer-cols { display: flex; gap: 80px; }
.footer-col h4 {
  font-size: 12px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col li, .footer-col a {
  font-size: 14px; color: rgba(255,255,255,0.68);
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); }

/* ===== PAGE HEROES ===== */
.page-hero {
  padding: 180px 0 100px; background: var(--charcoal);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(232, 69, 32, 0.12) 0%, transparent 60%);
}
.page-hero .container { position: relative; }
.page-hero h1 {
  font-size: clamp(40px, 5vw, 64px); font-weight: 700;
  color: var(--white); margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px; color: rgba(255,255,255,0.7);
  max-width: 540px;
}

/* ===== ABOUT PAGE ===== */
.about-story { background: var(--white); }
.about-story-content { max-width: 700px; margin: 0 auto; }
.about-story-content p {
  font-size: 17px; color: var(--text-mid); line-height: 1.9;
  margin-bottom: 28px;
}
.about-story-content p:first-of-type::first-letter {
  font-size: 56px; font-weight: 700; color: var(--primary);
  float: left; margin-right: 8px; line-height: 1; margin-top: 4px;
}
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.value-card {
  text-align: center; padding: 48px 28px; background: var(--cream);
  border-radius: var(--radius); border: 1px solid transparent;
  transition: all 0.5s var(--ease);
}
.value-card:hover {
  transform: translateY(-6px); border-color: rgba(232, 69, 32, 0.1);
  box-shadow: 0 20px 60px rgba(26, 26, 24, 0.06);
}
.value-icon {
  width: 64px; height: 64px; border-radius: 20px; margin: 0 auto 20px;
  background: rgba(232, 69, 32, 0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.value-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ===== MENU PAGE ===== */
.menu-section { background: var(--white); }
.menu-category { margin-bottom: 72px; }
.menu-category:last-child { margin-bottom: 0; }
.menu-category-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(26, 26, 24, 0.06);
}
.cat-accent { width: 32px; height: 3px; background: var(--primary); border-radius: 2px; }
.menu-category-header h3 { font-size: 28px; font-weight: 600; }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.menu-item {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 20px 24px; border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease); cursor: default;
  border: 1px solid transparent;
}
.menu-item:hover {
  background: var(--cream); border-color: rgba(232, 69, 32, 0.06);
  transform: translateX(4px);
}
.menu-item-name { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.menu-item-desc { font-size: 13px; color: var(--text-light); line-height: 1.5; }
.menu-item-tag {
  font-size: 11px; font-weight: 600; padding: 5px 12px;
  border-radius: 100px; white-space: nowrap;
  margin-left: 16px; flex-shrink: 0;
}
.tag-popular { background: rgba(232, 69, 32, 0.08); color: var(--primary); }
.tag-special { background: rgba(212, 160, 23, 0.12); color: #9A7510; }

/* ===== GALLERY ===== */
.gallery-section { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-item {
  aspect-ratio: 1; background: var(--sand); border-radius: var(--radius-sm);
  overflow: hidden; position: relative; cursor: pointer;
  transition: all 0.5s var(--ease);
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover { transform: scale(1.03); box-shadow: 0 16px 48px rgba(26,26,24,0.1); }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-placeholder { text-align: center; padding: 20px; }
.gallery-placeholder-icon { font-size: 32px; margin-bottom: 8px; opacity: 0.3; }
.gallery-placeholder-text { font-size: 13px; color: var(--text-light); opacity: 0.5; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.testimonial-card {
  background: var(--cream); border-radius: var(--radius); padding: 36px;
  border: 1px solid transparent; transition: all 0.5s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-4px); border-color: rgba(232, 69, 32, 0.08);
  box-shadow: 0 20px 60px rgba(26, 26, 24, 0.06);
}
.testimonial-stars { color: var(--accent); font-size: 14px; letter-spacing: 3px; margin-bottom: 16px; }
.testimonial-quote {
  font-size: 15px; color: var(--text); line-height: 1.8;
  font-style: italic; margin-bottom: 28px;
  position: relative; padding-left: 20px;
  border-left: 2px solid var(--accent);
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--white);
}
.testimonial-name { font-size: 15px; font-weight: 600; }
.testimonial-event { font-size: 13px; color: var(--text-light); }

/* ===== CONTACT ===== */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info h3 { font-size: 28px; font-weight: 600; margin-bottom: 16px; }
.contact-info > p { font-size: 16px; color: var(--text-mid); margin-bottom: 40px; line-height: 1.7; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px;
}
.contact-detail-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(232, 69, 32, 0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.contact-detail-text h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.contact-detail-text p { font-size: 14px; color: var(--text-mid); }
.contact-form {
  background: var(--cream); border-radius: var(--radius-xl); padding: 48px;
  border: 1px solid rgba(26,26,24,0.04);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text-mid); margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 1px solid rgba(26, 26, 24, 0.08);
  border-radius: var(--radius-sm); font-family: var(--font);
  font-size: 15px; color: var(--text); background: var(--white);
  transition: all 0.3s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(232, 69, 32, 0.08);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%; padding: 16px; background: var(--primary);
  color: var(--white); border: none; border-radius: 100px;
  font-family: var(--font); font-size: 16px; font-weight: 600;
  cursor: pointer; transition: all 0.4s var(--ease);
}
.form-submit:hover {
  background: var(--charcoal); transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(26, 26, 24, 0.15);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-layout { grid-template-columns: 1fr; gap: 40px; }
  .services-image { margin-left: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { aspect-ratio: 3/2; order: -1; }
  .footer-top { flex-direction: column; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .nav-links {
    display: none; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26, 26, 24, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center;
    padding: 40px; gap: 8px;
  }
  .nav-links.active { display: flex; }
  .nav-links a {
    font-size: 24px !important; color: var(--white) !important;
    padding: 16px 0 !important; background: none !important;
  }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .pkg { grid-template-columns: 1fr; }
  .pkg-left { border-right: none; border-bottom: 1px solid rgba(26,26,24,0.06); padding: 32px 28px; }
  .pkg-dark .pkg-left { border-bottom-color: rgba(255,255,255,0.06); }
  .pkg-right { padding: 28px; }
  .pkg-num { font-size: 48px; }
  .values-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
  .footer-cols { flex-direction: column; gap: 32px; }
  .cta-card { padding: 56px 28px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .hero-content { padding-left: 24px; padding-right: 20px; }
  /* tuck the modak into the bottom corner, below the CTAs, as a faint accent */
  .hero-image { width: 200px; right: -28px; bottom: -8px; opacity: 0.2; }
  .hero-image::before, .hero-image::after { display: none; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; }
  .page-hero { padding: 140px 0 72px; }
  .marquee-strip { padding: 12px 0; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* =================================================================
   POLISH & REFINE  — v1.1
   Typographic rhythm, micro-interactions, richer menu & packages
   ================================================================= */

/* --- Global refinements --- */
::selection { background: var(--primary); color: var(--white); }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* Buttons: subtle sheen sweep on hover */
.btn::after {
  content: ''; position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-18deg); transition: left 0.6s var(--ease);
  pointer-events: none;
}
.btn:hover::after { left: 130%; }
.btn-cta:hover { color: var(--charcoal); }

/* Section label: small leading tick for a crafted feel */
.section-label { display: inline-flex; align-items: center; gap: 10px; }
.section-label::before {
  content: ''; width: 22px; height: 2px; border-radius: 2px;
  background: currentColor; opacity: 0.7;
}

/* Page-hero: refined eyebrow + decorative base line */
.page-hero h1 { line-height: 1.1; letter-spacing: -0.5px; }
.page-hero p { line-height: 1.7; }

/* ===== MENU PAGE — refined ===== */
.menu-intro { text-align: center; max-width: 600px; margin: 0 auto 8px; }

/* Quick category nav (table of contents) */
.menu-toc {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin: 0 auto 72px; max-width: 860px;
}
.menu-toc a {
  font-size: 13px; font-weight: 600; letter-spacing: 0.3px;
  color: var(--text-mid); background: var(--cream);
  border: 1px solid rgba(26,26,24,0.08);
  padding: 9px 18px; border-radius: 100px;
  transition: all 0.3s var(--ease);
}
.menu-toc a:hover {
  color: var(--white); background: var(--primary);
  border-color: var(--primary); transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232,69,32,0.22);
}

.menu-category { scroll-margin-top: 110px; }
.menu-category-header { justify-content: flex-start; gap: 16px; }
.menu-category-header h3 { letter-spacing: -0.3px; }
.menu-count {
  margin-left: auto; font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); background: rgba(212,160,23,0.12);
  padding: 5px 14px; border-radius: 100px; white-space: nowrap;
}
.cat-accent {
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

/* Menu item: left reveal bar + lift */
.menu-item { position: relative; overflow: hidden; }
.menu-item::before {
  content: ''; position: absolute; left: 0; top: 12px; bottom: 12px;
  width: 3px; border-radius: 3px;
  background: linear-gradient(var(--primary), var(--accent));
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.4s var(--ease);
}
.menu-item:hover::before { transform: scaleY(1); }
.menu-item:hover { transform: translateX(6px); }
.menu-item-name { transition: color 0.3s var(--ease); }
.menu-item:hover .menu-item-name { color: var(--primary); }
.tag-chef { background: rgba(45,90,61,0.12); color: var(--forest); }
.tag-veg  { background: rgba(45,90,61,0.10); color: var(--forest); }

/* ===== PACKAGES — refined ===== */
.packages-stack { gap: 28px; }
.pkg { will-change: transform; }
.pkg-left { gap: 4px; }
.pkg-name { letter-spacing: -0.4px; }
.pkg-serves {
  margin-top: 14px; font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.4px; color: var(--text-mid);
  display: inline-flex; align-items: center; gap: 7px;
}
.pkg-serves::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
}
.pkg-dark .pkg-serves { color: rgba(255,255,255,0.6); }
.pkg-btn { margin-top: 22px; }

/* Premium / featured package: maroon→charcoal with gold ring */
.pkg-premium {
  background: linear-gradient(140deg, var(--secondary) 0%, var(--charcoal) 90%);
  color: var(--white); border: 1px solid rgba(212,160,23,0.28);
  box-shadow: 0 10px 40px rgba(92,26,27,0.22);
}
.pkg-premium .pkg-left { border-right-color: rgba(255,255,255,0.08); }
.pkg-premium .pkg-occasion { color: rgba(255,255,255,0.5); }
.pkg-premium .pkg-num { color: rgba(212,160,23,0.10); }
.pkg-premium .package-badge { color: var(--accent); background: rgba(212,160,23,0.18); }
.pkg-premium .pkg-cat-label { color: var(--accent-light); }
.pkg-premium .pkg-chip {
  background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.88);
  border-color: rgba(212,160,23,0.18);
}
.pkg-premium .pkg-chip:hover { border-color: var(--accent); color: var(--accent-light); }
.pkg-premium .btn-primary { background: var(--accent); border-color: var(--accent); color: var(--charcoal); }
.pkg-premium .btn-primary:hover { background: var(--white); border-color: var(--white); color: var(--charcoal); }

.package-badge { box-shadow: inset 0 0 0 1px rgba(232,69,32,0.10); }
.pkg-cat { animation: none; }

/* Section divider flourish between major blocks */
.divider-dot {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; padding: 8px 0; color: var(--accent);
}
.divider-dot span { width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: 0.5; }
.divider-dot span:nth-child(2) { width: 7px; height: 7px; opacity: 0.9; }

/* ===== PACKAGES SECTION — decorative warm backdrop ===== */
.packages-section {
  background:
    radial-gradient(ellipse 60% 50% at 6% 4%, rgba(232,69,32,0.10), transparent 55%),
    radial-gradient(ellipse 55% 55% at 96% 98%, rgba(212,160,23,0.14), transparent 55%),
    linear-gradient(168deg, #FBF0DD 0%, #F4E4CC 55%, #F1DDC0 100%);
  position: relative; overflow: hidden;
}
/* fine spice-dot texture */
.packages-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.8;
  background-image: radial-gradient(rgba(92,26,27,0.07) 1.2px, transparent 1.3px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent);
}
/* concentric rangoli rings, top-right */
.packages-section::after {
  content: ''; position: absolute; top: -140px; right: -140px;
  width: 460px; height: 460px; border-radius: 50%; pointer-events: none; opacity: 0.6;
  background:
    radial-gradient(circle, transparent 36%, rgba(212,160,23,0.18) 37%, transparent 39%),
    radial-gradient(circle, transparent 47%, rgba(232,69,32,0.14) 48%, transparent 50%),
    radial-gradient(circle, transparent 58%, rgba(212,160,23,0.12) 59%, transparent 61%),
    radial-gradient(circle, transparent 69%, rgba(92,26,27,0.10) 70%, transparent 72%);
}
.packages-section .container { position: relative; z-index: 1; }
/* decorative spice bursts */
.deco-spice {
  position: absolute; z-index: 0; pointer-events: none;
  width: 320px; height: auto; opacity: 0.14;
}
.deco-spice-a { top: 40px; left: -70px; transform: rotate(-12deg); }
.deco-spice-b { bottom: 80px; right: -80px; transform: rotate(18deg); width: 380px; opacity: 0.12; }

/* ===== HERO SPICE GARNISHES (floating ingredient accents) ===== */
.hero { position: relative; }
.hero-spice {
  position: absolute; z-index: 1; pointer-events: none; height: auto;
  opacity: 1; filter: drop-shadow(0 14px 30px rgba(0,0,0,0.45));
  animation: spiceFloat 9s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes spiceFloat {
  from { transform: translateY(0) rotate(var(--r, 0deg)); }
  to   { transform: translateY(-16px) rotate(calc(var(--r, 0deg) + 5deg)); }
}
.hero .hero-spice { z-index: 1; opacity: 1; }
.hero-content, .page-hero .container { position: relative; z-index: 3; }
@media (max-width: 768px) {
  .hero-spice { display: none; }
}
.custom-menu-section {
  background: linear-gradient(8deg, var(--cream) 0%, #F4E4CC 100%);
}

/* Light cards: bright cream gradient so they lift off the warm backdrop */
.pkg:not(.pkg-dark):not(.pkg-premium) {
  background: linear-gradient(155deg, #FFFEFB 0%, #FBF1E1 100%);
  border-color: rgba(92,26,27,0.10);
  box-shadow: 0 16px 46px rgba(92,26,27,0.10);
}
.pkg:not(.pkg-dark):not(.pkg-premium):hover {
  box-shadow: 0 30px 76px rgba(92,26,27,0.16);
}
.pkg:not(.pkg-dark):not(.pkg-premium) .pkg-chip {
  background: var(--white); border-color: rgba(92,26,27,0.10);
  box-shadow: 0 1px 3px rgba(26,26,24,0.05);
}

/* ===== DENSER CARDS ===== */
/* bigger decorative numeral */
.pkg-num { font-size: 104px; bottom: 16px; right: 22px; }
.pkg:not(.pkg-dark):not(.pkg-premium) .pkg-num { color: rgba(232,69,32,0.07); }

/* diamond marker before each category label */
.pkg-cat-label::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px; margin-right: 9px; vertical-align: 2px;
  background: currentColor; transform: rotate(45deg);
}

/* divider line between stacked categories */
.pkg-right > .pkg-cat + .pkg-cat,
.pkg-menu-overlay > .pkg-cat + .pkg-cat {
  border-top: 1px solid rgba(92,26,27,0.10);
  padding-top: 22px;
}
.pkg-dark .pkg-right > .pkg-cat + .pkg-cat,
.pkg-dark .pkg-menu-overlay > .pkg-cat + .pkg-cat {
  border-top-color: rgba(255,255,255,0.10);
}
.pkg-premium .pkg-right > .pkg-cat + .pkg-cat,
.pkg-premium .pkg-menu-overlay > .pkg-cat + .pkg-cat {
  border-top-color: rgba(212,160,23,0.22);
}

/* ===== 3-COLUMN CARD: info | menu | media (clean image panel) ===== */
.packages-stack .pkg { grid-template-columns: 280px 1fr 300px; }
.pkg-right { position: relative; }

/* Image panel — crisp food shot with soft glow + drop shadow, like the hero */
.pkg-media {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 24px; min-height: 230px;
  border-left: 1px solid rgba(26,26,24,0.06);
}
.pkg-dark .pkg-media, .pkg-premium .pkg-media { border-left-color: rgba(255,255,255,0.08); }
.pkg-media::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 56% 42% at 50% 54%, rgba(232,69,32,0.12), transparent 68%);
}
.pkg-dark .pkg-media::before, .pkg-premium .pkg-media::before {
  background: radial-gradient(ellipse 56% 42% at 50% 54%, rgba(212,160,23,0.20), transparent 68%);
}
.pkg-media img {
  position: relative; z-index: 1;
  width: 100%; max-width: 300px; max-height: 240px; height: auto; object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(26,26,24,0.30));
  transition: transform 0.6s var(--ease);
}
.pkg:hover .pkg-media img { transform: scale(1.05) rotate(-1deg); }

/* decorative media panel (awaiting a real photo) */
.pkg-media-deco::after {
  content: ''; position: relative; z-index: 1;
  width: 200px; height: 200px; border-radius: 50%;
  background:
    radial-gradient(circle, transparent 35%, rgba(212,160,23,0.32) 36%, transparent 38%),
    radial-gradient(circle, transparent 49%, rgba(232,69,32,0.22) 50%, transparent 52%),
    radial-gradient(circle, transparent 63%, rgba(212,160,23,0.18) 64%, transparent 66%),
    radial-gradient(circle, rgba(232,69,32,0.10) 0%, transparent 32%);
}
.pkg-dark .pkg-media-deco::after, .pkg-premium .pkg-media-deco::after {
  background:
    radial-gradient(circle, transparent 35%, rgba(212,160,23,0.44) 36%, transparent 38%),
    radial-gradient(circle, transparent 49%, rgba(255,255,255,0.12) 50%, transparent 52%),
    radial-gradient(circle, transparent 63%, rgba(212,160,23,0.26) 64%, transparent 66%),
    radial-gradient(circle, rgba(212,160,23,0.10) 0%, transparent 32%);
}

@media (max-width: 980px) {
  .packages-stack .pkg { grid-template-columns: 1fr; }
  .packages-stack .pkg-left {
    border-right: none; border-bottom: 1px solid rgba(26,26,24,0.06);
  }
  .pkg-dark .pkg-left, .pkg-premium .pkg-left { border-bottom-color: rgba(255,255,255,0.07); }
  .pkg-media {
    min-height: 200px; border-left: none;
    border-top: 1px solid rgba(26,26,24,0.06); order: 3;
  }
  .pkg-dark .pkg-media, .pkg-premium .pkg-media { border-top-color: rgba(255,255,255,0.08); }
}

/* ===== FOUNDER SECTION ===== */
.founder-section { background: var(--sand); }
.founder-grid {
  display: grid; grid-template-columns: 0.82fr 1.18fr;
  gap: 64px; align-items: center;
}
.founder-photo-wrap {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 4 / 5; background: var(--cream);
  box-shadow: 0 30px 70px rgba(26,26,24,0.20);
}
.founder-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
  transition: transform 0.8s var(--ease);
}
.founder-photo-wrap:hover img { transform: scale(1.04); }
.founder-photo-wrap::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  border: 1px solid rgba(212,160,23,0.45); border-radius: var(--radius-xl);
  box-shadow: inset 0 -120px 80px -60px rgba(26,26,24,0.45);
}
.founder-tag {
  position: absolute; left: 20px; bottom: 20px; z-index: 2;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--charcoal); background: var(--accent);
  padding: 8px 16px; border-radius: 100px;
  box-shadow: 0 8px 24px rgba(212,160,23,0.35);
}
.founder-role {
  font-size: 16px; font-weight: 600; font-style: italic;
  color: var(--primary); margin: 4px 0 24px;
}
.founder-text p:not(.section-label):not(.founder-role):not(.founder-sign) {
  font-size: 16px; color: var(--text-mid); line-height: 1.85; margin-bottom: 18px;
}
.founder-quote {
  font-size: 20px; font-weight: 500; font-style: italic;
  color: var(--secondary); line-height: 1.5;
  margin: 26px 0 18px; padding-left: 22px;
  border-left: 3px solid var(--accent);
}
.founder-sign {
  font-size: 15px; font-weight: 600; color: var(--charcoal); letter-spacing: 0.3px;
}

/* Responsive tweaks for new bits */
@media (max-width: 1024px) {
  .founder-grid { grid-template-columns: 1fr; gap: 40px; max-width: 620px; margin: 0 auto; }
  .founder-photo-wrap { aspect-ratio: 3 / 2; }
  .founder-photo-wrap img { object-position: center 25%; }
}
@media (max-width: 768px) {
  .menu-toc { margin-bottom: 48px; gap: 8px; }
  .menu-toc a { font-size: 12px; padding: 8px 14px; }
  .menu-count { margin-left: 0; }
  .menu-category-header { flex-wrap: wrap; }
  .founder-quote { font-size: 18px; }
}

/* =================================================================
   UX & ACCESSIBILITY REFINEMENTS — v1.2
   ================================================================= */

/* Skip-to-content link (visible on keyboard focus only) */
.skip-link {
  position: absolute; top: -60px; left: 16px; z-index: 2000;
  background: var(--primary); color: var(--white);
  padding: 12px 24px; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 14px; font-weight: 600;
  transition: top 0.3s var(--ease);
}
.skip-link:focus { top: 0; }

/* Mobile nav: keep toggle above the full-screen overlay + animate to X */
.nav-toggle { position: relative; z-index: 1002; }
.nav-links { z-index: 1001; }
.nav-toggle.open span { background: var(--white); }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Lock page scroll while the mobile menu is open */
body.nav-open { overflow: hidden; }

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 1500;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: currentColor; }
@media (max-width: 768px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

/* Footer contact rows are now real links */
.footer-col a:hover { color: var(--accent); }

/* ===== VENUES WE SERVE ===== */
.venues-section { background: var(--sand); }
.venue-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 20px;
  margin-top: 44px;
}
.venue-card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px 36px; border: 1px solid rgba(26,26,24,0.06);
  transition: all 0.5s var(--ease);
}
.venue-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(26,26,24,0.08);
  border-color: rgba(232,69,32,0.1);
}
.venue-featured { border: 1px solid rgba(212,160,23,0.35); }
.venue-badge {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); background: rgba(212,160,23,0.12);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 18px;
}
.venue-card h3 {
  font-size: 21px; font-weight: 700; color: var(--charcoal);
  margin-bottom: 12px; line-height: 1.3;
}
.venue-card p { font-size: 15px; color: var(--text-mid); line-height: 1.75; }
@media (max-width: 768px) {
  .venue-grid { grid-template-columns: 1fr; margin-top: 32px; }
  .venue-card { padding: 28px 24px; }
}

/* =================================================================
   MOBILE OPTIMIZATION — v1.3
   ================================================================= */

/* Modern viewport unit: hero fills the *visible* screen on mobile
   (100vh overshoots behind the browser address bar) */
.hero { min-height: 100vh; min-height: 100svh; }

/* Snappier touch: remove tap highlight + 300ms delay, add press feedback */
a, button { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
@media (hover: none) {
  .btn:active { transform: scale(0.97); }
  .pkg-chip:hover, .menu-item:hover { transform: none; }
}

@media (max-width: 768px) {
  /* Compact navbar — 90px + 72px logo is too heavy on a phone */
  .nav-container { height: 68px; }
  .logo-img { height: 52px; }
  .navbar { padding: 0 20px; }

  /* iOS zooms into any input under 16px on focus — prevent it */
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; }

  /* Hero: tighter type + spacing on small screens */
  .hero-content { padding-top: 96px; padding-bottom: 64px; }
  .hero-title { font-size: clamp(38px, 11vw, 56px); margin-bottom: 20px; }
  .hero-subtitle { font-size: 16px; margin-bottom: 32px; }
  .hero-tagline { letter-spacing: 3px; font-size: 12px; margin-bottom: 20px; }
  .hero-scroll { display: none; }

  /* Comfortable tap targets in the footer */
  .footer-col li { margin-bottom: 4px; }
  .footer-col a, .footer-col li { display: inline-block; padding: 6px 0; }

  /* WhatsApp button clears the iPhone home indicator */
  .whatsapp-float { bottom: calc(16px + env(safe-area-inset-bottom, 0px)); }

  /* Cards breathe less, content-first */
  .cta-card h2 { font-size: 26px; }
  .custom-menu-card { padding: 48px 28px; }
  .custom-menu-content h2 { font-size: 28px; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .page-hero { padding: 120px 0 56px; }
  .page-hero h1 { font-size: 34px; }
  .page-hero p { font-size: 16px; }
  .section-title { font-size: 28px; }
  .container { padding: 0 16px; }
  .navbar { padding: 0 16px; }
  .contact-form { padding: 22px 16px; }
  .pkg-left, .pkg-right { padding: 24px 20px; }
  .testimonial-card { padding: 26px 22px; }
  .about-stat { padding: 14px 8px; }
  .about-stat .num { font-size: 26px; }
  /* keep the 3 stats side-by-side — they fit once compacted */
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer { padding-top: 56px; }
  .footer-logo { height: 64px; }
}
