/* =============================================
   FENG SHUI CHINESE RESTAURANT — style.css
   ============================================= */

/* ---------- Imports & Variables ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Lato:wght@300;400;700&display=swap');

:root {
  --red-primary:   #8B1A1A;
  --red-dark:      #6B1010;
  --red-hero:      #5A0E0E;
  --orange-story:  #C45A1A;
  --cream:         #F5EDE0;
  --cream-light:   #FDF7F0;
  --gold:          #C8973A;
  --gold-light:    #D4A84B;
  --text-dark:     #2C1810;
  --text-light:    #F2E8D9;
  --text-muted:    #8B6B5A;
  --white:         #FFFFFF;
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Lato', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

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

.uppercase { text-transform: uppercase; letter-spacing: 0.1em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.btn-primary {
  background: var(--red-primary);
  color: var(--text-light);
  border-color: var(--red-primary);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn-outline-light {
  background: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}
.btn-outline-light:hover {
  background: var(--text-light);
  color: var(--red-dark);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}
.btn-outline-dark:hover {
  background: var(--text-dark);
  color: var(--white);
}

/* ---------- Gold Underline Accent ---------- */
.gold-line {
  display: block;
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 12px 0 20px;
}
.gold-line.center { margin: 12px auto 20px; }

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: var(--cream-light);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.12); }

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-char {
  width: 48px;
  height: 48px;
  border: 2px solid var(--red-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--red-primary);
  line-height: 1;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--red-primary);
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red-primary);
  transition: width 0.25s;
}
.nav-links a:hover { color: var(--red-primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Nav CTA */
.nav-cta .btn { padding: 10px 22px; font-size: 0.78rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--red-primary);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
#home {
  margin-top: 72px;
  min-height: calc(100vh - 72px);
  background: var(--red-hero);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 900;
  color: var(--text-light);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hero-content p {
  font-size: 1rem;
  color: var(--text-light);
  opacity: 0.9;
  max-width: 380px;
  margin: 18px 0 0;
  line-height: 1.7;
}

.hero-tagline {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 20px 0 32px;
  opacity: 1 !important;
}

.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Chinese character watermark */
.hero-char-watermark {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: clamp(5rem, 10vw, 10rem);
  color: rgba(242, 232, 217, 0.15);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* =============================================
   FEATURES STRIP
   ============================================= */
#features {
  background: var(--cream);
  padding: 72px 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.feature-item { padding: 16px; }

.feature-icon {
  width: 72px;
  height: 72px;
  border: 2px solid var(--red-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.feature-icon svg { width: 32px; height: 32px; stroke: var(--red-primary); fill: none; stroke-width: 1.6; }

.feature-item h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   OUR STORY
   ============================================= */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.story-content {
  background: var(--orange-story);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.story-content p {
  font-size: 1rem;
  color: var(--text-light);
  opacity: 0.92;
  max-width: 420px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.story-image {
  overflow: hidden;
  position: relative;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================================
   CHEF'S RECOMMENDATIONS
   ============================================= */
#menu {
  background: var(--red-dark);
  padding: 80px 48px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto 48px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.dish-card { background: transparent; }

.dish-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
}
.dish-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.dish-card:hover .dish-card-image img { transform: scale(1.06); }

.dish-card h3 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.dish-card .price {
  font-size: 0.9rem;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 8px;
}

.dish-card p {
  font-size: 0.85rem;
  color: rgba(242,232,217,0.75);
  line-height: 1.6;
}

/* =============================================
   LOGO IMAGE
   ============================================= */
.logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.footer-logo-img {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
}

/* =============================================
   FULL MENU SECTION
   ============================================= */
#full-menu {
  background: var(--cream);
  padding: 88px 48px;
  text-align: center;
}
#full-menu .section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red-primary);
  margin-bottom: 6px;
}
#full-menu .section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 auto 48px;
  line-height: 1.7;
}

.menu-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.menu-card {
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: center;
  padding: 0;
  box-shadow: 0 4px 20px rgba(139,26,26,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 3px solid var(--gold);
}
.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(139,26,26,0.15);
}
.menu-card-thumb {
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.menu-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.menu-card:hover .menu-card-thumb img { transform: scale(1.04); }

.menu-card-label {
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-primary);
}

.menu-card-sublabel {
  padding: 0 16px 12px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.03em;
}

/* ---- Menu Modals ---- */
.menu-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.menu-modal.open { display: flex; }

.menu-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
  cursor: pointer;
}
.menu-modal-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 92vh;
  overflow: auto;
  background: var(--white);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.menu-modal-content img {
  display: block;
  max-width: 100%;
  height: auto;
}
.menu-modal-close {
  position: absolute;
  top: 10px; right: 12px;
  background: var(--red-primary);
  color: var(--white);
  border: none;
  width: 34px; height: 34px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}
.menu-modal-close:hover { background: var(--red-dark); }

/* =============================================
   MEET THE HOSTS
   ============================================= */
#hosts {
  background: var(--cream-light);
  padding: 88px 48px;
  text-align: center;
}

#hosts .section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red-primary);
  margin-bottom: 6px;
}

#hosts .section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.hosts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
/* Single combined card for Tom & Shirley */
.hosts-grid--single {
  max-width: 680px;
  grid-template-columns: 1fr;
}
.host-card--combined { text-align: center; }

.host-photo-combined {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px;
  border: 4px solid var(--gold);
}
.host-photo-combined img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.host-card {
  background: var(--white);
  border-top: 4px solid var(--gold);
  padding: 36px 28px 32px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(139,26,26,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}
.host-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 36px rgba(139,26,26,0.13);
}

/* Decorative monogram circle (replaces photo when unavailable) */
.host-monogram {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--red-primary);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--gold-light);
  line-height: 1;
}

