/* ============================================================
   RWTAG — v2 Stylesheet
   Artisanal outdoor event — Playfair Display + Barlow
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700;1,900&family=Barlow+Condensed:wght@600;700&family=Barlow:wght@400;500;600&display=swap');

/* ── Design Tokens ── */
:root {
  --bg:           #f7f3eb;
  --bg-dark:      #142e1d;
  --surface:      #ffffff;
  --surface-warm: #fdfaf4;
  --surface-2:    #ece8df;
  --text:         #1a1208;
  --text-inv:     #f7f3eb;
  --muted:        rgba(26, 18, 8, 0.56);
  --muted-inv:    rgba(247, 243, 235, 0.72);

  --accent:       #1b6b3a;
  --accent-hover: #155430;
  --accent-light: #2eaa5f;
  --accent-gold:  #c07a18;
  --accent-gold-hover: #9c620f;
  --accent-rust:  #b34c2a;

  --topbar-bg:    #142e1d;
  --topbar-h:     96px;

  --radius:       4px;
  --radius-sm:    3px;
  --radius-lg:    8px;
  --radius-card:  2px;

  --shadow:       0 2px 16px rgba(26, 18, 8, 0.10);
  --shadow-md:    0 6px 32px rgba(26, 18, 8, 0.14);
  --shadow-lg:    0 16px 56px rgba(26, 18, 8, 0.20);

  --grad-accent:  rgba(46, 170, 95, 0.55);
  --grad-gold:    rgba(192, 122, 24, 0.50);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--topbar-h) + 16px);
}

body {
  background-color: var(--bg);
  overflow-x: hidden;
  color: var(--text);
  font-family: 'Barlow', ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

img { display: block; max-width: 100%; }
a   { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
ul  { list-style: none; }

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--text);
}

h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

h1 { font-size: clamp(2.6rem, 6.5vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); }

p { color: var(--text); line-height: 1.78; text-align: justify; }
strong { font-weight: 600; }

/* ── Layout ── */
.container {
  width: min(1100px, calc(100% - 40px));
  margin-inline: auto;
}

.content { padding-top: 20px; padding-bottom: 60px; }

/* ── Topbar ── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--topbar-h);
  background: var(--topbar-bg);
  border-bottom: 3px solid var(--accent-gold);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.38);
}

.topbar__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
}

/* ── Brand ── */
.brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--text-inv);
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1.25;
  transition: color 200ms ease;
}

.brand:hover,
.brand.active { color: var(--accent-gold); }

/* ── Nav ── */
.nav { margin-left: auto; }

.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }

.nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.85);
  text-decoration: none;
  border-radius: 3px;
  transition: color 200ms ease, background 200ms ease;
}

.nav__link:hover,
.nav__item.active > .nav__link {
  color: var(--text-inv);
  background: rgba(255, 255, 255, 0.10);
}

/* Dropdown */
.dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #0e2217;
  border: 1px solid rgba(192, 122, 24, 0.30);
  border-top: 2px solid var(--accent-gold);
  padding: 14px 8px 10px;
  min-width: 190px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.dropdown:hover .dropdown__menu,
.dropdown.open .dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown__menu li a {
  display: block;
  padding: 10px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(247, 243, 235, 0.80);
  text-decoration: none;
  transition: color 200ms ease, background 200ms ease;
}

.dropdown__menu li a:hover {
  color: var(--text-inv);
  background: rgba(192, 122, 24, 0.18);
}

/* Mobile hamburger */
.navToggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text-inv);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 200ms ease;
}

.navToggle:hover { background: rgba(255, 255, 255, 0.10); }

/* ── Slideshow mechanics ── */
.slideshow { position: relative; width: 100%; height: 100%; overflow: hidden; }
.slides    { position: relative; width: 100%; height: 100%; }

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 800ms ease;
}

.slide.is-active { opacity: 1; }

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}

.event-slideshow {
  position: relative;
  height: 420px;
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  overflow: hidden;
}

