/* ====================================================
   NHÀ HÀNG VEN SÔNG QUÁN — Ninh Bình
   Traditional Vietnamese Riverside Restaurant
   ==================================================== */

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

:root {
  /* Color palette */
  --warm-cream:    #f5ebd9;
  --warm-paper:    #ede0c7;
  --ochre:         #c89b5f;
  --gold-deep:     #a8762d;
  --terracotta:    #b94a3a;
  --dark-wood:     #2c1d10;
  --mid-wood:      #4a3220;
  --olive:         #6b6a35;
  --olive-deep:    #43522a;
  --ink:           #1a120a;
  --soft-shadow:   rgba(44, 29, 16, 0.15);
  --deep-shadow:   rgba(26, 18, 10, 0.45);

  /* Typography */
  --font-display:  'Playfair Display', 'Cormorant Garamond', 'Lora', Georgia, 'Times New Roman', serif;
  --font-body:     'Be Vietnam Pro', 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w:         1200px;
  --gutter:        clamp(1.25rem, 4vw, 2.5rem);
  --section-y:     clamp(4rem, 10vh, 8rem);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-wood);
  background: var(--warm-cream);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--terracotta);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: var(--dark-wood);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  margin-bottom: 0.5rem;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.divider {
  width: 56px;
  height: 1px;
  background: var(--ochre);
  margin: 1rem 0 1.5rem;
}

.divider.center {
  margin-inline: auto;
}

p {
  margin-bottom: 1rem;
}

/* ===== LAYOUT HELPERS ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--section-y) 0;
}

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

.muted {
  color: var(--mid-wood);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245, 235, 217, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(168, 118, 45, 0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--dark-wood);
  letter-spacing: 0.05em;
  font-weight: 500;
}

.nav-logo span {
  color: var(--terracotta);
  font-style: italic;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark-wood);
  position: relative;
  padding: 0.25rem 0;
}

.nav-menu a.active,
.nav-menu a:hover {
  color: var(--terracotta);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--terracotta);
}

.nav-cta {
  background: var(--terracotta);
  color: var(--warm-cream) !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: 2px;
  font-size: 0.85rem !important;
  letter-spacing: 0.05em;
  transition: background 0.25s ease;
}

.nav-cta:hover {
  background: var(--dark-wood);
  color: var(--warm-cream) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-wood);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--warm-cream);
  overflow: hidden;
}

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

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

/* ===== HERO SLIDESHOW (animated multi-image hero) ===== */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroFadeKenBurns 32s infinite;
  transform-origin: center center;
}

/* 4 slides, each visible 8s, total cycle 32s */
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 8s; }
.hero-slide:nth-child(3) { animation-delay: 16s; }
.hero-slide:nth-child(4) { animation-delay: 24s; }

@keyframes heroFadeKenBurns {
  /* 0-25% = visible, 25-100% = invisible (then loop) */
  0% {
    opacity: 0;
    transform: scale(1.0);
  }
  3% {
    opacity: 1;
    transform: scale(1.0);
  }
  22% {
    opacity: 1;
    transform: scale(1.08);
  }
  25% {
    opacity: 0;
    transform: scale(1.08);
  }
  100% {
    opacity: 0;
    transform: scale(1.0);
  }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
    opacity: 0;
  }
  .hero-slide:nth-child(1) {
    opacity: 1;
  }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* Soft vignette behind text for readability — much lighter than before */
    radial-gradient(ellipse 55% 40% at center 55%, rgba(26, 18, 10, 0.5) 0%, rgba(26, 18, 10, 0) 75%),
    /* Gentle bottom darken for fade-out into next section */
    linear-gradient(180deg,
      rgba(26, 18, 10, 0.18) 0%,
      rgba(26, 18, 10, 0.1) 35%,
      rgba(26, 18, 10, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 var(--gutter);
}

.hero h1 {
  color: var(--warm-cream);
  margin-bottom: 1rem;
  font-style: italic;
  font-weight: 400;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero .tagline {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--warm-paper);
  margin-bottom: 2rem;
  font-style: italic;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.hero-eyebrow {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 1.5rem;
  display: inline-block;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.95rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  border: 1px solid;
  transition: all 0.3s ease;
  border-radius: 2px;
  text-decoration: none;
}

.btn-primary {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--warm-cream);
}

.btn-primary:hover {
  background: transparent;
  color: var(--warm-cream);
  border-color: var(--warm-cream);
}

.btn-outline {
  background: transparent;
  border-color: var(--warm-cream);
  color: var(--warm-cream);
}

.btn-outline:hover {
  background: var(--warm-cream);
  color: var(--dark-wood);
}

.btn-dark {
  background: var(--dark-wood);
  border-color: var(--dark-wood);
  color: var(--warm-cream);
}

.btn-dark:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--warm-cream);
}

