:root {
  --bg: #f4efe6;
  --bg-alt: #ebe3d6;
  --ink: #1a2332;
  --muted: #5c6675;
  --card: #fffdf8;
  --line: #d7cdb8;
  --accent: #9b2c2c;
  --accent-deep: #7a1f1f;
  --navy: #1a2332;
  --gold: #b0893d;
  --shadow: 0 18px 40px rgba(26, 35, 50, 0.08);
  --radius: 18px;
  --font: "Source Sans 3", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(176, 137, 61, 0.12), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(155, 44, 44, 0.08), transparent 50%),
    var(--bg);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); }
a:hover { color: var(--accent-deep); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: white;
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}
.narrow { width: min(640px, calc(100% - 2rem)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(244, 239, 230, 0.88);
  border-bottom: 1px solid rgba(215, 205, 184, 0.7);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.25rem;
  gap: 1rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
}
.logo-mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--navy), #2c3b52);
  color: #f4efe6;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}
.logo-text { font-family: var(--display); font-size: 1.15rem; }
.logo .tld { color: var(--accent); font-weight: 700; }

.nav-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a[aria-current="page"],
.nav-links a:hover { color: var(--accent); }

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--card);
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1rem;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }

.hero {
  padding: 4.5rem 0 3rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
}
.eyebrow, .section-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 0.75rem;
}
h1, h2, h3 { font-family: var(--display); line-height: 1.15; margin: 0 0 0.85rem; }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 38rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0 1.25rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.8rem 1.25rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-deep); color: #fff; }
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }

.pill-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}
.pill-row li {
  background: rgba(26, 35, 50, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-card {
  background: linear-gradient(160deg, #1a2332, #2a3a52);
  color: #f4efe6;
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}
.hero-card-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: #d6b56a;
  margin: 0 0 0.75rem;
}
.hero-card-names {
  font-family: var(--display);
  font-size: 1.45rem;
  margin: 0 0 0.85rem;
}
.hero-card-note { margin: 0; color: rgba(244, 239, 230, 0.78); }

.band { padding: 3.5rem 0; }
.band-alt { background: rgba(235, 227, 214, 0.55); border-block: 1px solid var(--line); }
.section-head { max-width: 40rem; margin-bottom: 2rem; }
.section-head p { color: var(--muted); }

.item-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.item-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 140px 1fr;
}
.item-media {
  min-height: 160px;
  background: linear-gradient(145deg, #d9cbb3, #c3b49a);
  overflow: hidden;
}
.item-media img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
}
.item-media.placeholder {
  display: grid;
  place-items: center;
  color: rgba(26, 35, 50, 0.35);
  font-family: var(--display);
  font-size: 2rem;
}
.item-body { padding: 1.15rem 1.2rem 1.25rem; }
.item-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}
.item-body p { margin: 0 0 0.85rem; color: var(--muted); }
.text-link {
  background: none;
  border: 0;
  padding: 0;
  color: var(--accent);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.text-link:hover { color: var(--accent-deep); }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.about-points {
  display: grid;
  gap: 1rem;
}
.about-points > div {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.1rem;
}
.about-points strong { display: block; margin-bottom: 0.25rem; }
.about-points p { margin: 0; color: var(--muted); }

.cta-band {
  padding: 2.75rem 0 3.5rem;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(120deg, rgba(155, 44, 44, 0.08), rgba(176, 137, 61, 0.12));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: 1.5rem 1.75rem;
}
.cta-inner p { margin: 0; color: var(--muted); }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.muted { color: var(--muted); }

.page { padding: 3rem 0 4rem; }
.offer-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}
.offer-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
}
.offer-form input,
.offer-form textarea {
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  background: #fff;
  color: var(--ink);
}
.offer-form input:focus,
.offer-form textarea:focus {
  outline: 2px solid rgba(155, 44, 44, 0.35);
  border-color: var(--accent);
}

.item-dialog {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(520px, calc(100vw - 2rem));
}
.item-dialog::backdrop { background: rgba(26, 35, 50, 0.55); }
.dialog-panel {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}
.dialog-body { color: var(--muted); margin: 0.75rem 0 1.25rem; }
.dialog-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

@media (max-width: 980px) {
  .item-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .hero-grid,
  .about-grid,
  .item-grid { grid-template-columns: 1fr; }
  .item-card { grid-template-columns: 1fr; }
  .item-media { min-height: 180px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav-links {
    display: none;
    position: absolute;
    right: 1rem;
    top: 4.4rem;
    flex-direction: column;
    align-items: stretch;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.75rem;
    min-width: 180px;
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
}


/* —— Image-forward cards & gallery enhancements —— */
.item-grid--forward {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.item-card--forward {
  grid-template-columns: 1fr;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.item-card--forward:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(26, 35, 50, 0.12);
}
.item-media--click {
  position: relative;
  display: block;
  width: 100%;
  min-height: 220px;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  background: linear-gradient(145deg, #d9cbb3, #c3b49a);
  overflow: hidden;
}
.item-media--click img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.item-card--forward:hover .item-media--click img {
  transform: scale(1.04);
}
.item-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 4px 12px rgba(26, 35, 50, 0.2);
}
.badge-baseball {
  background: var(--navy);
}
.badge-ranger {
  background: var(--accent);
}
.item-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}
.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.88rem;
}
.section-more {
  margin: 2rem 0 0;
  text-align: center;
}

/* Filters */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin: 1.5rem 0 2rem;
}
.filter-chip {
  font: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  cursor: pointer;
}
.filter-chip:hover {
  border-color: var(--ink);
}
.filter-chip.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #f4efe6;
}
.filter-count {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}
.section-head--inline {
  margin-bottom: 1rem;
}
.band-tight { padding: 2rem 0 0; }
.about-points--row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Lightbox dialog */
.item-dialog--lightbox {
  max-width: min(720px, calc(100vw - 1.5rem));
  width: 100%;
}
.dialog-panel--lightbox {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.dialog-panel--lightbox header,
.dialog-panel--lightbox .dialog-body,
.dialog-panel--lightbox .dialog-actions {
  padding-inline: 1.35rem;
}
.dialog-panel--lightbox header { padding-top: 1.1rem; }
.dialog-panel--lightbox .dialog-actions {
  padding-bottom: 1.35rem;
}
.dialog-media {
  background: #1a2332;
  max-height: min(52vh, 420px);
  overflow: hidden;
}
.dialog-media img {
  width: 100%;
  max-height: min(52vh, 420px);
  object-fit: contain;
  background: #1a2332;
}
.dialog-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 0;
  background: rgba(244, 239, 230, 0.92);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.dialog-close:hover { background: #fff; }
.offer-cta {
  margin-top: 0.75rem !important;
  color: var(--ink) !important;
}

@media (max-width: 980px) {
  .item-grid--forward { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-points--row { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .item-grid--forward { grid-template-columns: 1fr; }
  .filter-count { margin-left: 0; width: 100%; }
  .item-media--click img { height: 240px; }
}
