/* ============================================================
   BIRCHWOOD KITCHEN + TAP — Main Stylesheet
   Light, modern-editorial theme: warm cream, forest green,
   terracotta accent. Lora (display) + Inter (body).
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Inter:wght@400;500;600;700&display=swap');

/* ── Variables ── */
:root {
  --bg:          #faf6ef;
  --bg-alt:      #f2ebdf;
  --surface:     #ffffff;
  --ink:         #1e2a23;
  --ink-soft:    #45524a;
  --ink-faint:   #7d877f;
  --green:       #235c41;
  --green-deep:  #16402c;
  --accent:      #c4502c;
  --accent-soft: #e8957a;
  --border:      #e3d9c8;
  --radius:      18px;
  --radius-sm:   10px;
  --nav-h:       70px;
  --topbar-h:    34px;
  --transition:  0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

h1, h2, h3 {
  font-family: 'Lora', serif;
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
}

h1 em, h2 em, .section-title em {
  font-style: italic;
  color: var(--green);
}

ul { list-style: none; }

section { padding: 96px 5%; }

.container        { max-width: 1140px; margin: 0 auto; }
.container-wide   { max-width: 1280px; margin: 0 auto; }
.container-narrow { max-width: 840px;  margin: 0 auto; }

/* ── Typography helpers ── */
.section-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.section-kicker.light { color: var(--accent-soft); }

.section-title {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  margin-bottom: 1rem;
}

.section-head { margin-bottom: 3rem; }

.section-sub {
  color: var(--ink-faint);
  max-width: 540px;
  font-size: 0.97rem;
}

.link-arrow {
  display: inline-block;
  margin-top: 1.2rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.7rem 1.7rem;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-lg { padding: 0.95rem 2.2rem; font-size: 0.98rem; }

.btn-block { display: block; width: 100%; }

.btn-solid {
  background: var(--green);
  color: #fdfbf6;
  border-color: var(--green);
}

.btn-solid:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: #fdfbf6;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(35, 92, 65, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}

.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }

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

.btn-outline:hover { background: var(--green); color: #fdfbf6; }

.btn-light {
  background: #fdfbf6;
  color: var(--green-deep);
  border-color: #fdfbf6;
}

.btn-light:hover {
  background: transparent;
  color: #fdfbf6;
  transform: translateY(-2px);
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible { opacity: 1; transform: none; }

/* ── Top bar ── */
.topbar {
  height: var(--topbar-h);
  background: var(--green-deep);
  color: #d9e5dd;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  font-size: 0.78rem;
  padding: 0 5%;
}

.topbar a { color: #d9e5dd; font-weight: 600; }
.topbar a:hover { color: #fff; }

.topbar-item { display: inline-flex; align-items: center; gap: 0.45rem; white-space: nowrap; overflow: hidden; }

/* ── Header / Nav ── */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 5%;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

#header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(30, 42, 35, 0.06);
}

.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
}

.nav-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: #fdfbf6;
}

.nav-logo-text {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.nav-logo-text em { font-style: italic; font-weight: 400; color: var(--green); }

.nav-links { display: flex; align-items: center; gap: 1.8rem; }

.nav-links a:not(.btn) {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -5px;
  height: 2px;
  background: var(--accent);
  transition: right var(--transition);
}

.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-links a:not(.btn):hover::after { right: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav.open { opacity: 1; pointer-events: auto; }

.mobile-nav a {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  color: var(--ink);
}

/* ── Hero ── */
#hero {
  padding-top: 70px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.4rem;
}

.kicker-rule { width: 42px; height: 2px; background: var(--accent); }

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 1.3rem;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 2.2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-hours-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.4rem;
  padding: 0.55rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.chip-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3da566;
  box-shadow: 0 0 0 4px rgba(61, 165, 102, 0.18);
}

/* Hero media collage */
.hero-media { position: relative; min-height: 460px; }

.hero-photo-main {
  position: absolute;
  top: 0; right: 0;
  width: 82%;
  aspect-ratio: 4 / 5;
  border-radius: 200px 200px var(--radius) var(--radius); /* arch shape */
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(30, 42, 35, 0.18);
  z-index: 2;
}

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

.hero-photo-accent {
  position: absolute;
  bottom: 4%;
  left: 0;
  width: 44%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid var(--bg);
  box-shadow: 0 20px 44px rgba(30, 42, 35, 0.2);
  z-index: 3;
}

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

.hero-blob {
  position: absolute;
  top: -8%;
  right: -12%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 80, 44, 0.12) 0%, transparent 70%);
  z-index: 1;
}

