/* ─────────────────────────────────────────────
   THE FOREST CITY WEEKLY — Main Stylesheet
   ───────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,700&family=Nunito:wght@400;600;700&family=Caveat:wght@500;700&display=swap');

/* ── Variables ── */
:root {
  --green:       #2d5a3d;
  --green-dark:  #1e3d29;
  --green-light: #3d7a54;
  --gold:        #d4972a;
  --gold-light:  #e8b84a;
  --cream:       #faf6ee;
  --cream-dark:  #f0ebe0;
  --cream-mid:   #ede0cc;
  --ink:         #1e1a14;
  --ink-light:   #3a3028;
  --muted:       #6b5f4e;
  --border:      #ddd5c0;
  --rust:        #c45c2a;
  --berry:       #a83060;
  --slate:       #5a6a7a;
  --walnut:      #6b4c2a;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Nunito', Arial, sans-serif;
  --font-hand:    'Caveat', Georgia, cursive;

  --max-w: 1100px;
  --email-w: 680px;
  --radius: 2px;

  --shadow-sm: 0 2px 8px rgba(30,26,20,0.08);
  --shadow-md: 0 6px 24px rgba(30,26,20,0.12);
  --shadow-lg: 0 16px 48px rgba(30,26,20,0.16);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--cream-dark);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Paper grain overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ═══════════════════════════════
   NAVIGATION
═══════════════════════════════ */
.site-nav {
  background-color: var(--green);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--gold);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo span { color: var(--gold); font-style: italic; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); text-decoration: none; }