.host-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--red-primary);
  margin-bottom: 4px;
}

.host-card .host-role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.host-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   CONTACT CTAs
   ============================================= */
.contact-ctas {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.contact-cta-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(242,232,217,0.35);
  padding: 22px 32px;
  color: var(--text-light);
  transition: background 0.25s, border-color 0.25s;
  min-width: 280px;
}
.contact-cta-card:hover {
  background: rgba(255,255,255,0.18);
  border-color: var(--gold);
}
.contact-cta-icon svg {
  width: 28px; height: 28px;
  stroke: var(--gold);
  fill: none;
}
.contact-cta-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.contact-cta-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,232,217,0.7);
  margin-bottom: 4px;
}
.contact-cta-number {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
}

/* ---- Delivery Platform CTAs ---- */
.delivery-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 8px;
}

.delivery-cta-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  border-radius: 12px;
  min-width: 220px;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
  font-family: var(--font-body);
}

.delivery-cta-card:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.delivery-cta-card.ubereats {
  background: #000;
  color: #fff;
}

.delivery-cta-card.doordash {
  background: #FF3008;
  color: #fff;
}

.delivery-cta-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
}

.delivery-cta-icon svg {
  width: 100%;
  height: 100%;
}

.delivery-cta-text {
  display: flex;
  flex-direction: column;
}

.delivery-cta-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

.delivery-cta-brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* =============================================
   GALLERY TEASER (optional strip)
   ============================================= */
#gallery {
  background: var(--cream);
  padding: 72px 48px;
  text-align: center;
}
#gallery .section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--red-primary);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  max-width: 1100px;
  margin: 40px auto 0;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: opacity 0.3s;
}
.gallery-grid img:hover { opacity: 0.85; }

/* Preview grid on homepage */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 36px auto 0;
}
.gallery-preview-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: opacity 0.3s;
}
.gallery-preview-grid img:hover { opacity: 0.85; }
@media (max-width: 600px) {
  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Gallery page — named item cards */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 24px;
}
.gallery-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.gallery-item-name {
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red-primary);
  text-align: center;
}

/* =============================================
   RESERVATIONS
   ============================================= */