/* ── Marquee strip ── */
.marquee {
  background: var(--green);
  color: #f0e9da;
  overflow: hidden;
  padding: 0.85rem 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-item {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.05rem;
  padding: 0 1.4rem;
}

.marquee-sep { color: var(--accent-soft); font-size: 0.8rem; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── About ── */
#about { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-media { position: relative; }

.about-media > img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-inset {
  position: absolute;
  bottom: -2rem;
  right: -1.4rem;
  width: 46%;
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 0.6rem;
  box-shadow: 0 18px 44px rgba(30, 42, 35, 0.18);
}

.about-inset img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius-sm) - 4px);
}

.about-inset figcaption {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.82rem;
  color: var(--ink-faint);
  text-align: center;
  padding: 0.5rem 0 0.2rem;
}

.about-body {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

/* Feature pillars */
.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 6rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(30, 42, 35, 0.1);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(35, 92, 65, 0.1);
  color: var(--green);
  margin-bottom: 1.2rem;
}

.feature-title {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.feature-text { color: var(--ink-faint); font-size: 0.93rem; }

/* ── Signature dishes ── */
#signatures { background: var(--bg-alt); }

.signature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 3rem 0;
}

.signature-row + .signature-row { border-top: 1px solid var(--border); }

.signature-row.flip .signature-media { order: 2; }

.signature-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(30, 42, 35, 0.14);
}

.signature-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(196, 80, 44, 0.1);
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
  margin-bottom: 1rem;
}

.signature-name {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.signature-desc { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 1.2rem; }

.signature-price {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green);
}

/* ── Menu (tabbed price list) ── */
#menu { background: var(--bg); }

#menu .section-head { text-align: center; }
#menu .section-sub { margin: 0 auto; }

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.6rem;
}

.menu-tab {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all var(--transition);
}

.menu-tab:hover { border-color: var(--green); color: var(--green); }

.menu-tab.active {
  background: var(--green);
  border-color: var(--green);
  color: #fdfbf6;
}

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: panel-in 0.4s ease; }

@keyframes panel-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.menu-item {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 1.1rem 0;
}

.menu-item + .menu-item { border-top: 1px dashed var(--border); }

.menu-item-name {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 600;
  white-space: nowrap;
}

.menu-item-dots {
  flex: 1;
  border-bottom: 2px dotted var(--border);
  transform: translateY(-4px);
}

.menu-item-price {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.menu-item-desc {
  flex-basis: 100%;
  color: var(--ink-faint);
  font-size: 0.88rem;
  margin-top: -0.8rem;
  padding-bottom: 0.2rem;
}

.menu-item-head {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  width: 100%;
}

.menu-item { flex-wrap: wrap; }

/* Full menu download tiles */
.fullmenu-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 3rem;
}

.fullmenu-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.5rem;
  color: var(--ink);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

a.fullmenu-card:hover {
  transform: translateY(-3px);
  border-color: var(--green);
  box-shadow: 0 12px 30px rgba(30, 42, 35, 0.1);
  color: var(--ink);
}

.fullmenu-card.placeholder { border-style: dashed; color: var(--ink-faint); }

.fullmenu-icon { color: var(--green); flex-shrink: 0; }

.fullmenu-card.placeholder .fullmenu-icon { color: var(--ink-faint); }

.fullmenu-label { font-weight: 600; font-size: 0.97rem; }
.fullmenu-note  { font-size: 0.8rem; color: var(--ink-faint); }

/* ── Reviews ── */
#reviews {
  background: var(--green-deep);
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.reviews-mark {
  font-family: 'Lora', serif;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--accent-soft);
  margin-bottom: 1.2rem;
}

.reviews-stage { position: relative; min-height: 170px; }

.review-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}

.review-slide.active { opacity: 1; pointer-events: auto; }

.review-quote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  color: #f0e9da;
  max-width: 700px;
  margin: 0 auto 1.4rem;
  line-height: 1.5;
}

.review-name { font-weight: 700; color: #fdfbf6; font-size: 0.95rem; }
.review-meta { color: #8fae9c; font-size: 0.82rem; margin-top: 0.2rem; }

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.6rem;
}

.reviews-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(240, 233, 218, 0.3);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.reviews-dot.active { background: var(--accent-soft); transform: scale(1.25); }

/* ── Gallery (horizontal strip) ── */
#gallery { padding-left: 0; padding-right: 0; background: var(--bg); }

.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 5%;
  margin-bottom: 2.4rem;
}

.gallery-arrows { display: flex; gap: 0.6rem; }

.gallery-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-arrow:hover { background: var(--green); border-color: var(--green); color: #fdfbf6; }

.gallery-strip {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0 5% 1.4rem;
  scrollbar-width: none;
}

.gallery-strip::-webkit-scrollbar { display: none; }

.gallery-card {
  flex: 0 0 auto;
  width: clamp(240px, 26vw, 340px);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-card:nth-child(even) { margin-top: 2.2rem; }

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* ── Private events banner ── */
#events-banner {
  position: relative;
  text-align: center;
  padding: 130px 5%;
  overflow: hidden;
}

.banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(22, 64, 44, 0.82), rgba(20, 30, 24, 0.88));
}

