/* ============================================
   PUFF Coffee Club — Responsive Stylesheet
   Multipage site, fluid down to 360px.
   ============================================ */

:root {
  --bg-dark:        #2a1810;
  --bg-darker:      #1f110b;
  --bg-darkest:     #1a0f0a;
  --bg-cream:       #faf3e8;
  --bg-cream-2:     #f5ede3;
  --accent-orange:  #c07839;
  --accent-gold:    #edab45;
  --accent-mint:    #93b392;
  --text-cream:     #faf3e8;
  --text-muted:     #c7b5a8;
  --text-brown:     #4d2e1f;
  --border-cream:   #d9ccbf;
  --tab-text:       #2a1810;

  --container-max: 1440px;
  --content-pad:   clamp(20px, 4vw, 75px);
  --header-h:      80px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-cream);
  color: var(--tab-text);
  font-family: 'Nunito', sans-serif;
  overflow-x: hidden;
  max-width: 100vw;
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--content-pad);
  padding-right: var(--content-pad);
}

main { padding-top: var(--header-h); }

/* ============================================ HEADER ============================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: var(--bg-dark);
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.header-inner {
  width: 100%;
  max-width: var(--container-max);
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 43px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 24px);
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark-img {
  width: 44px;
  height: 44px;
  padding: 7px;
  border: 1.5px solid var(--text-cream);
  border-radius: 10px;
  background: var(--bg-dark);
  box-sizing: border-box;
  object-fit: contain;
  object-position: center;
  transition: transform 0.25s ease;
}
.brand-link:hover .brand-mark-img { transform: scale(1.06); }

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--text-cream);
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--text-cream);
  padding-bottom: 6px;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--accent-orange);
  transition: width 0.25s ease;
}

.nav-link:hover { color: var(--accent-orange); }
.nav-link:hover::after { width: 100%; }
.nav-link--active { color: var(--text-cream); }
.nav-link--active::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-icon {
  width: 36px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(248,239,224,0.8);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.header-icon:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-cream);
  transform: translateY(-1px);
}


.nav-toggle {
  display: none;
  width: 40px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--text-cream);
  border-radius: 2px;
}
.nav-toggle span         { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.nav-toggle span::before { top: -6px; left: 0; }
.nav-toggle span::after  { top:  6px; left: 0; }

/* ============================================ BUTTONS ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  border: none;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn--amber { background: var(--accent-orange); color: #fff; }
.btn--dark  { background: var(--bg-dark);       color: #fff; }
.btn--small { height: 36px; padding: 0 18px; font-size: 12px; }
.btn--amber:hover { background: #d68b4c; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(192, 120, 57, 0.35); }
.btn--dark:hover  { background: #3d2419; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3); }

/* ============================================ SECTION HEADINGS ============================================ */
.kicker {
  margin: 0 0 12px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 5px;
  color: var(--accent-orange);
}
.kicker--center { text-align: center; }

.section-title {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  color: var(--bg-dark);
}
.section-title--on-dark { color: var(--text-cream); }

.section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

/* ============================================ HOME — HERO ============================================ */
.home-hero {
  background: var(--bg-dark);
  color: var(--text-cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 384fr 672fr 384fr;
  grid-template-rows: clamp(200px, 25vw, 360px);
  align-items: stretch;
}
.hero-img {
  background: #36211a;
  overflow: hidden;
  position: relative;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.hero-img:hover img { transform: scale(1.05); }

.hero-center {
  text-align: center;
  padding: clamp(16px, 4vw, 58px) clamp(16px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  overflow: hidden;
}
.hero-welcome {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--accent-orange);
}
.hero-brand-script {
  margin: 0;
  font-family: 'Abril Fatface', serif;
  font-size: clamp(48px, 7vw, 72px);
  letter-spacing: 1px;
  color: var(--accent-orange);
  line-height: 1;
}
.hero-brand-sub {
  margin: 0;
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: #9d3000;
}
.hero-tagline {
  margin: 8px 0 0;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 280px;
}

/* ============================================ ABOUT TEASER ============================================ */
.about-teaser { background: var(--bg-cream); padding: clamp(20px, 3vw, 40px) 0; }
.about-teaser .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}
.about-title {
  margin: 0 0 16px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.15;
  color: var(--bg-dark);
}
.about-body {
  margin: 0 0 20px;
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-brown);
  max-width: 460px;
}
.about-photos {
  display: grid;
  grid-template-columns: 316fr 290fr;
  gap: 16px;
}
.about-photo {
  aspect-ratio: 316 / 375;
  border-radius: 12px;
  overflow: hidden;
  background: #36211a;
}
.about-photo:nth-child(2) { aspect-ratio: 290 / 375; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.about-photo:hover img { transform: scale(1.05); }

/* ============================================ LIFE GALLERY ============================================ */
.life-gallery { background: var(--bg-darkest); padding: clamp(48px, 8vw, 96px) 0; }
.life-gallery .kicker { margin-bottom: 12px; }
.life-gallery .section-title { margin-bottom: 32px; }
.life-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}
.life-photo {
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  background: #36211a;
}
.life-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.life-photo:hover img { transform: scale(1.05); }

