/* ============================================
   Ms. Nguyen Banh Mi & Rolls — Stylesheet
   Brand: Forest green editorial, Vietnamese family-run
   Built mobile-first
   ============================================ */

/* --- Brand tokens --- */
:root {
  --green: #2D3B2E;
  --green-deep: #1f2a20;
  --cream: #EDE3D0;
  --cream-soft: #F8F4EB;
  --gold: #B8935A;
  --gold-bright: #c8a06a;
  --charcoal: #1A1A1A;
  --muted: #6b6b6b;

  --serif: "Playfair Display", "Times New Roman", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-w: 1280px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* --- Typography --- */
.serif { font-family: var(--serif); letter-spacing: -0.02em; font-weight: 700; }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.italic { font-style: italic; font-weight: 400; }

/* --- Layout helpers --- */
.wrap {
  max-width: var(--max-w);
  margin: 0 inherit;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin-left: auto;
  margin-right: auto;
}
section { position: relative; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(45, 59, 46, 0.08);
  backdrop-filter: saturate(1.2);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.brand-mark img {
  display: block;
  height: 72px;
  width: auto;
}
.nav-links { display: none; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--green);
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--cream);
  background: var(--green);
  border: 1.5px solid var(--green);
  padding: 9px 18px;
  border-radius: 999px;
  transition: all 0.25s var(--ease);
}
.nav-links a.nav-cta:hover { background: var(--green-deep); color: var(--cream); }

@media (min-width: 760px) {
  .nav-links { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--green);
  color: var(--cream);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
}
.hero-text {
  padding: 56px var(--gutter) 48px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.5rem, 9vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 24px;
}
.hero h1 .accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(237, 227, 208, 0.82);
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
  color: rgba(237, 227, 208, 0.7);
}
.hero-meta .dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6fbf73;
  box-shadow: 0 0 0 3px rgba(111, 191, 115, 0.2);
  margin-right: 8px;
  vertical-align: middle;
}
.hero-meta a { color: var(--gold-bright); border-bottom: 1px dotted var(--gold-bright); }
.hero-meta .sep { color: rgba(237, 227, 208, 0.3); }

.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--green-deep);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(45,59,46,0.15) 0%, rgba(45,59,46,0) 30%, rgba(45,59,46,0) 70%, rgba(45,59,46,0.4) 100%);
  pointer-events: none;
}

/* Hero badge — small floating "Family-run since" detail */
.hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--cream);
  color: var(--green);
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 0.78rem;
  line-height: 1.3;
  max-width: 200px;
  z-index: 3;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.hero-badge strong { display: block; font-family: var(--serif); font-size: 0.95rem; margin-bottom: 2px; }

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 1fr;
    align-items: stretch;
    min-height: 640px;
  }
  .hero-text {
    padding: 96px var(--gutter) 96px max(var(--gutter), calc((100vw - var(--max-w)) / 2 + var(--gutter)));
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-image { aspect-ratio: auto; }
  .hero-badge { bottom: 32px; left: 32px; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 4px;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184, 147, 90, 0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(237, 227, 208, 0.5);
}
.btn-ghost:hover {
  border-color: var(--cream);
  background: rgba(237, 227, 208, 0.08);
}
.btn-dark {
  background: var(--green);
  color: var(--cream);
}
.btn-dark:hover {
  background: var(--green-deep);
}
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================
   QUICK INFO STRIP
   ============================================ */
.info-strip {
  background: var(--cream-soft);
  padding: 24px var(--gutter);
  border-bottom: 1px solid rgba(45, 59, 46, 0.06);
}
.info-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  align-items: center;
}
.info-block {
  display: flex;
  align-items: center;
  gap: 14px;
}
.info-block .label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}
.info-block .value {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--green);
  line-height: 1.2;
}
.info-block .value small {
  display: block;
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
}
.info-strip .btn {
  justify-self: start;
  padding: 10px 18px;
  font-size: 0.85rem;
}

@media (max-width: 759px) {
  .info-strip-inner { justify-items: center; text-align: center; }
  .info-block { justify-content: center; }
  .info-strip .btn { justify-self: center; }
}

@media (min-width: 760px) {
  .info-strip-inner {
    grid-template-columns: auto auto 1fr auto;
    gap: 36px;
  }
  .info-strip .btn { justify-self: end; }
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 80px var(--gutter); }
.section-narrow { max-width: var(--max-w); margin: 0 auto; }

