/* ============================================================
   An House Coffee — design system
   Mobile-first. Earthy / botanical / handmade.
   ============================================================ */

:root {
  /* palette — warm cream, forest green, wood brown */
  --paper:        oklch(0.967 0.018 92);   /* page background */
  --paper-2:      oklch(0.945 0.022 88);   /* alt section bg */
  --card:         oklch(0.992 0.010 92);   /* cards / surfaces */
  --ink:          oklch(0.265 0.018 70);   /* primary text */
  --ink-soft:     oklch(0.430 0.020 72);   /* secondary text */
  --line:         oklch(0.880 0.020 86);   /* hairlines */

  --forest:       oklch(0.400 0.058 152);  /* primary green */
  --forest-deep:  oklch(0.320 0.050 153);
  --leaf:         oklch(0.585 0.090 150);  /* lively green */
  --leaf-soft:    oklch(0.900 0.040 145);  /* tints / chips */
  --wood:         oklch(0.470 0.058 58);   /* brown accent */
  --wood-soft:    oklch(0.905 0.030 70);
  --clay:         oklch(0.620 0.090 50);   /* warm terracotta touch */

  /* type */
  --hand: "Dancing Script", cursive;
  --serif: "Lora", Georgia, "Times New Roman", serif;
  --sans: "Be Vietnam Pro", system-ui, -apple-system, sans-serif;

  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 40px);
  --radius: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 1px 3px oklch(0.4 0.04 70 / 0.07), 0 6px 18px oklch(0.4 0.04 70 / 0.06);
  --shadow-md: 0 6px 16px oklch(0.4 0.04 70 / 0.10), 0 20px 50px oklch(0.4 0.04 70 / 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- bilingual visibility ---- */
body.lang-vi .lang-en { display: none !important; }
body.lang-en .lang-vi { display: none !important; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; text-wrap: balance; }
p, li, .lead, .ans { margin: 0; text-wrap: pretty; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }

/* type helpers */
.hand {
  font-family: var(--hand);
  font-weight: 600;
  color: var(--leaf);
  line-height: 1;
}
.eyebrow {
  font-family: var(--hand);
  font-size: clamp(1.5rem, 6vw, 2rem);
  color: var(--clay);
  display: inline-block;
  transform: rotate(-3deg);
}
.serif { font-family: var(--serif); }
.h-section {
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 3.4rem);
  font-weight: 600;
  color: var(--forest-deep);
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.lead {
  font-size: clamp(1.02rem, 3.6vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 56ch;
  text-wrap: pretty;
}

.section { padding-block: clamp(50px, 8vw, 100px); position: relative; }
#serve { padding-bottom: clamp(30px, 4vw, 50px); }
#story { padding-top: clamp(30px, 4vw, 50px); }
.section--alt { background: var(--paper-2); }
.section--green {
  background:
    radial-gradient(120% 80% at 80% 0%, oklch(0.43 0.06 152) 0%, transparent 60%),
    var(--forest-deep);
  color: oklch(0.95 0.02 92);
}
.section--green .h-section { color: oklch(0.96 0.03 110); }
.section--green .lead { color: oklch(0.90 0.03 110); }
.section--green .eyebrow { color: oklch(0.82 0.09 110); }

.section-head { margin-bottom: clamp(36px, 7vw, 60px); }
.section-head .eyebrow { margin-bottom: 6px; }

/* ---- placeholders (images & video) ---- */
.ph {
  position: relative;
  border-radius: var(--radius);
  background-color: var(--wood-soft);
  background-image:
    repeating-linear-gradient(135deg,
      oklch(0.86 0.03 80 / 0.6) 0 12px,
      oklch(0.90 0.025 90 / 0.6) 12px 24px);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  min-height: 180px;
}
.ph[data-tone="green"] {
  background-color: var(--leaf-soft);
  background-image:
    repeating-linear-gradient(135deg,
      oklch(0.84 0.05 150 / 0.6) 0 12px,
      oklch(0.90 0.04 150 / 0.6) 12px 24px);
}
.ph::after {
  content: attr(data-label);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: oklch(0.42 0.03 70 / 0.8);
  padding: 6px 12px;
  border: 1px dashed oklch(0.45 0.03 70 / 0.5);
  border-radius: 100px;
  background: oklch(1 0 0 / 0.45);
  text-align: center;
  max-width: 80%;
}
.ph--video::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: oklch(1 0 0 / 0.9);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.ph--video .play-tri {
  position: absolute; inset: 0; margin: auto;
  width: 0; height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--forest);
  transform: translateX(3px);
  z-index: 3;
}

img.ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.85em 1.5em;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn--primary { background: var(--forest); color: oklch(0.97 0.02 110); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--forest-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--forest-deep); border-color: var(--forest); }
.btn--ghost:hover { background: var(--forest); color: oklch(0.97 0.02 110); }
.btn--light { background: oklch(0.97 0.02 110); color: var(--forest-deep); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---- chips ---- */
.chip {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-size: 0.82rem; font-weight: 600;
  padding: 0.4em 0.9em;
  border-radius: 100px;
  background: var(--leaf-soft);
  color: var(--forest-deep);
  border: 1px solid oklch(0.80 0.05 150);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding-block: 16px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s ease, padding 0.3s ease;
}
.nav.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav.scrolled {
  background: oklch(0.967 0.018 92 / 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 10px;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; }
.brand__logo {
  height: 42px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}
.brand:hover .brand__logo {
  transform: scale(1.04);
}
.brand__mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--forest); color: oklch(0.97 0.02 110);
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 600; font-size: 1.1rem;
  flex: none;
}
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--forest-deep); line-height: 1; }
.brand__sub { font-family: var(--hand); font-size: 1rem; color: var(--clay); line-height: 1; }

