:root {
  --teal: #145967;
  --teal-deep: #0d4652;
  --ink: #0f1725;
  --muted: #65707c;
  --paper: #ffffff;
  --tint: #f2f7f7;
  --line: #dce6e7;
  --shadow: 0 18px 50px rgba(15, 23, 37, .08);
  --radius: 24px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id], #top { scroll-margin-top: 96px; }
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(20,89,103,.35);
  outline-offset: 4px;
}
.text-link {
  text-decoration: underline;
  text-decoration-color: rgba(20,89,103,.35);
  text-underline-offset: 3px;
}
.text-link:hover { color: var(--teal); }
.wrap { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220,230,231,.8);
}
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 235px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 15px; font-weight: 700; }
.site-nav a { position: relative; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--teal); transition: .2s ease; }
.site-nav a:hover::after { right: 0; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; border-radius: 8px; }
.menu-toggle span { width: 24px; height: 2px; display: block; background: var(--ink); margin: 5px 0; }

.hero {
  min-height: 620px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f4f9f9 0%, #ffffff 48%, #edf6f7 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 70px; padding: 86px 0; position: relative; z-index: 2; }
.eyebrow, .section-kicker { display: inline-block; color: var(--teal); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; margin-bottom: 18px; }
.hero h1 { font-size: clamp(54px, 7vw, 92px); line-height: .95; margin: 0 0 28px; letter-spacing: -.055em; max-width: 780px; }
.hero p { margin: 0; max-width: 650px; font-size: 19px; color: var(--muted); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 24px; border-radius: 999px; font-weight: 800; font-size: 14px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--teal); color: #fff; box-shadow: 0 12px 30px rgba(20,89,103,.22); }
.button-primary:hover { background: var(--teal-deep); }
.button-ghost { border: 1px solid var(--line); background: rgba(255,255,255,.75); }
.hero-mark { display: grid; place-items: center; }
.hero-mark::before { content: ""; width: min(410px, 90vw); aspect-ratio: 1 / 1; grid-area: 1 / 1; }
.hero-mark img { grid-area: 1 / 1; width: min(410px, 90vw); max-width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: contain; border-radius: 50%; filter: drop-shadow(0 30px 45px rgba(15,23,37,.14)); }
.hero-shape { position: absolute; border-radius: 999px; opacity: .4; filter: blur(2px); }
.hero-shape-one { width: 360px; height: 360px; background: #d8ecee; right: -120px; top: -80px; }
.hero-shape-two { width: 220px; height: 220px; background: #e8f2f3; left: -90px; bottom: -70px; }

.section { padding: 92px 0; }
.section-tint { background: var(--tint); }
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
h2 { font-size: clamp(36px, 4vw, 58px); line-height: 1.04; letter-spacing: -.04em; margin: 0; }
.lead-copy { font-size: 19px; color: var(--muted); max-width: 720px; }
.lead-copy p { margin: 0 0 18px; }
.section-head { margin-bottom: 36px; }
.section-head.compact { max-width: 720px; }
.section-head p { color: var(--muted); font-size: 18px; margin: 18px 0 0; }

.membership-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.membership-note { margin: 16px 0 0; color: var(--muted); font-size: 14px; }

.cards { display: grid; gap: 20px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: 0 10px 28px rgba(15,23,37,.03); }
.card-icon { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--teal); color: #fff; font-size: 12px; font-weight: 900; margin-bottom: 50px; }
.card h3 { margin: 0 0 10px; font-size: 23px; letter-spacing: -.025em; }
.card p { margin: 0; color: var(--muted); }

.schedule-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 20px; }
.schedule-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; background: #fff; min-height: 320px; display: flex; flex-direction: column; justify-content: space-between; }
.schedule-card.featured { background: var(--teal); color: #fff; border-color: var(--teal); }
.schedule-card.soft { background: #e6eff0; border-color: #d2e1e3; }
.pill { display: inline-block; border-radius: 999px; padding: 7px 12px; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; background: var(--teal); color: #fff; }
.featured .pill { background: rgba(255,255,255,.16); color: #fff; }
.soft .pill { background: rgba(20,89,103,.10); color: var(--teal); }
.schedule-card h3 { font-size: 28px; margin: 14px 0 0; }
.schedule-card ul { list-style: none; padding: 0; margin: 28px 0 0; }
.schedule-card li { display: flex; justify-content: space-between; gap: 30px; padding: 13px 0; border-top: 1px solid var(--line); }
.featured li { border-color: rgba(255,255,255,.22); }
.soft li { border-color: #cddadd; }
.schedule-note { color: var(--muted); margin: 30px 0 0; }
.booking-note {
  font-size: 13px;
  letter-spacing: .01em;
}
.featured .booking-note {
  color: rgba(255,255,255,.72);
}
.booking-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.featured .booking-note a { color: #fff; }
.soft .booking-note {
  color: var(--muted);
}


.section-dark { background: var(--ink); color: #fff; }
.section-kicker.light { color: #7ed0d9; }
.hours-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.hours-grid > div:first-child p { color: #b5bfca; max-width: 480px; font-size: 17px; }
.hours-list { border-top: 1px solid rgba(255,255,255,.16); }
.hours-list div { display: flex; justify-content: space-between; gap: 30px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.hours-list span { color: #b5bfca; }
.hours-list strong { font-size: 18px; }


.pt-section { background: #fff; padding-top: 20px; }
.pt-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
  padding: 44px 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f7fbfb 0%, #eef5f5 100%);
}
.pt-panel h2 { font-size: clamp(32px, 3.4vw, 48px); }
.pt-copy p { margin: 0 0 24px; color: var(--muted); font-size: 18px; max-width: 650px; }

.location-photo { margin: 34px 0 0; }
.location-photo img { width: 100%; max-width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; object-position: center center; border-radius: 20px; border: 1px solid var(--line); box-shadow: 0 12px 32px rgba(15,23,37,.08); }
.location-photo figcaption { margin-top: 10px; color: var(--muted); font-size: 13px; }

.contact-section { background: #fff; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.contact-intro { color: var(--muted); font-size: 18px; max-width: 520px; }
.contact-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.contact-row { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-row span { color: var(--muted); font-size: 14px; }
.contact-row strong { font-size: 17px; }
.contact-actions { margin-top: 26px; }
.social-links { display: flex; align-items: center; gap: 10px; margin-top: 18px; }
.social-link { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; display: inline-grid; place-items: center; color: var(--teal); background: #fff; transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease; }
.social-link:hover { transform: translateY(-2px); border-color: var(--teal); background: var(--teal); color: #fff; }
.social-link svg { width: 20px; height: 20px; fill: currentColor; }
.social-link svg rect, .social-link svg circle { fill: none; stroke: currentColor; stroke-width: 1.8; }
.social-link svg .social-dot { fill: currentColor; stroke: none; }
.social-link:first-child svg { fill: currentColor; stroke: none; }
.small-note { color: var(--muted); font-size: 12px; margin: 14px 0 0; }

.site-footer { border-top: 1px solid var(--line); padding: 30px 0 24px; }
.footer-main { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer-main img { width: 180px; height: auto; }
.footer-main p { color: var(--muted); font-size: 13px; }
.footer-legal {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.footer-legal p {
  margin: 0;
  max-width: 980px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .site-nav { position: absolute; left: 20px; right: 20px; top: 72px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 12px; }
  .site-nav a::after { display: none; }
  .hero { min-height: auto; }
  .hero-grid, .split, .hours-grid, .contact-grid, .pt-panel { grid-template-columns: 1fr; gap: 42px; }
  .pt-panel { padding: 34px 30px; }
  .hero-grid { padding: 68px 0 74px; }
  .hero-mark { order: -1; justify-content: start; }
  .hero-mark::before { width: 170px; }
  .hero-mark img { width: 170px; }
  .cards.three, .schedule-grid { grid-template-columns: 1fr; }
  .card-icon { margin-bottom: 28px; }
  .schedule-card { min-height: auto; }
}

@media (max-width: 560px) {
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .nav-wrap { height: 72px; }
  .brand img { width: 190px; }
  .hero h1 { font-size: 52px; }
  .hero p { font-size: 17px; }
  .section { padding: 70px 0; }
  .contact-row { grid-template-columns: 1fr; gap: 6px; }
  .hours-list div { flex-direction: column; gap: 6px; }
  .footer-main { flex-direction: column; align-items: flex-start; }
}


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .site-header, .hero-actions, .contact-actions, .social-links, .menu-toggle { display: none !important; }
  .section { padding: 36px 0; }
  body { color: #000; }
}