.nav-links a.active { color: var(--gold); }
.nav-subscribe {
  background: var(--gold);
  color: var(--ink) !important;
  padding: 6px 16px !important;
  font-weight: 700 !important;
}
.nav-subscribe:hover { background: var(--gold-light) !important; color: var(--ink) !important; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; color: #fff; }

/* ═══════════════════════════════
   HERO — MASTHEAD
═══════════════════════════════ */
.site-masthead {
  background-color: var(--green-dark);
  padding: 48px 24px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.site-masthead::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(212,151,42,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.masthead-eyebrow {
  font-family: var(--font-hand);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.masthead-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.masthead-title em { color: var(--gold); font-style: italic; }
.masthead-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 14px;
  max-width: 200px;
}
.masthead-rule::before,
.masthead-rule::after {
  content: '';
  flex: 1;
  border-top: 1px dashed rgba(255,255,255,0.2);
}
.masthead-rule span { color: rgba(255,255,255,0.25); font-size: 0.9rem; }
.masthead-tagline {
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}
.masthead-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.masthead-pill {
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.masthead-pill.weather { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════
   LAYOUT WRAPPERS
═══════════════════════════════ */
.page-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.main-col {}
.sidebar {}

/* ═══════════════════════════════
   SECTION HEADERS
═══════════════════════════════ */
.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  white-space: nowrap;
}
.section-header::after {
  content: '';
  flex: 1;
  border-top: 2px dashed var(--border);
}

/* ═══════════════════════════════
   EDITOR NOTE
═══════════════════════════════ */
.editor-note {
  background: var(--green-dark);
  padding: 20px 24px;
  border-bottom: 3px solid var(--gold);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.editor-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  border: 3px solid rgba(255,255,255,0.2);
}
.editor-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.editor-text {
  font-family: var(--font-hand);
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
}

/* ═══════════════════════════════
   FEATURED EVENT CARD
═══════════════════════════════ */
.featured-card {
  border: 1px solid var(--border);
  background: #fff;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.featured-card:hover { box-shadow: var(--shadow-md); }
.featured-card .card-hero {
  background: var(--ink);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.featured-card .card-hero svg { width: 100%; height: 100%; }
.featured-card .card-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.featured-card .card-body { padding: 24px 26px 26px; }
.card-category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.featured-card h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 14px;
}
.featured-card h2 em { color: var(--rust); }
.card-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 14px;
}
.card-meta span {
  font-size: 0.82rem;
  color: var(--muted);
}
.card-body p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-light);
  margin-bottom: 10px;
}
.card-body p:last-of-type { margin-bottom: 18px; }
.btn {
  display: inline-block;
  padding: 10px 22px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: opacity 0.15s, transform 0.1s;
  text-decoration: none !important;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-green  { background: var(--green); color: #fff; }
.btn-gold   { background: var(--gold); color: var(--ink); }
.btn-rust   { background: var(--rust); color: #fff; }
.btn-berry  { background: var(--berry); color: #fff; }
.btn-outline { border: 2px solid var(--green); color: var(--green); padding: 8px 20px; }
.btn-outline:hover { background: var(--green); color: #fff; }

/* ═══════════════════════════════
   EVENT CARDS GRID
═══════════════════════════════ */
.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.event-card {
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.15s;
  overflow: hidden;
}
.event-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.event-card .top-bar { height: 5px; }
.event-card .card-inner { padding: 16px 18px 18px; }
.event-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.event-card .card-date { font-size: 0.78rem; color: var(--muted); }
.event-card .tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
  color: #fff;
}
.event-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 7px;
  color: var(--ink);
}
.event-card p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #5a5046;
  margin-bottom: 10px;
}
.event-card .card-footer {
  font-size: 0.75rem;
  color: var(--muted);
  border-top: 1px dashed var(--border);
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.event-card .card-footer a {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

/* ═══════════════════════════════
   DAY-BY-DAY TIMELINE
═══════════════════════════════ */
.day-row {
  display: flex;
  gap: 18px;
  margin-bottom: 4px;
  align-items: flex-start;
}
.day-badge {
  width: 58px;
  flex-shrink: 0;
  text-align: center;
  color: #fff;
  padding: 5px 0 7px;
}
.day-badge .day-name {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  display: block;
  margin-bottom: 1px;
}
.day-badge .day-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.day-content {
  flex: 1;
  border-left: 3px solid;
  padding-left: 16px;
  padding-bottom: 20px;
}
.day-event-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.day-event-meta {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 4px;
}
.day-event-desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--ink-light);
  margin-bottom: 8px;
}
.day-event-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

/* ═══════════════════════════════
   COMING UP (numbered list)
═══════════════════════════════ */
.coming-up-list { margin-bottom: 32px; }
.coming-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.coming-item:last-child { border-bottom: none; }
.coming-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--border);
  flex-shrink: 0;
  width: 44px;
}
.coming-body {}
.coming-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.coming-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--ink);
}
.coming-desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--ink-light);
  margin-bottom: 3px;
}
.coming-where {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ═══════════════════════════════
   QUICK BITES
═══════════════════════════════ */
.quick-bites {
  background: #f5f0e4;
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  padding: 22px 24px;
  margin-bottom: 32px;
}
.quick-bites h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 14px;
}
.bite-item {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--border);
  align-items: flex-start;
}
.bite-item:last-child { border-bottom: none; }
.bite-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.bite-text {
  font-size: 0.83rem;
  line-height: 1.55;
  color: var(--ink-light);
}
.bite-text strong { font-family: var(--font-display); color: var(--ink); }

/* ═══════════════════════════════
   SIDEBAR WIDGETS
═══════════════════════════════ */
.sidebar-widget {
  background: #fff;
  border: 1px solid var(--border);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.widget-header {
  background: var(--green);
  padding: 12px 18px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.01em;
}
.widget-body { padding: 18px; }

/* Subscribe widget */
.subscribe-widget .widget-body { text-align: center; }
.subscribe-widget .sub-icon { font-size: 2rem; margin-bottom: 8px; }
.subscribe-widget h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.subscribe-widget p {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.55;
}
.subscribe-form { display: flex; flex-direction: column; gap: 8px; }
.subscribe-form input[type="email"] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink);
  outline: none;
  border-radius: var(--radius);
  transition: border-color 0.15s;
}
.subscribe-form input[type="email"]:focus { border-color: var(--green); }
.subscribe-form input[type="email"]::placeholder { color: var(--muted); }
.subscribe-form .btn { width: 100%; text-align: center; padding: 11px; }
.sub-note { font-size: 0.72rem; color: var(--muted); margin-top: 8px; font-style: italic; }