/* ===== PAGE HEADER (for inner pages) ===== */
.page-header {
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--warm-cream);
  margin-top: 0;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 50% at center, rgba(26, 18, 10, 0.55) 0%, rgba(26, 18, 10, 0) 75%),
    linear-gradient(180deg,
      rgba(26, 18, 10, 0.2) 0%,
      rgba(26, 18, 10, 0.45) 100%);
}

.page-header-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter);
}

.page-header h1 {
  color: var(--warm-cream);
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
}

.page-header .eyebrow {
  color: var(--ochre);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

/* ===== SPLIT SECTION (image + text) ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.split.reverse .split-text {
  order: 2;
}

.split.reverse .split-image {
  order: 1;
}

.split-image img {
  width: 100%;
  height: 100%;
  max-height: 540px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 20px 60px var(--soft-shadow);
}

.split-text h2 {
  margin-bottom: 1.25rem;
}

/* ===== FEATURE GRID ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature-card {
  text-align: center;
  padding: 1rem;
}

.feature-card .icon {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--dark-wood);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--mid-wood);
  font-size: 0.95rem;
}

/* ===== GALLERY GRID ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem 1.25rem;
  color: var(--warm-cream);
  background: linear-gradient(transparent, rgba(26, 18, 10, 0.8));
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-item-caption {
  opacity: 1;
}

/* Gallery item sizes */
.g-1x1 { grid-column: span 3; grid-row: span 1; }
.g-2x1 { grid-column: span 6; grid-row: span 1; }
.g-1x2 { grid-column: span 3; grid-row: span 2; }
.g-2x2 { grid-column: span 6; grid-row: span 2; }
.g-3x1 { grid-column: span 4; grid-row: span 1; }
.g-3x2 { grid-column: span 4; grid-row: span 2; }

/* ===== SPACE CARDS (rooms) ===== */
.space-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.space-card {
  position: relative;
  overflow: hidden;
  background: var(--warm-paper);
  box-shadow: 0 8px 30px var(--soft-shadow);
}

.space-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.space-card-body {
  padding: 1.75rem 1.75rem 2rem;
}

.space-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--dark-wood);
}

.space-card .capacity {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.75rem;
}

.space-card p {
  color: var(--mid-wood);
  font-size: 0.95rem;
  margin: 0;
}

/* ===== MENU LIST ===== */
.menu-section {
  margin-bottom: 4rem;
}

.menu-section-title {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.menu-section-title h2 {
  margin: 0;
  white-space: nowrap;
  font-style: italic;
}

.menu-section-title .line {
  flex: 1;
  height: 1px;
  background: var(--ochre);
  opacity: 0.5;
}

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

.menu-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-bottom: 1px dashed rgba(168, 118, 45, 0.35);
  padding-bottom: 1.25rem;
}

.menu-item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark-wood);
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--terracotta);
  font-weight: 500;
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 0.9rem;
  color: var(--mid-wood);
  line-height: 1.55;
  margin: 0;
}

.menu-item-tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--olive-deep);
  margin-top: 0.25rem;
}

/* ===== QUOTE / TESTIMONIAL ===== */
.quote {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem var(--gutter);
}

.quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.55;
  color: var(--dark-wood);
  margin-bottom: 1.5rem;
}

.quote .attribution {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ===== BAND (full-width image with overlay text) ===== */
.band {
  position: relative;
  height: 70vh;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--warm-cream);
  margin: 0;
  overflow: hidden;
}

.band-bg {
  position: absolute;
  inset: 0;
}

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

.band-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 10, 0.55);
}

.band-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter);
  max-width: 700px;
}

.band h2 {
  color: var(--warm-cream);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.band p {
  color: var(--warm-paper);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ===== BOOKING FORM ===== */
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.booking-form {
  background: var(--warm-paper);
  padding: 2.5rem;
  box-shadow: 0 12px 40px var(--soft-shadow);
}

.booking-form h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(74, 50, 32, 0.25);
  background: var(--warm-cream);
  color: var(--dark-wood);
  border-radius: 2px;
  transition: border-color 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.booking-form button {
  width: 100%;
  margin-top: 0.5rem;
  border: none;
  cursor: pointer;
}

.contact-info {
  padding: 1rem 0;
}

.contact-block {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(168, 118, 45, 0.25);
}

.contact-block:last-child {
  border-bottom: none;
}

.contact-block h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.contact-block p {
  font-size: 1.05rem;
  color: var(--dark-wood);
  margin: 0.2rem 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-wood);
  color: var(--warm-paper);
  padding: 4rem var(--gutter) 1.5rem;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ochre);
  margin-bottom: 1rem;
  font-style: italic;
}