.nav__links { display: none; align-items: center; gap: 26px; }
.nav__links a { font-size: 0.95rem; font-weight: 500; color: var(--ink); position: relative; padding-block: 4px; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--leaf); transition: width 0.25s ease;
}
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 10px; }
.lang-toggle {
  display: inline-flex; border: 1.5px solid var(--line); border-radius: 100px; overflow: hidden;
  background: var(--card);
}
.lang-toggle button {
  border: 0; background: transparent; cursor: pointer;
  font-family: var(--sans); font-weight: 600; font-size: 0.82rem;
  padding: 0.45em 0.8em; color: var(--ink-soft);
  transition: background 0.2s, color 0.2s;
}
.lang-toggle button.active { background: var(--forest); color: oklch(0.97 0.02 110); }

.nav__reserve { display: none; }

.burger {
  width: 42px; height: 42px; border-radius: 12px; border: 1.5px solid var(--line);
  background: var(--card); display: grid; place-items: center; cursor: pointer; gap: 4px;
}
.burger span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.25s; }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile menu drawer */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); z-index: 99;
  background: var(--paper); box-shadow: var(--shadow-md);
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(.5,.05,.2,1);
  padding: 90px 28px 28px; display: flex; flex-direction: column; gap: 4px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--serif); font-size: 1.4rem; color: var(--forest-deep);
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 18px; justify-content: center; }
.scrim {
  position: fixed; inset: 0; background: oklch(0.2 0.02 70 / 0.4); z-index: 98;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.scrim.open { opacity: 1; pointer-events: auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; padding-bottom: clamp(40px, 9vw, 80px); padding-top: 120px; overflow: hidden; }
.hero__bg-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
#hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__bg-container::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, oklch(0.25 0.04 150 / 0.15) 0%, oklch(0.22 0.04 150 / 0.1) 40%, oklch(0.18 0.03 150 / 0.6) 100%);
  transition: opacity 0.5s ease;
}
.hero__bg-container.faded::after {
  opacity: 0; /* Fade out shadow overlay when zooming very close */
}
.hero__light-flare {
  position: absolute;
  inset: 0;
  background: #fffdf8; /* Soft warm white matching the watercolor canvas */
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: normal;
}
.hero__inner { position: relative; z-index: 2; color: oklch(0.98 0.015 95); transition: opacity 0.4s ease; }
.hero .eyebrow { color: oklch(0.88 0.10 110); }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 11vw, 5.4rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 8px 0 0;
  text-wrap: balance;
  max-width: 16ch;
  text-shadow: 0 2px 30px oklch(0.15 0.03 150 / 0.5);
}
.hero h1 em { font-style: normal; font-family: var(--hand); color: oklch(0.85 0.12 120); font-weight: 700; }
.hero__sub { margin-top: 20px; font-size: clamp(1.05rem, 4vw, 1.3rem); max-width: 46ch; color: oklch(0.93 0.02 100); text-wrap: pretty; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__loc { margin-top: 26px; display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: oklch(0.9 0.02 100); }
.hero__loc svg { flex: none; }

/* Styles for Option A: Reveal greeting after light-flare transition */
.hero__reveal {
  position: absolute;
  inset: 0;
  z-index: 15;
  background: #151c15; /* Fallback dark green-gray */
  display: flex;
  align-items: center;
  padding-bottom: clamp(40px, 9vw, 80px);
  padding-top: 120px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  overflow: hidden;
}
.hero__reveal.active {
  pointer-events: auto;
}
.hero__reveal-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://ylijvvzlhsmznhbzptav.supabase.co/storage/v1/object/public/anhouse-assets/hero-reveal-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.08); /* Initial state: slightly zoomed in */
  will-change: transform;
}
/* Dark botanical overlay to protect text contrast */
.hero__reveal-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 30, 20, 0.4) 0%, rgba(10, 15, 10, 0.78) 100%);
  z-index: 1;
}
.hero__reveal-inner {
  color: oklch(0.98 0.015 95);
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero__reveal-inner .eyebrow {
  color: oklch(0.85 0.12 120);
  margin-bottom: 12px;
}
.hero__reveal h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 9vw, 4.8rem);
  font-weight: 600;
  line-height: 1.05;
  color: oklch(0.98 0.015 95);
  margin-top: 8px;
  max-width: 16ch;
  text-wrap: balance;
  text-shadow: 0 2px 25px rgba(0, 0, 0, 0.4);
}
.hero__reveal h1 em {
  font-style: normal;
  font-family: var(--hand);
  color: oklch(0.88 0.1 110);
  font-weight: 700;
}
.hero__reveal-sub {
  margin-top: 22px;
  font-size: clamp(1rem, 3.6vw, 1.2rem);
  color: oklch(0.92 0.01 95);
  max-width: 58ch;
  line-height: 1.65;
  text-wrap: pretty;
  text-shadow: 0 1px 15px rgba(0, 0, 0, 0.3);
}
.hero__reveal .hero__loc {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: oklch(0.9 0.01 95);
}
.hero__reveal .btn--ghost {
  border-color: oklch(0.9 0.02 110);
  color: oklch(0.97 0.02 110);
}
.hero__reveal .btn--ghost:hover {
  background: oklch(0.97 0.02 110);
  color: var(--forest-deep);
}

