/* ==========================================
   BREW & BANTER — Main Stylesheet
   ========================================== */

/* Fonts loaded in <head> via Google Fonts */

:root {
  --forest: hsl(145, 40%, 25%);
  --sage:   hsl(145, 30%, 50%);
  --cream:  hsl(45, 60%, 96%);
  --charcoal: hsl(145, 15%, 35%);
  --forest-dark: hsl(145, 40%, 18%);
  --forest-90: hsla(145,40%,25%,0.9);
  --forest-50: hsla(145,40%,25%,0.5);
  --forest-40: hsla(145,40%,25%,0.4);
  --cream-80: hsla(45,60%,96%,0.8);
  --cream-50: hsla(45,60%,96%,0.5);
  --cream-30: hsla(45,60%,96%,0.3);
  --cream-20: hsla(45,60%,96%,0.2);
  --cream-10: hsla(45,60%,96%,0.1);
  --cream-05: hsla(45,60%,96%,0.05);
  --sage-30: hsla(145,30%,50%,0.3);
  --sage-20: hsla(145,30%,50%,0.2);
  --sage-15: hsla(145,30%,50%,0.15);
  --sage-10: hsla(145,30%,50%,0.1);
}

/* ── Reset ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ── Base ────────────────────────────────── */
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--forest);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--cream);
  line-height: 1.3;
  font-weight: 600;
}

/* ── Animations ─────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 0.8s cubic-bezier(0.4,0,0.2,1); }

/* ── Navigation ─────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: linear-gradient(to right, var(--cream-20), var(--cream-10));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--cream-20);
  height: 80px;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-brand img {
  height: 3rem;
  width: auto;
  border-radius: 8px;
}
.nav-brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  color: var(--cream-80);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  background-color: var(--cream-20);
  color: var(--cream);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: linear-gradient(to bottom, var(--forest-90), var(--forest));
  border-bottom: 1px solid var(--cream-20);
  padding: 1.5rem;
  z-index: 49;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-menu a {
  color: var(--cream);
  font-size: 1.125rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  display: block;
  transition: background 0.2s;
}
.mobile-menu a:hover,
.mobile-menu a.active {
  background: var(--cream-20);
}
.mobile-menu.open { display: flex; }

/* ── Page offset for fixed nav ───────────── */
.page-top { padding-top: 80px; }

/* ── Hero / Page Headers ─────────────────── */
.page-hero {
  padding: 8rem 1.5rem 5rem;
  text-align: center;
  background: linear-gradient(to bottom, var(--forest), hsla(145,30%,50%,0.2));
}
.page-hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); margin-bottom: 1rem; }
.page-hero p  { font-size: 1.125rem; color: var(--cream-80); max-width: 48rem; margin: 0 auto; }

