/* ═══════════════════════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════════════════════ */
:root {
  --c-bg:           #ffffff;
  --c-bg-2:         #f5f5f5;
  --c-bg-3:         #ebebeb;
  --c-hero:         #040903;
  --c-nav:          #2b4c08;
  --c-dark:         #071006;
  --c-dark-2:       #0d1a0b;
  --c-dark-3:       #111e0e;
  --c-dark-4:       #1b2f16;
  --c-accent:       #2f5f14;
  --c-accent-2:     #3d7a1c;
  --c-accent-light: #6aab38;
  --c-accent-pale:  #9bd45a;
  --c-green:        #1a3d08;
  --c-green-2:      #2f5f14;
  --c-green-light:  #6aab38;
  --c-text:         #111111;
  --c-text-muted:   #606060;
  --c-text-light:   #ffffff;
  --c-text-dim:     rgba(255, 255, 255, 0.62);
  --c-border-dark:  rgba(255, 255, 255, 0.09);
  --c-border-accent: rgba(106, 171, 56, 0.28);
  --c-border-light: rgba(0, 0, 0, 0.1);

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'DM Sans', system-ui, -apple-system, sans-serif;

  --mw:  1240px;
  --pad: clamp(1.5rem, 5vw, 4rem);
  --sec: clamp(5rem, 10vw, 9rem);
}

/* ═══════════════════════════════════════════════════════════
   RESET
═══════════════════════════════════════════════════════════ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-sans);
  background: var(--c-bg);
  color: var(--c-text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ═══════════════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════════════ */
.wrap { max-width: var(--mw); margin: 0 auto; padding: 0 var(--pad); }

/* ═══════════════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════════════ */
h1, h2, h3 { font-family: var(--ff-serif); font-weight: 400; }
h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); line-height: 1.05; letter-spacing: -0.015em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3.2rem); line-height: 1.1; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); line-height: 1.2; }
p  { font-size: clamp(0.93rem, 1.3vw, 1.06rem); line-height: 1.78; }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: 3rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.btn-primary {
  background: var(--c-accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--c-accent-2);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(106, 171, 56, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--c-text-light);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-3px);
}
.btn-outline-accent {
  background: transparent;
  color: var(--c-accent-light);
  border: 1.5px solid var(--c-border-accent);
}
.btn-outline-accent:hover {
  border-color: var(--c-accent-light);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════════════
   SECTION LABELS
═══════════════════════════════════════════════════════════ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--ff-sans);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.tag::before {
  content: '';
  display: block;
  width: 1.8rem;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.tag-accent { color: var(--c-accent-light); }
.tag-green  { color: var(--c-green-light); }
.tag-muted { color: var(--c-text-muted); }

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.45s; }

/* ═══════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  padding: 0.65rem 0;
  background: var(--c-nav);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  transition: padding 0.4s ease, box-shadow 0.4s ease;
}
#nav.stuck {
  padding: 0.5rem 0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: clamp(3.75rem, 5vw, 4rem);
}
.nav-logo {
  display: block;
  flex-shrink: 0;
  width: clamp(6.5rem, 11vw, 8.75rem);
  height: clamp(3.75rem, 5vw, 4rem);
  overflow: hidden;
  line-height: 0;
  background: var(--c-nav);
}
.nav-logo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}
.nav-links a {
  font-size: 0.73rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--c-accent-light);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: #ffffff; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: transparent !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 3rem;
  letter-spacing: 0.14em !important;
  transition: background 0.25s, border-color 0.25s, transform 0.25s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: rgba(106, 171, 56, 0.18) !important;
  border-color: var(--c-accent-light) !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 201;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-text-light);
  transition: all 0.3s;
  border-radius: 2px;
}

@media (max-width: 780px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(4, 9, 3, 0.98);
    gap: 2.5rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem !important; color: rgba(255, 255, 255, 0.82) !important; }
  .nav-burger { display: flex; }
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
#hero {
  min-height: 100svh;
  background: url('tables.jpg') center / cover no-repeat;
  position: relative;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.45;
  transition: opacity 0.3s;
}
.hero-scroll-hint:hover { opacity: 0.75; }
.hero-scroll-hint-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.55));
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.6); opacity: 0.4; transform-origin: top; }
  50%      { transform: scaleY(1);   opacity: 1;   transform-origin: top; }
}

/* ═══════════════════════════════════════════════════════════
   TICKER
═══════════════════════════════════════════════════════════ */
.ticker {
  background: var(--c-dark-3);
  border-top: 1px solid var(--c-border-dark);
  border-bottom: 1px solid var(--c-border-dark);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: tickerMove 35s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-size: 0.67rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  padding: 0 2rem;
}
.ticker-item.em { color: rgba(106, 171, 56, 0.7); }
.ticker-sep {
  color: rgba(106, 171, 56, 0.25);
  padding: 0;
}
@keyframes tickerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   CRAFT SECTION
═══════════════════════════════════════════════════════════ */
#craft {
  padding: var(--sec) 0;
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}