/*.scroll-cue */
.scroll-cue {
  position: absolute; left: 50%; bottom: 22px; transform: translate(-50%, 10px);
  z-index: 20; color: var(--ink-soft); font-size: 0.74rem; letter-spacing: 0.15em;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease, color 0.3s ease;
}
.scroll-cue.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.scroll-cue .dot { width: 22px; height: 36px; border: 2px solid currentColor; border-radius: 100px; position: relative; }
.scroll-cue .dot::after { content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; border-radius: 3px; background: currentColor; transform: translateX(-50%); animation: cue 1.6s infinite; }
@keyframes cue { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 12px); } }

/* Center 'Tap to Enter' Button Styling */
.hero__enter-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 25;
  background: var(--forest);
  color: oklch(0.97 0.02 110);
  border: 2px solid oklch(0.97 0.02 110 / 0.4);
  border-radius: 100px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(0.95rem, 3.5vw, 1.15rem);
  padding: 1.1em 2.2em;
  cursor: pointer;
  box-shadow: 0 0 30px oklch(0.4 0.05 150 / 0.15), var(--shadow-md);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  letter-spacing: 0.03em;
}
.hero__enter-btn:hover {
  background: var(--forest-deep);
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 0 40px oklch(0.4 0.05 150 / 0.3), var(--shadow-md);
}
.hero__enter-btn:active {
  transform: translate(-50%, -50%) scale(0.98);
}
.hero__enter-btn.fade-out {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -40%) scale(0.9);
}



