/* =====================================================
   Cocodrie's Bayou Kitchen — Stylesheet v2
   A moodier, richer bayou-at-dusk palette pulled from the
   brand mark: near-black swamp green, muted brass/gold
   sunset, warm ivory, deep rust accents.
===================================================== */

:root{
  /* Dark / primary surfaces */
  --ink: #0a1712;
  --green-950: #0d2018;
  --green-900: #123527;
  --green-800: #1b4633;
  --green-700: #275d44;
  --green-600: #3c7d59;
  --green-400: #6ba37d;

  /* Warm accents */
  --gold-700: #a97423;
  --gold-600: #c68d34;
  --gold-500: #d6a24a;
  --gold-300: #e8c583;
  --rust-700: #7a3319;
  --rust-500: #a8481f;

  /* Light surfaces */
  --cream-100: #f3ecdc;
  --cream-50: #faf6ec;
  --ivory: #fffaf0;
  --ink-text: #201a12;

  --font-display: 'Fraunces', serif;
  --font-body: 'Work Sans', sans-serif;

  --shadow-deep: 0 40px 80px -30px rgba(0, 0, 0, 0.55);
  --shadow-soft: 0 14px 34px -12px rgba(10, 23, 18, 0.35);
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family: var(--font-body);
  color: var(--ink-text);
  background: var(--cream-50);
  overflow-x: hidden;
  line-height: 1.7;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
section{ position:relative; }
section[id]{ scroll-margin-top: 92px; }
h1,h2,h3{ font-family: var(--font-display); font-weight:600; line-height:1.12; letter-spacing:-0.01em; }

.section-inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 110px 32px;
  position: relative;
  z-index: 2;
}
.section-kicker{
  font-family: var(--font-body);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
  font-size: 0.78rem;
  text-align: center;
  margin-bottom: 16px;
}
.section-title{
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--green-900);
  margin-bottom: 22px;
  text-align: center;
}
.section-lede{
  max-width: 640px;
  font-size: 1.08rem;
  color: #4a4234;
  margin: 0 auto 56px;
  text-align: center;
}

/* ============ Divider ============ */
.divider{
  display:flex;
  align-items:center;
  justify-content:center;
  width: 74px;
  margin: 0 auto 22px;
}
.divider-mark{
  width: 9px; height: 9px;
  background: var(--gold-600);
  transform: rotate(45deg);
  position: relative;
}
.divider-mark::before, .divider-mark::after{
  content:'';
  position:absolute;
  top:50%; left:50%;
  height:1px;
  width: 32px;
  background: linear-gradient(to right, var(--gold-500), transparent);
  transform: translate(-100%, -50%) rotate(-45deg);
}
.divider-mark::after{
  background: linear-gradient(to left, var(--gold-500), transparent);
  transform: translate(0, -50%) rotate(-45deg);
  left: 100%;
}
.divider-light .divider-mark{ background: var(--gold-300); }