/* Faint watermark */
.craft-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-serif);
  font-size: clamp(8rem, 18vw, 22rem);
  font-weight: 300;
  color: rgba(106, 171, 56, 0.08);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.craft-header {
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
  position: relative;
  z-index: 1;
}
.craft-header .tag { margin-bottom: 1.2rem; }
.craft-header h2 {
  margin-bottom: 0.9rem;
  max-width: 16ch;
}
.craft-header p {
  color: var(--c-text-muted);
  max-width: 48ch;
}

/* ─── List layout ─────────────────────── */
.craft-list {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--c-border-light);
}
.craft-item {
  display: grid;
  grid-template-columns: 3.5rem 1fr 1fr;
  gap: 0 clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  border-bottom: 1px solid var(--c-border-light);
  transition: background 0.3s ease;
  cursor: default;
  position: relative;
}
.craft-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--c-accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.craft-item:hover::before { transform: scaleY(1); }
.craft-item:hover .craft-item-name { color: var(--c-accent); }

.craft-item-num {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--c-accent);
  padding-top: 0.2rem;
  letter-spacing: 0.05em;
}
.craft-item-name {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--c-text);
  line-height: 1.2;
  transition: color 0.3s;
}
.craft-item-name small {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  font-weight: 400;
  margin-top: 0.5rem;
}
.craft-item-body { color: var(--c-text-muted); font-size: 0.95rem; line-height: 1.75; }

@media (max-width: 760px) {
  .craft-item {
    grid-template-columns: 2.5rem 1fr;
    grid-template-rows: auto auto;
  }
  .craft-item-body {
    grid-column: 2;
    margin-top: 0.75rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   DIVIDER
═══════════════════════════════════════════════════════════ */
.divider-dark {
  background: var(--c-dark-2);
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.divider-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(30, 75, 10, 0.25) 0%, transparent 65%);
  pointer-events: none;
}
.divider-quote {
  position: relative;
  z-index: 1;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  color: var(--c-text-light);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.45;
}
.divider-quote::before {
  content: '\201C';
  color: var(--c-accent-light);
  font-size: 1.25em;
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 0.08em;
}
.divider-quote::after {
  content: '\201D';
  color: var(--c-accent-light);
  font-size: 1.25em;
  line-height: 0;
  vertical-align: -0.3em;
  margin-left: 0.08em;
}
.divider-attr {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 1.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-accent-light);
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════════
   MENU SECTION
═══════════════════════════════════════════════════════════ */
#menu {
  padding: var(--sec) 0;
  background: var(--c-dark-2);
  position: relative;
  overflow: hidden;
}
#menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 85% 20%, rgba(25, 65, 10, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 10% 85%, rgba(15, 40, 5, 0.2) 0%, transparent 55%);
  pointer-events: none;
}

.menu-header {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}
.menu-header-left .tag { margin-bottom: 1rem; }
.menu-header-left h2 { color: var(--c-text-light); }
.menu-header-right {
  font-size: 0.88rem;
  color: var(--c-text-dim);
  max-width: 30ch;
  line-height: 1.7;
  text-align: right;
}
@media (max-width: 640px) {
  .menu-header { flex-direction: column; align-items: flex-start; }
  .menu-header-right { text-align: left; }
}

/* ─── Catalog list ────────────────────── */
.menu-catalog {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--c-border-dark);
}
.menu-row {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  align-items: start;
  gap: 0 clamp(1.5rem, 4vw, 4rem);
  padding: clamp(2rem, 3.5vw, 3rem) 0;
  border-bottom: 1px solid var(--c-border-dark);
  cursor: default;
  transition: background 0.3s;
  position: relative;
}
.menu-row::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  width: 2.5rem;
  height: 1.5px;
  background: var(--c-accent);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-row:hover::after { transform: translateY(-50%) scaleX(1); }