/* ── Sections ────────────────────────────── */
section { padding: 5rem 1.5rem; }
.container { max-width: 1280px; margin: 0 auto; }
.container-md { max-width: 56rem; margin: 0 auto; }
.container-sm { max-width: 40rem; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.section-title p  { color: var(--cream-80); max-width: 48rem; margin: 0 auto; }

/* ── Grids ───────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* ── Cards ───────────────────────────────── */
.card {
  background: var(--cream-05);
  border: 1px solid var(--cream-20);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.card:hover {
  background: var(--cream-10);
  border-color: var(--cream-30);
}
.card-img {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.card-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
  text-decoration: none;
}
.btn-sage {
  background: var(--sage);
  color: var(--cream);
}
.btn-sage:hover {
  background: hsla(145,30%,42%,1);
  transform: scale(1.05);
}
.btn-outline {
  border: 2px solid var(--cream);
  color: var(--cream);
  background: transparent;
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--forest);
}
.btn-green {
  background: #15803d;
  color: var(--cream);
}
.btn-green:hover { background: #166534; transform: scale(1.05); }
.btn-red { background: #991b1b; color: var(--cream); }

/* ── Dividers ────────────────────────────── */
.divider { border-top: 1px solid var(--sage-30); }

/* ── Text utilities ──────────────────────── */
.text-sage   { color: var(--sage); }
.text-cream  { color: var(--cream); }
.text-cream80 { color: var(--cream-80); }
.text-cream50 { color: var(--cream-50); }
.text-center { text-align: center; }
.font-cormorant { font-family: 'Cormorant Garamond', serif; }
.font-inter     { font-family: 'Inter', sans-serif; }
.font-bold   { font-weight: 700; }
.italic      { font-style: italic; }

/* ── Background utilities ────────────────── */
.bg-forest   { background-color: var(--forest); }
.bg-forest-dark { background-color: var(--forest-dark); }
.bg-charcoal { background-color: var(--charcoal); }
.bg-sage     { background-color: var(--sage); }
.bg-very-dark { background-color: #1a1a0e; }

/* ── Spacing ─────────────────────────────── */
.mb-2  { margin-bottom: 0.5rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

/* ── Flex utilities ──────────────────────── */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* ── Badges / Pills ──────────────────────── */
.badge {
  display: inline-block;
  padding: 0.375rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Inter', sans-serif;
}
.badge-sage {
  background: var(--sage-15);
  color: var(--sage);
  border: 1px solid var(--sage-30);
}
.badge-green {
  background: rgba(20,83,45,0.3);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.5);
}
.badge-red {
  background: rgba(127,29,29,0.3);
  color: #f87171;
  border: 1px solid rgba(239,68,68,0.5);
}

/* ── Footer ──────────────────────────────── */
footer {
  position: relative;
  overflow: hidden;
  padding: 4rem 1.5rem;
  color: var(--cream);
}
footer .footer-bg {
  position: absolute;
  inset: 0;
  background-image: url('/wood-panel-footer.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.6;
}
footer .footer-overlay {
  position: absolute;
  inset: 0;
  background: var(--forest-40);
}
footer .footer-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.footer-brand img {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  object-fit: cover;
}
.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
}
.footer-brand p { font-size: 0.875rem; color: var(--cream-50); margin-top: 2px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-btn {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.social-btn:hover { background: var(--sage-30); background-color: hsla(145,30%,42%,1); }
.social-btn svg { width: 1.25rem; height: 1.25rem; fill: var(--cream); }
.footer-links h4, .footer-contact h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--cream);
}
.footer-links ul li { margin-bottom: 0.5rem; }
.footer-links ul li a {
  color: var(--cream-80);
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.footer-links ul li a:hover { color: var(--sage); }
.footer-contact a {
  color: var(--cream-80);
  font-size: 0.9375rem;
  display: block;
  margin-bottom: 0.25rem;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--sage); }
.footer-bottom {
  border-top: 1px solid var(--sage-30);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}
.footer-policy {
  max-width: 44rem;
  margin: 0 auto 1.5rem;
}
.footer-policy h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--cream);
}
.footer-policy p {
  color: hsla(45,60%,96%,0.9);
  font-size: 0.9375rem;
  line-height: 1.7;
}
.footer-copy { color: var(--cream-50); font-size: 0.875rem; margin-top: 0.5rem; }
.footer-credit { color: var(--cream-30); font-size: 0.75rem; margin-top: 0.75rem; }
.footer-credit a { color: var(--cream-50); text-decoration: underline; transition: color 0.2s; }
.footer-credit a:hover { color: var(--sage); }

/* ── ======================================
   HOME PAGE
   ====================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/welcome-bg.jpg');
  background-size: cover;
  background-position: center;
  will-change: transform;
  transform: translateZ(0);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}
.hero-content h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.hero-logo {
  width: clamp(180px, 35vw, 280px);
  height: auto;
  border-radius: 1rem;
  margin: 0 auto 2rem;
}
.hero-tagline {
  font-size: 1.25rem;
  color: var(--cream-80);
  margin-bottom: 2.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--sage), var(--forest));
  color: var(--cream);
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.hero-cta:hover { transform: scale(1.05); box-shadow: 0 24px 48px rgba(0,0,0,0.5); }

/* ── Service Cards ────────────────────────── */
.service-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--cream-30);
  background: var(--cream-05);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover { transform: translateY(-12px) scale(1.02); box-shadow: 0 32px 64px -12px rgba(0,0,0,0.4); }
.service-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-card:hover .service-card-img { transform: scale(1.1); }
.service-card-body {
  padding: 1.5rem;
  text-align: center;
}
.service-card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--cream);
}
.service-card-body p {
  color: var(--cream-80);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}