.event-slideshow .slides { height: 100%; }
.event-slideshow .slide img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) { .event-slideshow { height: 340px; } }
@media (max-width: 700px)  { .event-slideshow { height: 260px; } }

/* Slideshow controls */
.slideBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(20, 46, 29, 0.60);
  border: 1px solid rgba(192, 122, 24, 0.50);
  color: var(--text-inv);
  font-size: 1.1rem;
  font-weight: 700;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease, border-color 200ms ease;
}

.slideBtn:hover {
  background: rgba(192, 122, 24, 0.35);
  border-color: var(--accent-gold);
}

.slideBtn.prev { left: 14px; }
.slideBtn.next { right: 14px; }

.dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.40);
  border: none;
  cursor: pointer;
  transition: background 250ms ease, transform 250ms ease;
  padding: 0;
}

.dot.is-active {
  background: var(--accent-gold);
  transform: scale(1.45);
  box-shadow: 0 0 8px rgba(192, 122, 24, 0.65);
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 13px 30px;
  background: var(--accent-gold);
  color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.btn:hover {
  background: var(--accent-gold-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(192, 122, 24, 0.40);
}

.btn-green {
  background: var(--accent);
  color: #fff;
}

.btn-green:hover {
  background: var(--accent-hover);
  color: #fff;
  box-shadow: 0 8px 28px rgba(27, 107, 58, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--text-inv);
  border: 2px solid rgba(247, 243, 235, 0.70);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(247, 243, 235, 0.12);
  color: var(--text-inv);
  border-color: var(--text-inv);
  transform: none;
  box-shadow: none;
}

/* ── Cards ── */
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(26, 18, 8, 0.08);
  box-shadow: var(--shadow);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card img { width: 100%; height: 200px; object-fit: cover; }
.card__body { padding: 20px; }
.card__body h3 { margin-bottom: 8px; }
.card__body p  { color: var(--muted); font-size: 0.93rem; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

/* ── Info card ── */
.info-card {
  background: var(--surface);
  border: 1px solid rgba(26, 18, 8, 0.09);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

/* ── Forms ── */
.site-form { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--surface);
  border: 1px solid rgba(26, 18, 8, 0.22);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 0.97rem;
  padding: 11px 14px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(27, 107, 58, 0.12);
}

.form-group textarea { resize: vertical; min-height: 140px; line-height: 1.65; }
.form-hidden { display: none !important; }
.form-submit { align-self: flex-start; }

.form-success {
  display: none;
  padding: 18px 24px;
  background: rgba(27, 107, 58, 0.08);
  border: 1px solid rgba(27, 107, 58, 0.30);
  border-radius: var(--radius-sm);
  color: var(--accent);
  font-size: 0.97rem;
  line-height: 1.6;
  margin-top: 12px;
}

/* ── Section nav ── */
.section-nav {
  width: 100%;
  padding: 12px 20px;
  background: var(--topbar-bg);
  border-bottom: 2px solid var(--accent-gold);
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  position: sticky;
  top: var(--topbar-h);
  z-index: 999;
}

.section-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.80);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 3px;
  transition: color 200ms, background 200ms;
  white-space: nowrap;
}

.section-nav a:hover { color: var(--text-inv); background: rgba(192, 122, 24, 0.20); }
.section-nav .sep    { color: rgba(247, 243, 235, 0.28); user-select: none; }

/* ── Panel list ── */
.panel-list { display: grid; grid-template-columns: 1fr; gap: 0; }

.panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 52px 20px;
  max-width: 1100px;
  margin-inline: auto;
  width: 100%;
  box-sizing: border-box;
}

.panel:last-child { padding-bottom: 80px; }

.panel p { color: var(--text); line-height: 1.75; font-size: 0.97rem; margin: 0; }
.panel p a { color: var(--accent); }
.panel p a:hover { color: var(--accent-hover); }

.panel-body { display: grid; gap: 14px; }

