:root {
  /* Palette pulled from the official club logo: target red, horn brown, ink black, white */
  --ink: #170f0c;
  --ink-soft: #4a3c33;
  --paper: #ffffff;
  --paper-alt: #f8f2e9;
  --line: #e7dccb;
  --brass: #b3231f;
  --brass-dark: #841814;
  --olive: #5c3c22;
  --olive-dark: #3c2712;
  --max-w: 1180px;
  --radius: 10px;
  --shadow: 0 8px 24px rgba(15, 20, 23, 0.08);
  color-scheme: light;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: "Georgia", "Iowan Old Style", serif;
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--olive-dark);
}

h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: var(--brass-dark); }
a:hover { color: var(--brass); }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 20, 23, 0.94);
  backdrop-filter: blur(6px);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-family: Georgia, serif;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  flex: none;
}

.brand-text .name {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-text .tag {
  display: block;
  font-family: system-ui, sans-serif;
  font-size: 0.7rem;
  color: #cfcabf;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  color: #e9e6df;
  text-decoration: none;
  font-size: 0.92rem;
  padding: 10px 12px;
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
  position: relative;
}

.nav a:hover, .nav a[aria-current="page"] {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.nav .dropdown { position: relative; }

.nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 6px;
  min-width: 220px;
  box-shadow: var(--shadow);
}

.nav .dropdown:hover .dropdown-menu,
.nav .dropdown:focus-within .dropdown-menu {
  display: block;
}

.nav .dropdown-menu a {
  display: block;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  color: #fff;
  padding: 8px 10px;
  font-size: 1.1rem;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    display: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .nav.open { display: flex; }
  .nav .dropdown-menu { position: static; display: none; border: none; padding-left: 12px; }
  .nav .dropdown.open .dropdown-menu { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  padding: 90px 0 70px;
  background: linear-gradient(160deg, var(--olive-dark), var(--ink) 70%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(179,35,31,0.35), transparent 55%);
}

.hero .container { position: relative; }

.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--brass);
  font-weight: 700;
  margin-bottom: 14px;
}

.hero h1 { color: #fff; max-width: 820px; }

.hero p.lead {
  color: #d9d5cb;
  max-width: 640px;
  font-size: 1.08rem;
}

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

/* Homepage hero: full-bleed white logo panel beside the dark content panel */
.hero.hero-split {
  padding: 0;
  background: none;
  display: grid;
  grid-template-columns: minmax(260px, 40%) 1fr;
  align-items: stretch;
}

.hero.hero-split::after { content: none; }

.hero-logo-panel {
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.hero-logo-panel img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
}

.hero-content-panel {
  position: relative;
  background: linear-gradient(160deg, var(--olive-dark), var(--ink) 70%);
  padding: 30px 48px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(179,35,31,0.35), transparent 55%);
  pointer-events: none;
}

.hero-content-panel > * {
  position: relative;
  z-index: 1;
}