.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--green);
  line-height: 1.1;
  margin-top: 12px;
  letter-spacing: -0.02em;
}
.section-head p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 540px;
  margin: 16px auto 0;
}

/* ============================================
   MENU PREVIEW
   ============================================ */
.menu-preview { background: var(--cream-soft); }
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.menu-cat { }
.menu-cat-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(45, 59, 46, 0.15);
}
.menu-cat-head h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--green);
  letter-spacing: -0.01em;
}
.menu-cat-head .menu-cat-meta {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
}
.menu-cat-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
.menu-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  background: var(--green);
}
.menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.menu-img:hover img { transform: scale(1.04); }
.menu-items { display: flex; flex-direction: column; gap: 18px; }
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: baseline;
}
.menu-item .name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.menu-item .name .star {
  color: var(--gold);
  font-size: 0.7em;
  margin-left: 6px;
  vertical-align: middle;
}
.menu-item .desc {
  grid-column: 1 / -1;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
  margin-top: -4px;
}
.menu-item .price {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold);
  white-space: nowrap;
}

.menu-cta-row {
  text-align: center;
  margin-top: 56px;
}
.menu-cta-row .signature-line {
  display: inline-block;
  font-style: italic;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

@media (min-width: 760px) {
  .menu-cat-body {
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
  }
  .menu-cat:nth-child(even) .menu-cat-body { direction: rtl; }
  .menu-cat:nth-child(even) .menu-cat-body > * { direction: ltr; }
}

/* ============================================
   WHY MS NGUYEN — three pillars
   ============================================ */
.why { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.why-card { text-align: left; }
.why-card .why-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: 2px;
}
.why-card .why-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.why-card .why-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 8px;
}
.why-card h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.why-card p {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.6;
}
.why-card p .emph {
  background: linear-gradient(180deg, transparent 60%, rgba(184, 147, 90, 0.25) 60%);
  padding: 0 2px;
}

@media (min-width: 760px) {
  .why-grid {
    grid-template-columns: 1fr 1fr 1.6fr;
    gap: 36px;
    align-items: start;
  }
  .why-card:last-child .why-img {
    aspect-ratio: 16 / 10;
  }
}

/* ============================================
   MEET MANDY
   ============================================ */
.mandy {
  background: var(--green);
  color: var(--cream);
  padding: 0;
}
.mandy-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}
.mandy-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}
.mandy-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.mandy-text {
  padding: 64px var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mandy-text h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--cream);
  line-height: 1.05;
  margin: 16px 0 32px;
  letter-spacing: -0.02em;
}
.mandy-text h2 .accent { color: var(--gold); font-style: italic; font-weight: 400; }
.mandy-text p {
  font-size: 1.02rem;
  color: rgba(237, 227, 208, 0.82);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 540px;
}
.mandy-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-bright);
  line-height: 1.4;
  margin-top: 24px;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  max-width: 520px;
}

@media (min-width: 900px) {
  .mandy-grid { grid-template-columns: 1fr 1.1fr; }
  .mandy-img { aspect-ratio: auto; }
  .mandy-text { padding: 96px var(--gutter) 96px max(var(--gutter), 64px); }
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews { background: var(--cream-soft); }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.review {
  background: #fff;
  padding: 22px 22px 24px;
  border-radius: 8px;
  position: relative;
  border: 1px solid rgba(45, 59, 46, 0.1);
  display: flex;
  flex-direction: column;
}
.review-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0;
}
.review-who { line-height: 1.25; }
.review-name {
  font-family: var(--sans);
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.98rem;
}
.review-tag {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.review-google { opacity: 0.85; }
.review-rating { margin-bottom: 10px; line-height: 1; }
.review .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 1rem;
}
.review .stars .star-empty { color: rgba(45, 59, 46, 0.2); }
.review-body {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--charcoal);
  margin: 0;
}

.review-response {
  margin-top: 18px;
  padding: 14px 16px;
  background: var(--cream-soft);
  border-left: 3px solid var(--green);
  border-radius: 0 4px 4px 0;
}
.review-response-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.review-response-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.82rem;
}
.review-response-name {
  font-family: var(--sans);
  font-weight: 600;
  color: var(--green);
  font-size: 0.88rem;
  line-height: 1.2;
}
.review-response-label {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.review-response-body {
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--charcoal);
  margin: 0;
}