.service-card-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cream);
  border: 1px solid var(--cream-30);
  background: var(--cream-20);
  transition: background 0.2s;
}
.service-card:hover .service-card-badge {
  background: var(--sage);
  border-color: var(--sage);
}

/* ── Home featured info bar ───────────────── */
.info-bar {
  background: var(--forest-dark);
  border-top: 1px solid var(--cream-10);
  border-bottom: 1px solid var(--cream-10);
  padding: 2.5rem 1.5rem;
}
.info-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 768px) { .info-bar-inner { grid-template-columns: 1fr; } }
.info-item h3 { font-size: 1.375rem; margin-bottom: 0.5rem; }
.info-item p { color: var(--cream-80); font-size: 0.9375rem; }
.info-item a { color: var(--sage); font-weight: 600; }

/* ── Hero of Month promo (home) ───────────── */
.hero-month-card {
  background: linear-gradient(135deg, var(--forest-dark), var(--forest));
  border: 1px solid var(--sage-30);
  border-radius: 1.5rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  transition: box-shadow 0.3s;
}
@media (min-width: 768px) {
  .hero-month-card { flex-direction: row; text-align: left; }
}
.hero-month-card:hover { box-shadow: 0 0 0 2px var(--sage-30); }
.hero-month-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid var(--sage);
  object-fit: cover;
  flex-shrink: 0;
}

/* ── Mexican Night teaser (home) ─────────── */
.mexican-card {
  background: linear-gradient(135deg, #0f2016, #1a3a20);
  border: 1px solid #166534;
  border-radius: 1.5rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .mexican-card { flex-direction: row; text-align: left; }
}
.mexican-card img {
  max-width: 280px;
  width: 100%;
  border-radius: 1rem;
}

/* ── ======================================
   ABOUT PAGE
   ====================================== */
.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: 1rem;
}
.team-card { text-align: center; }
.team-card h3 { font-size: 1.5rem; margin-top: 1rem; margin-bottom: 0.25rem; }
.team-card .role { color: var(--sage); font-weight: 600; font-size: 0.9375rem; font-family: 'Inter', sans-serif; }
.team-card p { color: var(--cream-80); font-size: 0.9375rem; margin-top: 0.5rem; }

.about-value-card {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}
.about-value-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.about-value-overlay {
  position: absolute;
  inset: 0;
  background: var(--forest-90);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}
.about-value-overlay .icon { font-size: 2rem; margin-bottom: 0.75rem; }
.about-value-overlay h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.about-value-overlay p { color: var(--cream-80); font-size: 0.875rem; }

/* ── ======================================
   MENUS PAGE
   ====================================== */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.menu-tab {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: 0.5rem;
  transition: all 0.3s;
  color: var(--cream-80);
  border: 1px solid var(--cream-20);
  background: var(--cream-10);
  cursor: pointer;
}
.menu-tab:hover { background: var(--cream-20); color: var(--cream); }
.menu-tab.active { background: var(--sage); color: var(--cream); border-color: var(--sage); }
.menu-images { display: none; }
.menu-images.active { display: block; }
.menu-image-link {
  display: block;
  margin-bottom: 2rem;
}
.menu-image-link img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* ── ======================================
   BAR PAGE
   ====================================== */
.price-table { width: 100%; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--cream-10);
}
.price-row:last-child { border-bottom: none; }
.price-row .name { color: var(--cream); font-family: 'Inter', sans-serif; }
.price-row .price { color: var(--sage); font-weight: 600; font-family: 'Inter', sans-serif; font-size: 0.9375rem; }
.price-row .price-sm { font-size: 0.875rem; }
.wine-sizes {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.wine-sizes span {
  color: var(--cream-50);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: 3rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
}
.wine-prices { display: flex; gap: 1rem; }
.wine-prices span {
  width: 3rem;
  text-align: center;
  color: var(--sage);
  font-weight: 600;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
}

/* ── ======================================
   EVENTS PAGE
   ====================================== */
.event-section { border-top: 1px solid var(--cream-10); }
.coming-soon-bar {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2.5rem;
  font-family: 'Inter', sans-serif;
  color: #4ade80;
}
.cancelled-bar { color: #f87171; }
.past-bar { color: var(--cream-50); }

/* ── ======================================
   GALLERY PAGE
   ====================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--cream-20);
  background: var(--cream-05);
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(145,40%,25%,0.85), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--cream);
}

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 0.75rem;
  object-fit: contain;
}
#lightbox-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--forest-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--cream);
  font-size: 1.25rem;
  transition: background 0.2s;
}
#lightbox-close:hover { background: var(--forest); }

/* ── ======================================
   CONTACT PAGE
   ====================================== */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--cream-30);
  background: var(--cream-15, rgba(245,245,220,0.15));
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 1.25rem;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 2px var(--sage-30);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--cream-50); }
.contact-form label {
  display: block;
  color: var(--cream);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.375rem;
}
.contact-form select option { background: var(--forest); color: var(--cream); }
.contact-form textarea { resize: vertical; min-height: 8rem; }

