:root {
  --ink: #151715;
  --charcoal: #252a26;
  --olive: #395146;
  --jade: #0f6b5f;
  --gold: #bd9251;
  --copper: #a85f43;
  --ivory: #f5f0e7;
  --paper: #fbf8f1;
  --mist: #dfe8e4;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(21, 23, 21, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 18px 42px;
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  color: var(--ink);
  background: rgba(251, 248, 241, 0.93);
  box-shadow: 0 18px 50px rgba(21, 23, 21, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 4px;
  color: currentColor;
  font-size: 12px;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: currentColor;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 3px 0;
  background: currentColor;
  transition: transform 180ms ease;
}

body.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

body.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px 42px 34px;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.06)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=2200&q=84") center / cover;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 18, 15, 0.82) 0%, rgba(13, 18, 15, 0.52) 44%, rgba(13, 18, 15, 0.12) 100%),
    linear-gradient(180deg, rgba(13, 18, 15, 0.2) 0%, rgba(13, 18, 15, 0.14) 58%, rgba(13, 18, 15, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  padding-bottom: 84px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero h1,
.intro-grid h2,
.section-heading h2,
.signature-content h2,
.inquiry-copy h2,
.membership-copy h2,
.site-footer h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1;
}

.hero h1 {
  font-size: 76px;
}

.hero-copy {
  width: min(640px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 22px;
  line-height: 1.45;
}

.hero-actions,
.footer-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  margin-right: 9px;
  fill: currentColor;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(12px);
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(920px, calc(100vw - 84px));
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-panel div {
  min-height: 86px;
  padding: 22px 28px 18px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
}

.hero-panel strong {
  font-size: 15px;
}

.intro-section,
.experience-section,
.facilities-section,
.calendar-section,
.membership-section,
.inquiry-section,
.faq-section {
  padding: 104px 42px;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1fr);
  gap: 70px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.intro-section .section-kicker,
.experience-section .section-kicker,
.facilities-section .section-kicker,
.calendar-section .section-kicker,
.membership-section .section-kicker,
.inquiry-copy .section-kicker,
.faq-section .section-kicker,
.signature-content .section-kicker,
.site-footer .section-kicker {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
  color: var(--jade);
}

.intro-grid h2,
.section-heading h2,
.signature-content h2,
.inquiry-copy h2,
.membership-copy h2,
.site-footer h2 {
  font-size: 48px;
}

.intro-grid p,
.calendar-copy p,
.signature-content p,
.section-heading.split > p,
.inquiry-copy p,
.membership-copy p {
  margin: 0;
  color: rgba(21, 23, 21, 0.68);
  font-size: 18px;
  line-height: 1.75;
}

.experience-section {
  background: var(--charcoal);
  color: var(--white);
}

.section-heading {
  max-width: 1180px;
  margin: 0 auto 42px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(300px, 0.75fr);
  gap: 64px;
  align-items: end;
}

.experience-section .section-heading h2 {
  max-width: 760px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-card {
  overflow: hidden;
  background: #f6f0e6;
  color: var(--ink);
  border-radius: 8px;
}

.feature-card img {
  aspect-ratio: 1.16 / 1;
  object-fit: cover;
}

.feature-card div {
  padding: 28px;
}

.feature-card span,
.member-card span,
.schedule-topline span {
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-card h3,
.schedule-card h3,
.member-card h3 {
  margin: 10px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.1;
}

.feature-card p,
.schedule-card p,
.member-card p {
  margin: 0;
  color: rgba(21, 23, 21, 0.68);
  font-size: 15px;
  line-height: 1.65;
}

.signature-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  min-height: 660px;
  background: var(--ivory);
}

.signature-media {
  min-height: 520px;
  background:
    linear-gradient(rgba(21, 23, 21, 0.05), rgba(21, 23, 21, 0.05)),
    url("https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=1400&q=84") center / cover;
}

.signature-content {
  align-self: center;
  padding: 80px 9vw;
}

.signature-content .section-kicker {
  width: auto;
}

.signature-content p {
  margin-top: 24px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 42px;
  background: rgba(21, 23, 21, 0.12);
  border: 1px solid rgba(21, 23, 21, 0.12);
}

.metric-row div {
  min-height: 120px;
  padding: 22px;
  background: var(--paper);
}

.metric-row strong,
.metric-row span {
  display: block;
}

.metric-row strong {
  color: var(--jade);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 500;
}

.metric-row span {
  margin-top: 6px;
  color: rgba(21, 23, 21, 0.62);
  font-size: 13px;
  line-height: 1.4;
}

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

.facility-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(320px, 0.84fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.facility-showcase {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
}

.facility-showcase img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.facility-showcase::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 23, 21, 0.02), rgba(21, 23, 21, 0.76));
  content: "";
}

.facility-note {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 28px;
  left: 28px;
  color: var(--white);
}

.facility-note span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.facility-note strong {
  display: block;
  max-width: 540px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.1;
}

.facility-list {
  display: grid;
  gap: 12px;
}

.facility-list article {
  display: grid;
  min-height: 132px;
  align-content: center;
  padding: 26px;
  border: 1px solid rgba(21, 23, 21, 0.1);
  border-radius: 8px;
  background: var(--white);
}

.facility-list span {
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
}

.facility-list h3 {
  margin: 8px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
}

.facility-list p {
  margin: 0;
  color: rgba(21, 23, 21, 0.66);
  font-size: 15px;
  line-height: 1.55;
}

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

.calendar-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(340px, 1fr);
  gap: 64px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto;
}