.footer h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer p,
.footer li {
  color: rgba(245, 235, 217, 0.75);
  font-size: 0.92rem;
  line-height: 1.8;
}

.footer ul {
  list-style: none;
}

.footer ul li a:hover {
  color: var(--warm-cream);
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 235, 217, 0.12);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(245, 235, 217, 0.5);
}

/* ===== HOURS / INFO STRIP ===== */
.info-strip {
  background: var(--mid-wood);
  color: var(--warm-cream);
  padding: 1.75rem var(--gutter);
}

.info-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}

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

.info-item .label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 0.3rem;
}

.info-item .value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--warm-cream);
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.blog-card {
  background: var(--warm-paper);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 8px 25px var(--soft-shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px var(--soft-shadow);
}

.blog-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}

.blog-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--terracotta);
  color: var(--warm-cream);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
  font-weight: 500;
}

.blog-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.7rem;
}

.blog-meta .sep {
  margin: 0 0.5rem;
  opacity: 0.5;
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.25;
  color: var(--dark-wood);
  margin-bottom: 0.75rem;
  font-style: italic;
}

.blog-card-excerpt {
  font-size: 0.95rem;
  color: var(--mid-wood);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.blog-card-link {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  align-self: flex-start;
}

.blog-card-link:hover {
  color: var(--dark-wood);
}

.blog-card.coming-soon {
  opacity: 0.65;
  pointer-events: none;
}

.blog-card.coming-soon .blog-card-link {
  color: var(--mid-wood);
}

/* Featured (full-width) post on top of blog index */
.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  background: var(--warm-paper);
  margin-bottom: 4rem;
  overflow: hidden;
  box-shadow: 0 12px 40px var(--soft-shadow);
}

.blog-featured-image {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-body {
  padding: 3rem 2.5rem 3rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-body h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0.5rem 0 1.25rem;
  font-style: italic;
  line-height: 1.2;
}

.blog-featured-body .blog-card-excerpt {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

/* ===== ARTICLE (single blog post) ===== */
.article-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.article-meta {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}

.article-meta .sep { margin: 0 0.6rem; opacity: 0.6; }

.article-title {
  font-family: var(--font-display);
  text-align: center;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--dark-wood);
}

.article-lead {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--mid-wood);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.article-hero {
  margin: 0 auto 3rem;
  max-width: 1000px;
  padding: 0 var(--gutter);
}

.article-hero img {
  width: 100%;
  height: 60vh;
  min-height: 380px;
  max-height: 560px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 20px 60px var(--soft-shadow);
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--dark-wood);
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  color: var(--dark-wood);
}

.article-body h3 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  color: var(--dark-wood);
}

.article-body p {
  margin-bottom: 1.25rem;
}

.article-body img {
  width: 100%;
  margin: 2rem 0;
  border-radius: 2px;
}

.article-body blockquote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--mid-wood);
  border-left: 3px solid var(--terracotta);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
}

.article-body ul, .article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-body strong { color: var(--dark-wood); font-weight: 600; }

.article-body a {
  color: var(--terracotta);
  border-bottom: 1px solid rgba(185, 74, 58, 0.3);
}

.article-body a:hover { color: var(--dark-wood); border-color: var(--dark-wood); }

.article-footer {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(168, 118, 45, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.article-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.article-tag {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--warm-paper);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}

.article-back {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
}

/* Related posts */
.related-posts {
  background: var(--warm-paper);
  padding: var(--section-y) 0;
  margin-top: var(--section-y);
}

/* ===== TESTIMONIALS (Cảm nhận khách hàng - auto-scroll carousel) ===== */
.testimonials-section {
  background: var(--warm-cream);
  position: relative;
  overflow: hidden;
}

.testimonials-marquee {
  position: relative;
  overflow: hidden;
  margin: 2.5rem 0 0;
  padding: 1.5rem 0;
  /* Fade edges so cards smoothly appear/disappear */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 0 1rem;
  animation: scrollTestimonials 60s linear infinite;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1rem)); }
}

.testimonial-card {
  flex-shrink: 0;
  width: 460px;
  background: var(--warm-paper);
  padding: 3rem 2.25rem 2rem;
  border-radius: 4px;
  box-shadow: 0 8px 30px var(--soft-shadow);
  position: relative;
  border: 1px solid rgba(168, 118, 45, 0.12);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 0.25rem;
  left: 1.25rem;
  font-family: var(--font-display);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--ochre);
  opacity: 0.35;
  font-style: italic;
}

.testimonial-stars {
  color: #e8a939;
  letter-spacing: 0.18em;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  /* Patrick Hand & Kalam — handwriting fonts with full Vietnamese diacritic support */
  font-family: 'Patrick Hand', 'Kalam', 'Comic Sans MS', cursive, var(--font-display);
  font-size: 1.45rem;
  line-height: 1.55;
  color: var(--dark-wood);
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.testimonial-meta {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-wood);
}