.menu-row:hover .menu-row-name { color: var(--c-accent-light); }

.menu-row-num {
  font-family: var(--ff-serif);
  font-size: 0.85rem;
  color: rgba(106, 171, 56, 0.5);
  padding-top: 0.35rem;
  letter-spacing: 0.05em;
}
.menu-row-body {}
.menu-row-name {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 400;
  color: var(--c-text-light);
  line-height: 1.15;
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}
.menu-row-desc {
  font-size: 0.9rem;
  color: var(--c-text-dim);
  line-height: 1.65;
  margin-bottom: 0.8rem;
  max-width: 54ch;
}
.menu-row-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.menu-row-tag {
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(106, 171, 56, 0.55);
  border: 1px solid rgba(106, 171, 56, 0.2);
  padding: 0.2rem 0.7rem;
  border-radius: 3rem;
}
.menu-row-aside {
  text-align: right;
  padding-top: 0.35rem;
  flex-shrink: 0;
}
.menu-row-aside-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(106, 171, 56, 0.35);
}

@media (max-width: 640px) {
  .menu-row { grid-template-columns: 2rem 1fr; }
  .menu-row-aside { display: none; }
  .menu-row::after { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   EVENTS SECTION
═══════════════════════════════════════════════════════════ */
#events {
  padding: var(--sec) 0;
  background: var(--c-dark);
  position: relative;
  overflow: hidden;
}
#events::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 30%, rgba(20, 55, 8, 0.3) 0%, transparent 55%);
  pointer-events: none;
}

.events-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (max-width: 840px) {
  .events-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* Left */
.events-left .tag { margin-bottom: 1.4rem; }
.events-h2 {
  color: var(--c-text-light);
  margin-bottom: 0;
  line-height: 1.05;
}
.events-h2 em {
  font-style: italic;
  color: var(--c-accent-light);
}
.events-divider {
  height: 1px;
  background: var(--c-border-accent);
  margin: 2rem 0;
}
.events-lead {
  color: var(--c-text-dim);
  max-width: 44ch;
  margin-bottom: 2.5rem;
}
.events-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Right: offer cards */
.events-offers {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.events-offer {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--c-border-dark);
  border-radius: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  transition: border-color 0.3s, background 0.3s;
}
.events-offer:hover {
  border-color: var(--c-border-accent);
  background: rgba(106, 171, 56, 0.04);
}
.events-offer-icon {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.events-offer-icon::before {
  content: '';
  width: 1.4rem;
  height: 1px;
  background: var(--c-accent);
  flex-shrink: 0;
}
.events-offer h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  color: var(--c-text-light);
  margin-bottom: 0.6rem;
}
.events-offer p {
  font-size: 0.9rem;
  color: var(--c-text-dim);
  line-height: 1.7;
}

/* Stats row */
.events-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--c-border-dark);
  flex-wrap: wrap;
}
.stat-num {
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--c-accent-light);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.stat-lbl {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-dim);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT / FOOTER
═══════════════════════════════════════════════════════════ */
#contact {
  background: #040903;
  border-top: 1px solid var(--c-border-dark);
  padding: var(--sec) 0 0;
}

.contact-header {
  margin-bottom: clamp(3.5rem, 6vw, 5.5rem);
}
.contact-header .tag { margin-bottom: 1.2rem; }
.contact-header h2 { color: var(--c-text-light); }
.contact-header h2 em { color: var(--c-accent-light); font-style: italic; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-bottom: 4rem;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .contact-grid { grid-template-columns: 1fr; } }

/* Brand column */
.contact-brand-name {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--c-text-light);
  margin-bottom: 1rem;
}
.contact-brand-name em { color: var(--c-accent-light); font-style: normal; }
.contact-brand > p {
  color: var(--c-text-dim);
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 30ch;
  margin-bottom: 2rem;
}

.socials { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.social-btn {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--c-border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-dim);
  transition: background 0.25s, color 0.25s, transform 0.25s, border-color 0.25s;
}
.social-btn svg { width: 0.95rem; height: 0.95rem; }
.social-btn:hover {
  background: var(--c-accent);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
}