/* Weather widget */
.weather-widget .weather-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--border);
}
.weather-icon { font-size: 2.5rem; }
.weather-temp {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--ink);
}
.weather-desc {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}
.weather-days {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.weather-day {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}
.weather-day-name { color: var(--muted); font-weight: 600; width: 30px; }
.weather-day-icon { width: 24px; text-align: center; }
.weather-day-temp { color: var(--ink); font-weight: 700; }

/* Calendar widget */
.calendar-widget .cal-month {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--muted);
  margin-bottom: 8px;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-grid .day-header {
  text-align: center;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 2px 0 4px;
}
.cal-day {
  text-align: center;
  font-size: 0.8rem;
  padding: 5px 2px;
  border-radius: 2px;
  cursor: default;
  position: relative;
  color: var(--ink-light);
}
.cal-day.has-event { font-weight: 700; color: var(--green); }
.cal-day.has-event::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  margin: 1px auto 0;
}
.cal-day.today {
  background: var(--green);
  color: #fff;
  font-weight: 700;
  border-radius: 2px;
}
.cal-day.today::after { background: var(--gold); }
.cal-day.empty { color: transparent; }
.cal-day.other-month { color: var(--border); }

/* ═══════════════════════════════
   ARCHIVE PAGE
═══════════════════════════════ */
.archive-hero {
  background: var(--ink);
  padding: 48px 24px 40px;
  text-align: center;
}
.archive-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.archive-hero h1 em { color: var(--gold); }
.archive-hero p { font-size: 0.88rem; color: rgba(255,255,255,0.5); }

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.archive-card {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.15s;
  overflow: hidden;
}
.archive-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.archive-card-top {
  padding: 16px 18px 14px;
  border-bottom: 1px solid var(--border);
}
.archive-card-type {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.archive-card-date {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 2px;
}
.archive-card-label { font-size: 0.75rem; color: var(--muted); }
.archive-card-body { padding: 14px 18px; }
.archive-card-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}
.archive-card-body li {
  font-size: 0.8rem;
  color: var(--ink-light);
  padding-left: 14px;
  position: relative;
}
.archive-card-body li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.archive-card-footer {
  padding: 10px 18px;
  background: var(--cream);
  border-top: 1px dashed var(--border);
  display: flex;
  gap: 8px;
}

/* ═══════════════════════════════
   SUBSCRIBE PAGE
═══════════════════════════════ */
.subscribe-hero {
  background: var(--green-dark);
  padding: 60px 24px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.subscribe-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(212,151,42,0.2) 0%, transparent 65%);
}
.subscribe-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  position: relative;
}
.subscribe-hero h1 em { color: var(--gold); }
.subscribe-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto 28px;
  line-height: 1.7;
  position: relative;
}
.subscribe-big-form {
  background: #fff;
  border: 1px solid var(--border);
  padding: 36px 40px;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.subscribe-big-form h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 6px;
}
.subscribe-big-form .form-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.6;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.form-group input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-group input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,90,61,0.1);
}
.form-check { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 8px; }
.form-check input[type="checkbox"] { margin-top: 3px; accent-color: var(--green); }
.form-check label { font-size: 0.83rem; color: var(--ink-light); cursor: pointer; }
.form-check label strong { color: var(--ink); }
.form-divider {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin: 16px 0;
  position: relative;
}
.form-divider::before, .form-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 38%;
  border-top: 1px dashed var(--border);
}
.form-divider::before { left: 0; }
.form-divider::after { right: 0; }
.form-footer {
  margin-top: 18px;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}