.calendar-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.tab {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(21, 23, 21, 0.15);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.tab.is-active {
  color: var(--white);
  background: var(--olive);
  border-color: var(--olive);
}

.schedule-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(15, 20, 17, 0.1), rgba(15, 20, 17, 0.85)),
    url("https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&w=1200&q=84") center / cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: background-image 220ms ease;
}

.schedule-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.schedule-topline span {
  color: var(--gold);
}

.schedule-topline strong {
  font-size: 13px;
}

.schedule-card h3 {
  max-width: 520px;
  margin-top: 18px;
  color: var(--white);
  font-size: 42px;
}

.schedule-card p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.events-board {
  max-width: 1180px;
  margin: 40px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(21, 23, 21, 0.12);
}

.events-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.events-topline h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

.event-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(21, 23, 21, 0.16);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.filter-button.is-active {
  color: var(--white);
  background: var(--jade);
  border-color: var(--jade);
}

.event-list {
  display: grid;
  gap: 10px;
}

.event-card {
  display: grid;
  grid-template-columns: 128px 1fr 52px;
  gap: 22px;
  align-items: center;
  min-height: 128px;
  padding: 22px;
  border: 1px solid rgba(21, 23, 21, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  transition: opacity 160ms ease, transform 160ms ease;
}

.event-card.is-hidden {
  display: none;
}

.event-card time {
  display: grid;
  min-height: 84px;
  place-items: center;
  padding: 12px;
  color: var(--white);
  background: var(--charcoal);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.event-card span {
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.event-card h4 {
  margin: 7px 0 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.event-card p {
  margin: 0;
  color: rgba(21, 23, 21, 0.66);
  line-height: 1.55;
}

.icon-button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(21, 23, 21, 0.16);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transform: rotate(180deg);
}

.icon-button:hover,
.icon-button:focus-visible {
  color: var(--white);
  background: var(--jade);
  transform: translateY(-2px);
}

.membership-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(380px, 1fr);
  gap: 64px;
  align-items: start;
  background: var(--mist);
}

.membership-copy {
  max-width: 540px;
  margin-left: auto;
}

.membership-copy .section-kicker {
  width: auto;
}

.membership-copy p {
  margin-top: 24px;
}

.membership-grid {
  display: grid;
  gap: 14px;
  max-width: 620px;
}

.member-card {
  min-height: 170px;
  padding: 30px;
  border-radius: 8px;
}

.member-card.dark {
  color: var(--white);
  background: var(--charcoal);
}

.member-card.light {
  background: var(--paper);
}

.member-card.accent {
  color: var(--white);
  background: var(--jade);
}

.member-card.dark p,
.member-card.accent p {
  color: rgba(255, 255, 255, 0.72);
}

.member-card.dark span,
.member-card.accent span {
  color: var(--gold);
}

.plan-button {
  min-height: 40px;
  margin-top: 22px;
  padding: 0 15px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.member-card.light .plan-button:hover,
.member-card.light .plan-button:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.member-card.dark .plan-button:hover,
.member-card.dark .plan-button:focus-visible,
.member-card.accent .plan-button:hover,
.member-card.accent .plan-button:focus-visible {
  color: var(--ink);
  background: var(--gold);
}

.inquiry-section {
  background: var(--charcoal);
}

.inquiry-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(360px, 1fr);
  gap: 64px;
  max-width: 1180px;
  margin: 0 auto;
  color: var(--white);
}

.inquiry-copy {
  align-self: center;
}

.inquiry-copy .section-kicker {
  width: auto;
  color: var(--gold);
}

.inquiry-copy p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 24px;
}

.contact-strip {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-strip a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
}

.inquiry-form label.full,
.inquiry-form .full,
.form-status {
  grid-column: 1 / -1;
}

.inquiry-form span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  color: var(--white);
  background: rgba(10, 14, 12, 0.44);
  font: inherit;
  padding: 0 14px;
}