/* ============ Reveal on scroll ============ */
.reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s cubic-bezier(.2,.8,.2,1), transform 0.9s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* ============ Buttons ============ */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 15px 30px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover{ transform: translateY(-3px); }
.btn-orange{
  background: var(--gold-600);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.btn-orange:hover{ background: var(--gold-500); box-shadow: 0 18px 34px -10px rgba(198, 141, 52, 0.45); }
.btn-green{
  background: var(--green-800);
  color: var(--ivory);
  box-shadow: var(--shadow-soft);
}
.btn-green:hover{ background: var(--green-700); }
.btn-outline{
  background: transparent;
  color: var(--ivory);
  border-color: rgba(255,250,240,0.55);
}
.btn-outline:hover{ background: rgba(255,255,255,0.1); border-color: var(--gold-300); }
.btn-block{ width:100%; }

/* ============ Hero canopy (contained — never floats over other sections) ============ */
.hero-canopy{
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 62%;
  z-index: 4;
  pointer-events: none;
  will-change: opacity, transform, filter;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
}
.hero-canopy img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ============ Nav ============ */
.site-nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding .35s ease;
  padding: 20px 0;
  background: linear-gradient(180deg, rgba(6,13,10,0.75) 0%, rgba(6,13,10,0.35) 75%, transparent 100%);
}
.site-nav.scrolled{
  background: rgba(10, 23, 18, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  padding: 12px 0;
  border-bottom: 1px solid rgba(198,141,52,0.15);
}
.nav-inner{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo{
  display: inline-flex;
  align-items: center;
  background: rgba(250,246,236,0.16);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(214,162,74,0.35);
  padding: 6px 16px;
  border-radius: 100px;
  transition: padding .35s ease, background .35s ease;
}
.nav-logo img{ height: 50px; transition: height .35s ease; filter: drop-shadow(0 3px 8px rgba(0,0,0,0.5)); }
.site-nav.scrolled .nav-logo{ padding: 4px 12px; background: rgba(250,246,236,0.1); }
.site-nav.scrolled .nav-logo img{ height: 40px; }
.nav-links{
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link{
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ivory);
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
  position: relative;
  padding: 6px 2px;
}
.nav-link::after{
  content:'';
  position:absolute;
  left:0; bottom:-2px;
  width:0; height:1px;
  background: var(--gold-300);
  transition: width .25s ease;
}
.nav-link:hover::after, .nav-link.active::after{ width:100%; }
.nav-cta{
  background: var(--gold-600);
  color: var(--ink);
  padding: 10px 22px;
  border-radius: 3px;
  text-shadow:none;
  font-weight: 600;
}
.nav-cta:hover::after{ width:0; }
.nav-cta:hover{ background: var(--gold-500); }

.nav-toggle{
  display:none;
  flex-direction: column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding: 6px;
}
.nav-toggle span{
  width: 26px; height: 2px;
  background: var(--ivory);
  transition: all .3s ease;
}

/* ============ Hero ============ */
.hero{
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
  padding-top: 6vh;
}
.hero-bg{
  position: absolute; inset:0;
  background-image: url('../images/cypress-swamp-bg.jpg');
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.05);
  filter: saturate(0.85) brightness(0.72);
}
.hero-scrim{
  position: absolute; inset:0;
  z-index: 3;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(9,18,14,0.35) 0%, rgba(9,18,14,0.5) 55%, rgba(7,14,11,0.82) 100%),
    linear-gradient(180deg, rgba(8,17,13,0.55) 0%, rgba(8,17,13,0.3) 30%, rgba(6,13,10,0.8) 100%);
}
.hero-text-scrim{
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(92vw, 880px);
  height: min(70vh, 620px);
  transform: translate(-50%, -50%);
  z-index: 5;
  background: radial-gradient(ellipse at center, rgba(6,13,10,0.55) 0%, rgba(6,13,10,0.28) 55%, rgba(6,13,10,0) 80%);
  pointer-events: none;
}
.hero-content{
  position: relative;
  z-index: 8;
  text-align: center;
  max-width: 760px;
  padding: 0 24px;
  color: var(--ivory);
}
.hero-logo{
  width: 337px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.65));
}
.hero-eyebrow{
  font-family: var(--font-body);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 600;
  font-size: 1.2rem;
  text-shadow: 0 3px 10px rgba(0,0,0,0.6);
  margin-bottom: 20px;
}
.hero-title{
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.7rem, 3.6vw, 3.05rem);
  margin-bottom: 22px;
  text-shadow: 0 10px 36px rgba(0,0,0,0.5);
  color: var(--ivory);
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 640px){
  .hero-title{
    white-space: normal;
  }
}
.hero-sub{
  font-size: 1.12rem;
  color: rgba(250,246,236,0.88);
  margin-bottom: 38px;
  font-weight: 300;
}
.hero-actions{
  display:flex; gap:18px; justify-content:center; flex-wrap:wrap;
}
.scroll-cue{
  position:absolute;
  bottom: 34px; left:50%;
  transform: translateX(-50%);
  color: var(--cream-100);
  font-size: 0.8rem;
  display:flex; flex-direction:column; align-items:center; gap:6px;
  z-index: 5;
  opacity: 0.75;
  animation: bob 2.4s ease-in-out infinite;
}
.scroll-cue span{
  width:1px; height:34px;
  background: rgba(232,197,131,0.5);
}
@keyframes bob{
  0%,100%{ transform: translate(-50%, 0); }
  50%{ transform: translate(-50%, 10px); }
}