/* ============================================ MENU ============================================ */
.menu-section { background: var(--bg-cream); padding: clamp(48px, 8vw, 96px) 0; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px;
}
.m-card {
  position: relative;
  background: #36211a;
  border-radius: 12px;
  padding: 18px 22px 60px;
  min-height: 280px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  color: var(--text-cream);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.m-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,0.35); }
.m-tag { margin: 0 0 6px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 11.5px; letter-spacing: 1.8px; color: var(--accent-mint); }
.m-name { margin: 0 0 12px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 18px; line-height: 1.2; color: var(--text-cream); }
.m-desc { margin: 0 0 18px; font-family: 'Nunito', sans-serif; font-size: 12.5px; line-height: 1.5; color: var(--text-muted); }
.m-price { margin: 0; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 18px; color: var(--accent-orange); }
.m-cart {
  position: absolute;
  right: 18px;
  bottom: 18px;
  height: 28px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(237, 171, 69, 0.6);
  background: rgba(237, 171, 69, 0.12);
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--accent-gold);
  text-decoration: none;
  transition: all 0.25s ease;
}
.m-cart:hover { background: var(--accent-gold); color: var(--bg-dark); }

.m-card--with-photo { padding-top: 0; overflow: hidden; }
.m-card-photo { aspect-ratio: 4 / 3; margin: 0 -22px 14px; overflow: hidden; background: #36211a; }
.m-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.m-card--with-photo:hover .m-card-photo img { transform: scale(1.05); }
.m-card--with-photo > :not(.m-card-photo):not(.m-cart) { padding-left: 0; }

.category-tabs {
  background: var(--bg-cream-2);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-cream);
}
.category-tabs .container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border: 1px solid var(--border-cream);
  background: var(--bg-cream);
  border-radius: 22px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--tab-text);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
}
.tab:hover { border-color: var(--accent-orange); color: var(--accent-orange); transform: translateY(-2px); }
.tab--active { background: var(--accent-orange); border-color: var(--accent-orange); color: #fff; }

.menu-category {
  margin-top: 8px;
}
.menu-category h2 {
  margin: 0 0 24px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 36px);
  color: var(--bg-dark);
}

/* ============================================ PAGE HERO (full-bleed, matches home hero) ============================================ */
.page-hero { background: var(--bg-dark); color: var(--text-cream); }
.page-hero .container {
  max-width: none;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 42%);
  align-items: stretch;
  min-height: clamp(360px, 50vw, 480px);
}
.page-hero .titles {
  max-width: 520px;
  align-self: center;
  padding: clamp(32px, 6vw, 64px) var(--content-pad);
}
.page-hero .kicker-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.page-hero .kicker-row .kicker { margin: 0; }
.page-hero .cbar {
  display: block;
  flex-shrink: 0;
  width: 4px;
  height: 16px;
  background: var(--accent-orange);
  border-radius: 2px;
}
.page-hero--no-photo .container { grid-template-columns: 1fr; min-height: auto; }
.page-hero--no-photo .titles { max-width: 720px; margin: 0 auto; text-align: center; padding: clamp(48px, 8vw, 72px) var(--content-pad); }
.page-hero--no-photo .kicker-row { justify-content: center; }
.page-hero--no-photo p { margin: 0 auto; }
.page-hero h1 {
  margin: 0 0 16px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 42px);
  line-height: 1.15;
}
.page-hero p {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 480px;
}
.page-hero .hero-photo {
  border-radius: 0;
  overflow: hidden;
  background: #36211a;
  min-height: clamp(280px, 40vw, 480px);
}
.page-hero .hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .hero-photo--faces img { object-position: center 20%; }

/* ============================================ GALLERY (3-col masonry, matches Figma "Gallery Drinks" reference) ============================================ */
.gallery-section { background: var(--bg-cream); padding: clamp(48px, 8vw, 96px) 0; }
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-card {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: #36211a;
}
.gallery-card img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 0.5s ease; }
.gallery-card:hover img { transform: scale(1.05); }