.banner-content { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }

.banner-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: #fdfbf6;
  margin-bottom: 1rem;
}

.banner-sub { color: #d9e5dd; margin-bottom: 2rem; font-size: 1rem; }

/* ── Visit (hours / map / form) ── */
#visit { background: var(--bg-alt); }

#visit .section-head { text-align: center; }

.visit-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-areas:
    "card form"
    "map  form";
  gap: 1.6rem;
}

.visit-card { grid-area: card; }
.visit-map  { grid-area: map; }
.visit-form { grid-area: form; }

.visit-card, .visit-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
}

.visit-card-title {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.92rem;
}

.hours-days { font-weight: 600; color: var(--ink-soft); }
.hours-time { color: var(--ink-faint); }

.visit-line {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.45rem 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.visit-line svg { margin-top: 5px; color: var(--green); flex-shrink: 0; }

.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 260px;
}

.visit-map iframe { width: 100%; height: 100%; min-height: 260px; border: 0; display: block; }

.visit-form-note { color: var(--ink-faint); font-size: 0.88rem; margin-bottom: 1.6rem; }

/* Form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { margin-bottom: 1.1rem; }

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
}

.req { color: var(--accent); }

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(35, 92, 65, 0.14);
}

textarea.form-control { min-height: 110px; resize: vertical; }

.form-note {
  font-size: 0.8rem;
  color: var(--ink-faint);
  text-align: center;
  margin-top: 0.8rem;
}

.form-message {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
}

.form-message.success {
  background: rgba(61, 165, 102, 0.12);
  color: #1e7a45;
  border: 1px solid rgba(61, 165, 102, 0.35);
}

.form-message.error {
  background: rgba(196, 80, 44, 0.1);
  color: var(--accent);
  border: 1px solid rgba(196, 80, 44, 0.35);
}

/* ── Footer ── */
#footer {
  background: var(--green-deep);
  color: #b9cabe;
  padding: 70px 5% 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fdfbf6;
  margin-bottom: 0.5rem;
}

.footer-brand em { font-style: italic; font-weight: 400; color: var(--accent-soft); }

.footer-tagline {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 1.4rem;
}

.social-icons { display: flex; gap: 0.7rem; }

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(185, 202, 190, 0.35);
  color: #d9e5dd;
  transition: all var(--transition);
}

.social-icon:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fdfbf6;
  margin-bottom: 1.1rem;
}

.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { color: #b9cabe; font-size: 0.92rem; }
.footer-links a:hover { color: var(--accent-soft); }

.footer-hours-row { font-size: 0.88rem; margin-bottom: 0.55rem; }
.footer-hours-row .fday { display: block; font-weight: 600; color: #d9e5dd; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  border-top: 1px solid rgba(185, 202, 190, 0.18);
  padding: 1.4rem 0;
  font-size: 0.82rem;
}

.footer-credit a { color: var(--accent-soft); font-weight: 600; }
.footer-credit a:hover { color: #fdfbf6; }

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(20, 30, 24, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vw;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lightbox.open { opacity: 1; pointer-events: auto; }

.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.4rem;
  right: 1.8rem;
  background: none;
  border: none;
  color: #fdfbf6;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
}

.lightbox-close:hover { color: var(--accent-soft); transform: rotate(90deg); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { gap: 3rem; }
  .visit-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "card" "map" "form";
  }
  .visit-map { min-height: 320px; }
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 0; margin-top: 1rem; }
  .hero-photo-main { position: relative; width: 100%; aspect-ratio: 16 / 10; border-radius: var(--radius); }
  .hero-photo-accent { width: 36%; bottom: -1.4rem; left: 4%; }
  .hero-blob { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-inset { right: 1rem; }

  .features-row { grid-template-columns: 1fr; margin-top: 4rem; }

  .signature-row { grid-template-columns: 1fr; gap: 1.6rem; }
  .signature-row.flip .signature-media { order: 0; }

  .fullmenu-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 2.2rem; }

  .gallery-card:nth-child(even) { margin-top: 0; }

  .banner-bg { background-attachment: scroll; }
}

@media (max-width: 560px) {
  section { padding: 70px 5%; }
  .topbar { gap: 1.2rem; font-size: 0.72rem; }
  .topbar-item:first-child { display: none; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero-actions .btn { width: 100%; }
  .gallery-head { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .visit-card, .visit-form { padding: 1.6rem; }
}