.reviews-cta { text-align: center; margin-top: 40px; }
.reviews-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.reviews-actions .btn-ghost {
  color: var(--green);
  border-color: rgba(45, 59, 46, 0.35);
}
.reviews-actions .btn-ghost:hover {
  border-color: var(--green);
  background: rgba(45, 59, 46, 0.06);
}

@media (min-width: 760px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
}

/* ============================================
   VISIT US
   ============================================ */
.visit { background: var(--cream); padding: 80px 0; }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  gap: 32px;
}
.visit-info { padding: 0; }
.visit-info .eyebrow { margin-bottom: 12px; }
.visit-info h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.visit-detail {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 32px;
}
.visit-row .label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}
.visit-row .value {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.5;
}
.visit-row .value a { color: var(--green); border-bottom: 1px solid rgba(45,59,46,0.2); transition: border-color 0.2s; }
.visit-row .value a:hover { border-color: var(--gold); }
.hours-list {
  list-style: none;
  font-size: 0.95rem;
  line-height: 1.8;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  max-width: 280px;
}
.hours-list li.closed { color: var(--muted); }
.hours-list li.today { color: var(--green); font-weight: 600; gap: 12px; }
.hours-list li.today::after { content: "← today"; font-weight: 400; color: var(--gold); font-size: 0.85em; }

.visit-map {
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  overflow: hidden;
  background: var(--cream-soft);
  border: 1px solid rgba(45, 59, 46, 0.1);
}
.visit-map iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 899px) {
  .visit-grid { padding: 0; gap: 24px; }
  .visit-info { text-align: center; padding: 0 var(--gutter); }
  .visit-detail { align-items: center; }
  .hours-list li { margin: 0 auto; }
  .visit-map { border-radius: 0; border-left: 0; border-right: 0; }
}

@media (min-width: 900px) {
  .visit-grid { grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
}

/* ============================================
   PARKING & ENTRY
   ============================================ */
.parking { background: var(--cream-soft); padding: 80px 0; }
.parking-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.parking-text .eyebrow { margin-bottom: 12px; }
.parking-text h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.parking-text p {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.6;
  max-width: 480px;
}
.parking-video {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
.parking-video .instagram-media {
  margin: 0 auto !important;
}

@media (min-width: 900px) {
  .parking-inner { grid-template-columns: 1.1fr 1fr; gap: 64px; }
  .parking-video { margin: 0; }
}

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--cream); }
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(45, 59, 46, 0.14);
}
.faq-item {
  border-bottom: 1px solid rgba(45, 59, 46, 0.14);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  transition: color 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover .faq-q { color: var(--gold); }
.faq-q {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.6vw, 1.35rem);
  color: var(--green);
  line-height: 1.25;
  letter-spacing: -0.01em;
  transition: color 0.2s var(--ease);
}
.faq-icon {
  flex-shrink: 0;
  position: relative;
  width: 18px;
  height: 18px;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.faq-icon::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.faq-item[open] .faq-icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq-a {
  padding: 0 4px 26px;
  max-width: 680px;
}
.faq-a p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--charcoal);
}
.faq-a a {
  color: var(--green);
  font-weight: 600;
  border-bottom: 1px solid rgba(45, 59, 46, 0.25);
  transition: border-color 0.2s, color 0.2s;
}
.faq-a a:hover { color: var(--gold); border-color: var(--gold); }

/* Subtle reveal of the answer when opened */
.faq-item[open] .faq-a {
  animation: faqReveal 0.35s var(--ease);
}
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .faq-item[open] .faq-a { animation: none; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--green-deep);
  color: rgba(237, 227, 208, 0.7);
  padding: 56px var(--gutter) 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.footer-brand .brand-mark { margin-bottom: 16px; }
.footer-brand .brand-mark img { height: 96px; }
.footer-brand p { font-size: 0.92rem; max-width: 320px; line-height: 1.6; }
.footer-links h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 0.93rem; }
.footer-links a { transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-bright); }
.footer-bottom {
  border-top: 1px solid rgba(237, 227, 208, 0.1);
  margin-top: 40px;
  padding-top: 24px;
  font-size: 0.82rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}
.footer-bottom .built-by a { color: var(--gold-bright); border-bottom: 1px dotted; }