/* ============================================ ABOUT PAGE ============================================ */
.about-page-body { padding: clamp(48px, 8vw, 96px) 0; background: var(--bg-cream); }
.about-page-body .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}
.about-page-body p {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-brown);
  margin: 0 0 18px;
}
.about-photo-stack { display: grid; gap: 16px; }
.about-photo-stack img { width: 100%; border-radius: 12px; aspect-ratio: 4 / 5; object-fit: cover; }
.about-photo-stack.single img { aspect-ratio: 681 / 443; }

/* ============================================ VALUES (About page) ============================================ */
.values-section { background: var(--bg-dark); color: var(--text-cream); padding: clamp(48px, 8vw, 96px) 0; text-align: center; }
.values-section .kicker { text-align: center; }
.values-section .section-title { text-align: center; margin: 0 auto 40px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; text-align: left; }
.value-card { background: #36211a; border-radius: 12px; padding: 28px 24px; box-shadow: 0 4px 12px rgba(0,0,0,0.12); }
.value-icon { margin: 0 0 24px; font-size: 22px; }
.value-title { margin: 0 0 14px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 20px; color: var(--text-cream); }
.value-desc { margin: 0; font-family: 'Nunito', sans-serif; font-size: 14px; line-height: 1.6; color: var(--text-muted); }

/* ============================================ SANDOS / COOKIES / SPECIALS section wrappers ============================================ */
.sandos-section { background: var(--bg-cream); padding: clamp(48px, 8vw, 80px) 0; }
.cookies-section, .specials-section { background: var(--bg-darkest); padding: clamp(48px, 8vw, 80px) 0; }
.sandos-section .section-title, .cookies-section .section-title { color: var(--bg-dark); }
.cookies-section .section-title, .specials-section .section-title { color: var(--text-cream); }
.sandos-section p.intro, .cookies-section p.intro { margin: 0 0 8px; font-family: 'Nunito', sans-serif; font-size: 13px; max-width: 400px; }
.sandos-section p.intro { color: var(--text-brown); }
.cookies-section p.intro { color: var(--text-muted); }
.kicker--mint { color: var(--accent-mint); letter-spacing: 3px; }

/* ============================================ MENU TEXT CARDS (Sandos/Cookies/Specials) ============================================ */
.menu-text-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 32px; }
.menu-text-card {
  position: relative;
  background: #36211a;
  border-radius: 12px;
  padding: 24px 24px 66px;
  min-height: 200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  color: var(--text-cream);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.menu-text-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,0.3); }
.menu-text-card--compact { padding-bottom: 56px; min-height: auto; }
.mt-name { margin: 0 0 10px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 20px; }
.mt-price { margin: 0 0 14px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 26px; color: var(--accent-orange); }
.menu-text-card--compact .mt-price { margin: 0 0 8px; font-size: 16px; }
.mt-desc { margin: 0; font-family: 'Nunito', sans-serif; font-size: 14px; line-height: 1.5; color: var(--text-muted); }
.mt-cart {
  position: absolute;
  right: 24px;
  bottom: 24px;
  height: 28px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(237, 171, 69, 0.6);
  background: rgba(237, 171, 69, 0.1);
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--accent-gold);
  text-decoration: none;
  transition: all 0.25s ease;
}
.mt-cart:hover { background: var(--accent-gold); color: var(--bg-dark); }
.menu-text-card--compact .mt-cart { bottom: 20px; }