#reservations {
  background: var(--red-primary);
  padding: 88px 48px;
  text-align: center;
}
#reservations h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 900;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
#reservations p {
  color: rgba(242,232,217,0.85);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.reservation-form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.reservation-form input,
.reservation-form select {
  padding: 14px 18px;
  border: 1px solid rgba(242,232,217,0.3);
  background: rgba(255,255,255,0.08);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  flex: 1 1 180px;
  outline: none;
  transition: border-color 0.2s;
}
.reservation-form input::placeholder { color: rgba(242,232,217,0.5); }
.reservation-form input:focus,
.reservation-form select:focus { border-color: var(--gold); }
.reservation-form select option { background: var(--red-dark); color: var(--text-light); }

/* =============================================
   RESERVATION FORM
   ============================================= */
.reservation-form-wrap {
  max-width: 760px;
  margin: 56px auto 0;
  text-align: center;
}

.reservation-form-title {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242,232,217,0.6);
  margin-bottom: 28px;
  position: relative;
}
.reservation-form-title::before,
.reservation-form-title::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: rgba(242,232,217,0.3);
  vertical-align: middle;
  margin: 0 12px;
}

.reservation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.reservation-grid input,
.reservation-grid select {
  padding: 14px 16px;
  border: 1px solid rgba(242,232,217,0.25);
  background: rgba(255,255,255,0.07);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.reservation-grid input::placeholder { color: rgba(242,232,217,0.45); }
.reservation-grid input:focus,
.reservation-grid select:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}
.reservation-grid select option { background: var(--red-dark); color: var(--text-light); }

#guests_custom {
  padding: 14px 16px;
  border: 1px solid rgba(242,232,217,0.25);
  background: rgba(255,255,255,0.07);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  width: 100%;
  grid-column: 1 / -1;
  transition: border-color 0.2s, background 0.2s;
}
#guests_custom::placeholder { color: rgba(242,232,217,0.45); }
#guests_custom:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}

#submit-btn { margin-top: 8px; min-width: 220px; }
#submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Feedback messages */
.form-feedback {
  margin-top: 20px;
  padding: 16px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  display: none;
  border-radius: 2px;
}
.form-feedback--success {
  display: block;
  background: #1a5c2e;
  border: 2px solid #2ecc71;
  color: #ffffff;
}
.form-feedback--error {
  display: block;
  background: #7a1010;
  border: 2px solid #e74c3c;
  color: #ffffff;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--red-dark);
  padding: 64px 48px 32px;
  color: var(--text-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto 48px;
}

.footer-logo p {
  font-size: 0.85rem;
  color: rgba(242,232,217,0.7);
  line-height: 1.7;
  max-width: 220px;
}
.footer-col a {
  color: rgba(242,232,217,0.8);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}

.footer-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(242,232,217,0.8);
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-col ul li svg { flex-shrink: 0; margin-top: 2px; }

/* Hours */
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(242,232,217,0.8);
  margin-bottom: 8px;
}
.hours-row .days   { font-weight: 700; color: var(--text-light); }
.hours-row .closed { color: rgba(242,232,217,0.45); font-style: italic; }
.hours-row .shift  { font-weight: 700; color: rgba(242,232,217,0.65); }
.hours-divider {
  border-top: 1px solid rgba(242,232,217,0.12);
  margin: 8px 0 10px;
}
.hours-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

/* Social */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.social-icons a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(242,232,217,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s;
}
.social-icons a:hover { background: var(--gold); border-color: var(--gold); }
.social-icons svg { width: 16px; height: 16px; stroke: var(--text-light); fill: none; }

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(242,232,217,0.15);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: rgba(242,232,217,0.55);
}
.footer-bottom a { color: rgba(242,232,217,0.55); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 24px; }

