:root {
  --ink: #1a2e22;
  --forest: #1e3d2f;
  --forest-deep: #12261c;
  --gold: #c4a35a;
  --gold-soft: #d4bc7a;
  --paper: #ffffff;
  --mist: #f4f6f4;
  --line: #e2e8e3;
  --muted: #5c6b61;
  --danger: #9b2c2c;
  --ok: #1f6b3a;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(18, 38, 28, 0.08);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --shell: min(1180px, calc(100% - 2.5rem));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    linear-gradient(180deg, #fbfcfb 0%, var(--mist) 48%, #eef2ef 100%);
  min-height: 100vh;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
[hidden] { display: none !important; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
}

.page-shell {
  width: var(--shell);
  margin: 0 auto;
  padding-bottom: 0;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 252, 251, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}
.brand-crest {
  width: 48px;
  height: 56px;
  flex-shrink: 0;
}
.brand-text {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  color: var(--forest-deep);
  letter-spacing: 0.01em;
}
.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 1.15rem;
}
.site-nav a {
  position: relative;
  padding: 0.35rem 0;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
}
.site-nav a:hover { color: var(--forest); }
.site-nav a.is-active {
  color: var(--forest-deep);
  font-weight: 600;
}
.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.site-nav .btn { margin-left: 0.25rem; }
.site-nav a.btn-primary {
  color: #fff !important;
  background: var(--forest);
  border: 1px solid var(--forest);
  padding: 0.5rem 1.05rem;
  box-shadow: 0 6px 16px rgba(30, 61, 47, 0.22);
}
.site-nav a.btn-primary:hover {
  color: #fff !important;
  background: var(--forest-deep);
  border-color: var(--forest-deep);
}
.site-nav a.btn-primary::after { display: none !important; }
.site-nav a.btn-ghost {
  color: var(--forest-deep);
  background: #fff;
  border: 1px solid var(--line);
}
.site-nav a.btn-ghost:hover {
  background: rgba(30, 61, 47, 0.06);
}
.site-nav a.btn-ghost::after { display: none !important; }
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}
.btn-primary:hover { background: var(--forest-deep); }
.btn-outline {
  background: #fff;
  color: var(--forest);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: rgba(196, 163, 90, 0.08);
}
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-danger { background: var(--danger); color: #fff; border-color: var(--danger); }
.btn-small { padding: 0.45rem 0.9rem; font-size: 0.86rem; }

.flash {
  margin: 0.75rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-weight: 600;
}
.flash-success { background: #dff3e5; color: var(--ok); }
.flash-error { background: #f8e0de; color: var(--danger); }
.flash-info { background: #eef2ef; color: var(--ink); }

/* Hero banner — full rectangle background image */
.hero-banner {
  position: relative;
  min-height: min(68vh, 560px);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  margin: 0.5rem 0 2.2rem;
  color: #f7faf7;
  background:
    linear-gradient(105deg, rgba(12, 28, 20, 0.82) 0%, rgba(12, 28, 20, 0.45) 48%, rgba(12, 28, 20, 0.28) 100%),
    var(--hero-image, linear-gradient(145deg, #2f6b4a, #12261c));
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 50px rgba(18, 38, 28, 0.18);
  animation: rise 0.8s ease both;
}
.hero-banner-inner {
  position: relative;
  z-index: 1;
  padding: clamp(1.6rem, 4vw, 3rem);
  max-width: 38rem;
}
.hero-banner h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  color: #fff;
  margin-bottom: 0.85rem;
  max-width: 12ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}
.hero-banner p {
  color: rgba(247, 250, 247, 0.9);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  max-width: 34rem;
  margin: 0 0 1.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn-on-dark {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(196, 163, 90, 0.85);
}
.btn-on-dark:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Home triad */
.home-triad {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 1.1rem;
  margin: 0.5rem 0 2.5rem;
  animation: rise 0.7s ease both;
  animation-delay: 0.18s;
}
.welcome-block h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  color: var(--forest-deep);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.65rem;
  align-items: start;
  color: var(--ink);
  font-size: 0.98rem;
}
.check-list .tick {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--gold);
}

.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem 1.2rem 1.35rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.info-card-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.info-card-head h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest-deep);
}
.info-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(30, 61, 47, 0.08);
  color: var(--forest);
}
.info-card .list-plain { flex: 1; }
.info-card .btn { margin-top: 1rem; align-self: flex-start; }
.results-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.85rem;
  color: var(--muted);
  padding: 1rem 0.5rem;
}
.laurel {
  width: 88px;
  opacity: 0.45;
  color: var(--gold);
}

