@charset "UTF-8";

:root {
  --lake-deep: #123b46;
  --spruce: #294d3e;
  --buoy: #c54b2c;
  --sun-signal: #e6b44a;
  --mist: #dce8e8;
  --paper: #f4f8f8;
  --ink: #172729;
  --dock: #8a765e;
  /* Compatibility aliases for the brand keys consumed by existing pages. */
  --pine: var(--spruce);
  --pine-deep: var(--lake-deep);
  --cedar: var(--sun-signal);
  --cedar-dark: var(--buoy);
  --cream: var(--paper);
  --sand: var(--mist);
  --lake: var(--lake-deep);
  --white: #fff;
  --rule: rgba(18, 59, 70, 0.24);
  --shadow: 0 15px 35px rgba(18, 59, 70, 0.13);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Atkinson Hyperlegible", Arial, sans-serif;
  --content: 1100px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.demo-site-banner {
  display: flex;
  min-height: 2rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.3rem 1rem;
  color: var(--paper);
  background: var(--lake-deep);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.demo-site-banner strong {
  color: var(--sun-signal);
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='96' viewBox='0 0 96 96'%3E%3Cpath d='M0 17h96M0 63h96' stroke='%23123b46' stroke-opacity='.022'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--cedar-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

a:hover {
  color: var(--pine);
}

:focus-visible {
  outline: 3px solid var(--lake);
  outline-offset: 4px;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.65em;
  color: var(--pine-deep);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.65rem, 8vw, 5.8rem);
  letter-spacing: 0.012em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.35rem);
  letter-spacing: 0.014em;
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

h4 {
  font-size: 1.25rem;
}

p,
ul,
ol,
dl,
table,
figure,
blockquote {
  margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child,
dl:last-child,
figure:last-child,
blockquote:last-child {
  margin-bottom: 0;
}

address {
  font-style: normal;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  transform: translateY(-160%);
  color: var(--cream);
  background: var(--pine-deep);
  border-radius: 4px;
  font-weight: 700;
}

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

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - (2 * var(--gutter)), var(--content));
  margin-inline: auto;
}

.narrow {
  max-width: 72ch;
}

.section {
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.section--sand {
  background: var(--sand);
  border-block: 1px solid rgba(18, 59, 70, 0.09);
}

.section--pine {
  color: var(--cream);
  background: var(--pine-deep);
}

.section--pine h2,
.section--pine h3,
.section--pine a:not(.button) {
  color: var(--cream);
}

.section-heading {
  position: relative;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
  padding-bottom: 1rem;
}

.section-heading::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(100%, 9rem);
  height: 5px;
  border-block: 1px solid var(--cedar);
  content: "";
}

.section-heading::before {
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 1;
  width: 1.8rem;
  height: 9px;
  background: var(--buoy);
  content: "";
}

.section-heading--center {
  text-align: center;
}

.section-heading--center::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-heading--center::before {
  left: calc(50% - 4.5rem);
}

.section-heading--with-link {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem 2rem;
}

.intro {
  max-width: 70ch;
  color: #273c3e;
  font-size: clamp(1.18rem, 2.4vw, 1.42rem);
  line-height: 1.65;
}

.eyebrow,
.hero__eyebrow,
.chip,
.breadcrumbs,
.facts dt,
.rates-table thead,
.footer-hours dt {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Header and navigation */
.site-header {
  position: relative;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid rgba(18, 59, 70, 0.2);
}

.site-header::after {
  display: block;
  height: 3px;
  border-top: 1px solid var(--sun-signal);
  content: "";
}

.site-header__main {
  position: relative;
  display: flex;
  min-height: 5.3rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  display: block;
  width: min(68vw, 22.5rem);
  flex: 0 1 auto;
}

.site-logo img {
  width: 100%;
}

.nav-toggle {
  display: none;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.7rem;
  color: var(--pine-deep);
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
}

.nav-toggle__icon {
  display: grid;
  width: 1.25rem;
  gap: 4px;
}

.nav-toggle__icon span {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: 100%;
  right: calc(-1 * var(--gutter));
  left: calc(-1 * var(--gutter));
  display: block;
  padding: 0.7rem var(--gutter) 1.2rem;
  background: var(--cream);
  border-bottom: 4px double var(--cedar);
  box-shadow: 0 12px 24px rgba(18, 59, 70, 0.16);
}

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

.nav-enhanced .site-nav {
  display: none;
}

.nav-enhanced .site-nav.is-open {
  display: block;
}

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

.site-nav a {
  display: block;
  padding: 0.55rem 0.2rem;
  color: var(--pine-deep);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

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

.site-nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--cedar);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35em;
}

.site-nav__secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0.5rem !important;
  padding-top: 0.5rem !important;
  border-top: 1px solid var(--rule);
}

