/* ===========================
   PAPA GARDEN HEAL — Stylesheet
   Aesthetic: warm, earthy, garden, modern
   =========================== */

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

:root {
  --green-900: #2A3F2A;
  --green-700: #3D5A3D;
  --green-500: #6B7F4A;
  --green-300: #A8B584;
  --green-100: #E4EAD0;
  --cream-100: #FBF7EC;
  --cream-200: #F5EFE0;
  --cream-300: #EBE2C8;
  --terracotta: #C97B5C;
  --terracotta-dark: #A85F44;
  --wood: #8B6F47;
  --wood-dark: #5A4A3A;
  --ink: #2A2A1F;
  --ink-soft: #4A4A3A;

  --shadow-soft: 0 10px 40px rgba(45, 60, 35, 0.08);
  --shadow-hover: 0 20px 50px rgba(45, 60, 35, 0.15);
  --radius: 18px;
  --radius-sm: 10px;

  --font-thai: 'Sarabun', system-ui, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-hand: 'Caveat', cursive;

  --container: 1200px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-thai);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream-100);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--terracotta); }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Loader ---------- */
.loader { display: none !important; }
.loader-leaf {
  width: 50px;
  height: 50px;
  border: 3px solid var(--green-300);
  border-top-color: var(--green-700);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.loader-text { color: var(--green-700); letter-spacing: 1px; font-size: .95rem; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 14px 0;
  background: rgba(251, 247, 236, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 8px 0;
  background: rgba(251, 247, 236, 0.95);
  border-bottom: 1px solid rgba(107, 127, 74, 0.15);
  box-shadow: 0 4px 30px rgba(45, 60, 35, 0.06);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream-200);
  transition: transform .4s var(--ease);
}
.nav-brand:hover .nav-logo { transform: rotate(-8deg) scale(1.05); }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--green-900);
}
.nav-brand-sub {
  font-family: var(--font-hand);
  font-size: 1rem;
  color: var(--terracotta);
  margin-top: 2px;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: all .3s var(--ease);
  transform: translateX(-50%);
}
.nav-links a:hover { color: var(--green-700); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--green-700);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, rgba(45, 63, 42, 0.3) 0%, rgba(45, 63, 42, 0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 24px;
  max-width: 900px;
}
.hero-eyebrow {
  font-family: var(--font-hand);
  font-size: 1.5rem;
  color: var(--cream-200);
  margin-bottom: 12px;
  opacity: 0.9;
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(3rem, 10vw, 7.5rem);
  line-height: 1;
  letter-spacing: 4px;
  margin-bottom: 20px;
}
.hero-title-line { display: block; }
.hero-title-accent {
  font-style: italic;
  color: var(--cream-200);
}
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .5px;
  cursor: pointer;
  transition: all .3s var(--ease);
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--terracotta);
  color: white;
  box-shadow: 0 10px 30px rgba(201, 123, 92, 0.35);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(201, 123, 92, 0.45);
  color: white;
}
.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: white;
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: white;
  color: var(--green-700);
  transform: translateY(-3px);
}
.btn-light {
  background: white;
  color: var(--green-700);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.btn-light:hover {
  background: var(--cream-200);
  transform: translateY(-3px);
  color: var(--green-700);
}
.btn-block { width: 100%; }

.hero-scroll {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.85;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: white;
  position: relative;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  width: 1px;
  height: 12px;
  background: var(--terracotta);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: 0; }
  100% { top: 100%; }
}
.hero-scroll-text {
  font-size: .7rem;
  letter-spacing: 3px;
}

.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 3;
  background: rgba(45, 63, 42, 0.5);
  backdrop-filter: blur(8px);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  color: white;
  font-weight: 500;
  letter-spacing: 1px;
}
.hero-marquee-track span { flex-shrink: 0; font-size: .95rem; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Section base ---------- */
.eyebrow {
  font-family: var(--font-hand);
  font-size: 1.4rem;
  color: var(--terracotta);
  margin-bottom: 6px;
  display: inline-block;
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.15;
  color: var(--green-900);
  margin-bottom: 16px;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 600px;
}

/* ---------- Story ---------- */
.story { padding: 120px 0; background: var(--cream-100); position: relative; }
.story::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(180deg, rgba(45, 63, 42, 0.04), transparent);
}
.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-images {
  position: relative;
  height: 540px;
}
.story-img {
  position: absolute;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
  transition: transform .6s var(--ease);
}
.story-img-1 {
  width: 65%;
  height: 380px;
  top: 0; left: 0;
  z-index: 2;
}
.story-img-2 {
  width: 50%;
  height: 240px;
  bottom: 0; right: 10%;
  z-index: 3;
}
.story-img-3 {
  width: 38%;
  height: 200px;
  top: 30%; right: 0;
  z-index: 1;
}
.story-img-deco {
  position: absolute;
  top: -30px; left: 50%;
  font-size: 3rem;
  z-index: 4;
  transform: rotate(-15deg);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: rotate(-15deg) translateY(0); }
  50% { transform: rotate(-15deg) translateY(-12px); }
}
.story-content { position: relative; }
.story-lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin: 24px 0 32px;
  line-height: 1.8;
}
.story-lead em { color: var(--green-700); font-style: normal; font-weight: 600; }
.story-list { display: grid; gap: 18px; }
.story-list li {
  display: flex;
  gap: 16px;
  padding: 16px 20px;
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(45, 60, 35, 0.05);
  transition: all .3s var(--ease);
}
.story-list li:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 28px rgba(45, 60, 35, 0.1);
}
.story-list li > span {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-100);
  border-radius: 50%;
}
.story-list li strong {
  display: block;
  font-size: 1.05rem;
  color: var(--green-900);
  margin-bottom: 2px;
}
.story-list li small { color: var(--ink-soft); font-size: .9rem; }