/* ============================================ DRINKS + QTY STEPPER (Menu page) ============================================ */
.drinks-section { background: var(--bg-cream); padding: clamp(48px, 8vw, 96px) 0; }
.drinks-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}
.drinks-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin-top: 32px; }
.drink-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #f0e5d9;
  border-radius: 8px;
  padding: 13px 18px;
}
.drink-info { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.drink-name { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 14px; color: #36211a; }
.drink-price { font-family: 'Nunito', sans-serif; font-size: 12px; letter-spacing: 1.5px; color: var(--accent-orange); }
.qty-stepper {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  background: rgba(31,17,11,0.08);
  border: 1px solid rgba(31,17,11,0.12);
  border-radius: 6px;
  overflow: hidden;
}
.qty-btn {
  width: 26px;
  height: 26px;
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: rgba(66,41,33,0.7);
  cursor: pointer;
  transition: background 0.2s ease;
}
.qty-btn:hover { background: rgba(31,17,11,0.1); }
.qty-count {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31,17,11,0.06);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #422921;
}
.drinks-photo { border-radius: 14px; overflow: hidden; aspect-ratio: 534 / 357; background: #36211a; }
.drinks-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================ GRAB CTA BANNER (Menu page) ============================================ */
.grab-cta {
  background: var(--accent-orange);
  color: #fff;
  text-align: center;
  padding: 22px var(--content-pad);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
}

/* ============================================ PAST EVENTS RECAP (Events page) ============================================ */
.recap-section { background: var(--bg-cream); padding: clamp(48px, 8vw, 96px) 0; }
.recap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 32px; }
.recap-card {
  border-radius: 10px;
  overflow: hidden;
  background: #334738;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.recap-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,0.25); }
.recap-photo { height: clamp(150px, 20vw, 200px); flex-shrink: 0; background: #36211a; }
.recap-photo img { width: 100%; height: 100%; object-fit: fill; display: block; }
.recap-body { padding: 18px 20px 22px; flex-grow: 1; }
.recap-date { margin: 0 0 8px; font-family: 'Nunito', sans-serif; font-size: 11px; letter-spacing: 1.5px; color: var(--text-muted); }
.recap-title { margin: 0 0 8px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 17px; color: var(--text-cream); line-height: 1.2; }
.recap-desc { margin: 0; font-family: 'Nunito', sans-serif; font-size: 12.5px; line-height: 1.5; color: var(--text-muted); }

/* ============================================ UPCOMING / BOOK CTA (Events page) ============================================ */
.upcoming-section { background: var(--bg-cream); padding: clamp(48px, 8vw, 80px) 0; }
.upcoming-section .kicker { margin-bottom: 12px; }
.upcoming-section .section-title { margin-bottom: 24px; }
.upcoming-section p { margin: 0 0 32px; font-family: 'Nunito', sans-serif; font-size: 16px; line-height: 1.5; color: var(--text-brown); max-width: 720px; }
.btn--tall { height: 60px; padding: 0 28px; }

.book-cta { background: var(--bg-dark); color: var(--text-cream); text-align: center; padding: clamp(48px, 8vw, 72px) 0; }
.book-cta h2 { margin: 0 auto 16px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(28px, 4vw, 44px); max-width: 720px; }
.book-cta p { margin: 0 auto 32px; font-family: 'Nunito', sans-serif; font-size: 14px; color: var(--text-muted); max-width: 585px; }

/* ============================================ CONTACT PAGE: INFO CARDS + FORM PANEL ============================================ */
.contact-info-cards { display: grid; gap: 16px; }
.contact-info-card { background: #36211a; border-radius: 10px; padding: 20px 24px; }
.contact-info-card .label { margin: 0 0 12px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 5px; color: var(--accent-orange); }
.contact-info-card p:not(.label) { margin: 0; font-family: 'Nunito', sans-serif; font-size: 16px; line-height: 1.5; color: var(--text-cream); }

.contact-form-panel { background: #f5ede3; border-radius: 12px; padding: clamp(24px, 4vw, 40px); }
.contact-form-panel h2 { margin: 0 0 24px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 28px; color: var(--bg-dark); }

/* ============================================ MAP SECTION (Contact page, dark variant) ============================================ */
.map-section { background: var(--bg-dark); color: var(--text-cream); padding: clamp(48px, 8vw, 96px) 0; }
.map-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 48px); align-items: center; }
.map-section address { margin: 0 0 32px; font-style: normal; font-family: 'Nunito', sans-serif; font-size: 17px; line-height: 1.55; color: var(--text-muted); }
.map-photo { border-radius: 12px; overflow: hidden; aspect-ratio: 742 / 400; background: #36211a; }
.map-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================ FAQ (Contact page) ============================================ */
.faq-section { background: var(--bg-cream); padding: clamp(48px, 8vw, 96px) 0; }
.faq-card { background: #f2e8de; border-radius: 8px; padding: 20px 24px; margin-bottom: 16px; }
.faq-q { margin: 0 0 8px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 18px; color: var(--bg-dark); }
.faq-a { margin: 0; font-family: 'Nunito', sans-serif; font-size: 14px; line-height: 1.55; color: #593824; }

/* ============================================ EVENTS PAGE ============================================ */
.events-banner {
  background: var(--accent-orange);
  color: #fff;
  padding: clamp(48px, 6vw, 64px) 0;
  text-align: center;
}
.events-banner h2 {
  margin: 0 auto 16px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  max-width: 720px;
}
.events-banner p {
  margin: 0 auto 32px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  max-width: 560px;
}
.events-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Home page events banner: matches Figma's stacked button layout exactly */
#events .events-actions {
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
#events .events-btn-book { width: 160px; }
#events .events-btn-review { width: 240px; }

.events-list { background: var(--bg-cream); padding: clamp(48px, 8vw, 96px) 0; }
.event-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.event-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.event-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.15); }
.event-card-photo { aspect-ratio: 16 / 10; overflow: hidden; background: #36211a; }
.event-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.event-card-body { padding: 20px 22px 24px; }
.event-date { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 2px; color: var(--accent-orange); margin: 0 0 6px; }
.event-title { margin: 0 0 8px; font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--bg-dark); }
.event-desc { margin: 0; font-family: 'Nunito', sans-serif; font-size: 13.5px; line-height: 1.5; color: var(--text-brown); }

/* ============================================ CONTACT PAGE ============================================ */
.contact-section { background: var(--bg-cream); padding: clamp(48px, 8vw, 96px) 0; }
.contact-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
}
.contact-info dl {
  margin: 0;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px 24px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
}
.contact-info dt {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-orange);
  font-size: 12px;
}
.contact-info dd { margin: 0; color: var(--text-brown); line-height: 1.5; }

.contact-form { display: grid; gap: 6px; }
.contact-form label {
  margin-top: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #664026;
}
.contact-form label:first-child { margin-top: 0; }
.contact-form button { margin-top: 12px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-cream);
  background: #fff;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: var(--bg-dark);
  outline: none;
  transition: border-color 0.25s ease;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--accent-orange); }