/* Sections shared */
.section {
  margin: 2.2rem 0 2.8rem;
  animation: rise 0.7s ease both;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1rem;
}
.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--forest-deep);
}
.muted { color: var(--muted); }
.prose {
  font-size: 1.05rem;
  line-height: 1.7;
}
.prose p { margin: 0 0 1rem; }
.prose h1, .prose h2 {
  font-family: var(--font-display);
  margin: 1.2rem 0 0.6rem;
  color: var(--forest-deep);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.stat {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1;
  color: var(--forest);
}
.list-plain { list-style: none; padding: 0; margin: 0; }
.list-plain li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.list-plain li:last-child { border-bottom: 0; }
.meta { font-size: 0.9rem; color: var(--muted); }

.form-stack { display: grid; gap: 0.85rem; }
label { display: grid; gap: 0.35rem; font-weight: 600; font-size: 0.92rem; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
}
textarea { min-height: 120px; resize: vertical; }
.auth-card {
  width: min(460px, 100%);
  margin: 2rem auto 3rem;
}

/* Calendar */
.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.4rem;
}
.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}
.cal-dow {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  padding: 0.3rem;
}
.cal-day {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  cursor: pointer;
  font-weight: 700;
}
.cal-day.has-play {
  background: rgba(30, 61, 47, 0.1);
  border-color: rgba(30, 61, 47, 0.28);
}
.cal-day.is-full {
  background: rgba(196, 163, 90, 0.18);
  border-color: rgba(196, 163, 90, 0.45);
}
.cal-day.is-full .dot { background: #8a6b2a; }
.cal-day.selected { outline: 2px solid var(--forest); }
.cal-day .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.participant {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.play-detail-bar {
  display: flex;
  align-items: center;
  gap: 0.65rem 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}
.play-detail-date {
  margin: 0;
  font-size: 1.25rem;
  white-space: nowrap;
}
.play-detail-count {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
}
.play-detail-action {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.play-detail-note { margin: 0.45rem 0 0; }
.play-detail-list { margin-top: 0.75rem; max-height: 280px; overflow: auto; }
.cal-multi {
  position: absolute;
  bottom: 3px;
  right: 4px;
  min-width: 14px;
  height: 14px;
  padding: 0 3px;
  border-radius: 999px;
  background: var(--gold);
  color: #1a2e22;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 14px;
  text-align: center;
}
.cal-day { position: relative; }
.play-accordion {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.85rem;
}
.play-acc-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.play-acc-item.is-open {
  border-color: rgba(30, 61, 47, 0.28);
  box-shadow: 0 8px 22px rgba(18, 38, 28, 0.08);
}
.play-acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.8rem;
  border: 0;
  background: rgba(30, 61, 47, 0.04);
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: background 0.2s ease;
}
.play-acc-item.is-open .play-acc-head {
  background: rgba(30, 61, 47, 0.08);
}
.play-acc-head:hover {
  background: rgba(30, 61, 47, 0.09);
}
.play-acc-title {
  font-weight: 700;
  color: var(--forest-deep);
  flex-shrink: 0;
  min-width: 4.5rem;
}
.play-acc-meta {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(30, 61, 47, 0.08);
  border: 1px solid var(--line);
  color: var(--forest-deep);
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
}
.play-acc-count {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}
.play-acc-count-label {
  color: var(--muted);
  font-weight: 500;
}
.play-acc-action { margin-left: auto; }
.play-acc-chevron {
  color: var(--muted);
  transition: transform 0.28s ease;
}
.play-acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
  border-top: 1px solid transparent;
}
.play-acc-body > * {
  overflow: hidden;
  min-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  padding: 0 0.8rem;
  transition: opacity 0.22s ease, transform 0.28s ease, padding 0.28s ease;
}
.play-acc-item.is-open .play-acc-body {
  grid-template-rows: 1fr;
  border-top-color: var(--line);
}
.play-acc-item.is-open .play-acc-body > * {
  opacity: 1;
  transform: translateY(0);
  padding: 0.55rem 0.8rem 0.85rem;
}
.play-acc-item.is-open .play-acc-chevron { transform: rotate(180deg); }
.contact { font-size: 0.9rem; color: var(--muted); }

.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td {
  text-align: left;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.admin-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
.admin-nav { display: grid; gap: 0.35rem; align-content: start; }
.admin-nav a {
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  font-weight: 600;
}
.admin-nav a.is-active,
.admin-nav a:hover { background: rgba(30, 61, 47, 0.08); }
.admin-wrap { margin-bottom: 3rem; }
.admin-wrap h1 { margin-bottom: 0.4rem; color: var(--forest-deep); }
.inline-actions { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.form-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 0.55rem;
  border-top: 1px solid var(--line);
  margin-top: 0.25rem;
}
.toolbar-check {
  display: inline-flex !important;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  white-space: nowrap;
}
.toolbar-check input { width: auto; }
.toolbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: auto;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.1rem;
}
.contact-box {
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(30, 61, 47, 0.05);
  border: 1px solid var(--line);
}
.signup-box {
  padding: 1.1rem 1.15rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
}
.signup-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(30, 61, 47, 0.1);
  color: var(--forest);
}
.signup-badge.is-full {
  background: rgba(196, 163, 90, 0.2);
  color: #8a6b2a;
}
.signup-badge.is-closed {
  background: rgba(19, 32, 24, 0.08);
  color: var(--muted);
}
.progress-track {
  height: 8px;
  border-radius: 999px;
  background: #e7ece8;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--forest), #3f7a55);
  transition: width 0.35s ease;
}
@media (max-width: 700px) {
  .detail-grid { grid-template-columns: 1fr; }
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.9rem;
}
.gallery-grid-home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.gallery-card {
  margin: 0;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  position: relative;
}
.gallery-thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  color: inherit;
  text-align: left;
}
.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-card:hover img,
.gallery-thumb:hover img { transform: scale(1.04); }
.gallery-card figcaption,
.gallery-card-meta {
  display: block;
  padding: 0.75rem 0.85rem 0.9rem;
  font-size: 0.92rem;
}
.gallery-card-meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  color: #fff;
  background: linear-gradient(transparent, rgba(18, 38, 28, 0.82));
  padding: 2.2rem 0.85rem 0.75rem;
  font-weight: 600;
  pointer-events: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 4.5rem 3rem;
  box-sizing: border-box;
}
.lightbox[hidden] { display: none !important; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 12, 0.88);
}
.lightbox-stage {
  position: relative;
  z-index: 1;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  max-width: 100%;
  max-height: 100%;
  min-width: 0;
  min-height: 0;
}
.lightbox-stage img {
  display: block;
  max-width: min(1100px, calc(100vw - 9rem));
  max-height: calc(100vh - 7.5rem);
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  background: #111;
}
.lightbox-stage figcaption {
  color: rgba(255,255,255,0.9);
  text-align: center;
  font-size: 0.95rem;
  max-width: min(40rem, 90vw);
  flex-shrink: 0;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  border: 0;
  background: rgba(255,255,255,0.12);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.lightbox-counter {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0.85rem;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}
body.lightbox-open { overflow: hidden; }

@media (max-width: 700px) {
  .lightbox { padding: 3rem 0.75rem 2.75rem; }
  .lightbox-prev { left: 0.4rem; }
  .lightbox-next { right: 0.4rem; }
  .lightbox-stage img {
    max-width: calc(100vw - 1.5rem);
    max-height: calc(100vh - 8rem);
  }
}
.gallery-empty {
  border: 2px dashed #cfd8d2;
  border-radius: 18px;
  background: #f7f9f7;
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  color: var(--muted);
}
.gallery-empty svg {
  width: 42px;
  height: 42px;
  margin: 0 auto 0.75rem;
  opacity: 0.55;
  color: var(--forest);
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  background: var(--forest-deep);
  color: rgba(255,255,255,0.82);
}
.footer-inner {
  width: var(--shell);
  margin: 0 auto;
  padding: 1.6rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.footer-brand strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}
.footer-brand span { font-size: 0.9rem; }
.footer-copy { font-size: 0.9rem; }

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes softPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.015); }
}

@media (max-width: 980px) {
  .home-triad,
  .grid-2,
  .admin-layout { grid-template-columns: 1fr; }
  .hero-banner { min-height: 420px; }
  .gallery-grid-home { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 72px; right: 0; left: 0;
    background: rgba(251, 252, 251, 0.98);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 0.9rem 1rem;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-header { position: relative; }
  .site-nav a.is-active::after { display: none; }
  .site-nav a.is-active { color: var(--gold); }
}