/* ============================================================
   STORY / ATMOSPHERE
   ============================================================ */
.story-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.polaroid-gallery {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  max-width: 1100px;
  margin-inline: auto;
  padding-block: 20px;
}
@media (min-width: 500px) {
  .polaroid-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .polaroid-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
.photo-card {
  background: var(--card);
  padding: 12px 12px 28px 12px;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15), box-shadow 0.3s ease, z-index 0.1s;
  position: relative;
}
.photo-card__img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.02);
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.photo-card__caption {
  font-family: var(--hand);
  font-size: 1.25rem;
  color: var(--wood);
  text-align: center;
  margin-top: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1;
}
.polaroid-gallery .photo-card:nth-child(1) {
  transform: rotate(-2.5deg) translateY(4px);
}
.polaroid-gallery .photo-card:nth-child(2) {
  transform: rotate(2deg) translateY(-6px);
}
.polaroid-gallery .photo-card:nth-child(3) {
  transform: rotate(-1.5deg) translateY(8px);
}
.polaroid-gallery .photo-card:nth-child(4) {
  transform: rotate(3deg) translateY(-4px);
}
.polaroid-gallery .photo-card:hover {
  transform: scale(1.08) rotate(0deg) translateY(-12px);
  z-index: 10;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1), 0 6px 12px rgba(0, 0, 0, 0.05);
}
.polaroid-gallery .photo-card:hover img {
  transform: scale(1.05);
}
/* ---- atmosphere scrollytelling container (swipe carousel on mobile) ---- */
.atmos-pin-container {
  position: relative;
  width: 100%;
  margin-top: 40px;
}
.atmos-track-wrapper {
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
}
.atmos-track-wrapper::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari/Webkit */
}
.atmos-track {
  display: flex;
  flex-direction: row; /* Horizontal swipe carousel on mobile */
  gap: 16px;
  padding-inline: var(--gut, 20px);
  scroll-padding-inline: var(--gut, 20px);
  width: max-content;
}
.atmos-item-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  min-height: 280px;
  width: 82vw; /* Peeking card layout to cue horizontal swipe */
  flex: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  z-index: 1;
  scroll-snap-align: start;
}
.atmos-item-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0.15;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.atmos-item-card:hover .atmos-item-card__bg {
  transform: scale(1.05);
}
.atmos-item-card__inner {
  position: relative;
  z-index: 2;
}
.atmos-item-card__num {
  font-family: var(--hand);
  font-size: 2.8rem;
  color: var(--leaf);
  line-height: 1;
  margin-bottom: 12px;
}
.atmos-item-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 5vw, 1.8rem);
  color: var(--forest-deep);
  margin-bottom: 12px;
}
.atmos-item-card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  max-width: 45ch;
  line-height: 1.6;
}

/* ============================================================
   MENU
   ============================================================ */
.menu-wrap { display: grid; gap: 16px; grid-template-columns: 1fr; }
.menu-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.menu-card h3 { font-family: var(--serif); color: var(--forest-deep); font-size: 1.3rem; display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 4px 14px; padding: 12px 0; border-bottom: 1px dashed var(--line); align-items: baseline; }
.menu-item:last-child { border-bottom: 0; padding-bottom: 0; }
.menu-item .mi-name { font-weight: 600; color: var(--ink); }
.menu-item .mi-desc { grid-column: 1; font-size: 0.86rem; color: var(--ink-soft); }
.menu-item .mi-price { font-family: var(--serif); font-weight: 600; color: var(--clay); white-space: nowrap; }

/* ============================================================
   LUNCH & WORKSHOP (split feature & collage layout)
   ============================================================ */