.site-nav__secondary a {
  font-size: 0.94rem;
  font-weight: 400;
}

/* Page and photographic heroes */
.hero {
  position: relative;
  display: grid;
  min-height: clamp(35rem, 72vh, 49rem);
  overflow: hidden;
  align-items: end;
  background: var(--pine-deep);
}

.hero__image,
.hero__scrim,
.hero__content {
  grid-area: 1 / 1;
}

.hero__image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hero__scrim {
  align-self: stretch;
  background: linear-gradient(to top, rgba(10, 25, 17, 0.94) 0%, rgba(10, 25, 17, 0.48) 54%, rgba(10, 25, 17, 0.1) 100%);
}

.hero__content {
  z-index: 1;
  padding-block: clamp(3rem, 8vw, 6rem);
  color: var(--cream);
}

.hero__content h1 {
  max-width: 14ch;
  color: var(--cream);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__eyebrow {
  margin-bottom: 0.7rem;
  color: var(--sun-signal);
}

.hero__sub {
  max-width: 63ch;
  margin-bottom: 1.6rem;
  color: var(--paper);
  font-size: clamp(1.12rem, 2.5vw, 1.4rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-header {
  padding-block: clamp(3.6rem, 9vw, 7.5rem);
  background: var(--sand);
  border-bottom: 5px double rgba(18, 59, 70, 0.3);
}

.page-header h1 {
  padding-left: 0.32em;
  border-left: 0.18em solid var(--buoy);
  font-size: clamp(2.75rem, 7vw, 5rem);
}

.page-header__sub {
  max-width: 65ch;
  margin-top: -0.4rem;
  color: #33494b;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.35rem;
  color: #536567;
}

.hero + .container,
.page-header + .container {
  padding-top: 1.35rem;
}

.breadcrumbs a {
  color: var(--pine);
}

/* Buttons, badges, and callouts */
.button,
button.button {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 1.15rem;
  color: var(--paper);
  background: var(--buoy);
  border: 1px solid #94341e;
  border-radius: 3px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}

.button:hover,
button.button:hover {
  color: var(--white);
  background: #9f351e;
  transform: translateY(-1px);
}

.button--secondary {
  color: var(--pine-deep);
  background: transparent;
  border-color: var(--pine);
  box-shadow: none;
}

.button--secondary:hover {
  color: var(--cream);
  background: var(--pine);
}

.button--light {
  color: var(--cream);
  background: transparent;
  border-color: rgba(244, 248, 248, 0.8);
  box-shadow: none;
}

.button--light:hover {
  color: var(--pine-deep);
  background: var(--cream);
}

.chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.25rem 0.55rem;
  color: var(--pine-deep);
  background: var(--mist);
  border: 1px solid rgba(18, 59, 70, 0.18);
  border-radius: 999px;
  line-height: 1.25;
}

.chip--lake {
  color: var(--paper);
  background: var(--lake-deep);
  border-color: var(--lake-deep);
}

.callout {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  background: var(--sand);
  border: 1px solid rgba(18, 59, 70, 0.16);
  border-left: 5px solid var(--cedar-dark);
}

.callout h2,
.callout h3 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

/* Cards and repeated editorial layouts */
.card-grid,
.staff-grid,
.values-grid,
.waiver-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
}

.card,
.staff-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.card:hover,
.staff-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.card > img,
.card > a > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card__body,
.staff-card__body {
  padding: clamp(1.25rem, 3vw, 1.8rem);
}

.card__body h2,
.card__body h3,
.staff-card__body h2,
.staff-card__body h3 {
  margin-bottom: 0.4rem;
}

.card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-block: 0.85rem;
}

.chip-row,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chip-row {
  margin-bottom: 0.8rem;
}

.button-row {
  margin-top: 1.2rem;
}

.card--link {
  display: block;
  color: var(--ink);
  text-decoration: none;
}

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

.card__price {
  color: var(--pine);
  font-weight: 700;
}

.text-link {
  color: var(--cedar-dark);
  font-weight: 700;
}

.fine-print {
  color: #526163;
  font-size: 0.94rem;
  line-height: 1.48;
}

.check-list {
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.75rem;
  border-bottom: 1px solid var(--rule);
}

