/* ============================================================
   HẺM ĂN VẶT — styles.css
   Light warm cream theme redesign
   ============================================================ */

/* ---- DESIGN TOKENS ---- */
:root {
  --accent:        #c97e20;           /* deep amber — legible on cream */
  --accent-hover:  #a86818;
  --accent-glow:   rgba(201, 126, 32, 0.15);
  --bg:            #fdf6ed;           /* warm cream */
  --surface:       #f0e4cc;           /* warm beige — alternating sections */
  --card:          #ffffff;
  --text:          #1c1209;           /* near-black warm */
  --text-muted:    #7a6550;
  --border:        rgba(28, 18, 9, 0.1);
  --shadow:        0 4px 24px rgba(28, 18, 9, 0.07);
  --shadow-lg:     0 12px 48px rgba(28, 18, 9, 0.12);
  --radius:        12px;
  --radius-lg:     20px;
  --max-width:     1280px;
  --section-pad:   clamp(4rem, 8vw, 8rem);
  --nav-h:         130px;

  --font-body:     'Be Vietnam Pro', system-ui, sans-serif;
  --font-display:  'Cormorant Garamond', Georgia, serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
iframe { border: none; display: block; }

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}
.section-pad { padding: var(--section-pad) 0; }

/* ---- TYPOGRAPHY HELPERS ---- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-heading em { font-style: italic; color: var(--accent); }
.section-heading.centered { text-align: center; }
.section-heading.centered::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0.9rem auto 0;
}
.section-subheading {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 3rem;
}
.section-subheading.centered { text-align: center; }

/* ---- SCROLL PROGRESS BAR ---- */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent);
  z-index: 10000;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ---- DEMO WATERMARK ---- */
.demo-watermark {
  position: fixed;
  right: -30px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 100px;
  font-weight: 900;
  opacity: 0.07;
  color: var(--text);
  z-index: 9999;
  pointer-events: none;
  user-select: none;
  font-family: var(--font-body);
  white-space: nowrap;
  letter-spacing: 0.1em;
}

/* ---- BACK TO TOP ---- */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
  box-shadow: var(--shadow);
  pointer-events: none;
  line-height: 1;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#back-to-top:hover { background: var(--accent-hover); }

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 28px rgba(201, 126, 32, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(28, 18, 9, 0.2);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-dark {
  background: var(--text);
  color: #fff;
}
.btn-dark:hover { background: #3a2810; transform: translateY(-2px); }
/* Nav CTA pill */
.btn-nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 0.55rem 1.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.btn-nav-cta:hover { background: var(--accent-hover); transform: none; }
.btn-full { width: 100%; }

/* ============================================================
   NAV — light theme
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 800;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
  background: transparent;
}
#navbar.scrolled {
  background: rgba(253, 246, 237, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-links {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}
.nav-link:hover,
.nav-link.active { color: var(--text); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

/* Hamburger — dark spans for light theme */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 810;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Full-Screen Overlay — light */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(253, 246, 237, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 799;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.mobile-link {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 3.8rem);
  font-weight: 700;
  font-style: italic;
  color: var(--text);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  text-align: center;
  line-height: 1.1;
  display: block;
}
.mobile-link:hover { color: var(--accent); }
.mobile-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 1.8rem;
  color: var(--text-muted);
  padding: 0.5rem;
  transition: color 0.2s;
  line-height: 1;
}
.mobile-close:hover { color: var(--text); }

/* ============================================================
   HERO — split layout (text left, image right)
   ============================================================ */
.hero {
  padding-top: calc(var(--nav-h) + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: var(--bg);
  overflow: hidden;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.hero-text {
  display: flex;
  flex-direction: column;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.hero-title em { font-style: italic; color: var(--accent); }
.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.hero-image-wrap:hover .hero-img { transform: scale(1.03); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: var(--surface); }
.section-header { margin-bottom: 0.5rem; }
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.hiw-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.hiw-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.hiw-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.hiw-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.hiw-card:hover .hiw-img-wrap img { transform: scale(1.05); }
.hiw-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hiw-step {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  font-style: italic;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.hiw-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.hiw-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   FEATURE STRIP — amber background
   ============================================================ */
.feature-strip {
  background: var(--accent);
  color: #fff;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.feature-text .section-label {
  color: rgba(255, 255, 255, 0.75);
}
.feature-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1.25rem;
}
.feature-heading em { font-style: italic; opacity: 0.85; }
.feature-desc {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 1.75rem;
  max-width: 520px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.feature-list li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
}
.feature-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.feature-photo-1,
.feature-photo-2 {
  border-radius: var(--radius-lg);
  object-fit: cover;
  width: 100%;
  height: 260px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}
.feature-photo-2 { margin-top: 2rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.about-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--text);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.about-lead em { color: var(--accent); font-style: italic; }
.about-body {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}
.about-badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: border-color 0.25s, color 0.25s;
}
.badge:hover { border-color: var(--accent); color: var(--accent); }
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.about-image:hover img { transform: scale(1.03); }

/* ============================================================
   MENU
   ============================================================ */
.menu { background: var(--surface); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.menu-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.menu-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(201, 126, 32, 0.15);
}
.menu-card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.85rem;
  line-height: 1;
}
.menu-card-header { margin-bottom: 0.75rem; }
.menu-cat-name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  font-style: italic;
  color: var(--text);
  line-height: 1.1;
}
.menu-cat-sub {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.2rem;
}
.menu-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--border);
  flex-grow: 1;
}
.menu-items { display: flex; flex-direction: column; gap: 0.5rem; }
.menu-items li {
  font-size: 0.88rem;
  color: var(--text);
  padding-left: 1rem;
  position: relative;
}
.menu-items li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.menu-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 1.1rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(28, 18, 9, 0.65) 0%, transparent 100%);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(253, 246, 237, 0.95);
  transform: translateY(4px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-item:last-child { grid-column: 1 / -1; aspect-ratio: 16 / 5; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--surface);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.stat-icon { font-size: 2rem; margin-bottom: 0.35rem; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  font-style: italic;
  color: var(--accent);
  line-height: 1;
}
.stat-word {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  font-style: italic;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
  margin-top: 0.15rem;
}
.contact-detail strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.contact-detail p { font-size: 0.95rem; color: var(--text); line-height: 1.7; }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.map-wrap iframe { width: 100%; height: 280px; }

/* Contact Form */
.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow);
}
.form-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.form-title em { color: var(--accent); font-style: italic; }
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea {
  background: var(--bg);
  border: 1px solid rgba(28, 18, 9, 0.15);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.thank-you { text-align: center; padding: 3rem 1.5rem; }
.thank-you-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.thank-you-icon { font-size: 3.5rem; }
.thank-you h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-style: italic;
  color: var(--accent);
}
.thank-you p { color: var(--text-muted); font-size: 0.95rem; max-width: 320px; line-height: 1.65; }
.thank-you-sub { color: var(--accent) !important; font-style: italic; }