.split { display: grid; gap: 28px; grid-template-columns: 1fr; align-items: center; }
.image-collage {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  aspect-ratio: 1.15 / 1;
}
.image-collage img {
  position: absolute;
  border-radius: var(--radius);
  border: 4px solid var(--card);
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), z-index 0.15s, box-shadow 0.3s;
  object-fit: cover;
}
/* Overlapping placements */
.image-collage img:nth-child(1) {
  top: 0;
  left: 0;
  width: 62%;
  height: 58%;
  transform: rotate(-3deg);
  z-index: 1;
}
.image-collage img:nth-child(2) {
  top: 6%;
  right: 0;
  width: 48%;
  height: 48%;
  transform: rotate(3deg);
  z-index: 2;
}
.image-collage img:nth-child(3) {
  bottom: 0;
  left: 4%;
  width: 46%;
  height: 46%;
  transform: rotate(-5deg);
  z-index: 3;
}
.image-collage img:nth-child(4) {
  bottom: 4%;
  right: 2%;
  width: 52%;
  height: 48%;
  transform: rotate(2deg);
  z-index: 4;
}
/* Micro-interaction hover */
.image-collage img:hover {
  transform: scale(1.08) rotate(0deg) translateY(-8px);
  z-index: 10;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tst-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.tst-card { background: var(--card); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); position: relative; display: flex; flex-direction: column; height: 100%; }
.tst-card .mark { font-family: var(--serif); font-size: 3.4rem; color: var(--leaf-soft); line-height: 0.6; height: 26px; }
.tst-card p { color: var(--ink); font-size: 1.02rem; margin: 6px 0 18px; flex-grow: 1; }
.tst-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tst-who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--wood-soft); display: grid; place-items: center; font-family: var(--serif); font-weight: 600; color: var(--wood); flex: none; }
.tst-who .nm { font-weight: 600; color: var(--ink); line-height: 1.1; }
.tst-who .meta { font-size: 0.8rem; color: var(--ink-soft); }
.tst-flag { margin-left: auto; font-size: 1.3rem; }

/* ============================================================
   FAQ (AEO)
   ============================================================ */
.faq { display: grid; gap: 12px; max-width: 800px; margin-inline: auto; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq summary { cursor: pointer; list-style: none; padding: 18px 22px; font-weight: 600; color: var(--forest-deep); font-size: 1.04rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--leaf-soft); color: var(--forest-deep); display: grid; place-items: center; font-size: 1.2rem; transition: transform 0.25s; }
.faq details[open] summary .pm { transform: rotate(45deg); }
.faq .ans { padding: 0 22px 20px; color: var(--ink-soft); }

/* ============================================================
   CONTACT / RESERVATION
   ============================================================ */
.contact-grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
.info-block { display: grid; gap: 22px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-item .ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--card); border: 1px solid var(--line); display: grid; place-items: center; color: var(--forest); }
.info-item h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); margin-bottom: 4px; font-weight: 600; }
.info-item p, .info-item a { color: var(--ink); font-weight: 500; }
.info-item .muted { color: var(--ink-soft); font-weight: 400; font-size: 0.92rem; }

.res-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-md); }
.res-card h3 { font-family: var(--serif); font-size: 1.6rem; color: var(--forest-deep); margin-bottom: 6px; }
.field { display: grid; gap: 6px; margin-top: 16px; }
.field label { font-size: 0.84rem; font-weight: 600; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; padding: 0.8em 1em;
  border: 1.5px solid var(--line); border-radius: 12px; background: var(--paper); color: var(--ink);
  transition: border 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--leaf); box-shadow: 0 0 0 3px oklch(0.58 0.09 150 / 0.18);
}
.two-col { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-frame iframe { display: block; width: 100%; height: 300px; border: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--forest-deep); color: oklch(0.9 0.02 110); padding-block: 56px 30px; }
.footer__top { display: grid; gap: 32px; grid-template-columns: 1fr; }
.footer .brand__logo { filter: brightness(0) invert(1); }
.footer p { color: oklch(0.84 0.02 110); font-size: 0.94rem; }
.footer h5 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: oklch(0.78 0.06 120); margin: 0 0 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer ul a:hover { color: oklch(0.97 0.03 110); }
.footer__social { display: flex; gap: 12px; margin-top: 16px; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid oklch(0.9 0.02 110 / 0.25); display: grid; place-items: center; transition: 0.2s; }
.footer__social a:hover { background: oklch(0.97 0.03 110 / 0.12); }
.footer__bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid oklch(0.9 0.02 110 / 0.18); display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: 0.84rem; color: oklch(0.76 0.02 110); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(.2,.6,.2,1), transform 0.7s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
  .scroll-cue .dot::after { animation: none; }
}