.check-list li::before {
  position: absolute;
  top: 0.5rem;
  left: 0;
  color: var(--cedar-dark);
  content: "✓";
  font-weight: 700;
}

.check-list--compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1rem;
  font-size: 0.96rem;
}

.card__link::after {
  position: absolute;
  inset: 0;
  content: "";
}

.card:has(.card__link):focus-within {
  outline: 3px solid var(--lake);
  outline-offset: 4px;
}

.card:has(.card__link) .card__link:focus-visible {
  outline: none;
}

.staff-card > img {
  width: 100%;
  aspect-ratio: 4 / 4.3;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.03);
}

.staff-card__photo img {
  width: 100%;
  aspect-ratio: 4 / 4.3;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.03);
}

.staff-card__title {
  margin-top: -0.35rem;
  color: var(--cedar-dark);
  font-weight: 700;
}

.staff-card__fact {
  padding-top: 1rem;
  border-top: 3px double var(--rule);
  color: #455b5d;
  font-family: var(--font-display);
  font-style: italic;
  line-height: 1.45;
}

.values-grid .card:nth-child(even) {
  background: var(--sand);
}

.values-grid > article {
  position: relative;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #fff;
  border-top: 7px solid var(--sun-signal);
  border-bottom: 1px solid var(--rule);
}

.values-grid > article:nth-child(even) {
  border-top-color: var(--buoy);
}

.lede,
.prose--large {
  font-size: clamp(1.16rem, 2.2vw, 1.34rem);
  line-height: 1.65;
}

.lede {
  color: var(--spruce);
  font-weight: 700;
}

.split,
.detail-grid,
.media-row {
  display: grid;
  gap: clamp(1.75rem, 5vw, 4.5rem);
  align-items: start;
}

.split__media img,
.media-row__media img,
.media-row__image img {
  width: 100%;
  min-height: 20rem;
  object-fit: cover;
  border-radius: 3px 3px 3px 52px;
  box-shadow: 16px 16px 0 var(--sand);
}

.section--sand .split__media img,
.section--sand .media-row__media img,
.section--sand .media-row__image img {
  box-shadow: 16px 16px 0 var(--cream);
}

.media-row {
  padding-block: clamp(2.5rem, 6vw, 5rem);
  border-bottom: 4px double var(--rule);
}

.media-row:last-child {
  border-bottom: 0;
}

.media-row__body,
.media-row__content {
  min-width: 0;
}

.membership-card {
  overflow: visible;
}

.membership-card--featured {
  border: 3px solid var(--sun-signal);
  box-shadow: 8px 8px 0 rgba(230, 180, 74, 0.3);
}

.membership-card__for {
  color: #526769;
}

.membership-card__price {
  margin-block: 0.8rem 1.2rem;
  color: var(--lake-deep);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1;
}

.membership-card__price span {
  color: #526769;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
}

.closing-note {
  position: relative;
  padding-left: clamp(1.2rem, 3vw, 2rem);
  border-left: 6px solid var(--sun-signal);
  font-size: clamp(1.18rem, 2.5vw, 1.45rem);
}

.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 12rem 12rem;
  gap: 0.65rem;
  padding: 0.65rem;
  background: var(--pine-deep);
}

.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-strip img:first-child {
  grid-row: 1 / 3;
}

/* Ledger-like facts and rates */
.facts {
  margin: 0;
  border-top: 4px double var(--rule);
}

.detail-ledger {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 3px;
}

.mini-facts {
  margin: 1rem 0;
}

.mini-facts--columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1.25rem;
}

.mini-facts div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.42rem;
  border-bottom: 1px solid var(--rule);
}

.mini-facts dt,
.mini-facts dd {
  margin: 0;
}

.mini-facts dt {
  color: var(--pine);
  font-weight: 700;
}

.mini-facts dd {
  text-align: right;
}

.table-scroll {
  overflow-x: auto;
}

.facts div {
  display: grid;
  grid-template-columns: minmax(7rem, 0.65fr) 1.35fr;
  gap: 1rem;
  padding-block: 0.75rem;
  border-bottom: 1px solid var(--rule);
}

.facts dt,
.facts dd {
  margin: 0;
}

.facts dt {
  color: var(--pine);
}

