@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Source+Sans+3:wght@400;600;700;800&display=swap');

:root {
  --bg-1: #f7f1e8;
  --bg-2: #efe6d8;
  --paper: #fffdf8;
  --ink: #2f2b27;
  --muted: #655f58;
  --line: #e4dac9;
  --brand: #214b43;
  --brand-deep: #17352f;
  --brand-soft: #d7e7e3;
  --accent: #b88a39;
  --accent-soft: #efddbc;
  --live: #9f2d2d;
  --ok: #1c6a3f;
  --shadow-sm: 0 8px 24px rgba(25, 20, 15, 0.09);
  --shadow-md: 0 18px 45px rgba(20, 17, 13, 0.16);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --max-w: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Source Sans 3', 'Trebuchet MS', sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background:
    radial-gradient(circle at 8% 0%, rgba(184, 138, 57, 0.23), transparent 34%),
    radial-gradient(circle at 88% 15%, rgba(33, 75, 67, 0.15), transparent 40%),
    linear-gradient(180deg, var(--bg-1), var(--bg-2) 45%, var(--bg-1));
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-sm);
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.2px;
}

.container {
  width: min(var(--max-w), 100% - 42px);
  margin-inline: auto;
}

.flex-grow {
  flex: 1;
}

.top-strip {
  background: var(--brand-deep);
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.top-strip-inner {
  width: min(var(--max-w), 100% - 42px);
  margin-inline: auto;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.92rem;
}

.top-strip p {
  opacity: 0.9;
}

.top-strip-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-strip a {
  color: #fff;
  font-weight: 700;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 220;
  background: rgba(255, 251, 244, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(24, 20, 14, 0.09);
  backdrop-filter: blur(10px);
}

.nav-inner {
  width: min(var(--max-w), 100% - 42px);
  margin-inline: auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.nav-brand {
  color: var(--brand-deep);
  display: flex;
  flex-direction: column;
  gap: 1px;
  white-space: nowrap;
}

.brand-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
}

.brand-subtitle {
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #3e3a35;
  font-weight: 700;
  font-size: 0.93rem;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-deep);
  background: #ece3d2;
  text-decoration: none;
}

.nav-links .nav-give {
  background: var(--accent);
  color: #281b06;
}

.nav-links .nav-give:hover,
.nav-links .nav-give.active {
  background: #c79944;
  color: #1f1405;
}

.nav-hamburger {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 5px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-deep);
  margin: 5px 0;
  border-radius: 2px;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 70px 0 64px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(23, 53, 47, 0.93), rgba(33, 75, 67, 0.88)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04) 14px, transparent 14px, transparent 28px);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: stretch;
}

.hero-copy {
  color: #fff;
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 34px 34px;
  box-shadow: var(--shadow-md);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 4px 14px;
  font-size: 0.8rem;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  margin: 16px 0 14px;
}

.hero-copy p {
  max-width: 62ch;
  opacity: 0.95;
  font-size: 1.08rem;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel {
  background: var(--paper);
  border: 1px solid #ebdfcd;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.hero-panel h2 {
  color: var(--brand-deep);
  font-size: 2rem;
}

.hero-panel .panel-lead {
  color: var(--muted);
  margin-top: 6px;
  margin-bottom: 18px;
  font-size: 1rem;
}

.schedule-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.schedule-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  background: #fff;
}

.schedule-name {
  font-weight: 700;
  color: #3c3832;
}

.schedule-time {
  color: var(--brand);
  font-weight: 800;
}

.page-hero {
  padding: 62px 0 46px;
  background:
    linear-gradient(120deg, rgba(23, 53, 47, 0.95), rgba(31, 69, 61, 0.88)),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.035) 12px, transparent 12px, transparent 24px);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 14px 0 8px;
}

.page-hero p {
  max-width: 78ch;
  opacity: 0.95;
  font-size: 1.03rem;
}

.section {
  padding: 56px 0;
}

.section-tight {
  padding: 38px 0;
}

.section-surface {
  background: rgba(255, 253, 248, 0.75);
  border-top: 1px solid #eadfcd;
  border-bottom: 1px solid #eadfcd;
}

.section-title {
  color: var(--brand-deep);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 8px;
}

.section-lead {
  color: var(--muted);
  max-width: 74ch;
  margin-bottom: 26px;
  font-size: 1.02rem;
}

.cards-2,
.cards-3,
.split,
.table-cards,
.photo-grid {
  display: grid;
  gap: 18px;
}

.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.split { grid-template-columns: 1.05fr 0.95fr; }
.table-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.photo-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: var(--paper);
  border: 1px solid #eadfcd;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.card h2,
.card h3 {
  color: var(--brand-deep);
}

.card h3 {
  font-size: 1.55rem;
  margin-bottom: 10px;
}

.card p {
  color: #4a443e;
}

.card p + p {
  margin-top: 10px;
}

.card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #4a443e;
}

.card-list li {
  border-top: 1px dashed #ddcfba;
  padding-top: 10px;
}

.card-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 11px;
}