@media (max-width: 640px) {
  .testimonial-card {
    width: 320px;
    padding: 2.5rem 1.75rem 1.75rem;
  }
  .testimonial-text {
    font-size: 1.4rem;
  }
  .testimonial-card::before {
    font-size: 4.5rem;
  }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .testimonials-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ===== BOOKING MODAL (phone-first popup) ===== */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.booking-modal.open {
  display: flex;
  animation: modalFadeIn 0.35s ease;
}

.booking-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 10, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.booking-modal-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--warm-cream);
  padding: 3rem 1.5rem;
  max-width: 760px;
  width: 100%;
  animation: modalSlideUp 0.4s ease;
}

.booking-modal-eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 1.25rem;
  display: inline-block;
}

.booking-modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-style: italic;
  color: var(--warm-cream);
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.booking-modal-phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 11vw, 6.5rem);
  font-weight: 600;
  color: var(--warm-cream);
  letter-spacing: 0.02em;
  margin: 1.5rem 0 1.75rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.4);
  transition: color 0.25s, transform 0.25s;
  text-decoration: none;
}

.booking-modal-phone:hover,
.booking-modal-phone:focus {
  color: var(--ochre);
  transform: scale(1.02);
  outline: none;
}

.booking-modal-subtext {
  font-size: 1.05rem;
  color: var(--warm-paper);
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

.booking-modal-subtext strong {
  color: var(--ochre);
}

.booking-modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.booking-modal-actions .btn {
  font-size: 0.95rem;
  padding: 1.1rem 2rem;
  min-width: 220px;
}

.booking-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(245, 235, 217, 0.1);
  border: 1px solid rgba(245, 235, 217, 0.2);
  color: var(--warm-cream);
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s, transform 0.2s;
}

.booking-modal-close:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  transform: rotate(90deg);
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .booking-modal-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  .booking-modal-actions .btn {
    width: 100%;
    min-width: 0;
  }
  .booking-modal-content {
    padding: 2rem 1rem;
  }
  .booking-modal-phone {
    margin: 1rem 0 1.25rem;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.15s; opacity: 0; }
.delay-2 { animation-delay: 0.3s; opacity: 0; }
.delay-3 { animation-delay: 0.45s; opacity: 0; }
.delay-4 { animation-delay: 0.6s; opacity: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 920px) {
  .feature-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .s}

.testimonials-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 0 1rem;
  animation: scrollTestimonials 60s linear infinite;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes scrollTestimonials {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1rem)); }
}

.testimonial-card {
  flex-shrink: 0;
  width: 460px;
  background: var(--warm-paper);
  padding: 3rem 2.25rem 2rem;
  border-radius: 4px;
  box-shadow: 0 8px 30px var(--soft-shadow);
  position: relative;
  border: 1px solid rgba(168, 118, 45, 0.12);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 0.25rem;
  left: 1.25rem;
  font-family: var(--font-display);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--ochre);
  opacity: 0.35;
  font-style: italic;
}

.testimonial-stars {
  color: #e8a939;
  letter-spacing: 0.18em;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  font-family: 'Patrick Hand', 'Kalam', 'Comic Sans MS', cursive, var(--font-display);
  font-size: 1.45rem;
  line-height: 1.55;
  color: var(--dark-wood);
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.testimonial-meta {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-wood);
}

@media (max-width: 640px) {
  .testimonial-card {
    width: 320px;
    padding: 2.5rem 1.75rem 1.75rem;
  }
  .testimonial-text {
    font-size: 1.4rem;
  }
  .testimonial-card::before {
    font-size: 4.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ===== BOOKING MODAL (phone-first popup) ===== */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.booking-modal.open {
  display: flex;
  animation: modalFadeIn 0.35s ease;
}

.booking-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 10, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.booking-modal-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--warm-cream);
  padding: 3rem 1.5rem;
  max-width: 760px;
  width: 100%;
  animation: modalSlideUp 0.4s ease;
}

.booking-modal-eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 1.25rem;
  display: inline-block;
}

.booking-modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-style: italic;
  color: var(--warm-cream);
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.booking-modal-phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 11vw, 6.5rem);
  font-weight: 600;
  color: var(--warm-cream);
  letter-spacing: 0.02em;
  margin: 1.5rem 0 1.75rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.4);
  transition: color 0.25s, transform 0.25s;
  text-decoration: none;
}

.booking-modal-phone:hover,
.booking-modal-phone:focus {
  color: var(--ochre);
  transform: scale(1.02);
  outline: none;
}