.facts dd {
  text-align: right;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.rates-table th,
.rates-table td {
  padding: 0.78rem 0.65rem;
  border-bottom: 1px solid var(--rule);
  text-align: right;
}

.rates-table th:first-child {
  padding-left: 0;
  text-align: left;
}

.rates-table thead th {
  color: var(--pine);
  border-top: 4px double var(--rule);
}

.rates-table tbody th {
  color: var(--ink);
  font-weight: 700;
}

/* Timeline, pager, map, and disclosures */
.timeline {
  position: relative;
  display: grid;
  gap: 2rem;
  margin: 0;
  padding: 0 0 0 2.5rem;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 0.5rem;
  bottom: 0;
  left: 0.65rem;
  width: 5px;
  border-inline: 1px solid var(--cedar-dark);
  content: "";
}

.timeline > li {
  position: relative;
  max-width: 72ch;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--rule);
}

.timeline > li::before {
  position: absolute;
  top: 0.35rem;
  left: -2.3rem;
  width: 0.9rem;
  height: 0.9rem;
  background: var(--cream);
  border: 3px solid var(--cedar-dark);
  border-radius: 50%;
  content: "";
}

.timeline time,
.timeline__year {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--pine);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
}

.timeline__photo {
  margin-top: 1.25rem;
}

.timeline__photo img {
  width: min(100%, 38rem);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 6px solid #fff;
  box-shadow: 8px 8px 0 var(--mist);
}

.pager {
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 4px double var(--rule);
}

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

.pager a {
  display: block;
  padding: 0.85rem;
  color: var(--pine-deep);
  background: var(--sand);
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

.pager a:last-child {
  text-align: right;
}

.map-card {
  position: relative;
  display: grid;
  min-height: 20rem;
  place-items: center;
  overflow: hidden;
  padding: 2rem;
  color: var(--cream);
  background-color: var(--pine);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cpath d='M-20 37C23 23 34 56 78 44s59-7 122 12M-20 104c40-18 61 18 101 0s61-20 119 10M44-20c5 44-14 51-3 90s-3 59-10 130M126-20c-13 45 15 54 3 101s11 70 18 119' fill='none' stroke='%23f4f8f8' stroke-opacity='.11' stroke-width='2'/%3E%3C/svg%3E");
  border: 5px double rgba(244, 248, 248, 0.45);
  text-align: center;
}

.map-card h2,
.map-card h3,
.map-card a {
  color: var(--cream);
}

.map-card__pin {
  position: relative;
  width: 2.3rem;
  height: 2.3rem;
  margin-bottom: 0.6rem;
  background: var(--buoy);
  border: 4px solid var(--paper);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.map-card__pin::after {
  position: absolute;
  top: 0.52rem;
  left: 0.52rem;
  width: 0.62rem;
  height: 0.62rem;
  background: var(--paper);
  border-radius: 50%;
  content: "";
}

.disclosure-widget,
details {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 6px;
}

.disclosure-widget + .disclosure-widget,
details + details {
  margin-top: 0.75rem;
}

.disclosure-widget summary,
details summary {
  padding: 1rem 1.2rem;
  color: var(--pine-deep);
  font-weight: 700;
  cursor: pointer;
}

.disclosure-widget[open] summary,
details[open] summary {
  border-bottom: 1px solid var(--rule);
}

.disclosure-widget > :not(summary),
details > :not(summary) {
  margin-inline: 1.2rem;
}

.disclosure-widget > :last-child,
details > :last-child {
  margin-bottom: 1.2rem;
}

.waiver-card {
  align-self: start;
}

.waiver-card > summary {
  display: block;
  list-style: none;
}

.waiver-card > summary::-webkit-details-marker {
  display: none;
}

.waiver-card__form {
  padding: 1.2rem;
  border-top: 4px double var(--rule);
}

.faq-list details {
  border-left: 4px solid var(--sun-signal);
}

.newsletter-band .embed-slot {
  color: var(--ink);
  background: #fff;
}

/* Reservation boundary */
.widget-wrap,
.embed-slot {
  max-width: 100%;
}

.embed-slot {
  padding: clamp(0.85rem, 2.5vw, 1.35rem);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 8px;
}

.embed-disclosure {
  margin: 0 0 0.9rem;
  padding: 0.68rem 0.85rem;
  color: #294346;
  background: var(--mist);
  border-left: 4px solid var(--sun-signal);
  font-size: 0.9rem;
  line-height: 1.45;
}

.embed-disclosure strong {
  color: var(--lake-deep);
}

.call-to-book {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  padding: clamp(1.2rem, 3vw, 2rem);
  color: var(--paper);
  background: var(--lake-deep);
  border-left: 7px solid var(--sun-signal);
}

.call-to-book h3,
.call-to-book p {
  margin-bottom: 0.35rem;
  color: inherit;
}

.call-to-book .eyebrow {
  color: var(--sun-signal);
}

.call-to-book .button {
  justify-self: start;
}

.call-to-book--compact {
  margin-top: 1rem;
}

.call-to-book--email {
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
}

.call-to-book--email .button--light {
  color: var(--paper);
  background: var(--lake-deep);
  border-color: var(--lake-deep);
}

.call-to-book--email .button--light:hover {
  color: var(--paper);
  background: var(--buoy);
  border-color: var(--buoy);
}

.session-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1px;
  margin-bottom: 1rem;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.session-list__row {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.15rem;
  background: var(--paper);
}

.session-list__row span {
  color: #536567;
  font-size: 0.92rem;
}

.waiver-download {
  padding: clamp(1.5rem, 5vw, 3rem);
  background: var(--mist);
  border-left: 7px solid var(--sun-signal);
}

.calendar-key {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.calendar-key span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.calendar-key i {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 2px;
}

.calendar-key__class,
.calendar-event--class {
  background: var(--lake-deep) !important;
  border-color: var(--lake-deep) !important;
}

.calendar-key__trip,
.calendar-event--trip {
  background: var(--buoy) !important;
  border-color: var(--buoy) !important;
}

.calendar-key__club,
.calendar-event--club {
  color: var(--ink) !important;
  background: var(--sun-signal) !important;
  border-color: var(--sun-signal) !important;
}

.full-calendar {
  --fc-border-color: var(--rule);
  --fc-button-bg-color: var(--lake-deep);
  --fc-button-border-color: var(--lake-deep);
  --fc-button-hover-bg-color: var(--buoy);
  --fc-button-hover-border-color: var(--buoy);
  --fc-button-active-bg-color: var(--spruce);
  --fc-button-active-border-color: var(--spruce);
  --fc-today-bg-color: rgba(230, 180, 74, 0.16);
  padding: clamp(0.75rem, 2vw, 1.4rem);
  background: var(--white);
  border: 1px solid var(--rule);
}

.full-calendar .fc-toolbar-title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 4vw, 2.25rem);
  text-transform: uppercase;
}

.full-calendar .fc-button {
  font-weight: 700;
  text-transform: capitalize;
}

@media (max-width: 699px) {
  .full-calendar .fc-header-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 0.7rem;
  }

  .full-calendar .fc-toolbar-chunk {
    display: flex;
    justify-content: center;
  }
}

