:root {
  --wide-max: 1440px;
  --standard-max: 1120px;
  --ink: #1f2933;
  --muted: #5f6f7a;
  --line: #d8e0e5;
  --surface: #f6f8f7;
  --surface-strong: #eaf1ef;
  --white: #ffffff;
  --red: #a31f34;
  --red-dark: #7c1727;
  --blue: #2364aa;
  --green: #4d8b57;
  --gold: #b97516;
  --shadow: 0 18px 40px rgba(24, 40, 52, 0.14);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: var(--blue);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0;
  overflow-wrap: anywhere;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  background: var(--white);
  color: var(--ink);
  padding: 0.7rem 1rem;
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 8;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header-inner {
  max-width: var(--wide-max);
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.4rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.brand strong {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.nav-group {
  position: relative;
}

.site-nav a,
.nav-top {
  color: var(--ink);
  text-decoration: none;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-group:hover .nav-top,
.nav-group:focus-within .nav-top {
  background: var(--surface-strong);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  display: none;
  width: max-content;
  min-width: 220px;
  padding: 0.45rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -0.55rem;
  height: 0.55rem;
}

.nav-dropdown a {
  display: block;
  padding: 0.65rem 0.75rem;
  white-space: nowrap;
}

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

.site-search {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 205px;
}

.site-search input {
  width: 130px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.5rem 0.6rem;
  font: inherit;
}

.site-search button {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-strong);
  color: var(--ink);
  padding: 0.5rem 0.65rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 6px;
  padding: 0.55rem 0.75rem;
  font: inherit;
  font-weight: 700;
}

.main-standard,
.main-wide {
  width: min(100% - 2rem, var(--standard-max));
  margin: 0 auto;
}

.main-wide {
  width: min(100% - 2rem, var(--wide-max));
}

.page-intro {
  padding: 4rem 0 1.6rem;
}

.page-intro h1,
.home-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 4rem, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.page-intro p,
.home-hero p {
  max-width: 720px;
  font-size: 1.12rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.home-hero {
  min-height: 540px;
  margin: 1.2rem calc(50% - 50vw) 0;
  padding: 7rem max(1rem, calc((100vw - var(--wide-max)) / 2)) 5rem;
  display: flex;
  align-items: end;
  background-image: linear-gradient(90deg, rgba(20, 30, 38, 0.64), rgba(20, 30, 38, 0.12)), var(--hero-image);
  background-size: cover;
  background-position: center 78%;
  color: var(--white);
}

.home-hero .eyebrow {
  color: #f4c542;
}

.home-hero-content {
  width: min(680px, 100%);
}

.hero-actions,
.button-row,
.inline-links,
.footer-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 7px;
  padding: 0.72rem 1rem;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
}

.button-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.section,
.content-panel {
  margin: 2rem 0;
}

.content-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.2rem, 2.2rem, 2.2rem);
  box-shadow: 0 10px 28px rgba(20, 30, 38, 0.06);
}

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

.section-heading h2,
.content h2,
.content-panel h2 {
  margin: 0 0 0.8rem;
  font-size: 1.65rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-heading h2 {
  margin: 0;
}

.action-grid,
.news-grid,
.rules-grid,
.landing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.card-link,
.news-card,
.news-list-item,
.rules-grid > div,
.landing-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

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

.landing-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-card {
  min-height: 170px;
  padding: 1.1rem;
}

.landing-card h2 {
  margin: 0 0 0.55rem;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.landing-card p {
  margin: 0;
  color: var(--muted);
}

.card-link {
  min-height: 150px;
  padding: 1rem;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-link strong {
  font-size: 1.08rem;
}

.card-link span {
  color: var(--muted);
}

.card-link:hover,
.card-link:focus-visible {
  border-color: var(--blue);
  box-shadow: 0 12px 26px rgba(35, 100, 170, 0.14);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 2rem;
  align-items: center;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--line);
  padding: 1.5rem;
}

.split-section img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.inline-links a,
.footer-quick-links a,
.side-links a {
  color: var(--ink);
  background: var(--surface-strong);
  border-radius: 6px;
  padding: 0.45rem 0.65rem;
  text-decoration: none;
  font-weight: 700;
}

.news-card img,
.news-list-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface-strong);
}

.news-card div,
.news-list-item div {
  padding: 1rem;
}

.news-card h3,
.news-list-item h2 {
  margin: 0.25rem 0 0.4rem;
  line-height: 1.25;
  letter-spacing: 0;
}

time,
.post-date {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.news-list {
  display: grid;
  gap: 1rem;
}

.news-list-item {
  display: grid;
  grid-template-columns: 240px 1fr;
}

.content {
  overflow-wrap: anywhere;
}

.content p,
.content li {
  max-width: 78ch;
}

.content p:has(iframe) {
  max-width: none;
}

.content img {
  border-radius: 8px;
  margin: 1rem 0;
}

.content iframe {
  display: block;
  width: 100%;
  min-height: 620px;
  border: 0;
  border-radius: 8px;
  background: var(--surface-strong);
  margin: 1rem 0;
}

.content ul,
.content ol {
  padding-left: 1.35rem;
}

.content-callout,
.notice {
  border-left: 4px solid var(--blue);
  background: #eef5fb;
  padding: 1rem;
  border-radius: 0 8px 8px 0;
  margin: 1rem 0 1.3rem;
}

.notice-warning {
  border-left-color: var(--gold);
  background: #fff7e8;
}

.reservation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 2rem;
}

.reservation-main > *:first-child,
.reservation-aside > *:first-child {
  margin-top: 0;
}

.steps {
  counter-reset: steps;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.steps li {
  position: relative;
  padding-left: 2.5rem;
}

.steps li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.8rem;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

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

.rules-grid > div {
  padding: 1rem;
  background: var(--surface);
}

.rules-grid h3 {
  margin-top: 0;
}

.responsive-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
}

.responsive-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.small-embed {
  aspect-ratio: 4 / 3;
  min-height: 420px;
}

.calendar-page-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.2rem;
}