/* Info column */
.col-title {
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-accent-light);
  margin-bottom: 1.4rem;
}
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--c-text-dim);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 0.85rem;
}
.info-list li svg {
  width: 0.9rem;
  height: 0.9rem;
  color: var(--c-accent-light);
  flex-shrink: 0;
  margin-top: 0.22rem;
}
.info-list a { color: var(--c-text-dim); transition: color 0.2s; }
.info-list a:hover { color: var(--c-accent-light); }
.maps-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
  font-size: 0.8rem;
  color: var(--c-accent-light);
  transition: color 0.2s;
  opacity: 0.8;
}
.maps-link:hover { opacity: 1; }

/* Hours column */
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
  color: var(--c-text-dim);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.hours-open { color: var(--c-green-light); font-size: 0.82rem; }

/* Map */
.map-block {
  border-radius: 1.25rem;
  overflow: hidden;
  height: clamp(180px, 22vw, 280px);
  border: 1px solid var(--c-border-dark);
  margin-bottom: 3rem;
}
.map-block iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer bar */
.footer-bar {
  border-top: 1px solid var(--c-border-dark);
  padding: 1.8rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bar p {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.22);
  line-height: 1.7;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-green-light);
  opacity: 0.5;
}
.footer-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

/* ═══════════════════════════════════════════════════════════
   MISC RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .btn { justify-content: center; }
  .events-stats { gap: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   PILLARS
═══════════════════════════════════════════════════════════ */
#pillars {
  background: var(--c-bg);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  border-bottom: 1px solid var(--c-border-light);
}
.pillars-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
  padding: clamp(2rem, 4vw, 2.8rem) clamp(1.5rem, 3vw, 2rem);
  background: var(--c-bg);
  border: 1px solid var(--c-border-light);
  border-radius: 1.25rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.pillar:hover {
  border-color: rgba(106, 171, 56, 0.35);
  box-shadow: 0 8px 32px rgba(26, 61, 8, 0.06);
}
.pillar-icon {
  width: 3.5rem;
  height: 3.5rem;
  color: var(--c-accent);
  flex-shrink: 0;
  padding: 0.75rem;
  border-radius: 50%;
  background: rgba(106, 171, 56, 0.08);
  border: 1px solid rgba(106, 171, 56, 0.15);
}
.pillar-icon svg { width: 100%; height: 100%; }
.pillar-label {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-green);
}
.pillar-sub {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-top: -0.4rem;
}
@media (max-width: 700px) {
  .pillars-list { grid-template-columns: 1fr; }
  .pillar {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 1.5rem;
  }
  .pillar-icon { flex-shrink: 0; }
  .pillar-text { flex: 1; }
}

/* ═══════════════════════════════════════════════════════════
   FOOD GALLERY
═══════════════════════════════════════════════════════════ */
.gallery-section {
  position: relative;
  z-index: 5;
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  background: var(--c-bg-2);
}

.gallery-layout {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4vw, 2.5rem);
}

.gallery-header {
  text-align: center;
}
.gallery-header .tag {
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--c-accent);
}
.gallery-header .tag::before { display: none; }
.gallery-header h2 {
  color: var(--c-text);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 0;
}
.gallery-lead {
  display: none;
}

.gallery-frame {
  width: min(100%, 420px);
  margin: 0 auto;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--c-border-light);
}

.slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--c-dark-2);
}
.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}
.slide.active {
  opacity: 1;
  z-index: 1;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.slide.active img {
  animation: kenBurns 5s ease-out forwards;
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.03); }
}

.slider-ui {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(to top, rgba(4, 9, 3, 0.75) 0%, transparent 100%);
}

.slider-progress {
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  margin-bottom: 0.85rem;
  overflow: hidden;
}
.slider-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--c-accent-light);
  border-radius: 2px;
}
@keyframes sliderProgress {
  from { width: 0%; }
  to   { width: 100%; }
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.dot.active {
  background: var(--c-accent-light);
  transform: scale(1.4);
}

@media (min-width: 900px) {
  .gallery-section {
    padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(4rem, 6vw, 5.5rem);
  }

  .gallery-layout {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: center;
  }

  .gallery-header {
    text-align: left;
  }
  .gallery-header .tag {
    justify-content: flex-start;
  }
  .gallery-header h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 1rem;
  }
  .gallery-lead {
    display: block;
    color: var(--c-text-muted);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 38ch;
  }

  .gallery-frame {
    width: 440px;
    margin: 0;
  }

  .slide.active img {
    animation: none;
    transform: none;
  }
}