/* Panel headings with gradient lines */
.panel-list h2 {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  color: var(--text);
}

.panel-list .panel:nth-of-type(odd) h2 { text-align: right; justify-content: flex-end; }
.panel-list .panel:nth-of-type(odd) h2::after  { content: ''; flex: 1; height: 2px; background: linear-gradient(to right, var(--grad-accent), transparent); order: 1; }
.panel-list .panel:nth-of-type(even) h2::before { content: ''; flex: 1; height: 2px; background: linear-gradient(to left, var(--grad-accent), transparent); order: -1; }

/* Panel grid */
.panel-grid         { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; }
.panel-grid-reverse { grid-template-columns: 1fr 280px; }
.panel-image        { flex-shrink: 0; }
.panel-content      { color: var(--text); line-height: 1.7; }
.panel-content p    { color: var(--text); }

.image-frame {
  width: 280px;
  height: 280px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-frame img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.image-frame:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.image-frame:hover img { transform: scale(1.04); }

/* Panel slideshow */
.panel-slideshow {
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--surface-2);
}

.panel-slideshow .slides { height: 100%; }
.panel-slideshow .slide img { width: 100%; height: 100%; object-fit: contain; object-position: 50% 50%; border-radius: var(--radius-lg); }
.panel-slideshow .slide img.clickable-image { cursor: zoom-in; transition: filter 200ms; }
.panel-slideshow .slide img.clickable-image:hover { filter: brightness(1.06); }

@media (max-width: 900px) { .panel-slideshow { height: 240px; } .panel { padding: 32px 20px; } }
@media (max-width: 768px) {
  .panel-grid, .panel-grid-reverse { grid-template-columns: 1fr; gap: 20px; }
  .panel-grid-reverse .panel-image { order: -1; }
  .image-frame { width: 100%; height: auto; aspect-ratio: 1; border-radius: var(--radius-lg); }
  .image-frame img { height: 100%; }
}

/* ── Lightbox ── */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.95); backdrop-filter: blur(6px); z-index: 2000; display: flex; align-items: center; justify-content: center; animation: lbFadeIn 200ms ease; }
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; display: flex; align-items: center; justify-content: center; }
.lightbox-content img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius-lg); box-shadow: 0 24px 64px rgba(0,0,0,0.7); }
.lightbox-close { position: absolute; top: -52px; right: 0; background: none; border: none; color: #fff; font-size: 48px; cursor: pointer; padding: 0; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; transition: transform 200ms; outline: none; }
.lightbox-close:hover { transform: scale(1.12); }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.30); color: #fff; font-size: 26px; font-weight: 700; cursor: pointer; padding: 12px 16px; border-radius: 6px; transition: all 200ms; z-index: 2001; outline: none; }
.lightbox-prev { left: -64px; }
.lightbox-next { right: -64px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(192, 122, 24, 0.30); border-color: var(--accent-gold); }
@media (max-width: 640px) { .lightbox-prev { left: -36px; padding: 8px 10px; } .lightbox-next { right: -36px; padding: 8px 10px; } .lightbox-close { top: -42px; font-size: 36px; } }