.calendar-page-header h2 {
  margin-top: 0;
}

.calendar-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 0.55rem;
  max-width: 560px;
}

.calendar-links a {
  color: var(--ink);
  background: var(--surface-strong);
  border-radius: 6px;
  padding: 0.5rem 0.7rem;
  text-decoration: none;
  font-weight: 800;
}

.calendar-embed {
  min-height: 760px;
  aspect-ratio: 16 / 9;
}

.side-links {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.reservation-form {
  display: grid;
  gap: 1rem;
}

.reservation-form fieldset {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
}

.reservation-form legend {
  font-weight: 800;
  padding: 0 0.3rem;
}

.reservation-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  border: 1px solid #b7c5ce;
  border-radius: 6px;
  padding: 0.7rem;
  font: inherit;
  background: var(--white);
  color: var(--ink);
}

.reservation-form input[type="checkbox"] {
  width: auto;
}

.reservation-form fieldset label:has(input[type="checkbox"]),
.check-row {
  display: flex;
  align-items: start;
  gap: 0.55rem;
}

.search-page-form {
  display: grid;
  gap: 0.6rem;
}

.search-page-form label {
  font-weight: 800;
}

.search-page-form div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
}

.search-page-form input {
  border: 1px solid #b7c5ce;
  border-radius: 6px;
  padding: 0.8rem;
  font: inherit;
}

.search-status {
  margin: 1rem 0;
  color: var(--muted);
  font-weight: 700;
}

.search-results {
  display: grid;
  gap: 0.85rem;
}

.search-result {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: var(--surface);
}

.search-result h2 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.search-result p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.room-photo-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 1.5rem;
  align-items: start;
}

.room-photo-intro h2 {
  margin-top: 0;
}

.room-photo-summary {
  display: grid;
  gap: 0.65rem;
}

.room-photo-summary a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  text-decoration: none;
}

.room-photo-summary span {
  color: var(--muted);
  font-weight: 700;
}

.room-photo-section {
  scroll-margin-top: 96px;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.photo-gallery figure {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

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

.photo-gallery figcaption {
  padding: 0.65rem 0.75rem;
  color: var(--muted);
  font-weight: 700;
}

.event-flyer {
  width: min(100%, 430px);
  margin: 1.5rem auto;
}

.event-flyer img {
  display: block;
  width: 100%;
  margin: 0;
}

.site-footer {
  margin-top: 4rem;
  padding: 3rem 1rem 2rem;
  background: #25313b;
  color: var(--white);
}

.footer-grid {
  width: min(100%, var(--wide-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
}

.site-footer h2 {
  font-size: 1rem;
  margin: 0 0 0.7rem;
  letter-spacing: 0;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer a {
  color: #d8ecff;
}

.site-footer .footer-quick-links a {
  color: var(--ink);
}

.footer-note {
  width: min(100%, var(--wide-max));
  margin: 2rem auto 0;
  color: #c7d2da;
}

@media (max-width: 860px) {
  .site-header-inner {
    min-height: 64px;
    flex-wrap: wrap;
    padding-block: 0.6rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-search {
    order: 3;
    width: 100%;
    min-width: 0;
  }

  .site-search input {
    flex: 1;
    min-width: 0;
    width: auto;
  }

  .brand small {
    display: none;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.25rem);
    padding: 0.8rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a,
  .nav-top {
    padding: 0.8rem;
  }

  .nav-group {
    display: grid;
  }

  .nav-dropdown {
    position: static;
    display: grid;
    width: 100%;
    min-width: 0;
    padding: 0 0 0.35rem 0.75rem;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown a {
    white-space: normal;
    padding: 0.45rem 0.8rem;
  }

  .home-hero {
    min-height: 470px;
    padding-top: 5rem;
  }

  .action-grid,
  .news-grid,
  .rules-grid,
  .landing-grid,
  .calendar-page-header,
  .split-section,
  .reservation-layout,
  .footer-grid,
  .room-photo-intro,
  .news-list-item {
    grid-template-columns: 1fr;
  }

  .photo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .news-list-item img {
    aspect-ratio: 16 / 9;
  }

  .content iframe {
    min-height: 480px;
  }

  .calendar-links {
    justify-content: start;
  }

  .calendar-embed {
    min-height: 560px;
  }
}

@media (max-width: 540px) {
  .page-intro {
    padding-top: 2.4rem;
  }

  .page-intro h1,
  .home-hero h1 {
    font-size: 2.4rem;
  }

  .content-panel {
    padding: 1rem;
  }

  .brand small {
    display: none;
  }

  .search-page-form div {
    grid-template-columns: 1fr;
  }

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