.booking-modal-subtext {
  font-size: 1.05rem;
  color: var(--warm-paper);
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

.booking-modal-subtext strong {
  color: var(--ochre);
}

.booking-modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.booking-modal-actions .btn {
  font-size: 0.95rem;
  padding: 1.1rem 2rem;
  min-width: 220px;
}

.booking-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(245, 235, 217, 0.1);
  border: 1px solid rgba(245, 235, 217, 0.2);
  color: var(--warm-cream);
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s, transform 0.2s;
}

.booking-modal-close:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  transform: rotate(90deg);
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .booking-modal-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  .booking-modal-actions .btn {
    width: 100%;
    min-width: 0;
  }
  .booking-modal-content {
    padding: 2rem 1rem;
  }
  .booking-modal-phone {
    margin: 1rem 0 1.25rem;
  }
}

/* ====================================================
   RESPONSIVE — TABLET (max-width: 920px)
   ==================================================== */
@media (max-width: 920px) {
  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .split.reverse .split-text { order: 1; }
  .split.reverse .split-image { order: 2; }

  .feature-grid { grid-template-columns: 1fr; gap: 1.75rem; }

  .space-cards { grid-template-columns: 1fr !important; }
  .space-card[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .space-card img { height: 240px !important; }
  .space-card-body { padding: 1.75rem !important; order: 2 !important; }

  .menu-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  .booking-wrap { grid-template-columns: 1fr; gap: 2rem; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .gallery { grid-auto-rows: 160px; }
  .g-1x1 { grid-column: span 6; }
  .g-2x1 { grid-column: span 12; }
  .g-1x2 { grid-column: span 6; }
  .g-2x2 { grid-column: span 12; }
  .g-3x1 { grid-column: span 6; }
  .g-3x2 { grid-column: span 12; }

  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  .blog-featured { grid-template-columns: 1fr; gap: 0; }
  .blog-featured-image { min-height: 280px; }
  .blog-featured-body { padding: 2rem; }

  .article-hero img { height: 45vh; min-height: 300px; }
}

/* ====================================================
   RESPONSIVE — MOBILE (max-width: 640px)
   ==================================================== */
@media (max-width: 640px) {
  :root {
    --gutter: 1.25rem;
    --section-y: clamp(2.5rem, 8vh, 4.5rem);
  }

  body { font-size: 15px; }

  /* ===== NAV - HAMBURGER MOBILE ===== */
  .nav-inner {
    padding: 0.75rem 1rem;
    flex-wrap: nowrap;
  }

  .nav-logo {
    font-size: 1.15rem;
    white-space: nowrap;
  }

  .nav-toggle {
    display: block !important;
    font-size: 1.6rem;
    padding: 0.25rem 0.5rem;
  }

  .nav-menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--warm-cream);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0 1rem;
    border-bottom: 1px solid rgba(168, 118, 45, 0.2);
    box-shadow: 0 8px 20px rgba(44, 29, 16, 0.1);
    transform: translateY(-150%);
    transition: transform 0.35s ease;
    z-index: 99;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(168, 118, 45, 0.1);
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .nav-cta {
    margin: 0.5rem 1rem !important;
    text-align: center;
    padding: 0.9rem 1.25rem !important;
    font-size: 0.95rem !important;
  }

  /* ===== HERO ===== */
  .hero { min-height: 88vh; }
  .hero h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .hero .tagline { font-size: 0.95rem; }
  .hero-buttons { flex-direction: column; gap: 0.75rem; }
  .hero-buttons .btn { width: 100%; max-width: 280px; margin: 0 auto; }

  /* ===== PAGE HEADER ===== */
  .page-header { height: 40vh; min-height: 260px; }
  .page-header h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }

  /* ===== INFO STRIP ===== */
  .info-strip { padding: 1.25rem 1rem; }
  .info-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .info-item .value { font-size: 0.95rem; }
  .info-item .label { font-size: 0.65rem; }

  /* ===== SECTION ===== */
  .section { padding: var(--section-y) 0; }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  h3 { font-size: 1.15rem; }

  /* ===== SPLIT / SPACE CARDS ===== */
  .split-image img { max-height: 320px; }
  .space-card img { height: 200px !important; }
  .space-card-body { padding: 1.5rem !important; }

  /* ===== MENU ===== */
  .menu-grid { grid-template-columns: 1fr; }
  .menu-section-title { gap: 0.75rem; }
  .menu-section-title h2 { font-size: 1.5rem; white-space: normal; }
  .menu-item-name { font-size: 1.1rem; }
  .menu-item-price { font-size: 1rem; }

  /* ===== BOOKING FORM ===== */
  .booking-form { padding: 1.5rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* ===== GALLERY ===== */
  .gallery { grid-auto-rows: 130px; gap: 0.5rem; }
  .g-1x1, .g-1x2, .g-3x1, .g-3x2 { grid-column: span 6; }
  .g-2x1, .g-2x2 { grid-column: span 12; }

  /* ===== FOOTER ===== */
  .footer { padding: 2.5rem 1rem 1.25rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer h4 { font-size: 1.25rem; }
  .footer h5 { font-size: 0.7rem; margin-bottom: 0.6rem; }

  /* ===== BLOG ===== */
  .blog-grid { grid-template-columns: 1fr; }
  .blog-featured-body { padding: 1.5rem 1.25rem; }
  .blog-featured-body h2 { font-size: 1.5rem; }

  /* ===== ARTICLE ===== */
  .article-title { font-size: clamp(1.6rem, 7vw, 2.3rem); }
  .article-lead { font-size: 1.1rem; }
  .article-body { font-size: 1rem; }
  .article-body h2 { font-size: 1.45rem; }
  .article-hero img { height: 38vh; min-height: 220px; }

  /* ===== BAND ===== */
  .band { height: 50vh; min-height: 300px; }
  .band h2 { font-size: 1.4rem; }
  .band p { font-size: 0.95rem; }

  /* ===== QUOTE ===== */
  .quote p { font-size: 1.2rem; }

  /* ===== BUTTONS ===== */
  .btn { padding: 0.85rem 1.5rem; font-size: 0.85rem; }

  /* ===== TESTIMONIALS ===== */
  .testimonial-card { width: 88vw; max-width: 360px; padding: 2rem 1.5rem 1.5rem; }
  .testimonial-text { font-size: 1.3rem; }
  .testimonial-card::before { font-size: 4rem; top: 0.15rem; left: 1rem; }

  /* ===== BOOKING MODAL ===== */
  .booking-modal-content { padding: 2rem 1rem; }
  .booking-modal-phone { font-size: clamp(2.5rem, 14vw, 4rem); margin: 1rem 0 1.25rem; }
  .booking-modal-title { font-size: 1.5rem; }
  .booking-modal-subtext { font-size: 0.95rem; margin-bottom: 1.75rem; }
  .booking-modal-actions { flex-direction: column; gap: 0.75rem; }
  .booking-modal-actions .btn { width: 100%; min-width: 0; }

  /* Ensure no horizontal overflow */
  html, body { overflow-x: hidden; }
  .container { padding: 0 1rem; }
}

/* ====================================================
   AI CHATBOT WIDGET
   ==================================================== */
.chatbot-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  font-family: var(--font-body);
}

.chatbot-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--terracotta);
  color: var(--warm-cream);
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(185, 74, 58, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  animation: chatbotPulse 2.5s infinite;
}

