:root {
  --ink: #1b4b6d;
  --ink-soft: #4a6578;
  --paper: #f4f7fa;
  --paper-2: #e4edf4;
  --white: #ffffff;
  --gold: #c9a227;
  --gold-dark: #9d7d1a;
  --ball: var(--gold);
  --ball-dark: var(--gold-dark);
  --line: rgba(27, 75, 109, 0.14);
  --shadow: 0 18px 40px rgba(27, 75, 109, 0.08);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Barlow, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
}

p {
  margin: 0;
}

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.logo img {
  width: 3.4rem;
  height: 3.4rem;
  object-fit: contain;
  background: var(--white);
}

.logo strong {
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.logo span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav a[aria-current="page"] {
  color: var(--ball-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.7rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  border-color: color-mix(in srgb, var(--white) 35%, transparent);
  color: var(--white);
}

.btn-ink {
  background: var(--ink);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  padding: 5rem 0 4rem;
  background: #143652;
  color: var(--white);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(20, 54, 82, 0.82) 12%, rgba(27, 75, 109, 0.45) 48%, rgba(20, 54, 82, 0.18) 100%);
  pointer-events: none;
}

.hero::after {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 58rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ball);
}

.hero h1 {
  font-size: clamp(2.4rem, 6.4vw, 5.2rem);
  max-width: 18ch;
  hyphens: none;
}

.hero-place {
  white-space: nowrap;
}

.hero p {
  margin-top: 1.2rem;
  max-width: 70ch;
  font-size: 1.2rem;
  line-height: 1.45;
  color: color-mix(in srgb, var(--white) 86%, transparent);
}