/* ── Modal ── */
.modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); backdrop-filter: blur(6px); z-index: 3000; align-items: center; justify-content: center; animation: lbFadeIn 200ms; }
.modal.active { display: flex; }
.modal-content { position: relative; max-width: 90vw; max-height: 90vh; }
.modal-content img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.modal-close { position: absolute; top: -48px; right: 0; background: none; border: none; color: #fff; font-size: 44px; cursor: pointer; line-height: 1; transition: transform 200ms; }
.modal-close:hover { transform: scale(1.12); }

/* ── Blog ── */
.blog-post { margin-top: calc(var(--topbar-h) + 32px); border-left: 4px solid var(--accent-gold); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; padding: 28px; background: var(--surface); box-shadow: var(--shadow); }
.blog-post header { margin-bottom: 20px; }
.blog-post .meta { margin-top: 6px; color: var(--muted); font-size: 0.9rem; }
.blog-post figure { margin-bottom: 24px; }
.blog-post figcaption { color: var(--muted); font-size: 0.88rem; margin-top: 8px; text-align: center; }
.blog-post h2 { margin-top: 28px; margin-bottom: 10px; }
.blog-post h3 { margin-top: 24px; margin-bottom: 8px; }
.blog-post p  { margin-top: 14px; }
.blog-post ul { list-style: disc; padding-left: 24px; margin-top: 12px; }
.blog-post ul li { margin-bottom: 6px; color: var(--text); line-height: 1.7; }

/* ── Information page ── */
.info-section { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 56px; }
@media (min-width: 640px) {
  .info-section { grid-template-columns: 280px 1fr; align-items: start; }
  .info-section.reverse { grid-template-columns: 1fr 280px; }
  .info-section.reverse .info-img { order: 2; }
  .info-section.reverse .info-text { order: 1; }
}
.info-img { border-radius: var(--radius-lg); overflow: hidden; }
.info-img img { width: 100%; height: 280px; object-fit: cover; display: block; transition: transform 350ms ease; }
.info-img:hover img { transform: scale(1.06); }

.info-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--text);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent-gold);
  margin-bottom: 16px;
}

.info-text p { color: var(--text); line-height: 1.75; }
.info-text p + p { margin-top: 12px; }
.info-text a { color: var(--accent); }
.info-text a:hover { color: var(--accent-hover); }

.information-nav {
  max-width: 1100px;
  margin: 20px 0 0;
  padding: 12px 20px 10px;
  background: var(--topbar-bg);
  border-bottom: 2px solid var(--accent-gold);
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  position: sticky;
  top: var(--topbar-h);
  z-index: 999;
}

.information-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.80);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 3px;
  transition: color 200ms, background 200ms;
  white-space: nowrap;
}

.information-nav a:hover { color: var(--text-inv); background: rgba(192, 122, 24, 0.20); }
.information-nav .sep    { color: rgba(247, 243, 235, 0.28); }

/* ── Business table ── */
.biz-table { width: 100%; border-collapse: collapse; color: var(--text); font-size: 0.93rem; margin-top: 20px; margin-bottom: 16px; }
.biz-table thead tr { background: rgba(27, 107, 58, 0.08); border-bottom: 2px solid var(--accent-gold); }
.biz-table th { padding: 12px 14px; text-align: left; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.10em; text-transform: uppercase; color: var(--accent); }
.biz-table td { padding: 11px 14px; }
.biz-table tbody tr { border-bottom: 1px solid rgba(26, 18, 8, 0.07); transition: background 200ms ease; }
.biz-table tbody tr:hover { background: rgba(27, 107, 58, 0.05); }
.biz-table a { color: var(--accent); }
.biz-table a:hover { color: var(--accent-hover); }