/* ============================================================
   FOOTER — dark for contrast
   ============================================================ */
.footer {
  background: var(--text);
  color: rgba(253, 246, 237, 0.85);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 3rem;
}
.footer-logo-link { display: inline-block; margin-bottom: 0.75rem; }
.footer-logo-img { height: 160px; width: auto; object-fit: contain; }
.footer-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(253, 246, 237, 0.6);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.footer-address { font-size: 0.82rem; color: rgba(253, 246, 237, 0.6); }
.footer-nav h4,
.footer-specials h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253, 246, 237, 0.45);
  margin-bottom: 1rem;
}
.footer-nav ul,
.footer-specials ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-nav a { font-size: 0.88rem; color: rgba(253, 246, 237, 0.7); transition: color 0.2s; }
.footer-nav a:hover { color: rgba(253, 246, 237, 1); }
.footer-specials li { font-size: 0.82rem; color: rgba(253, 246, 237, 0.6); line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(253, 246, 237, 0.08);
  padding: 1.25rem clamp(1.25rem, 5vw, 3rem);
  text-align: center;
  font-size: 0.78rem;
  color: rgba(253, 246, 237, 0.4);
}

/* ============================================================
   RESPONSIVE — mobile-first breakpoints
   ============================================================ */

/* 1280px — gallery drops to 2-col, hiw drops to 2-col */
@media (max-width: 1280px) {
  .hiw-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:last-child { grid-column: 1 / -1; aspect-ratio: 16 / 5; }
}

/* 1024px — hero stacks, feature stacks, stats 2-col */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-image-wrap { max-width: 560px; margin: 0 auto; }
  .hero-text { text-align: center; align-items: center; }
  .hero-ctas { justify-content: center; }
  .hero-subtitle { max-width: 100%; }

  .feature-grid { grid-template-columns: 1fr; }
  .feature-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .feature-desc { max-width: 100%; }
  .feature-photos { max-width: 480px; margin: 0 auto; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* 768px — hamburger, single-col layouts */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-nav-cta { display: none; }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }

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

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:last-child { grid-column: 1 / -1; aspect-ratio: 16 / 6; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

/* 480px — single-col everything */
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .about-badges { flex-direction: column; align-items: flex-start; }
  .hiw-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:last-child { grid-column: auto; aspect-ratio: 4 / 3; }
  .feature-photos { grid-template-columns: 1fr; }
  .feature-photo-2 { margin-top: 0; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .hero-img { transition: none !important; }
  #scroll-progress { transition: none; }
  .btn { transition: background 0.1s, color 0.1s; }
  .about-image img { transition: none; }
  .gallery-item img { transition: none; }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