.link-grid a {
  display: block;
  background: #fff;
  border: 1px solid #e3d7c5;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  color: #3f3a35;
  font-weight: 700;
}

.link-grid a:hover {
  border-color: #d4c3aa;
  background: #fbf6ec;
  text-decoration: none;
}

.info-band {
  border-radius: var(--radius);
  border: 1px solid #ded0b8;
  background: linear-gradient(120deg, #f5ead8, #f9f2e7);
  padding: 18px 20px;
}

.info-band p {
  color: #4a443e;
}

.quote-block {
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: #faf2e3;
  color: #433d34;
  font-size: 1.08rem;
}

.timeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline li {
  background: #fff;
  border: 1px solid #e6d9c7;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}

.timeline strong {
  color: var(--brand-deep);
}

.news-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.news-list a {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-list li {
  border: 1px solid #e8dccb;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  background: #fff;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 8px;
  margin-bottom: 16px;
}

.content-stack > * + * {
  margin-top: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid #d7c6aa;
  padding: 4px 11px;
  background: #fff;
  color: #4a433b;
  font-size: 0.84rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 2px solid transparent;
  min-height: 44px;
  padding: 0 20px;
  font-weight: 800;
  font-size: 0.94rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--accent);
  color: #2a1b05;
}

.btn-primary:hover {
  background: #c89945;
}

.btn-secondary {
  background: var(--brand);
  color: #fff;
}

.btn-secondary:hover {
  background: #275b51;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-ghost {
  border-color: #d9ccb9;
  background: #f8f1e3;
  color: #413c37;
}

.btn-ghost:hover {
  background: #f2e7d3;
}

.btn-live {
  background: var(--ok);
  color: #fff;
}

.btn-live:hover {
  background: #23844d;
}

.btn-live.is-live {
  background: var(--live);
  animation: pulse 1.8s infinite;
}

.btn-live.is-live:hover {
  background: #8e2929;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.badge-live {
  background: #f8dbdb;
  color: #761f1f;
}

.badge-schedule {
  background: #e8eee9;
  color: #23443c;
}

.pulse {
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%,
  100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(140deg, rgba(23, 53, 47, 0.95), rgba(31, 69, 61, 0.92));
  color: #fff;
  padding: 30px;
}

.video-overlay h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  margin-bottom: 8px;
}

.video-overlay p {
  opacity: 0.95;
}

.watch-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.watch-option-card {
  border-radius: var(--radius-sm);
  border: 1px solid #e4d8c6;
  background: #fff;
  padding: 16px;
}

.watch-option-card h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 9, 8, 0.72);
  z-index: 500;
}

.popup-overlay.hidden {
  display: none;
}

.popup-box {
  width: min(470px, calc(100% - 30px));
  background: var(--paper);
  border: 1px solid #e8dac6;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 26px;
}

.popup-box h2 {
  font-size: 2rem;
}

.popup-desc {
  color: var(--muted);
  margin-top: 8px;
  margin-bottom: 14px;
}

.popup-note {
  color: var(--muted);
  margin-top: 12px;
  font-size: 0.9rem;
}

.popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 2px solid #ddceb8;
  background: #fff;
  min-height: 44px;
  padding: 10px 12px;
  font-size: 1rem;
  color: #2f2b27;
  font-family: inherit;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #bd9352;
}

.form-note {
  margin-top: 5px;
  font-size: 0.88rem;
  color: var(--muted);
}

.req {
  color: #8a2525;
}

.alert {
  border-radius: var(--radius-sm);
  border: 1px solid;
  padding: 12px 13px;
  margin-bottom: 12px;
}

.alert-success {
  background: #e7f4ea;
  border-color: #b7ddc0;
  color: #1e5f33;
}

.alert-error {
  background: #faebeb;
  border-color: #e3bebe;
  color: #7a2222;
}

.hidden {
  display: none !important;
}

.site-footer {
  margin-top: auto;
  background: #1f1a16;
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding: 34px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 18px;
}

.site-footer h3,
.site-footer h4 {
  color: #f4dfbb;
  font-size: 1.42rem;
  margin-bottom: 10px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.footer-links a,
.site-footer a {
  color: #f4dfbb;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 18px;
  padding-top: 14px;
  text-align: center;
  font-size: 0.9rem;
}

.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }

@media (max-width: 1080px) {
  .photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .top-strip-inner {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 60px;
    padding: 8px 0;
  }

  .top-strip-right {
    width: 100%;
    justify-content: space-between;
  }

  .nav-hamburger { display: inline-block; }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 300;
    background: #fffcf6;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    padding: 10px 16px 14px;
    gap: 7px;
    justify-content: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-grid,
  .split,
  .cards-3,
  .cards-2,
  .table-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container,
  .nav-inner,
  .top-strip-inner {
    width: min(var(--max-w), 100% - 26px);
  }

  .hero-copy,
  .hero-panel,
  .card,
  .popup-box {
    padding: 18px;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  .brand-title {
    font-size: 1.28rem;
  }

  .brand-subtitle {
    font-size: 0.7rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }
}