/* ── Social / Follow ── */
.follow-container { padding-top: calc(var(--topbar-h) + 48px); text-align: center; }
.follow-title { margin-bottom: 10px; }
.follow-sub { color: var(--muted); font-size: 1rem; margin-bottom: 36px; }
.social-actions { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.social-btn { display: inline-flex; align-items: center; gap: 10px; padding: 13px 28px; border-radius: 50px; font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 0.95rem; text-decoration: none; color: #fff; transition: transform 200ms, filter 200ms; }
.social-btn svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }
.social-btn:hover { transform: translateY(-4px); filter: brightness(1.1); }
.social-btn.facebook { background: #1877F2; box-shadow: 0 6px 24px rgba(24, 119, 242, 0.35); }
.social-btn.instagram { background: linear-gradient(45deg, #E1306C, #F77737, #FCAF45); box-shadow: 0 6px 24px rgba(247, 119, 55, 0.35); }

/* ── Calendar ── */
.page-title { margin-top: calc(var(--topbar-h) + 32px); margin-bottom: 24px; }
.calendar-mobile { display: none; }
@media (max-width: 700px) {
  .calendar-wrap { display: none; }
  .calendar-mobile { display: flex; flex-direction: column; align-items: center; gap: 24px; padding: 40px 24px; background: var(--surface); border: 1px solid rgba(26, 18, 8, 0.12); border-radius: var(--radius-lg); text-align: center; }
  .calendar-mobile__note { color: var(--muted); font-size: 0.95rem; line-height: 1.7; max-width: 360px; }
  .calendar-mobile__btn { display: inline-block; padding: 12px 28px; background: transparent; color: var(--accent); border: 2px solid var(--accent); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; border-radius: var(--radius-sm); text-decoration: none; transition: background 200ms; }
  .calendar-mobile__btn:hover { background: rgba(27, 107, 58, 0.07); }
}
.calendar-wrap { position: relative; padding-bottom: 72%; height: 0; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); background: rgba(0,0,0,0.03); border: 1px solid rgba(26, 18, 8, 0.10); }
.calendar-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ── Report figure ── */
.report-figure { margin: 28px auto; width: 100%; max-width: 580px; text-align: center; }
.report-figure img { width: 100%; border-radius: var(--radius-lg); cursor: zoom-in; transition: filter 200ms, transform 200ms; }
.report-figure img:hover { filter: brightness(1.06); transform: scale(1.008); }
.report-figure figcaption { color: var(--muted); font-size: 0.88rem; margin-top: 8px; }

/* ── Page intro ── */
.page-intro { padding-top: calc(var(--topbar-h) + 36px); padding-bottom: 12px; }
.page-intro h1 { margin-bottom: 12px; }
.page-intro .lead { color: var(--muted); font-size: 1rem; line-height: 1.8; max-width: 780px; }
.page-intro .lead a { color: var(--accent); }
.page-intro .lead a:hover { color: var(--accent-hover); }

.simple-page { padding-top: calc(var(--topbar-h) + 48px); }
.simple-page h1 { margin-bottom: 16px; }

/* ── About slideshow ── */
.about-slideshow { width: 100%; height: 720px; border-radius: var(--radius-lg); overflow: hidden; position: relative; margin-bottom: 32px; }
@media (max-width: 700px) { .about-slideshow { height: 480px; } }

/* ── Announcement Banner ── */
.announcement-banner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  align-items: center;
  padding-top: var(--topbar-h);
  background: var(--surface-warm);
  border-bottom: 2px solid var(--accent-gold);
  min-height: 160px;
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: -140px auto 0;
  z-index: 100;
}

.announcement-banner::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(to bottom, var(--accent-gold), transparent); }
.announcement-banner__img-wrap { width: 100%; height: 100%; overflow: hidden; min-height: 240px; }
.announcement-banner__img { width: 100%; height: 100%; object-fit: cover; }
.announcement-banner__content { padding: 28px 36px; display: flex; flex-direction: column; gap: 12px; }
.announcement-banner__eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-gold); }
.announcement-banner__title { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; color: var(--text); line-height: 1.12; margin: 0; }
.announcement-banner__desc { font-size: 0.98rem; color: var(--muted); line-height: 1.7; margin: 0; }
.announcement-banner__cta { display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px; background: var(--accent-gold); color: #fff; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.10em; text-transform: uppercase; border-radius: var(--radius-sm); text-decoration: none; transition: background 200ms, transform 200ms, box-shadow 200ms; width: fit-content; }
.announcement-banner__cta:hover { background: var(--accent-gold-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192, 122, 24, 0.38); }
.announcement-banner__cta .cta-arrow { width: 16px; height: 16px; }
@media (max-width: 900px) {
  .announcement-banner { grid-template-columns: 1fr; min-height: auto; }
  .announcement-banner__img-wrap { order: -1; min-height: 180px; }
  .announcement-banner__content { padding: 24px; gap: 10px; }
}

/* ── Footer ── */
.footer {
  background: var(--topbar-bg);
  padding: 56px 0;
  border-top: 3px solid var(--accent-gold);
}

.footer .container { margin-inline: auto; }

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 56px;
  justify-content: flex-end;
  align-items: center;
}