.hero-content-panel h1 {
  max-width: 100%;
  margin-bottom: 0.4em;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
}
.hero-content-panel p.lead {
  max-width: 100%;
  margin-bottom: 0;
  font-size: 0.98rem;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .hero.hero-split { grid-template-columns: 1fr; }
  .hero-logo-panel { padding: 24px; }
  .hero-logo-panel img { max-width: 260px; }
  .hero-content-panel { padding: 40px 24px; text-align: center; align-items: center; }
  .hero-content-panel h1, .hero-content-panel p.lead { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-content-panel .stat-row { width: 100%; }
}

.page-hero {
  padding: 56px 0 44px;
}

.page-hero p.lead { color: #d9d5cb; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: 2px solid transparent;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--brass);
  color: #fff;
}
.btn-primary:hover { background: #d33a34; color: #fff; }

.btn-ghost {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.btn-ghost:hover { border-color: #fff; color: #fff; }

.btn-outline {
  border-color: var(--olive);
  color: var(--olive-dark);
}
.btn-outline:hover { background: var(--olive); color: #fff; }

/* ---------- Sections ---------- */
section.section {
  padding: 64px 0;
}

section.alt {
  background: var(--paper-alt);
}

.section-head {
  max-width: 700px;
  margin-bottom: 36px;
}

.section-head.centered {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  color: var(--brass-dark);
  font-weight: 700;
  margin-bottom: 10px;
}

/* ---------- Cards / grids ---------- */
.grid {
  display: grid;
  gap: 24px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 900px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card .card-body { padding: 20px 22px 24px; }

.card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }

.card h3 { margin-bottom: 8px; }

.card .card-link {
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

@media (max-width: 480px) {
  .stat-row { gap: 6px; }
  .stat { padding: 12px 4px; }
  .stat .num { font-size: 1.4rem; }
  .stat .label { font-size: 0.68rem; }
}

.stat {
  text-align: center;
  padding: 14px 10px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
}

.stat .num {
  font-family: Georgia, serif;
  font-size: 1.7rem;
  color: var(--brass);
  font-weight: 700;
}

.stat .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #cfcabf;
}

/* photo strip */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

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

.photo-strip img {
  border-radius: 8px;
  aspect-ratio: 1/1;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* ---------- Article / content pages ---------- */
.article {
  max-width: 780px;
}

.article img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 20px 0;
}

.img-center {
  display: block;
  margin: 20px auto;
  max-width: 480px;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.img-center.img-center-lg {
  max-width: 900px;
}

.img-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1040px;
  margin: 20px auto;
}

.img-pair img {
  margin: 0;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (max-width: 700px) {
  .img-pair { grid-template-columns: 1fr; }
}

.article ol, .article ul { color: var(--ink-soft); padding-left: 1.3em; }
.article li { margin-bottom: 0.4em; }

.callout {
  border-left: 4px solid var(--olive);
  background: var(--paper-alt);
  padding: 18px 20px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}

.schedule-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.schedule-card h3 {
  color: var(--brass-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.schedule-card dl { margin: 0; }
.schedule-card dt { font-weight: 700; color: var(--ink); margin-top: 10px; }
.schedule-card dd { margin: 2px 0 0; color: var(--ink-soft); }

.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 20px 0;
}
.video-responsive iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
}

.event-cta {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--paper-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin: 20px 0;
}

.event-cta-icon {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1877f2;
  color: #fff;
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-cta h3 { margin-bottom: 6px; }
.event-cta p { margin-bottom: 14px; }

@media (max-width: 560px) {
  .event-cta { flex-direction: column; align-items: flex-start; }
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-size: 0.85rem;
  color: #cfcabf;
}
.breadcrumb a { color: #cfcabf; text-decoration: none; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  display: block;
  background: var(--ink);
  aspect-ratio: 4/3;
}

.gallery-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-tile:hover img { transform: scale(1.06); }

.gallery-tile .tile-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
  color: #fff;
}

.tile-caption .t { font-weight: 700; font-family: Georgia, serif; }
.tile-caption .c { font-size: 0.78rem; color: #d9d5cb; }

.masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.masonry a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.masonry img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.masonry a:hover img { transform: scale(1.04); }

.empty-state {
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  color: var(--ink-soft);
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(10,12,10,0.92);
  display: none; align-items: center; justify-content: center;
  z-index: 100; padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%; max-height: 88vh; border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.22); }
.lightbox-count {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  color: #d9d5cb; font-size: 0.85rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #cfcabf;
  padding: 48px 0 24px;
  margin-top: 40px;
}

.site-footer .grid { grid-template-columns: 2fr 1fr 1fr; margin-bottom: 30px; }

@media (max-width: 760px) {
  .site-footer .grid { grid-template-columns: 1fr; }
}

.site-footer h4 { color: #fff; font-size: 0.95rem; }

.site-footer a {
  color: #cfcabf;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
}
.site-footer a:hover { color: #fff; }

.site-footer .bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.social-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff !important;
  margin-bottom: 0 !important;
}
.social-badge:hover { background: rgba(255,255,255,0.12); }

/* utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.small { font-size: 0.85rem; color: var(--ink-soft); }