/* ============================================================
   RESPONSIVE  — tablet / desktop
   ============================================================ */
@media (min-width: 720px) {
  .story-grid { grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
  #story { padding-bottom: 0; }
  #story .wrap { padding-bottom: clamp(30px, 4vw, 50px); }
  .atmos-pin-container {
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
  }
  .atmos-track-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden; /* Disable swipe scrolling on desktop */
  }
  .atmos-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    padding-block: 0;
    padding-inline: 0; /* Reset mobile padding */
    width: 400vw;
    height: 100%;
  }
  .atmos-item-card {
    width: 100vw;
    height: 100%;
    flex: none;
    border: 0;
    border-radius: 0;
    padding: 8vw;
    min-height: 0;
    justify-content: center;
    background: transparent;
    box-shadow: none;
  }
  .atmos-item-card__bg {
    opacity: 0.28;
  }
  .atmos-item-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--paper) 30%, transparent 80%);
    z-index: 0;
  }
  .atmos-item-card__inner {
    max-width: 600px;
    z-index: 1;
  }
  .atmos-item-card__num {
    font-size: 4rem;
  }
  .menu-wrap { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr 1fr; gap: 44px; }
  .split.reverse .split__media { order: 2; }
  .tst-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 0.95fr 1.05fr; }
  .footer__top { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
}

@media (min-width: 940px) {
  .nav__links { display: flex; }
  .nav__reserve { display: inline-flex; }
  .burger { display: none; }
  body { font-size: 18px; }
}

/* ============================================================
   BACKGROUND DECORATIVE STICKERS
   ============================================================ */
.bg-stickers-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.bg-sticker {
  position: absolute;
  pointer-events: none;
  opacity: 0.22;
  filter: saturate(0.85);
  transition: opacity 0.3s ease;
  will-change: transform;
}

.bg-sticker img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 719px) {
  .bg-sticker {
    opacity: 0.14;
  }
}

/* ============================================================
   MENU SCROLL UNROLL MOCKUP
   ============================================================ */
.menu-scroll-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

.menu-scroll {
  display: grid;
  grid-template-rows: 1fr;
  overflow: hidden;
  width: 100%;
  max-width: 1100px;
  margin-top: 40px;
  position: relative;
  border-radius: var(--radius-lg);
}

.menu-scroll__inner {
  min-height: 0;
  background: #fdfaf2; /* Warm vintage paper background matching mockups */
  border-left: 2px solid rgba(0, 0, 0, 0.04);
  border-right: 2px solid rgba(0, 0, 0, 0.04);
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Wood Cylinder Rollers */
.menu-scroll__roller {
  height: 24px;
  width: 100%;
  background: linear-gradient(to bottom, #50311f, #825032, #50311f);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.menu-scroll__roller--top {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.menu-scroll__roller--bottom {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.menu-scroll__content {
  padding: clamp(14px, 4vw, 36px);
  position: relative;
}

/* Highlight margins simulating rolled edges */
.menu-scroll__content::before,
.menu-scroll__content::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10px;
  pointer-events: none;
}
.menu-scroll__content::before {
  left: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.02), transparent);
}
.menu-scroll__content::after {
  right: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.02), transparent);
}

.menu-scroll__pages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1000px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .menu-scroll__pages {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

.menu-page-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}
.menu-page-img:hover {
  transform: translateY(-4px) scale(1.01);
}