.footer-section { text-align: center; }
.footer-section p { color: rgba(247, 243, 235, 0.62); font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 0.05em; }
.footer-section strong { color: var(--text-inv); text-transform: uppercase; font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem; letter-spacing: 0.14em; }

.footer-social { display: flex; gap: 12px; justify-content: center; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 6px; background: transparent; border: 1.5px solid rgba(192, 122, 24, 0.60); color: rgba(247, 243, 235, 0.75); transition: background 200ms, transform 200ms, border-color 200ms, color 200ms; }
.footer-social a:hover { transform: translateY(-3px); background: rgba(192, 122, 24, 0.20); border-color: var(--accent-gold); color: var(--text-inv); }
.footer-social a svg { width: 22px; height: 22px; }
.footer-social a.facebook svg { fill: currentColor; }
.footer-social a.instagram svg { fill: none; stroke: currentColor; stroke-width: 2; }
.footer-social a.instagram svg circle:last-child { fill: currentColor; stroke: none; }

.footer-newsletter {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 56px;
  padding-right: 56px;
}

.footer-newsletter::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); height: 64px; width: 1px; background: rgba(192, 122, 24, 0.35); }
.footer-newsletter p { color: rgba(247, 243, 235, 0.62); font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 0.05em; }
.footer-newsletter strong { color: var(--text-inv); text-transform: uppercase; font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem; letter-spacing: 0.14em; }
.footer-newsletter .btn { background: transparent; color: rgba(247, 243, 235, 0.80); border: 1.5px solid rgba(247, 243, 235, 0.40); box-shadow: none; }
.footer-newsletter .btn:hover { background: rgba(247, 243, 235, 0.10); color: var(--text-inv); border-color: var(--text-inv); transform: none; box-shadow: none; }

@media (max-width: 600px) {
  .footer .container { margin-right: auto; }
  .footer-content { justify-content: center; }
  .footer-newsletter { padding-left: 0; padding-right: 0; }
  .footer-newsletter::before { display: none; }
}

/* ── Mobile nav ── */
@media (max-width: 860px) {
  .navToggle { display: flex; flex-shrink: 0; }
  .brand { flex-shrink: 1; min-width: 0; white-space: normal; font-size: 0.88rem; line-height: 1.2; }

  .nav {
    display: none;
    position: fixed;
    top: var(--topbar-h);
    left: 0; right: 0;
    background: #0e2217;
    border-top: 2px solid var(--accent-gold);
    padding: 12px 0 20px;
    z-index: 999;
    max-height: calc(100dvh - var(--topbar-h));
    overflow-y: auto;
  }

  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { font-size: 0.92rem; padding: 14px 20px; border-radius: 0; width: 100%; justify-content: space-between; color: rgba(247, 243, 235, 0.88); }
  .nav__link::after { content: '▾'; font-size: 0.75rem; }
  .dropdown { position: static; }
  .dropdown__menu { position: static; opacity: 1; pointer-events: auto; transform: none !important; display: none; background: rgba(0,0,0,0.22); border: none; border-top: 1px solid rgba(255,255,255,0.07); padding: 4px 0; box-shadow: none; min-width: 0; }
  .dropdown.open .dropdown__menu { display: block; }
  .dropdown__menu li a { padding: 10px 36px; border-radius: 0; font-size: 0.9rem; }
}

/* ── Scroll Reveal ── */
.reveal-up, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal-up    { transform: translateY(36px); }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }
.reveal-scale { transform: scale(0.93); }
.reveal-up.revealed, .reveal-left.revealed, .reveal-right.revealed, .reveal-scale.revealed { opacity: 1; transform: none; }