.inquiry-form select option {
  color: var(--ink);
}

.inquiry-form textarea {
  min-height: 116px;
  padding-top: 13px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: 2px solid rgba(189, 146, 81, 0.72);
  outline-offset: 2px;
}

.inquiry-form .button.primary {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.5;
}

.faq-section {
  background: var(--ivory);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(21, 23, 21, 0.1);
  border-radius: 8px;
  background: var(--paper);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  min-height: 74px;
  padding: 0 24px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  text-align: left;
}

.faq-item svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 180ms ease;
}

.faq-item button[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.faq-item p {
  display: none;
  max-width: 780px;
  margin: -4px 24px 24px;
  color: rgba(21, 23, 21, 0.68);
  line-height: 1.7;
}

.faq-item.is-open p {
  display: block;
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 42px;
  padding: 78px 42px;
  color: var(--white);
  background: var(--ink);
}

.site-footer .section-kicker {
  width: auto;
  color: var(--gold);
}

.site-footer h2 {
  max-width: 680px;
  font-size: 44px;
}

.site-footer .button.primary {
  background: var(--gold);
}

.text-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header {
    padding: 16px 24px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 14px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 10px;
    border-bottom: 1px solid rgba(21, 23, 21, 0.1);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    padding: 130px 24px 28px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-copy {
    font-size: 19px;
  }

  .hero-panel {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    min-height: auto;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  .intro-section,
  .experience-section,
  .facilities-section,
  .calendar-section,
  .membership-section,
  .inquiry-section,
  .faq-section {
    padding: 78px 24px;
  }

  .intro-grid,
  .section-heading.split,
  .facility-layout,
  .calendar-layout,
  .inquiry-panel,
  .membership-section,
  .signature-section {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 24px;
  }

  .intro-grid h2,
  .section-heading h2,
  .signature-content h2,
  .inquiry-copy h2,
  .membership-copy h2,
  .site-footer h2 {
    font-size: 38px;
  }

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

  .signature-content {
    padding: 64px 24px;
  }

  .facility-showcase,
  .facility-showcase img {
    min-height: 430px;
  }

  .calendar-layout,
  .section-heading.split,
  .inquiry-panel,
  .membership-section {
    gap: 34px;
  }

  .events-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-card {
    grid-template-columns: 112px 1fr 52px;
  }

  .membership-copy {
    max-width: none;
    margin-left: 0;
  }

  .site-footer {
    display: block;
    padding: 64px 24px;
  }
}

@media (max-width: 620px) {
  .brand small {
    display: none;
  }

  .hero {
    min-height: 94vh;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy,
  .intro-grid p,
  .calendar-copy p,
  .section-heading.split > p,
  .signature-content p,
  .inquiry-copy p,
  .membership-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .footer-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .text-link {
    width: 100%;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .facility-showcase,
  .facility-showcase img {
    min-height: 390px;
  }

  .facility-note {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .facility-note strong {
    font-size: 28px;
  }

  .facility-list article {
    min-height: 0;
    padding: 22px;
  }

  .schedule-card {
    min-height: 420px;
    padding: 28px;
  }

  .schedule-topline {
    display: block;
  }

  .schedule-topline strong {
    display: block;
    margin-top: 8px;
  }

  .schedule-card h3 {
    font-size: 34px;
  }

  .events-topline h3 {
    font-size: 26px;
  }

  .event-card {
    grid-template-columns: 1fr 48px;
    gap: 16px;
    padding: 18px;
  }

  .event-card time {
    grid-column: 1 / -1;
    min-height: 54px;
    justify-items: start;
    padding: 0 14px;
  }

  .member-card {
    padding: 26px;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .faq-item button {
    min-height: 68px;
    padding: 0 18px;
    font-size: 20px;
  }

  .faq-item p {
    margin: -2px 18px 22px;
  }
}