.perks-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
  margin: 36px auto 0;
}
.perk {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,255,255,0.07);
  padding: 14px 18px;
  border-left: 3px solid var(--gold);
}
.perk-icon { font-size: 1.3rem; flex-shrink: 0; }
.perk-text { font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.55; }
.perk-text strong { color: #fff; }

/* ═══════════════════════════════
   ABOUT PAGE
═══════════════════════════════ */
.about-hero {
  background: var(--ink);
  padding: 52px 24px 44px;
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 40px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.05;
}
.about-hero h1 em { color: var(--gold); }
.about-hero p { font-size: 0.92rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.about-avatar-block { text-align: center; }
.about-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin: 0 auto 12px;
  border: 4px solid var(--gold);
}
.about-avatar-name {
  font-family: var(--font-hand);
  font-size: 1.3rem;
  color: var(--gold);
}
.about-avatar-title {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px;
}
.about-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 14px;
}
.about-section p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--ink-light);
  margin-bottom: 14px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.value-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 20px 18px;
  text-align: center;
}
.value-icon { font-size: 1.8rem; margin-bottom: 10px; }
.value-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.value-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.55; }

/* ═══════════════════════════════
   NEXT WEEK CARDS
═══════════════════════════════ */
.next-week-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}
.peek-card {
  background: #f5f0e4;
  padding: 13px 15px;
  border-left: 3px solid var(--border);
}
.peek-cat {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.peek-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink);
}
.peek-desc { font-size: 0.78rem; line-height: 1.5; color: #4a4038; }
.peek-desc a { color: var(--green); font-weight: 700; }

/* ═══════════════════════════════
   SITE FOOTER
═══════════════════════════════ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.45);
  padding: 40px 24px 28px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-links h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 8px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.15s;
}
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.75rem;
}
.footer-legal { color: rgba(255,255,255,0.22); line-height: 1.6; }
.footer-legal-links { display: flex; gap: 16px; }
.footer-legal-links a { color: rgba(255,255,255,0.28); font-size: 0.75rem; }
.footer-territory {
  font-size: 0.72rem;
  font-style: italic;
  color: rgba(255,255,255,0.18);
  margin-top: 14px;
  text-align: center;
}

/* ═══════════════════════════════
   ANIMATIONS
═══════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.5s ease forwards;
}
.fade-up:nth-child(1) { animation-delay: 0.05s; }
.fade-up:nth-child(2) { animation-delay: 0.12s; }
.fade-up:nth-child(3) { animation-delay: 0.19s; }
.fade-up:nth-child(4) { animation-delay: 0.26s; }
.fade-up:nth-child(5) { animation-delay: 0.33s; }
.fade-up:nth-child(6) { animation-delay: 0.40s; }

@keyframes leafSway {
  0%, 100% { transform: rotate(-3deg); }
  50%       { transform: rotate(3deg); }
}
.sway { animation: leafSway 4s ease-in-out infinite; display: inline-block; transform-origin: bottom center; }

/* ═══════════════════════════════
   FILTER BAR
═══════════════════════════════ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.filter-bar-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  align-self: center;
  margin-right: 4px;
}
.filter-btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  background: var(--cream-dark);
  color: var(--ink-light);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.filter-btn:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--cream);
}
.filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

/* ═══════════════════════════════
   EVENT ITEMS (day-by-day)
═══════════════════════════════ */
.day-event {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--border);
}
.day-event:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.day-event[hidden] { display: none; }

.event-meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
  flex-wrap: wrap;
}
.event-emoji {
  font-size: 1rem;
  line-height: 1;
}
.event-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 10px;
  background: var(--cream-mid);
  color: var(--muted);
  border: 1px solid var(--border);
}

.event-quip {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  margin: 2px 0 4px;
  line-height: 1.4;
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
  .sidebar .sidebar-widget:not(.subscribe-widget) { display: none; }
  .archive-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .about-hero { grid-template-columns: 1fr; }
  .about-avatar-block { display: none; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 63px;
    left: 0;
    right: 0;
    background: var(--green-dark);
    padding: 12px 16px;
    border-bottom: 2px solid var(--gold);
    z-index: 200;
  }
  .events-grid { grid-template-columns: 1fr; }
  .next-week-grid { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .subscribe-big-form { padding: 24px 20px; }
  .footer-top { flex-direction: column; }
}