/* review links */
.review-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--cream-20);
  background: var(--cream-05);
  transition: all 0.2s;
  text-decoration: none;
}
.review-card:hover { background: var(--cream-10); border-color: var(--cream-30); }
.review-card svg { width: 1.5rem; height: 1.5rem; flex-shrink: 0; }
.review-card span { color: var(--cream); font-weight: 600; }

/* ── ======================================
   HERO OF THE MONTH PAGE
   ====================================== */
.hero-month-feature {
  background: #1a1a0e;
  padding: 4rem 1.5rem 5rem;
}
.hero-month-photo-card {
  position: relative;
  max-width: 22rem;
  width: 100%;
}
.hero-star-badge {
  position: absolute;
  top: -1rem; left: -1rem;
  z-index: 2;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--sage);
  border: 2px solid var(--cream-30);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}
.hero-star-badge .star { color: var(--cream); font-size: 1.25rem; line-height: 1; }
.hero-star-badge .label {
  color: var(--cream);
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}
.hero-month-photo-card img {
  width: 100%;
  border-radius: 1rem;
  border: 2px solid var(--sage-30);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}
.hero-month-nameplate {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(15,32,22,0.97), rgba(15,32,22,0.7), transparent);
  border-radius: 0 0 1rem 1rem;
  padding: 3rem 1.5rem 1.5rem;
}
.hero-month-nameplate .month-label {
  color: var(--sage);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  margin-bottom: 0.25rem;
}
.hero-month-nameplate .winner-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
}
.hero-month-nameplate .winner-biz {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  color: var(--sage);
  font-style: italic;
  margin-top: 0.25rem;
}

.achievement-callout {
  border-left: 4px solid var(--sage);
  border-radius: 0 0.75rem 0.75rem 0;
  background: var(--sage-10);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}

.charity-link-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--cream-20);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  transition: all 0.3s;
  text-decoration: none;
}
.charity-link-card:hover {
  background: rgba(255,255,255,0.12);
  transform: scale(1.03);
}
.charity-link-card img { height: 3.5rem; width: auto; object-fit: contain; }
.charity-link-card .link-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cream);
}
.charity-link-card .link-sub {
  font-family: 'Inter', sans-serif;
  color: var(--cream-50);
  font-size: 0.75rem;
  margin-top: 0.125rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.prev-winner-card {
  background: hsla(145,40%,25%,0.6);
  border: 1px solid var(--cream-10);
  border-radius: 0.75rem;
  padding: 1.25rem;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
}
.prev-winner-card:hover {
  border-color: var(--sage-30);
  background: hsla(145,40%,25%,0.8);
}
.prev-winner-card .pw-month {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.prev-winner-card .pw-month .star { color: var(--sage); font-size: 0.875rem; }
.prev-winner-card .pw-month span {
  color: var(--sage);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}
.prev-winner-card .pw-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  transition: color 0.2s;
}
.prev-winner-card:hover .pw-name { color: var(--sage); }
.prev-winner-card .pw-biz { color: var(--cream-50); font-size: 0.875rem; font-family: 'Inter', sans-serif; }
.prev-winner-card .pw-visit {
  color: hsla(145,30%,50%,0.7);
  font-size: 0.75rem;
  margin-top: 0.75rem;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s;
}
.prev-winner-card:hover .pw-visit { color: var(--sage); }

/* ── Responsive nav ──────────────────────── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}