.hero-copy a:not(.btn) {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

.hero-copy a:not(.btn):hover {
  text-decoration: underline;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-social {
  margin-top: 1.15rem;
}

.hero-social a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

.hero-social a:hover {
  text-decoration: underline;
}

.section {
  padding: 4.5rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.muted,
.lede {
  color: var(--ink-soft);
}

.lede {
  max-width: 58rem;
  font-size: 1.08rem;
}

.publics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.tight-top {
  padding-top: 0;
}

.place h2,
.schedule .card h2 {
  margin: 0.4rem 0 1rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  padding: 1.25rem;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.card p,
.card li {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.schedule {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
}

.schedule table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.schedule th,
.schedule td {
  text-align: left;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.schedule th {
  width: 28%;
  font-family: "Barlow Condensed", Barlow, sans-serif;
}

.place {
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 100%;
}

.place .eyebrow {
  margin-bottom: 0;
}

.place h2 {
  margin: 0;
}

.place p,
.place .place-address {
  color: color-mix(in srgb, var(--white) 88%, transparent);
}

.place a {
  color: var(--gold);
  font-weight: 700;
}

.place-map {
  margin: 0.35rem 0 0.15rem;
  overflow: hidden;
  border-radius: 0.85rem;
  background: #0f2d44;
  min-height: 11.5rem;
  flex: 1;
}

.place-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 11.5rem;
  border: 0;
}

.photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.photos figure {
  margin: 0;
  overflow: hidden;
  border-radius: 1.15rem;
  background: var(--white);
}

.photos img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.photos figcaption {
  padding: 0.75rem 1rem 1rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.event-list {
  display: grid;
  gap: 0.8rem;
}

.event {
  display: grid;
  grid-template-columns: 5.6rem 1fr;
  gap: 1rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 0.9rem 1rem;
}

.event.is-past {
  opacity: 0.55;
}

.event-date {
  display: grid;
  justify-items: center;
  padding-right: 1rem;
  border-right: 1px solid var(--line);
}

.event-day {
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.event-meta {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.event-cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ball-dark);
  margin-bottom: 0.2rem;
}

.event-sub {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem;
}

.chip {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.chip.is-active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.month {
  margin-bottom: 2.4rem;
}

.month h2 {
  margin-bottom: 0.9rem;
  font-size: 1.45rem;
}

.page-hero {
  padding: 3.5rem 0 1rem;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
}

.cta {
  background: var(--ink);
  color: var(--white);
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.cta-text {
  color: color-mix(in srgb, white 72%, transparent);
  margin-top: 0.7rem;
}

.page-lede {
  margin-top: 1rem;
}

.site-footer {
  padding: 2rem 0 2.5rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 860px) {
  .publics,
  .schedule,
  .cta-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0;
    right: 0;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 1rem;
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

  .photos img {
    height: 220px;
  }
}

@media (max-width: 560px) {
  .publics {
    grid-template-columns: 1fr 1fr;
  }

  .event {
    grid-template-columns: 4.4rem 1fr;
  }
}

.page-calendar {
  --max: 1280px;
}

.page-calendar .header-inner {
  padding: 0.5rem 0;
}

.page-calendar .logo img {
  width: 2.7rem;
  height: 2.7rem;
}

.page-calendar .section {
  padding: 0 0 0.8rem;
}

.page-calendar .page-hero h1 {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
}

.page-calendar .eyebrow {
  margin-bottom: 0.2rem;
  font-size: 0.7rem;
}

.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.cal-head .muted {
  font-size: 0.74rem;
  max-width: 28rem;
  text-align: right;
}

.page-calendar .filters {
  margin: 0.45rem 0 0.55rem;
  gap: 0.28rem;
}

.page-calendar .chip {
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
}

.calendar-board {
  column-count: 3;
  column-gap: 1.25rem;
}

.page-calendar .month {
  margin: 0 0 0.7rem;
  break-inside: avoid;
}

.page-calendar .month h2 {
  margin: 0 0 0.12rem;
  padding-bottom: 0.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.cal-row {
  display: grid;
  grid-template-columns: 3.4rem minmax(0, 1fr);
  align-items: baseline;
  gap: 0.2rem 0.45rem;
  padding: 0.08rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 55%, transparent);
  font-size: 0.76rem;
  line-height: 1.2;
}

.cal-row time {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.cal-row p {
  margin: 0;
  min-width: 0;
}

.cal-row strong {
  font-weight: 600;
  font-size: 0.76rem;
}

.cal-row span {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.page-calendar .site-footer {
  padding: 0.7rem 0 0.9rem;
}

@media (max-width: 1100px) {
  .calendar-board {
    column-count: 2;
  }
}

@media (max-width: 720px) {
  .cal-head {
    display: grid;
    align-items: start;
  }

  .cal-head .muted {
    text-align: left;
  }

  .calendar-board {
    column-count: 1;
  }
}

.week,
.venues,
.prices,
.cuts,
.options-grid {
  display: grid;
  gap: 1rem;
}

.week {
  display: block;
  column-count: 3;
  column-gap: 1rem;
}

.week .day-card {
  break-inside: avoid;
  margin-bottom: 1rem;
}

@media (max-width: 1100px) {
  .week {
    column-count: 2;
  }
}

.venues,
.options-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

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

.day-card h2,
.venues h2,
.price-card h2,
.options-grid h2 {
  margin: 0.35rem 0 1rem;
}

.slots {
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0;
}

.slots li {
  display: grid;
  grid-template-columns: 7.4rem minmax(0, 1fr) auto;
  gap: 0.55rem;
  align-items: start;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}

.slots li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.slots time {
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.slots strong {
  display: block;
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.slots span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.badge {
  align-self: start;
  margin-top: 0.15rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge-gold {
  background: var(--gold);
}

.venue-link {
  display: inline-block;
  margin-top: 1.1rem;
  color: var(--gold-dark);
  font-weight: 700;
}

.price-card .amount,
.cut-value {
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.price-card .amount {
  margin: 0.2rem 0 0.55rem;
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  color: var(--ink);
}

.price-card p:last-child {
  margin-top: 0.45rem;
}

.cut-value {
  margin-bottom: 0.45rem;
  font-size: 2.2rem;
  color: var(--gold-dark);
}

.option-list {
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0;
}

.option-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 1rem;
}

.option-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.option-list strong {
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-size: 1.35rem;
  white-space: nowrap;
}

.schedule .section-head {
  margin-bottom: 0.4rem;
  align-items: center;
}

.schedule .section-head h2 {
  margin: 0.4rem 0 0;
}

.useful-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.useful-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 10.5rem;
  text-decoration: none;
  color: inherit;
}

.useful-link:hover {
  border-color: var(--ink);
}

.useful-link h2 {
  margin: 0.3rem 0 0.55rem;
}

.useful-link .link-go {
  color: var(--gold-dark);
  font-weight: 700;
  margin-top: 1rem;
}

@media (max-width: 860px) {
  .week,
  .venues,
  .prices,
  .cuts,
  .options-grid,
  .useful-links {
    grid-template-columns: 1fr;
  }

  .week {
    column-count: 1;
  }

  .slots li {
    grid-template-columns: 1fr auto;
  }

  .slots time {
    grid-column: 1 / -1;
  }
}

@media (min-width: 561px) and (max-width: 860px) {
  .prices,
  .cuts,
  .useful-links {
    grid-template-columns: 1fr 1fr;
  }
}

.legal {
  max-width: 44rem;
}

.card.legal h2 {
  font-size: 1.25rem;
  margin: 1.7rem 0 0.55rem;
}

.card.legal h2:first-child {
  margin-top: 0;
}

.legal ul {
  margin: 0.4rem 0 1rem;
  padding-left: 1.15rem;
}

.legal a {
  color: var(--ink);
  font-weight: 600;
}