.footer-credit {
  text-align: center;
  padding: 12px 0 0;
  font-size: 0.75rem;
  color: rgba(242,232,217,0.4);
  letter-spacing: 0.03em;
}
.footer-credit a {
  color: rgba(242,232,217,0.6);
  transition: color 0.2s;
}
.footer-credit a:hover { color: var(--gold); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .dishes-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Nav */
  .navbar { padding: 0 24px; }
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--cream-light);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
  }
  .nav-links.open  { display: flex; }
  .nav-cta {
    display: none;
    padding: 0 24px 24px;
    background: var(--cream-light);
  }
  .nav-cta.open { display: block; }

  /* Hero */
  #home { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { height: 280px; }
  .hero-content { padding: 56px 28px; }
  .hero-char-watermark { display: none; }

  /* Story */
  #about { grid-template-columns: 1fr; }
  .story-content { padding: 56px 28px; }
  .story-image { height: 300px; }

  /* Features */
  .features-grid { grid-template-columns: repeat(2, 1fr); }

  /* Chef's Recommendations */
  #menu { padding: 64px 24px; }
  .dishes-grid { grid-template-columns: repeat(2, 1fr); }
  .section-header { flex-direction: column; align-items: flex-start; gap: 20px; }

  /* Full Menu */
  #full-menu { padding: 64px 24px; }
  .menu-cards-grid { grid-template-columns: repeat(2, 1fr); }

  /* Hosts */
  #hosts { padding: 64px 24px; }

  /* Contact CTAs */
  .contact-ctas { flex-direction: column; align-items: center; }
  .contact-cta-card { min-width: unset; width: 100%; max-width: 360px; }

  /* Reservation form */
  .reservation-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .features-grid    { grid-template-columns: 1fr; }
  .dishes-grid      { grid-template-columns: 1fr; }
  .reservation-grid { grid-template-columns: 1fr; }
  .hero-content  { padding: 40px 20px; }
  .story-content { padding: 40px 20px; }
}

/* =============================================
   MOBILE OPTIMISATIONS (max-width: 768px)
   ============================================= */
@media (max-width: 768px) {

  /* --- Buttons: full-width & touch-friendly on mobile --- */
  .hero-content .btn {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
  }

  /* --- Section padding: reduce side padding --- */
  #gallery       { padding: 48px 20px; }
  #features      { padding: 40px 20px; }
  #about         { padding: 0; }
  #menu          { padding: 56px 20px; }
  #full-menu     { padding: 56px 20px; }
  #hosts         { padding: 56px 20px; }
  #reservations  { padding: 56px 20px; }

  /* --- Gallery preview: 2 cols on mobile --- */
  .gallery-preview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  /* --- Menu cards: stack to 1 col on small screens --- */
  .menu-cards-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* --- Chef's recommendations section header --- */
  .section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  /* --- Delivery CTAs: stack vertically --- */
  .delivery-ctas {
    flex-direction: column;
    align-items: center;
  }
  .delivery-cta-card {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

  /* --- Reservation form: single column --- */
  .reservation-grid { grid-template-columns: 1fr; }
  .reservation-form-wrap { padding: 32px 20px; }

  /* --- Submit button: full width --- */
  #submit-btn { width: 100%; }

  /* --- Hosts section: reduce text size --- */
  #hosts h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* --- Footer: tighten padding --- */
  footer { padding: 48px 20px 32px; }
  .footer-grid { gap: 28px; }
  .footer-bottom { padding: 20px 0 0; font-size: 0.78rem; }

  /* --- Gallery page grid: 2 cols --- */
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 16px; }
  .gallery-item-name { font-size: 0.72rem; padding: 10px 10px; }

  /* --- Call popup: full width on small screens --- */
  #call-popup > div { padding: 32px 24px; }
}

@media (max-width: 400px) {
  /* --- Menu cards: single column on very small screens --- */
  .menu-cards-grid { grid-template-columns: 1fr; }
  .dishes-grid     { grid-template-columns: 1fr; }

  /* --- Gallery: single column --- */
  .gallery-preview-grid { grid-template-columns: 1fr; }
  .gallery-page-grid    { grid-template-columns: 1fr; }

  /* --- Nav logo size --- */
  .logo-img { height: 40px; }
}