/* ============ Our Story / Timeline (dark, moody) ============ */
.story-section{
  background: linear-gradient(160deg, var(--ink) 0%, var(--green-950) 55%, var(--ink) 100%);
  color: var(--cream-100);
}
.story-section .section-title{ color: var(--ivory); }
.story-section .section-lede{ color: rgba(243,236,220,0.72); }

.timeline{ position: relative; margin-top: 50px; max-width: 760px; margin-left:auto; margin-right:auto; }
.timeline-line{
  position: absolute;
  left: 34px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(214,162,74,0.5) 8%, rgba(214,162,74,0.5) 92%, transparent);
}
.timeline-item{
  position: relative;
  display: flex;
  gap: 28px;
  margin-bottom: 44px;
}
.timeline-marker{
  flex: 0 0 68px;
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--gold-300);
  display:flex; align-items:center; justify-content:center;
  font-size: 1.4rem;
  border: 1px solid rgba(214,162,74,0.4);
  z-index: 2;
}
.timeline-card{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(214,162,74,0.18);
  border-radius: 10px;
  padding: 26px 30px;
  max-width: 600px;
}
.timeline-era{
  font-family: var(--font-body);
  color: var(--gold-500);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.timeline-card h3{
  color: var(--ivory);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 8px 0 12px;
}
.timeline-card p{ color: rgba(243,236,220,0.78); }

/* ============ Not Just a Name ============ */
.name-section{ position: relative; overflow:hidden; }
.name-bg{
  position:absolute; inset:0;
  background-image: url('../images/story-dulac-bg.jpg');
  background-size: cover;
  background-position: center;
  filter: saturate(0.75) brightness(0.6);
}
.name-scrim{
  position:absolute; inset:0;
  background: linear-gradient(115deg, rgba(10,23,18,0.95) 32%, rgba(10,23,18,0.6) 100%);
}
.name-inner{ display:flex; justify-content:flex-start; padding: 130px 32px; }
.name-card{
  max-width: 620px;
  color: var(--cream-100);
}
.name-card .divider{ margin-left:0; }
.name-card .divider-mark::after{ display:none; }
.name-card .section-kicker{ color: var(--gold-300); text-align:left; }
.name-card .section-title{ color: var(--ivory); text-align:left; }
.name-card p{ margin-bottom: 18px; font-size: 1.05rem; color: rgba(250,246,236,0.86); font-weight:300; }
.name-card strong{ color: var(--gold-300); font-weight:600; }
.typewriter-quote{
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--gold-300);
  border-left: 2px solid var(--gold-600);
  padding-left: 22px;
  margin: 30px 0;
}
.welcome-line{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--ivory) !important;
}