.schedule-board {
  display: grid;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.schedule-board section {
  padding: clamp(1rem, 3vw, 1.75rem);
  background: var(--paper);
}

.schedule-board ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.schedule-board li {
  display: grid;
  gap: 0.2rem;
  padding-block: 0.75rem;
  border-top: 1px solid var(--rule);
}

.schedule-board li span {
  color: #536567;
  font-size: 0.92rem;
}

.embed-slot--provider > :not(.embed-disclosure):not(.provider-demo-link) {
  display: block;
  min-height: 3rem;
}

.provider-demo-link {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.8rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--rule);
  font-size: 0.9rem;
}

.provider-demo-link img {
  width: auto;
  height: 2rem;
}

/* Footer */
.site-footer {
  color: var(--paper);
  background: var(--pine-deep);
}

.site-footer__rule {
  height: 7px;
  border-block: 1px solid rgba(244, 248, 248, 0.4);
}

.site-footer__grid {
  display: grid;
  gap: 2.5rem;
  padding-block: clamp(3rem, 7vw, 5rem);
}

.site-footer h2 {
  margin-bottom: 1rem;
  color: var(--cream);
  font-size: 1.35rem;
}

.site-footer a {
  color: var(--sun-signal);
}

.site-footer a:hover {
  color: var(--cream);
}

.site-footer address {
  margin-bottom: 1.5rem;
}