@media (max-width: 759px) {
  .footer-inner { justify-items: center; text-align: center; }
  .footer-brand p { margin: 0 auto; }
  .footer-links ul { align-items: center; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (min-width: 760px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  background: var(--green);
  color: var(--cream);
  padding: 14px 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
  transform: translateY(120%);
  transition: transform 0.4s var(--ease);
  font-size: 0.95rem;
  font-weight: 600;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .label { display: flex; align-items: center; gap: 8px; }
.sticky-cta .label .dot { width: 7px; height: 7px; border-radius: 50%; background: #6fbf73; }
.sticky-cta a {
  background: var(--gold);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}
@media (min-width: 760px) { .sticky-cta { display: none; } }

/* ============================================
   UTILITIES
   ============================================ */
/* Visually hidden but readable by screen readers and search crawlers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in { opacity: 1; transform: none; }
}

/* ============================================
   FULL MENU PAGE
   ============================================ */
.menu-page {
  background: var(--cream);
  padding: 60px var(--gutter) 80px;
}
.menu-page-inner { max-width: 900px; margin: 0 auto; }
.menu-page-head { text-align: center; margin-bottom: 56px; }
.menu-page-head h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--green);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.menu-page-head p { color: var(--muted); max-width: 480px; margin: 0 auto; }

.full-cat { margin-bottom: 56px; }
.full-cat-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 24px;
  background: var(--cream-soft);
}
.full-cat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.full-cat-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}
.full-cat-head h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--green);
  letter-spacing: -0.02em;
}
.full-cat-head h2 .cat-en {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0;
  font-style: italic;
}
.full-cat-head .cat-note {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}
.full-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.full-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(45, 59, 46, 0.12);
}
.full-item:last-child { border-bottom: 0; }
.full-item .name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--charcoal);
  letter-spacing: -0.005em;
}
.full-item .name .star { color: var(--gold); font-size: 0.7em; margin-left: 6px; }
.full-item .name .new,
.full-item .name .soon-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cream);
  background: var(--gold);
  padding: 2px 7px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
  text-transform: uppercase;
}
.full-item .name .soon-badge { background: var(--muted); }
.full-item.soon .price { color: var(--muted); }
.full-item.soon .desc em {
  font-style: normal;
  display: inline-block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.85rem;
}
.full-item .price {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold);
  white-space: nowrap;
}
.full-item .desc {
  grid-column: 1 / -1;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 4px;
}
.cat-intro {
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 640px;
}

.menu-page-foot {
  text-align: center;
  padding: 48px 0 0;
  margin-top: 56px;
  border-top: 1px solid rgba(45, 59, 46, 0.1);
}
.menu-page-foot p { color: var(--muted); font-size: 0.95rem; margin-bottom: 20px; }

/* ============================================
   AS FEATURED IN STRIP
   ============================================ */
.press-strip {
  background: var(--cream);
  border-bottom: 1px solid rgba(45, 59, 46, 0.08);
  padding: 22px var(--gutter);
}
.press-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.press-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.press-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(45, 59, 46, 0.15);
  background: #fff;
  transition: border-color 0.2s, transform 0.2s var(--ease);
}
.press-logo:hover { border-color: var(--green); transform: translateY(-1px); }
.press-logo img { width: 36px; height: 36px; display: block; }
.press-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green);
  letter-spacing: -0.01em;
}
.press-arrow {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s var(--ease);
}
.press-logo:hover .press-arrow { transform: translateX(3px); }

@media (min-width: 760px) {
  .press-strip-inner { gap: 24px; }
}

/* ============================================
   404 PAGE
   ============================================ */
.not-found {
  background: var(--cream);
  padding: clamp(72px, 14vw, 140px) var(--gutter);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.not-found-inner {
  max-width: 640px;
  text-align: center;
}
.not-found-inner .eyebrow { color: var(--gold); margin-bottom: 16px; display: block; }
.not-found-inner h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  color: var(--green);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.not-found-inner p {
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 28px;
}
.not-found-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.not-found .btn-ghost.not-found-back {
  color: var(--green);
  border-color: rgba(45, 59, 46, 0.35);
}
.not-found .btn-ghost.not-found-back:hover {
  border-color: var(--green);
  background: rgba(45, 59, 46, 0.06);
}
.not-found-links {
  list-style: none;
  display: flex;
  gap: 6px 24px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.92rem;
  padding-top: 28px;
  border-top: 1px solid rgba(45, 59, 46, 0.12);
}
.not-found-links a {
  color: var(--green);
  border-bottom: 1px solid rgba(45, 59, 46, 0.25);
  transition: border-color 0.2s;
}
.not-found-links a:hover { border-color: var(--gold); }