/* ---------- Menu ---------- */
.menu {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--cream-100) 0%, var(--cream-200) 100%);
}
.menu-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.menu-header .section-lead { margin: 0 auto; }

.menu-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.menu-tab {
  padding: 12px 28px;
  border-radius: 999px;
  background: white;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: .95rem;
  box-shadow: 0 2px 12px rgba(45, 60, 35, 0.06);
  transition: all .3s var(--ease);
}
.menu-tab:hover { color: var(--green-700); }
.menu-tab.active {
  background: var(--green-700);
  color: white;
  box-shadow: 0 8px 22px rgba(61, 90, 61, 0.3);
}

.menu-panels { position: relative; }
.menu-panel {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  animation: fadeUp .5s var(--ease);
}
.menu-panel.active { display: grid; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all .4s var(--ease);
  position: relative;
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.menu-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.menu-card:hover img { transform: scale(1.06); }
.menu-card-body { padding: 20px 22px 24px; }
.menu-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 6px;
}
.menu-card p {
  font-size: .92rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
  min-height: 40px;
}
.menu-card .price {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--terracotta);
}

/* ---------- Gallery ---------- */
.gallery { padding: 120px 0 80px; background: var(--cream-200); }
.gallery-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 700px;
  margin-inline: auto;
}
.gallery-header .section-lead { margin: 0 auto; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(45, 60, 35, 0.08);
  transition: all .4s var(--ease);
}
.gallery-item-tall { aspect-ratio: 1 / 1.4; grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.gallery-item:hover {
  box-shadow: 0 18px 40px rgba(45, 60, 35, 0.2);
  transform: translateY(-4px);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 18px;
  color: white;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: .5px;
  background: linear-gradient(0deg, rgba(0,0,0,0.7), transparent);
  transform: translateY(20px);
  opacity: 0;
  transition: all .35s var(--ease);
}
.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(20, 25, 18, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .3s var(--ease);
  padding: 40px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-content figcaption {
  color: white;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-top: 16px;
  letter-spacing: 1px;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,0.1);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all .25s var(--ease);
  backdrop-filter: blur(8px);
}
.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--terracotta);
  color: white;
  transform: scale(1.1);
}
.lightbox-close { top: 24px; right: 24px; font-size: 1.8rem; }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-nav:hover { transform: translateY(-50%) scale(1.1); }

/* ---------- Visit ---------- */
.visit { padding: 120px 0; background: var(--cream-100); }
.visit-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.visit-info { max-width: 560px; }
.visit-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 20px 0 36px;
  line-height: 1.8;
}
.visit-hours {
  background: white;
  padding: 28px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-300);
  font-size: 1rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { font-weight: 500; color: var(--green-900); }
.hours-row span:last-child { color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hours-closed span:last-child {
  background: var(--terracotta);
  color: white;
  padding: 2px 12px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
}

.visit-card {
  background: var(--green-900);
  color: white;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-hover);
}
.visit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(201, 123, 92, 0.3), transparent 50%),
    radial-gradient(circle at bottom left, rgba(107, 127, 74, 0.3), transparent 50%);
}
.visit-card-inner {
  position: relative;
  padding: 44px 36px;
}
.visit-icon { font-size: 2.2rem; margin-bottom: 8px; }
.visit-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--cream-200);
}
.visit-card p { color: rgba(255,255,255,0.85); margin-bottom: 8px; line-height: 1.7; }
.visit-card p a { color: var(--cream-200); text-decoration: underline; text-decoration-color: var(--terracotta); }
.visit-card hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin: 24px 0;
}

/* ---------- CTA / Quote ---------- */
.cta {
  position: relative;
  padding: 140px 0;
  text-align: center;
  color: white;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 63, 42, 0.85), rgba(20, 25, 18, 0.75));
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.cta-eyebrow {
  font-family: var(--font-hand);
  font-size: 1.5rem;
  color: var(--cream-200);
  margin-bottom: 20px;
}
.cta-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 24px;
  color: white;
}
.cta-sig {
  font-family: var(--font-hand);
  font-size: 1.4rem;
  color: var(--cream-200);
  margin-bottom: 36px;
  opacity: 0.9;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--green-900);
  color: var(--cream-200);
  padding: 60px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.footer-brand strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}
.footer-brand small { color: rgba(245, 239, 224, 0.7); font-size: .85rem; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { color: rgba(245, 239, 224, 0.85); }
.footer-nav a:hover { color: var(--terracotta); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all .3s var(--ease);
}
.footer-social a:hover {
  background: var(--terracotta);
  transform: translateY(-3px);
}
.footer-copy {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: .85rem;
  color: rgba(245, 239, 224, 0.6);
}

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; gap: 50px; }
  .story-images { height: 460px; }
  .visit-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    background: var(--cream-100);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-200%);
    transition: transform .4s var(--ease);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1.05rem; padding: 8px 0; }

  .hero { padding-top: 100px; min-height: 90vh; }
  .hero-scroll { bottom: 80px; }
  .story-images { height: 380px; }
  .story-img-1 { height: 280px; }
  .story-img-2 { height: 180px; }
  .story-img-3 { height: 150px; }

  .menu-panel { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-item-tall { aspect-ratio: 1; grid-row: span 1; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-nav { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .footer-social { justify-content: center; }

  .lightbox-nav { width: 42px; height: 42px; font-size: 1.2rem; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .menu-tabs { gap: 6px; }
  .menu-tab { padding: 10px 18px; font-size: .85rem; }
  .visit-card-inner { padding: 32px 24px; }
  .nav-brand-sub { display: none; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