.footer-hours {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.footer-hours dt {
  color: var(--sun-signal);
}

.footer-hours dd {
  margin: 0.1rem 0 0;
}

.site-footer__links ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__newsletter .embed-slot {
  padding: 0;
  color: var(--cream);
  background: transparent;
  border: 0;
}

.site-footer__newsletter .embed-disclosure {
  color: var(--paper);
  background: rgba(244, 248, 248, 0.08);
  border-left-color: var(--sun-signal);
}

.site-footer__newsletter .provider-demo-link {
  border-color: rgba(244, 248, 248, 0.2);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.45rem 1.5rem;
  padding-block: 1.15rem;
  color: #d5e1df;
  border-top: 1px solid rgba(244, 248, 248, 0.19);
  font-size: 0.88rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__provider img {
  width: 7rem;
  height: auto;
}

@media (min-width: 560px) {
  .card-grid,
  .staff-grid,
  .values-grid,
  .waiver-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-strip {
    grid-template-columns: 1.22fr 0.85fr 1fr;
    grid-template-rows: 19rem;
  }

  .photo-strip img:first-child {
    grid-row: auto;
  }

  .photo-strip img:nth-child(2) {
    transform: translateY(-1.3rem);
  }

  .photo-strip img:nth-child(3) {
    transform: translateY(1.3rem);
  }
}

@media (min-width: 800px) {
  .hero {
    height: clamp(27rem, calc(100svh - 6.65rem), 42rem);
    min-height: 0;
  }

  .has-demo-banner .hero {
    height: clamp(27rem, calc(100svh - 8.65rem), 42rem);
  }

  .hero__content {
    padding-block: clamp(2rem, 6vh, 4rem);
  }

  .hero__content h1 {
    font-size: clamp(3.2rem, min(7vw, 9vh), 5.8rem);
  }

  .site-header__main {
    min-height: 6.4rem;
    align-items: flex-start;
    padding-block: 0.65rem 0;
  }

  .site-logo {
    width: min(27vw, 17rem);
    margin-top: 0.2rem;
  }

  .nav-toggle {
    display: none;
  }

  .nav-enhanced .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    max-width: 45rem;
    flex: 1;
    flex-direction: column;
    align-self: stretch;
    justify-content: space-between;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-enhanced .site-nav {
    display: flex;
  }

  .site-nav__primary,
  .site-nav__secondary {
    display: flex !important;
    justify-content: flex-end;
    gap: clamp(0.5rem, 1.5vw, 1.25rem);
  }

  .site-nav__primary a {
    padding: 0.55rem 0;
    font-size: clamp(0.9rem, 1.35vw, 1.03rem);
  }

  .site-nav__secondary {
    margin: 0 !important;
    padding: 0.35rem 0 0.55rem !important;
    border-top: 3px double var(--rule);
  }

  .site-nav__secondary a {
    padding: 0.1rem 0;
    font-size: 0.83rem;
  }

  .split,
  .detail-grid,
  .media-row {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
  }

  .detail-grid {
    align-items: start;
  }

  .callout:has(> div + div) {
    display: grid;
    grid-template-columns: minmax(13rem, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(1.5rem, 5vw, 4rem);
    align-items: start;
  }

  .cta-band .split {
    grid-template-columns: minmax(12rem, 0.8fr) minmax(0, 1.4fr) auto;
    align-items: center;
  }

  .media-row--reverse .media-row__media,
  .media-row--reverse .media-row__image,
  .media-row--reverse > :first-child {
    order: 2;
  }

  .media-row--reverse .media-row__content,
  .media-row--reverse .media-row__body,
  .media-row--reverse > :last-child {
    order: 1;
  }

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

  .site-footer__grid {
    grid-template-columns: 1.1fr 0.7fr 1.2fr;
  }

  .call-to-book {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

@media (min-width: 800px) and (max-height: 700px) {
  .hero__content {
    padding-block: 1.5rem;
  }

  .hero__content h1 {
    margin-bottom: 0.35em;
    font-size: clamp(3.15rem, 11vh, 4.5rem);
  }

  .hero__sub {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.4;
  }
}

@media (min-width: 980px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .media-row:nth-child(odd) .media-row__media,
  .media-row:nth-child(odd) .media-row__image {
    margin-left: calc(-1 * clamp(0rem, 3vw, 2rem));
  }

  .media-row:nth-child(even) .media-row__media,
  .media-row:nth-child(even) .media-row__image {
    margin-right: calc(-1 * clamp(0rem, 3vw, 2rem));
  }
}

@media (max-width: 560px) {
  .rates-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .rates-table tr {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-block: 0.7rem;
    border-bottom: 1px solid var(--rule);
  }

  .rates-table th,
  .rates-table td {
    padding: 0.35rem;
    border: 0;
    text-align: left;
  }

  .rates-table tbody th {
    grid-column: 1 / -1;
  }

  .rates-table td::before {
    display: block;
    color: var(--pine);
    content: attr(data-label);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

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

  .pager a:last-child {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .hero__actions,
  .provider-demo-link {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
  }

  .hero__image,
  .hero__scrim {
    display: none;
  }

  .hero__content,
  .hero__content h1 {
    color: #000;
    text-shadow: none;
  }
}