/* ============ Events (light) ============ */
.events-section{ background: var(--cream-50); }
.events-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 10px;
}
.event-card{
  background: var(--ivory);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(27,70,51,0.08);
  transition: transform .35s ease, box-shadow .35s ease;
}
.event-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-deep); }
.event-card-img{
  height: 190px;
  background-size: cover;
  background-position: center;
  filter: saturate(0.92);
}
.event-card-icon-bg{
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(150deg, var(--green-950), var(--green-800));
  color: var(--gold-300);
  font-size: 3rem;
}
.event-card-body{ padding: 28px 26px 32px; }
.event-tag{
  display:inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-700);
  background: rgba(198,141,52,0.1);
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 14px;
}
.event-card-body h3{ color: var(--green-900); font-weight:500; font-size: 1.35rem; margin-bottom: 10px; }
.event-card-body p{ color: #4a4234; font-size: 0.96rem; }
.events-footnote{
  margin-top: 44px;
  text-align: center;
  color: var(--green-800);
  font-size: 0.9rem;
  font-weight: 500;
}
.events-footnote i{ color: var(--gold-600); margin-right: 6px; }

/* ============ Location (dark) ============ */
.location-section{ background: var(--green-950); color: var(--cream-100); }
.location-inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.location-info{ text-align:left; }
.location-info .section-title, .location-info .section-kicker{ text-align:left; }
.location-section .section-kicker{ color: var(--gold-300); }
.location-section .section-title{ color: var(--ivory); }
.location-info p{ color: rgba(243,236,220,0.72); margin-bottom: 28px; font-weight:300; }
.location-list{ margin-bottom: 32px; display:flex; flex-direction:column; gap:14px; }
.location-list li{ display:flex; align-items:center; gap:12px; font-size:1.05rem; }
.location-list i{ color: var(--gold-500); width:20px; }
.location-list a{ color: var(--cream-100); }
.location-list a:hover{ color: var(--gold-300); }
.location-map{
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  border: 1px solid rgba(214,162,74,0.2);
}
.location-map iframe{ display:block; filter: saturate(0.7) sepia(0.15) brightness(0.95); }

/* ============ Connect / Social (light) ============ */
.connect-section{ background: var(--cream-100); text-align:center; }
.social-grid{
  display:flex; gap: 26px; justify-content:center; flex-wrap:wrap;
}
.social-card{
  width: 220px;
  padding: 40px 20px;
  background: var(--ivory);
  border-radius: 10px;
  border: 1px solid rgba(27,70,51,0.08);
  box-shadow: var(--shadow-soft);
  display:flex; flex-direction:column; align-items:center; gap:10px;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.social-card i{ font-size: 2.4rem; color: var(--green-800); transition: color .3s ease; }
.social-card span{ font-family: var(--font-body); font-weight:600; font-size:1.05rem; color: var(--green-900); }
.social-card small{ color:#8a7f68; }
.social-card:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadow-deep);
  background: linear-gradient(165deg, var(--green-900), var(--ink));
}
.social-card:hover i{ color: var(--gold-300); }
.social-card:hover span{ color: var(--ivory); }
.social-card:hover small{ color: rgba(255,255,255,0.65); }

/* ============ Catering (dark bg, floating light form) ============ */
.catering-section{ background: linear-gradient(160deg, var(--green-950), var(--ink)); }
.catering-section .section-title{ color: var(--ivory); }
.catering-section .section-lede{ color: rgba(243,236,220,0.72); }
.catering-wrap{
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 36px;
  align-items: flex-start;
}
.catering-form{
  background: var(--ivory);
  border-radius: 14px;
  padding: 42px;
  box-shadow: var(--shadow-deep);
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field{ margin-bottom: 20px; }
.form-field-full{ grid-column: 1 / -1; }
label{
  display:block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--green-900);
  margin-bottom: 8px;
}
input, textarea{
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #ddd2b8;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.96rem;
  background: var(--cream-50);
  color: var(--ink-text);
  transition: border-color .25s ease, box-shadow .25s ease;
}
input:focus, textarea:focus{
  outline:none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(60,125,89,0.15);
}
.checkbox-grid, .radio-grid{ display:flex; flex-wrap:wrap; gap:10px; }
.checkbox-pill, .radio-pill{ cursor:pointer; }
.checkbox-pill input, .radio-pill input{ position:absolute; opacity:0; width:0; height:0; }
.checkbox-pill span, .radio-pill span{
  display:inline-flex; align-items:center; gap:8px;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid #ddd2b8;
  background: var(--cream-50);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all .2s ease;
}
.checkbox-pill input:checked + span, .radio-pill input:checked + span{
  background: var(--green-800);
  border-color: var(--green-800);
  color: var(--ivory);
}
.boil-notice{
  margin-top: 14px;
  background: rgba(198,141,52,0.1);
  border: 1px solid rgba(198,141,52,0.3);
  color: var(--rust-700);
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.88rem;
}
.boil-notice.hidden{ display:none; }
#addressField.hidden{ display:none; }
.hidden{ display:none !important; }

.catering-side{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(214,162,74,0.2);
  color: var(--cream-100);
  border-radius: 14px;
  padding: 38px 32px;
}
.catering-side h3{ color:var(--ivory); font-family:var(--font-display); font-weight:500; font-size:1.4rem; margin-bottom:12px; }
.catering-side p{ color: rgba(243,236,220,0.72); margin-bottom: 22px; }
.catering-side .btn{ margin-bottom: 28px; }
.catering-side-note{
  display:flex; gap:14px;
  padding: 16px 0;
  border-top: 1px solid rgba(214,162,74,0.15);
}
.catering-side-note i{ color: var(--gold-500); font-size:1.2rem; margin-top:2px; }
.catering-side-note p{ margin-bottom:0; font-size:0.9rem; }

.form-msg{ margin-top:16px; font-weight:600; font-size:0.92rem; }
.form-msg.success{ color: var(--green-700); }
.form-msg.error{ color: var(--rust-500); }
.btn-spinner.hidden{ display:none; }

/* ============ Contact (dark) ============ */
.contact-section{ background: var(--ink); }
.contact-inner{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info{ color: var(--cream-100); }
.contact-info .section-kicker, .contact-info .section-title{ text-align:left; }
.contact-info .section-kicker{ color: var(--gold-300); }
.contact-info .section-title{ color: var(--ivory); }
.contact-info p{ color: rgba(243,236,220,0.72); margin-bottom:26px; font-weight:300; }
.contact-phone{
  display:inline-flex; align-items:center; gap:12px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--ivory);
  margin-bottom: 28px;
}
.contact-phone i{ color: var(--gold-500); }
.contact-social{ display:flex; gap:16px; }
.contact-social a{
  width:46px; height:46px;
  border-radius:50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(214,162,74,0.25);
  color:var(--cream-100);
  display:flex; align-items:center; justify-content:center;
  font-size:1.2rem;
  transition: background .25s ease, transform .25s ease, color .25s ease;
}
.contact-social a:hover{ background: var(--gold-600); color: var(--ink); transform: translateY(-4px); }
.contact-form{
  background: var(--ivory);
  border-radius: 14px;
  padding: 38px;
  box-shadow: var(--shadow-deep);
}

/* ============ Footer ============ */
.site-footer{ background: var(--ink); color: var(--cream-100); padding: 54px 32px 32px; border-top: 1px solid rgba(214,162,74,0.15); }
.footer-inner{ max-width:1180px; margin:0 auto; text-align:center; }
.footer-logo{ height:60px; margin: 0 auto 22px; opacity: 0.95; }
.footer-links{ display:flex; gap:26px; justify-content:center; flex-wrap:wrap; margin-bottom:22px; }
.footer-links a{ font-size:0.9rem; color: rgba(243,236,220,0.72); }
.footer-links a:hover{ color: var(--gold-300); }
.footer-social{ display:flex; gap:16px; justify-content:center; margin-bottom:26px; }
.footer-social a{
  width:40px; height:40px; border-radius:50%;
  background: rgba(255,255,255,0.05);
  display:flex; align-items:center; justify-content:center;
  transition: background .25s ease;
}
.footer-social a:hover{ background: var(--gold-600); color: var(--ink); }
.footer-copy{ font-size:0.8rem; color: rgba(243,236,220,0.45); font-family: var(--font-body); font-style: italic; }

/* ============ Responsive ============ */
@media (max-width: 980px){
  .events-grid{ grid-template-columns: 1fr 1fr; }
  .location-inner, .contact-inner{ grid-template-columns: 1fr; }
  .catering-wrap{ grid-template-columns: 1fr; }
  .name-inner{ justify-content: center; text-align:center; padding: 100px 24px; }
  .name-card .section-kicker, .name-card .section-title{ text-align:center; }
  .name-card .divider{ margin-left:auto; }
  .typewriter-quote{ margin-left:auto; margin-right:auto; text-align:left; }
}
@media (max-width: 760px){
  .nav-links{
    position: fixed;
    top: 0; right: -100%;
    width: min(78vw, 320px);
    height: 100vh;
    background: var(--green-950);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transition: right .35s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
  }
  .nav-links.open{ right: 0; }
  .nav-toggle{ display:flex; }
  .nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2){ opacity:0; }
  .nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

  .events-grid{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .section-inner{ padding: 80px 22px; }
  .timeline-line{ left: 28px; }
  .timeline-marker{ flex: 0 0 54px; width:54px; height:54px; font-size:1.1rem; }
  .hero-logo{ width: 160px; }
}