.chatbot-toggle:hover {
  transform: translateY(-2px);
  background: var(--dark-wood);
  box-shadow: 0 12px 28px rgba(44, 29, 16, 0.5);
}

.chatbot-toggle svg { display: block; }

@keyframes chatbotPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(185, 74, 58, 0.4); }
  50%      { box-shadow: 0 8px 24px rgba(185, 74, 58, 0.65), 0 0 0 8px rgba(185, 74, 58, 0.15); }
}

.chatbot-panel {
  position: absolute;
  bottom: 4.5rem;
  right: 0;
  width: 380px;
  max-width: calc(100vw - 2rem);
  height: 560px;
  max-height: calc(100vh - 6rem);
  background: var(--warm-cream);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(26, 18, 10, 0.35);
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(168, 118, 45, 0.18);
  transform-origin: bottom right;
}

.chatbot-panel.open {
  display: flex;
  animation: chatbotPanelIn 0.3s ease;
}

@keyframes chatbotPanelIn {
  from { opacity: 0; transform: scale(0.92) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.chatbot-header {
  background: var(--dark-wood);
  color: var(--warm-cream);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(245, 235, 217, 0.1);
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chatbot-avatar {
  width: 40px;
  height: 40px;
  background: var(--terracotta);
  color: var(--warm-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  font-style: italic;
}

.chatbot-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
}

.chatbot-status {
  font-size: 0.72rem;
  color: var(--warm-paper);
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 2px;
}

.chatbot-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.6);
}

.chatbot-close {
  background: none;
  border: none;
  color: var(--warm-cream);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.4rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.chatbot-close:hover { opacity: 1; }

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1rem;
  background: var(--warm-cream);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chatbot-messages::-webkit-scrollbar { width: 6px; }
.chatbot-messages::-webkit-scrollbar-thumb { background: rgba(168, 118, 45, 0.3); border-radius: 3px; }

.chatbot-msg {
  display: flex;
  max-width: 85%;
}

.chatbot-msg-bot { align-self: flex-start; }
.chatbot-msg-user { align-self: flex-end; justify-content: flex-end; }

.chatbot-msg-bubble {
  padding: 0.7rem 0.95rem;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.5;
  word-wrap: break-word;
}

.chatbot-msg-bot .chatbot-msg-bubble {
  background: var(--warm-paper);
  color: var(--dark-wood);
  border-bottom-left-radius: 4px;
}

.chatbot-msg-user .chatbot-msg-bubble {
  background: var(--terracotta);
  color: var(--warm-cream);
  border-bottom-right-radius: 4px;
}

.chat-link {
  color: var(--terracotta);
  font-weight: 500;
  border-bottom: 1px solid rgba(185, 74, 58, 0.3);
}
.chatbot-msg-user .chat-link {
  color: var(--warm-cream);
  border-color: rgba(245, 235, 217, 0.4);
}

.chatbot-dots {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.chatbot-dots span {
  width: 7px;
  height: 7px;
  background: var(--mid-wood);
  border-radius: 50%;
  opacity: 0.4;
  animation: chatbotBlink 1.4s infinite ease-in-out both;
}
.chatbot-dots span:nth-child(2) { animation-delay: 0.2s; }
.chatbot-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes chatbotBlink {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.85); }
  40%           { opacity: 1; transform: scale(1); }
}

.chatbot-suggestions {
  padding: 0.5rem 1rem 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  border-top: 1px solid rgba(168, 118, 45, 0.12);
  background: var(--warm-cream);
}

.chatbot-suggestion {
  background: transparent;
  border: 1px solid var(--ochre);
  color: var(--dark-wood);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.chatbot-suggestion:hover {
  background: var(--ochre);
  color: var(--warm-cream);
}

.chatbot-input {
  display: flex;
  padding: 0.75rem;
  gap: 0.5rem;
  background: var(--warm-paper);
  border-top: 1px solid rgba(168, 118, 45, 0.18);
}

.chatbot-input input {
  flex: 1;
  border: 1px solid rgba(74, 50, 32, 0.2);
  background: var(--warm-cream);
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--dark-wood);
  outline: none;
  transition: border-color 0.2s;
}
.chatbot-input input:focus { border-color: var(--terracotta); }

.chatbot-send {
  background: var(--terracotta);
  border: none;
  color: var(--warm-cream);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.chatbot-send:hover { background: var(--dark-wood); transform: scale(1.05); }

/* Mobile responsive */
@media (max-width: 640px) {
  .chatbot-widget {
    bottom: 1rem;
    right: 1rem;
  }
  .chatbot-toggle {
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
  }
  .chatbot-toggle-label {
    display: none;  /* icon only on mobile to save space */
  }
  .chatbot-panel {
    width: calc(100vw - 1.5rem);
    height: calc(100vh - 5rem);
    max-height: 600px;
    bottom: 4.2rem;
    right: 0;
  }
}

/* ===== MENU ACCORDION (details/summary) ===== */
.menu-acc {
  border: 1px solid rgba(168, 118, 45, 0.25);
  border-radius: 10px;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.4);
  overflow: hidden;
}

.menu-acc > summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--dark-wood);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s ease;
}