.contact-form button { justify-self: start; }

.map-block { background: var(--bg-darker); padding: clamp(32px, 5vw, 56px) 0; }
.map-block img { width: 100%; border-radius: 12px; max-height: 420px; object-fit: cover; }

/* ============================================ NEWSLETTER ============================================ */
.newsletter {
  background: var(--bg-darker);
  color: #f8efe0;
  padding: clamp(40px, 6vw, 64px) 0;
  text-align: center;
}
.news-kicker { margin: 0 0 12px; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 12px; letter-spacing: 5px; color: var(--accent-gold); }
.news-title { margin: 0 0 12px; font-family: 'Inter', sans-serif; font-weight: 700; font-size: clamp(24px, 4vw, 36px); }
.news-body { margin: 0 auto 24px; font-family: 'Inter', sans-serif; font-size: 14px; color: rgba(186,163,138,0.85); max-width: 460px; }
.news-form { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin: 0 auto 12px; max-width: 520px; }
.news-input {
  flex: 1 1 240px;
  min-width: 0;
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #fff;
  outline: none;
}
.news-input::placeholder { color: rgba(255,255,255,0.35); }
.news-btn {
  height: 48px;
  padding: 0 24px;
  border: none;
  background: var(--accent-gold);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--bg-darker);
  cursor: pointer;
  transition: all 0.25s ease;
}
.news-btn:hover { background: #f5c069; transform: translateY(-2px); }
.news-note { margin: 0; font-family: 'Inter', sans-serif; font-size: 12px; color: rgba(255,255,255,0.3); }

/* ============================================ FOOTER ============================================ */
.site-footer {
  background: var(--bg-darkest);
  color: rgba(248,239,224,0.65);
  padding: 48px 0 24px;
  font-family: 'Inter', sans-serif;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  margin-bottom: 32px;
}
.footer-col h4 { margin: 0 0 14px; font-weight: 600; font-size: 12px; letter-spacing: 2.5px; color: var(--accent-gold); }
.brand-col .brand-accent { display: block; width: 32px; height: 3px; border-radius: 2px; background: var(--accent-gold); margin-bottom: 12px; }
.brand-col .brand-name { margin: 0; font-weight: 700; font-size: 22px; letter-spacing: 4px; color: var(--accent-gold); }
.brand-col .brand-tag { margin: 0 0 16px; font-size: 12px; letter-spacing: 2px; color: rgba(248,239,224,0.45); }
.brand-col address { font-style: normal; font-size: 12px; line-height: 1.6; color: rgba(186,163,138,0.8); }
.brand-col address a { color: inherit; text-decoration: none; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.footer-col li { font-size: 13px; color: rgba(248,239,224,0.65); }
.footer-col a { display: inline-block; padding: 8px 0; text-decoration: none; color: inherit; transition: color 0.2s ease, padding-left 0.2s ease; }
.footer-col a:hover { color: var(--accent-gold); padding-left: 4px; }
.footer-col .hours-row { display: grid; gap: 4px; margin-bottom: 14px; font-size: 12px; }
.footer-col .hours-row strong { color: rgba(248,239,224,0.7); }
.social-imgs { display: flex; gap: 10px; }
.social-imgs img { width: 38px; height: 38px; object-fit: contain; transition: transform 0.25s ease; }
.social-imgs a:hover img { transform: translateY(-3px) scale(1.05); }
.footer-base { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 18px; font-size: 12px; color: rgba(186,163,138,0.5); text-align: center; }

/* ============================================ SEARCH OVERLAY ============================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,15,10,0.97);
  z-index: 200;
  display: none;
  overflow-y: auto;
}
.search-overlay.open { display: block; }
.search-overlay-inner { max-width: 800px; margin: 0 auto; padding: clamp(72px, 12vw, 120px) var(--content-pad) 40px; position: relative; }
.search-close {
  position: absolute;
  top: 24px;
  right: var(--content-pad);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 24px;
  background: rgba(255,255,255,0.12);
  color: var(--text-cream);
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.search-close:hover { background: rgba(255,255,255,0.2); }
.search-label { margin: 0 0 12px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 4px; color: var(--accent-orange); }
.search-input-box {
  background: #4d2e1f;
  border: 1px solid #997359;
  border-radius: 12px;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.search-input-box input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  color: var(--text-cream);
}
.search-input-box input::placeholder { color: var(--text-muted); }
.search-quicklinks { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.search-pill {
  height: 40px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  background: #40261a;
  border: 1px solid #734d38;
  border-radius: 20px;
  color: var(--text-cream);
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.search-pill:hover { background: var(--accent-orange); border-color: var(--accent-orange); }
.search-popular a {
  display: block;
  padding: 10px 0;
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.search-popular a:hover { color: var(--text-cream); }

/* ============================================ SIGN IN / ACCOUNT PAGE ============================================ */
.auth-section { background: var(--bg-cream); padding: clamp(48px, 8vw, 80px) 0; }
.login-card {
  max-width: 480px;
  margin: 0 auto 48px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: clamp(28px, 5vw, 40px);
}
.login-card h1 { margin: 0 0 12px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 32px; color: var(--bg-dark); }
.login-card .sub { margin: 0 0 28px; font-family: 'Nunito', sans-serif; font-size: 14px; color: var(--text-muted); }
.field-label { display: block; margin: 0 0 8px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 12px; color: var(--bg-dark); }
.field-input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  margin-bottom: 20px;
  background: #f9f3ea;
  border: 1px solid #dbd0c4;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: var(--bg-dark);
  outline: none;
  transition: border-color 0.2s ease;
}
.field-input:focus { border-color: var(--accent-orange); }
.btn--full { width: 100%; }
.auth-divider { text-align: center; margin: 20px 0; font-family: 'Nunito', sans-serif; font-size: 13px; color: var(--text-muted); }
.btn--ghost {
  width: 100%;
  height: 48px;
  background: #f9f3ea;
  border: 1px solid #dbd0c4;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--bg-dark);
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn--ghost:hover { background: #f0e5d9; }
.login-card .create-link { display: block; margin-top: 24px; text-align: center; font-family: 'Nunito', sans-serif; font-size: 13px; color: var(--accent-orange); text-decoration: none; }

.account-card {
  max-width: 840px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: clamp(28px, 5vw, 40px);
}
.account-card h2 { margin: 0 0 24px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 28px; color: var(--bg-dark); }
.account-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding: 0 20px;
  margin-bottom: 12px;
  background: #f9f2e9;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--bg-dark);
  transition: background 0.2s ease;
}
.account-row:hover { background: #f0e5d9; }
.account-row .arrow { color: var(--accent-orange); }

/* ============================================ CART & CHECKOUT ============================================ */
.cart-hero { background: var(--bg-dark); color: var(--text-cream); padding: 40px 0; }
.cart-hero .kicker { margin-bottom: 12px; }
.cart-hero h1 { margin: 0; font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(36px, 5vw, 56px); }

.cart-main { background: var(--bg-cream); padding: clamp(32px, 6vw, 56px) 0; }
.cart-layout { display: grid; grid-template-columns: 1fr 344px; gap: 40px; align-items: start; }
.cart-layout h2 { margin: 0 0 4px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 26px; color: var(--bg-dark); }
.cart-count { margin: 0 0 20px; font-family: 'Nunito', sans-serif; font-size: 14px; color: var(--text-brown); }

.cart-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--text-muted);
  border-radius: 8px;
  padding: 11px 20px 11px 11px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.cart-row-photo { width: 62px; height: 62px; border-radius: 8px; background: #36211a; flex-shrink: 0; overflow: hidden; }
.cart-row-photo img { width: 100%; height: 100%; object-fit: cover; }
.cart-row-info { flex: 1 1 200px; min-width: 0; }
.cart-row-name { margin: 0 0 4px; font-family: 'Nunito', sans-serif; font-weight: 600; font-size: 17px; color: var(--bg-dark); }
.cart-row-price { margin: 0; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 17px; color: var(--accent-orange); }
.cart-row .qty-stepper { background: var(--bg-cream); border: 1px solid var(--text-muted); border-radius: 8px; height: 36px; }
.cart-row .qty-btn { width: 32px; height: 36px; font-size: 16px; }
.cart-row .qty-count { width: 40px; height: 36px; background: transparent; font-family: 'Nunito', sans-serif; font-weight: 600; color: var(--bg-dark); }
.cart-row-remove { margin-left: auto; font-family: 'Nunito', sans-serif; font-size: 13px; color: #b8a699; text-decoration: none; transition: color 0.2s ease; }
.cart-row-remove:hover { color: var(--accent-orange); }

.cart-section-label { margin: 32px 0 16px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 17px; color: var(--bg-dark); }
.pill-tabs { display: flex; flex-wrap: wrap; gap: 12px; }
.pill-tab {
  height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  background: var(--bg-cream);
  border: 1px solid var(--border-cream);
  border-radius: 22px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--bg-dark);
  cursor: pointer;
  transition: all 0.2s ease;
}
.pill-tab.active { background: var(--accent-orange); border-color: var(--accent-orange); color: #fff; }
.pill-tab:hover:not(.active) { border-color: var(--accent-orange); color: var(--accent-orange); }

.cart-textarea {
  width: 100%;
  min-height: 80px;
  padding: 15px;
  background: #fff;
  border: 1px solid var(--text-muted);
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: var(--bg-dark);
  outline: none;
  resize: vertical;
}
.promo-row { display: flex; gap: 12px; flex-wrap: wrap; }
.promo-row input {
  flex: 1 1 300px;
  height: 48px;
  padding: 0 15px;
  background: #fff;
  border: 1px solid var(--text-muted);
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: var(--bg-dark);
  outline: none;
}

.order-summary { background: #fff; border: 1px solid var(--text-muted); border-radius: 8px; padding: 24px; }
.order-summary h3 { margin: 0 0 16px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 20px; color: var(--bg-dark); padding-bottom: 16px; border-bottom: 1px solid #d6c7b8; }
.summary-line { display: flex; justify-content: space-between; font-family: 'Nunito', sans-serif; font-size: 14px; color: var(--text-brown); margin-bottom: 16px; }
.summary-divider { height: 1px; background: #d6c7b8; margin: 8px 0 16px; }
.summary-total { display: flex; justify-content: space-between; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 17px; color: var(--bg-dark); margin-bottom: 20px; }
.summary-total span:last-child { color: var(--accent-orange); }
.payment-label { margin: 0 0 10px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 13px; color: var(--text-brown); }
.payment-tabs { display: flex; gap: 8px; margin-bottom: 20px; }
.payment-tabs .pill-tab { height: 36px; padding: 0 16px; }
.summary-note { margin: 12px 0 0; text-align: center; font-family: 'Nunito', sans-serif; font-size: 12px; color: var(--text-muted); }

.loyalty-bar { background: var(--accent-mint); padding: 32px var(--content-pad); text-align: center; }
.loyalty-bar p { margin: 0; max-width: 1290px; margin: 0 auto; font-family: 'Nunito', sans-serif; font-weight: 600; font-size: 17px; color: var(--bg-dark); }

.cart-action-bar { background: var(--bg-cream); padding: 32px 0; }
.cart-action-bar .container { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================ ORDER CONFIRMATION ============================================ */
.confirm-section { background: var(--bg-cream); padding: clamp(48px, 10vw, 96px) 0; }
.confirm-card {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: clamp(32px, 6vw, 60px) clamp(24px, 5vw, 40px);
  text-align: center;
}
.confirm-check {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--accent-mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--bg-cream);
}
.confirm-card h1 { margin: 0 0 20px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(28px, 4vw, 40px); color: var(--bg-dark); }
.confirm-card .msg { margin: 0 0 28px; font-family: 'Nunito', sans-serif; font-size: 16px; line-height: 1.5; color: var(--text-muted); }
.confirm-info { background: #f9f2e9; border-radius: 10px; padding: 20px 24px; margin-bottom: 32px; }
.confirm-info .order-num { margin: 0 0 10px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 2px; color: var(--accent-orange); }
.confirm-info p:last-child { margin: 0; font-family: 'Nunito', sans-serif; font-size: 14px; color: var(--bg-dark); }
.confirm-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ============================================ LEAVE A REVIEW ============================================ */
.review-hero { background: var(--bg-dark); color: var(--text-cream); padding: clamp(40px, 6vw, 56px) 0; }
.review-hero .kicker { margin-bottom: 16px; }
.review-hero h1 { margin: 0 0 20px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(36px, 5vw, 56px); }
.review-hero p { margin: 0; font-family: 'Nunito', sans-serif; font-size: 14px; color: var(--text-muted); }

.review-form-section { background: var(--bg-cream); padding: clamp(32px, 6vw, 56px) 0; }
.review-form-section h2 { margin: 0 0 32px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(28px, 4vw, 44px); color: var(--bg-dark); }

.star-rating { display: flex; gap: 8px; margin-bottom: 32px; }
.star-rating .star {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-orange);
  border-radius: 4px;
  color: #fff;
  font-size: 18px;
  border: none;
  cursor: pointer;
}

.category-ratings { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; margin-bottom: 32px; }
.category-ratings .cat-label { display: block; margin-bottom: 10px; font-family: 'Nunito', sans-serif; font-size: 13px; color: var(--text-brown); }
.cat-stars { display: flex; gap: 8px; }
.cat-stars .cs {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #36211a;
  border-radius: 4px;
  color: var(--accent-orange);
  font-size: 13px;
  border: none;
  cursor: pointer;
}

.review-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 20px; }
.review-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.review-tabs .pill-tab { height: 48px; padding: 0 20px; }

.photo-upload {
  max-width: 400px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2e8de;
  border: 1px solid var(--text-muted);
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #b8a699;
  cursor: pointer;
  margin-bottom: 20px;
}
.consent-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 28px; }
.consent-row input[type="checkbox"] { width: 24px; height: 24px; flex-shrink: 0; margin-top: 2px; }
.consent-row label { font-family: 'Nunito', sans-serif; font-size: 14px; color: var(--text-brown); }

.recent-reviews-title { margin: 40px 0 20px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 26px; color: var(--bg-dark); }
.review-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-bottom: 40px; }
.review-card { background: #fff; border: 1px solid var(--text-muted); border-radius: 8px; padding: 20px; }
.review-card .name { margin: 0 0 8px; font-family: 'Nunito', sans-serif; font-weight: 600; font-size: 17px; color: var(--bg-dark); }
.review-card .stars { margin: 0 0 12px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 4px; color: var(--accent-orange); }
.review-card .quote { margin: 0; font-family: 'Nunito', sans-serif; font-size: 14px; line-height: 1.5; color: var(--text-brown); }

.review-cta { background: var(--bg-dark); color: var(--text-cream); text-align: center; padding: clamp(48px, 8vw, 72px) 0; margin: 0 calc(var(--content-pad) * -1); padding-left: var(--content-pad); padding-right: var(--content-pad); }
.review-cta h2 { margin: 0 auto 16px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(28px, 4vw, 44px); max-width: 720px; color: var(--text-cream); }
.review-cta p { margin: 0 auto 28px; font-family: 'Nunito', sans-serif; font-size: 17px; color: var(--text-muted); max-width: 600px; }

/* ============================================ RESPONSIVE ============================================ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .hero-img { aspect-ratio: 16/9; }
  .hero-center { padding: 48px 24px; min-height: auto; }

  .about-teaser .container,
  .about-page-body .container,
  .contact-section .container,
  .drinks-section .container,
  .map-section .container { grid-template-columns: 1fr; }

  .drinks-photo { order: -1; aspect-ratio: 16 / 9; }
  .map-photo { order: -1; }

  .page-hero .container { grid-template-columns: 1fr; min-height: auto; }
  .page-hero .titles { padding-bottom: 0; }
  .page-hero .hero-photo { aspect-ratio: 16 / 9; min-height: 0; margin: 24px var(--content-pad) 40px; border-radius: 12px; }

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

  .cart-layout { grid-template-columns: 1fr; }
  .review-field-row { grid-template-columns: 1fr; }
  .category-ratings { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .primary-nav { display: none; }
  .nav-toggle { display: block; }

  body.nav-open .primary-nav {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg-dark);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
  }
  body.nav-open .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  body.nav-open .nav-link::after { display: none; }

  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-base { text-align: center; }
  .brand-col .brand-accent { margin-left: auto; margin-right: auto; }
  .footer-col .hours-row { justify-items: center; }
  .social-imgs { justify-content: center; }

  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }

  .cart-row { padding: 14px; }
  .cart-row-remove { margin-left: 0; }
  .cart-action-bar .container .btn { width: 100%; }
  .confirm-actions .btn { width: 100%; }
  .category-ratings { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { --header-h: 64px; }
  .brand-mark-img { width: 38px; height: 38px; padding: 7px; }
  .header-icon { width: 32px; height: 32px; }

  .life-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
  .gallery-masonry { grid-template-columns: 1fr; }

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

  .hero-center { padding: 36px 16px; }
  .events-actions .btn { width: 100%; }

  .search-quicklinks { gap: 8px; }
  .review-cards { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  :root { --content-pad: 16px; }
  .section-title { font-size: 26px; }
  .about-title { font-size: 28px; }
  .hero-brand-script { font-size: 46px; }
  .news-form { flex-direction: column; }
  .news-btn { width: 100%; }
  .contact-info dl { grid-template-columns: 1fr; gap: 4px; }
  .contact-info dt { margin-top: 8px; }

  .search-input-box { padding: 0 16px; }
  .search-input-box input { font-size: 15px; }
  .payment-tabs { flex-wrap: wrap; }
}