.menu-acc > summary::-webkit-details-marker { display: none; }

.menu-acc > summary::after {
  content: "▾";
  font-size: 1rem;
  color: var(--terracotta);
  transition: transform 0.25s ease;
}

.menu-acc[open] > summary::after { transform: rotate(180deg); }

.menu-acc > summary:hover { background: rgba(168, 118, 45, 0.08); }

.menu-acc[open] > summary {
  border-bottom: 1px solid rgba(168, 118, 45, 0.2);
}

.menu-acc .menu-grid {
  padding: 1.4rem;
}

.menu-grid-compact .menu-item {
  padding-bottom: 0.9rem;
  gap: 0.25rem;
}

.menu-grid-compact .menu-item-name { font-size: 1.1rem; }
.menu-grid-compact .menu-item-price { font-size: 1rem; }

/* ===== DISH IMAGE CARDS (Pizza-4P style) ===== */
.dish-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}
.dish-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(44, 29, 16, 0.12);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(44, 29, 16, 0.18);
}
.dish-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.dish-card-body {
  padding: 1rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.dish-card-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-wood);
  line-height: 1.25;
}
.dish-card-price {
  color: var(--terracotta);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.dish-card-desc {
  font-size: 0.85rem;
  color: var(--mid-wood);
  line-height: 1.5;
  margin: 0;
}
.dish-card-tag {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-deep);
  margin-top: auto;
  padding-top: 0.35rem;
}
@media (max-width: 920px) { .dish-cards { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (max-width: 560px) { .dish-cards { grid-template-columns: 1fr; } }

/* ===== ORDER WIDGET (takeaway) ===== */
.vsq-order-fab {
  position: fixed; left: 20px; bottom: 22px; z-index: 90;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--olive-deep); color: #fff; border: none;
  padding: 0.7rem 1.1rem; border-radius: 999px; cursor: pointer;
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 600;
  box-shadow: 0 6px 18px rgba(44,29,16,0.28); transition: background .2s, transform .2s;
}
.vsq-order-fab:hover { background: var(--dark-wood); transform: translateY(-2px); }
.vsq-order-fab svg { flex: none; }

.vsq-order-overlay {
  position: fixed; inset: 0; z-index: 1000; display: none;
  background: rgba(26,18,10,0.55); align-items: center; justify-content: center;
  padding: 1rem;
}
.vsq-order-overlay.open { display: flex; }
.vsq-order-modal {
  background: var(--warm-cream); width: 100%; max-width: 460px; max-height: 88vh;
  border-radius: 16px; display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.vsq-order-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; background: var(--terracotta); color: #fff;
}
.vsq-order-head strong { font-family: var(--font-display); font-size: 1.2rem; }
.vsq-order-close { background: none; border: none; color: #fff; font-size: 1.6rem; cursor: pointer; line-height: 1; }
.vsq-order-body { padding: 1rem 1.25rem; overflow-y: auto; flex: 1; }
.vsq-order-note { font-size: 0.82rem; color: var(--mid-wood); margin: 0 0 0.85rem; line-height: 1.5; }

.vsq-cat-h { font-family: var(--font-display); font-weight: 600; color: var(--gold-deep);
  font-size: 0.95rem; margin: 1rem 0 0.4rem; border-bottom: 1px solid rgba(168,118,45,0.25); padding-bottom: 0.25rem; }
.vsq-item { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 0.55rem 0; }
.vsq-item-info { display: flex; flex-direction: column; }
.vsq-item-name { color: var(--dark-wood); font-size: 0.95rem; }
.vsq-item-price { color: var(--terracotta); font-size: 0.82rem; }
.vsq-stepper { display: flex; align-items: center; gap: 0.5rem; flex: none; }
.vsq-stepper button { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--ochre);
  background: #fff; color: var(--dark-wood); font-size: 1.1rem; cursor: pointer; line-height: 1; }
.vsq-stepper button:hover { background: var(--warm-paper); }
.vsq-qty { min-width: 18px; text-align: center; font-weight: 600; }

.vsq-order-foot { padding: 0.9rem 1.25rem; border-top: 1px solid rgba(168,118,45,0.25);
  background: var(--warm-paper); display: flex; flex-direction: column; gap: 0.6rem; }
.vsq-foot-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.95rem; }
.vsq-foot-total { font-family: var(--font-display); font-weight: 700; color: var(--terracotta); font-size: 1.15rem; }
.vsq-btn { width: 100%; padding: 0.8rem; border: none; border-radius: 8px; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem; background: var(--terracotta); color: #fff; transition: background .2s; }
.vsq-btn:hover { background: var(--dark-wood); }
.vsq-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.vsq-back { background: transparent; color: var(--mid-wood); border: 1px solid var(--ochre); }
.vsq-back:hover { background: var(--warm-cream); color: var(--dark-wood); }

.vsq-summary { background: #fff; border-radius: 10px; padding: 0.9rem 1rem; margin-bottom: 1rem; }
.vsq-sum-row { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 0.25rem 0; color: var(--mid-wood); }
.vsq-sum-total { border-top: 1px dashed rgba(168,118,45,0.4); margin-top: 0.4rem; padding-top: 0.5rem; color: var(--dark-wood); }
.vsq-form label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark-wood); margin: 0.7rem 0 0.25rem; }
.vsq-form input[type=text], .vsq-form input[type=tel] {
  width: 100%; padding: 0.6rem 0.75rem; border: 1px solid var(--ochre); border-radius: 8px;
  font-family: var(--font-body); font-size: 0.95rem; background: #fff; }
.vsq-radio { display: flex; gap: 1rem; flex-wrap: wrap; }
.vsq-radio label { font-weight: 400; display: inline-flex; align-items: center; gap: 0.35rem; margin: 0; }
.vsq-err { color: var(--terracotta); font-size: 0.85rem; margin-top: 0.6rem; min-height: 1em; }

.vsq-success { text-align: center; padding: 1.5rem 0.5rem; }
.vsq-success-ic { width: 64px; height: 64px; border-radius: 50%; background: var(--olive-deep); color: #fff;
  font-size: 2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.vsq-success h3 { font-family: var(--font-display); margin-bottom: 0.5rem; }
.vsq-success p { font-size: 0.92rem; color: var(--mid-wood); margin-bottom: 0.5rem; }

@media (max-width: 560px) {
  .vsq-order-fab span { display: none; }
  .vsq-order-fab { padding: 0.8rem; }
  .vsq-order-modal { max-height: 92vh; }
}
