:root {
  --paper: #f4eadb;
  --paper-2: #fff8ee;
  --ink: #152321;
  --muted: #5d6b67;
  --teal: #075b61;
  --sea: #7daeb5;
  --brick: #a33b27;
  --gold: #c99537;
  --green: #1f6f3f;
  --line: #d9d0c3;
  --shadow: 0 22px 45px rgba(33, 29, 22, 0.11);
  --display: Georgia, "Times New Roman", serif;
  --script: "Brush Script MT", "Segoe Script", "Snell Roundhand", cursive;
  --sans: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fff8ee 0%, #f4eadb 52%, #efe0cd 100%);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(rgba(7, 91, 97, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 91, 97, 0.035) 1px, transparent 1px);
  background-size: 22px 22px, 78px 100%;
  opacity: 0.32;
  z-index: -1;
}

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

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

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

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 35px;
  background: var(--teal);
  color: var(--paper-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.announcement span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) 150px;
  align-items: center;
  gap: 18px;
  min-height: 70px;
  padding: 0 clamp(24px, 4vw, 70px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 241, 231, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.brand strong,
.footer-brand strong {
  display: block;
  color: var(--teal);
  font-family: var(--script);
  font-size: 36px;
  font-style: italic;
  font-weight: 700;
  line-height: 0.86;
}

.brand small {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
}

.main-nav a,
.header-tools a,
.site-footer nav a {
  position: relative;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--brick);
  transition: transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.header-tools {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.header-tools a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal);
  font-size: 10px;
  letter-spacing: 1px;
}

.bag-link {
  position: relative;
}

.bag-link b {
  position: absolute;
  top: -5px;
  right: -2px;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 999px;
  background: var(--brick);
  color: white;
  font-size: 10px;
}

.nav-toggle {
  display: none;
}

main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px 54px;
}

.hero {
  min-height: 340px;
  border-bottom: 1px solid var(--line);
}

.home-signup {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(360px, 1.05fr);
  gap: 42px;
  align-items: center;
  min-height: 460px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.home-signup h1 {
  max-width: 650px;
  font-size: clamp(50px, 5.8vw, 76px);
  line-height: 0.98;
}

.signup-panel {
  display: grid;
  gap: 0;
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(251, 247, 239, 0.78);
  box-shadow: var(--shadow);
}

.signup-panel a {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 4px 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.signup-panel time {
  grid-row: span 2;
  color: var(--brick);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.signup-panel strong {
  color: var(--teal);
  font-family: var(--display);
  font-size: 30px;
  line-height: 1;
}

.signup-panel span {
  color: var(--muted);
}

.quick-programs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 36px 0 0;
}

.quick-programs article {
  min-height: 205px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(251, 247, 239, 0.72);
  box-shadow: var(--shadow);
}

.quick-programs p {
  color: var(--brick);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.quick-programs h2 {
  font-size: 32px;
}

.quick-programs span {
  display: block;
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.quick-programs a {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-home {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  align-items: stretch;
  min-height: 360px;
}

.shop-front {
  margin-bottom: 36px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 34px 52px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brick);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 8px;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: #053f45;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0;
  overflow-wrap: normal;
}

h1 {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: clamp(48px, 5.1vw, 76px);
  line-height: 0.96;
}

.hero-home h1 {
  max-width: 480px;
  font-size: clamp(54px, 6.2vw, 84px);
}

.compact-title h1,
.compact-hero h1 {
  max-width: 690px;
  font-size: clamp(44px, 4.5vw, 62px);
  line-height: 1;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.94;
}

h3 {
  margin-bottom: 4px;
  font-size: 13px;
}

.hero-copy > p:not(.eyebrow),
.page-title > p:not(.eyebrow),
.page-title > div > p:not(.eyebrow),
.split-hero p,
.wide-feature p,
.collection-intro p,
.editorial-row p {
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  padding: 0 24px;
  border: 1px solid var(--teal);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.button.primary {
  background: var(--teal);
  color: var(--paper-2);
}

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

.button.ghost {
  color: var(--teal);
}

.book-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  width: min(320px, 100%);
  padding: 0 34px;
  border: 2px solid var(--teal);
  border-radius: 8px;
  background: var(--teal);
  color: var(--paper-2);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: none;
}

.book-button:hover {
  background: #053f45;
  border-color: #053f45;
}

.book-button-xl {
  min-height: 112px;
  width: min(500px, 100%);
  font-size: clamp(34px, 4.1vw, 54px);
  line-height: 1.06;
}

.register-hero-button {
  justify-content: space-between;
  padding: 0 clamp(28px, 4vw, 46px);
  background: #053f45;
  border-color: #053f45;
  box-shadow: inset 0 -6px 0 var(--brick);
}

.register-hero-button::after {
  content: ">";
  font-size: 0.72em;
  line-height: 1;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border-bottom-left-radius: 48%;
}

.hero-media img,
.hero-shop > img,
.split-hero img,
.wide-feature img,
.contact-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shop {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, 0.85fr) minmax(420px, 1.15fr);
  min-height: 410px;
  overflow: hidden;
}

.hero-shop h1 {
  font-size: clamp(52px, 5.2vw, 66px);
  line-height: 0.95;
}

.hero-shop .hero-copy {
  position: relative;
  z-index: 1;
  padding-left: 36px;
}

.hero-shop > img {
  min-height: 410px;
}

.category-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
}

.category-tabs button {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 88px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  cursor: pointer;
}

.category-tabs button.active {
  border-color: var(--teal);
  color: var(--teal);
}

.category-tabs span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.collection-intro {
  max-width: 360px;
  padding: 44px 0 18px;
}

.launch-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.55fr) minmax(520px, 1.45fr);
  gap: 28px;
  align-items: center;
  margin: 0 0 36px;
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(251, 247, 239, 0.78);
  box-shadow: var(--shadow);
}

.launch-feature img {
  width: 100%;
  max-height: 610px;
  object-fit: contain;
}

.launch-feature h2 {
  max-width: 480px;
  font-size: clamp(42px, 4.6vw, 68px);
}

.launch-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 24px;
}

.launch-colors span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 48px;
  margin: 0 -12px 18px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(251, 247, 239, 0.78);
}

.filter-bar > div {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
}

.filter-bar span,
.filter,
.filter-bar label,
.filter-bar select {
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.filter {
  min-height: 34px;
  padding: 0;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  cursor: pointer;
}

.filter.active {
  color: var(--teal);
  border-color: var(--teal);
}

.filter-bar label {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-bar select {
  border: 0;
  background: transparent;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px 24px;
}

.product-card[hidden] {
  display: none;
}

.product-action {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1.18;
  border: 0;
  background: #eee5da;
  cursor: pointer;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.product-card:hover img {
  transform: scale(1.025);
}

.product-card.selected .product-action {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.badge {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  padding: 5px 8px;
  background: var(--teal);
  color: white;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.swatches {
  display: flex;
  gap: 8px;
  margin: 10px 0 8px;
}

.swatches span {
  width: 13px;
  height: 13px;
  border: 1px solid rgba(21, 35, 33, 0.25);
  border-radius: 999px;
}

.cream { background: #eee6d8; }
.white { background: #f8f8f4; }
.teal { background: var(--teal); }
.black { background: #0d1413; }
.sea { background: var(--sea); }
.sand { background: #d8c5a9; }
.gold { background: #d89314; }
.navy { background: #18344c; }

.product-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.product-meta p {
  margin: 0;
  color: var(--brick);
  font-size: 13px;
  font-weight: 900;
}

.editorial-row {
  display: grid;
  grid-template-columns: 1.08fr 0.56fr 1.72fr;
  align-items: stretch;
  gap: 0;
  margin-top: 42px;
  background: var(--paper-2);
  border: 1px solid var(--line);
}

.launch-details {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr 0.9fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 42px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.launch-details img,
.launch-details div {
  min-height: 190px;
  border: 1px solid var(--line);
  background: rgba(251, 247, 239, 0.72);
}

.launch-details img {
  width: 100%;
  object-fit: cover;
}

.launch-details div {
  padding: 24px;
}

.launch-details h2 {
  font-size: clamp(28px, 2.7vw, 42px);
}

.editorial-row img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.editorial-row div {
  padding: 34px 28px;
}

.editorial-row a,
.program-grid a,
.event-board a,
.schedule-booked,
.schedule-detail-trigger {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.schedule-booked {
  color: var(--brick);
}

.schedule-detail-trigger {
  min-height: 38px;
  border: 1px solid var(--teal);
  border-radius: 999px;
  background: transparent;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 34px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(251, 247, 239, 0.8);
  border: 1px solid var(--line);
}

.benefits div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 2px 14px;
  align-items: center;
  padding: 0 22px;
  border-right: 1px solid var(--line);
}

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

.benefits span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--teal);
  border-radius: 50%;
  color: var(--teal);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.benefits strong {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.benefits small {
  color: var(--muted);
}

.split-hero,
.contact-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(450px, 1.18fr);
  gap: 42px;
  align-items: center;
  padding: 76px 0 48px;
  border-bottom: 1px solid var(--line);
}

.split-hero img,
.contact-hero img {
  min-height: 350px;
  box-shadow: var(--shadow);
}

.values-grid,
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 46px 0 0;
}

.values-grid article,
.program-grid article,
.contact-card,
.contact-form {
  background: rgba(251, 247, 239, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.values-grid article {
  padding: 32px;
}

.values-grid span {
  color: var(--brick);
  font-weight: 900;
  letter-spacing: 3px;
}

.values-grid p,
.program-grid p,
.event-board p {
  color: var(--muted);
  line-height: 1.55;
}

.page-title {
  max-width: 820px;
  padding: 78px 0 28px;
}

.page-title.compact {
  max-width: 900px;
}

.program-grid {
  grid-template-columns: repeat(4, 1fr);
  padding-top: clamp(22px, 2.4vw, 32px);
}

.program-grid article {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 28px;
}

.program-grid article > p:first-child {
  color: var(--brick);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.program-grid h2 {
  font-size: 34px;
}

.program-grid span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.program-grid div {
  flex: 1;
  min-height: 34px;
  border-bottom: 1px solid var(--line);
}

.wide-feature {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  align-items: center;
  gap: 38px;
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.wide-feature img {
  min-height: 330px;
}

.event-board {
  border-top: 2px solid var(--ink);
}

.event-board article {
  display: grid;
  grid-template-columns: 130px 1fr 96px;
  gap: 24px;
  align-items: center;
  min-height: 132px;
  border-bottom: 1px solid var(--line);
}

.event-board time {
  color: var(--brick);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.event-board h2 {
  margin: 0 0 4px;
  font-size: 38px;
}

.event-board p {
  margin-bottom: 4px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.event-board span {
  color: var(--muted);
}

.event-board small {
  display: block;
  margin-top: 8px;
  color: var(--brick);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.schedule-title,
.subpage-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
  padding-top: 28px;
  padding-bottom: 14px;
}

.schedule-title h1,
.subpage-title h1 {
  margin-bottom: 0;
}

.subpage-title > div {
  width: min(100%, 760px);
  max-width: 760px;
}

.schedule-toggle {
  display: flex;
  gap: 8px;
  padding-bottom: 8px;
}

.schedule-toggle button {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.schedule-toggle button.active {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--paper-2);
}

.schedule-view[hidden] {
  display: none;
}

.schedule-calendar {
  margin-top: 0;
}

.schedule-range-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.schedule-range-label span {
  color: var(--brick);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.schedule-range-label strong {
  color: var(--teal);
  font-size: 22px;
}

.schedule-week-grid {
  grid-template-rows: repeat(2, minmax(260px, auto));
}

.schedule-week-grid .calendar-day {
  min-height: 260px;
  border-bottom: 1px solid var(--line);
}

.schedule-week-grid .calendar-day:nth-last-child(-n + 7) {
  border-bottom: 0;
}

.schedule-week-grid .calendar-day:nth-child(7n) {
  border-right: 0;
}

.schedule-week-grid .calendar-day:last-child {
  border-right: 0;
}

.booking-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(32px, 5vw, 74px);
  align-items: center;
  min-height: 560px;
  padding: 62px 0 48px;
  border-bottom: 1px solid var(--line);
}

.booking-lead {
  display: grid;
  align-content: center;
  gap: 18px;
}

.booking-lead p:not(.eyebrow) {
  max-width: 360px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.booking-nudge {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  gap: 12px;
  min-height: 400px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 247, 239, 0.6);
  box-shadow: none;
}

.booking-nudge h2 {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin-bottom: 0;
  font-size: clamp(28px, 3.1vw, 48px);
  line-height: 0.98;
}

.booking-nudge p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.booking-nudge div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booking-nudge button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--teal);
  border-radius: 8px;
  background: transparent;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.booking-ray {
  position: absolute;
  z-index: 0;
  top: -12%;
  right: -30%;
  width: 110%;
  max-width: none;
  opacity: 0.28;
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 42;
  display: grid;
  place-items: center;
  padding: 20px;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(21, 35, 33, 0.56);
}

.booking-sheet {
  position: relative;
  width: min(760px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
  box-shadow: 0 32px 80px rgba(21, 35, 33, 0.28);
}

.booking-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--teal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.booking-card {
  display: grid;
  grid-template-columns: 1fr;
  min-height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 247, 239, 0.88);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.booking-sheet .booking-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.booking-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  border-right: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 241, 231, 0.58);
}

.booking-tabs button {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 5px;
  min-height: 68px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 238, 0.82);
  color: var(--ink);
  text-align: center;
  opacity: 0.72;
  transition: background 160ms ease, box-shadow 160ms ease, color 160ms ease, opacity 160ms ease;
}

.booking-tabs button:last-child {
  border-bottom: 1px solid var(--line);
}

.booking-tabs button.active {
  background: var(--teal);
  color: var(--paper-2);
  opacity: 1;
  border-color: var(--teal);
  box-shadow: inset 0 -4px 0 var(--gold);
}

.booking-tabs button.active::after {
  display: none;
}

.booking-tabs span {
  color: var(--brick);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.booking-tabs button.active span {
  color: var(--gold);
}

.booking-tabs strong {
  color: var(--teal);
  font-size: 18px;
  line-height: 1;
}

.booking-tabs button.active strong {
  color: var(--paper-2);
}

.booking-form {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(24px, 3vw, 38px);
}

.booking-form h2 {
  margin-bottom: 2px;
  font-size: clamp(32px, 4vw, 48px);
}

.booking-dynamic {
  display: grid;
  gap: 14px;
  padding-bottom: 6px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.booking-form [hidden] {
  display: none;
}

.booking-form input,
.booking-form select {
  width: 100%;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 241, 231, 0.82);
  color: var(--ink);
  font-size: 16px;
  letter-spacing: 0;
  padding: 0 16px;
  text-transform: none;
}

.booking-form select {
  overflow: hidden;
  padding-right: 42px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-form button[type="submit"] {
  width: 100%;
}

.signup-start {
  display: grid;
  grid-template-columns: minmax(420px, 0.96fr) minmax(420px, 1.04fr);
  gap: 28px;
  align-items: stretch;
  min-height: 520px;
  padding: 48px 0 42px;
  border-bottom: 1px solid var(--line);
}

.signup-start-card {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 247, 239, 0.86);
  box-shadow: var(--shadow);
}

.signup-start-card > p:not(.eyebrow),
.calendar-head p:not(.eyebrow) {
  max-width: 590px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.signup-routes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.signup-route {
  display: grid;
  gap: 7px;
  min-height: 154px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 241, 231, 0.7);
  color: var(--ink);
  text-align: left;
}

.signup-route span,
.slot-picker p,
.calendar-view-toggle button,
.calendar-pill span,
.calendar-pill em,
.calendar-month-labels span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.signup-route span {
  color: var(--brick);
}

.signup-route strong {
  color: var(--teal);
  font-size: 22px;
  line-height: 1;
}

.signup-route small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.signup-route.active {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--paper-2);
}

.signup-route.active span,
.signup-route.active strong,
.signup-route.active small {
  color: var(--paper-2);
}

.signup-start-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
}

.signup-start-footer span {
  max-width: 330px;
  color: var(--muted);
  line-height: 1.45;
}

.signup-snapshot {
  position: relative;
  min-height: 430px;
}

.signup-snapshot img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.register-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 1.08fr);
  gap: 42px;
  align-items: center;
  min-height: 520px;
  padding: 50px 0 42px;
  border-bottom: 1px solid var(--line);
}

.register-copy > p:not(.eyebrow),
.private-lessons p {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.register-visual {
  position: relative;
  min-height: 430px;
}

.register-visual img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.fast-pass {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(330px, calc(100% - 48px));
  padding: 22px;
  border: 1px solid rgba(251, 247, 239, 0.72);
  background: rgba(5, 63, 69, 0.9);
  color: var(--paper-2);
  backdrop-filter: blur(14px);
}

.fast-pass span,
.session-card-top p,
.session-facts dt,
.checkout-line span,
.private-lessons li span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.fast-pass strong {
  display: block;
  margin: 6px 0;
  color: var(--gold);
  font-size: 44px;
  line-height: 1;
}

.fast-pass p {
  margin: 0;
  line-height: 1.45;
}

.registration-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.registration-principles div {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.registration-principles div:last-child {
  border-right: 0;
}

.registration-principles strong {
  display: block;
  color: var(--teal);
  font-size: 22px;
}

.registration-principles span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.session-board {
  padding-top: 48px;
}

.session-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.session-heading h2 {
  margin-bottom: 0;
}

.session-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.session-filters button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.session-filters button.active {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--paper-2);
}

.session-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.session-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 247, 239, 0.86);
  box-shadow: 0 16px 34px rgba(33, 29, 22, 0.08);
}

.session-card[hidden] {
  display: none;
}

.session-card-top,
.spot-row,
.checkout-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.session-card-top p {
  margin: 0;
  color: var(--brick);
}

.session-card-top span {
  color: var(--teal);
  font-size: 22px;
  font-weight: 900;
}

.session-card h2 {
  margin-bottom: 0;
  font-size: 31px;
  line-height: 1;
}

.session-summary {
  min-height: 78px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.session-facts {
  display: grid;
  gap: 12px;
  margin: auto 0 0;
}

.session-facts div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

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

.session-facts dd {
  margin: 0;
  color: var(--ink);
  line-height: 1.35;
}

.spot-row {
  color: var(--muted);
}

.spot-row span,
.spot-row strong {
  white-space: nowrap;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.spot-row strong {
  color: var(--brick);
}

.spot-row meter {
  width: 100%;
  height: 8px;
}

.session-card .button {
  width: 100%;
}

.private-lessons {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(380px, 1.1fr);
  gap: 38px;
  margin-top: 48px;
  padding: 46px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.private-lessons ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: private-step;
}

.private-lessons li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 0 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  counter-increment: private-step;
}

.private-lessons li:first-child {
  border-top: 0;
}

.private-lessons li::before {
  content: counter(private-step, decimal-leading-zero);
  grid-row: span 2;
  color: var(--brick);
  font-size: 23px;
  font-weight: 900;
}

.private-lessons li strong {
  color: var(--teal);
  font-size: 24px;
}

.private-lessons li span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.modal-open {
  overflow: hidden;
}

.registration-modal[hidden] {
  display: none;
}

.registration-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
}

.registration-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(21, 35, 33, 0.56);
}

.registration-sheet {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  width: min(920px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
  box-shadow: 0 32px 80px rgba(21, 35, 33, 0.28);
}

.registration-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--teal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.registration-summary {
  padding: 34px;
  background: var(--teal);
  color: var(--paper-2);
}

.registration-summary .eyebrow {
  color: var(--gold);
}

.registration-summary h2 {
  color: var(--paper-2);
  font-size: clamp(36px, 4vw, 54px);
}

.registration-summary dl {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
}

.registration-summary div {
  padding-top: 16px;
  border-top: 1px solid rgba(251, 247, 239, 0.22);
}

.registration-summary dt {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.registration-summary dd {
  margin: 0;
  line-height: 1.45;
}

.register-form,
.registration-success {
  display: grid;
  gap: 16px;
  padding: 34px;
}

.register-form[hidden],
.registration-success[hidden] {
  display: none;
}

.register-form label {
  display: grid;
  gap: 8px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.register-form input {
  width: 100%;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 241, 231, 0.82);
  color: var(--ink);
  font-size: 17px;
  letter-spacing: 0;
  padding: 0 16px;
}

.slot-picker {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 241, 231, 0.78);
}

.slot-picker[hidden] {
  display: none;
}

.slot-picker p {
  margin: 0;
  color: var(--brick);
}

.slot-picker > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.slot-option {
  display: grid;
  gap: 5px;
  min-height: 92px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
  color: var(--ink);
  text-align: left;
}

.slot-option span {
  color: var(--brick);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.slot-option strong {
  color: var(--teal);
  font-size: 17px;
}

.slot-option small {
  color: var(--muted);
  font-size: 13px;
}

.slot-option.active {
  border-color: var(--teal);
  background: var(--teal);
}

.slot-option.active span,
.slot-option.active strong,
.slot-option.active small {
  color: var(--paper-2);
}

.slot-empty {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.sms-consent {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.contact-intel {
  min-height: 23px;
  margin: -4px 0 0;
  color: var(--brick);
  font-size: 14px;
  font-weight: 900;
}

.checkout-line {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.checkout-line strong {
  color: var(--teal);
  font-size: 26px;
}

.registration-success {
  align-content: center;
}

.registration-success h2 {
  margin-bottom: 0;
}

.registration-success p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.registration-success div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.inline-payment {
  display: grid;
  grid-column: 1 / -1;
  justify-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(7, 91, 97, 0.22);
  border-radius: 8px;
  background: rgba(7, 91, 97, 0.08);
  text-align: center;
}

.inline-payment[hidden] {
  display: none;
}

.inline-payment > strong,
.payment-summary strong {
  color: var(--teal);
  font-size: 15px;
}

.inline-payment > span,
.payment-summary span {
  color: var(--muted);
  font-size: 14px;
}

.payment-summary {
  display: grid;
  justify-items: center;
  gap: 4px;
  text-align: center;
}

.confirmation-note {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.inline-payment a:not(.button) {
  color: var(--brick);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.payment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.payment-actions-centered {
  justify-content: center;
}

.payment-actions .button,
.payment-actions a {
  min-height: 44px;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  justify-content: center;
  width: min(100%, 560px);
}

.registration-success .payment-options {
  display: grid;
}

.registration-success .payment-summary {
  display: grid;
}

.registration-success .payment-actions {
  display: flex;
}

.payment-option {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(7, 91, 97, 0.18);
  border-radius: 8px;
  background: var(--paper-2);
  text-align: center;
}

.payment-option span {
  color: var(--brick);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.payment-option strong {
  color: var(--teal);
  font-size: 22px;
  line-height: 1;
}

.payment-option p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.payment-qr {
  display: grid;
  justify-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin: 0;
}

.payment-qr img {
  width: 148px;
  height: 148px;
}

.payment-qr figcaption {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.3px;
}

.payment-next-step {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(7, 91, 97, 0.22);
  border-radius: 8px;
  background: rgba(7, 91, 97, 0.08);
  text-align: center;
}

.payment-next-step[hidden] {
  display: none;
}

.payment-next-step .payment-summary {
  justify-content: center;
}

.payment-next-step span {
  color: var(--brick);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.payment-next-step strong {
  color: var(--teal);
  font-size: 28px;
}

.payment-next-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.payment-next-step .payment-option span {
  color: var(--brick);
  font-size: 10px;
}

.payment-next-step .payment-option strong {
  color: var(--teal);
  font-size: 22px;
}

.payment-next-step .payment-option p {
  color: var(--muted);
  font-size: 13px;
}

.staff-calendar {
  margin-top: 48px;
  padding: 46px 0 0;
  border-top: 1px solid var(--line);
}

.calendar-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.calendar-head h2 {
  margin-bottom: 8px;
}

.calendar-view-toggle {
  display: flex;
  gap: 8px;
}

.calendar-view-toggle button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--teal);
}

.calendar-view-toggle button.active {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--paper-2);
}

.calendar-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 247, 239, 0.82);
  box-shadow: 0 16px 34px rgba(33, 29, 22, 0.08);
  overflow: hidden;
}

.calendar-week-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(150px, 1fr));
}

.calendar-day {
  min-height: 360px;
  border-right: 1px solid var(--line);
}

.calendar-day:last-child {
  border-right: 0;
}

.calendar-day header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--teal);
}

.calendar-day header span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.calendar-day header strong {
  font-size: 26px;
}

.calendar-day > div {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.calendar-pill {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 10px;
  border: 0;
  border-left: 4px solid var(--teal);
  border-radius: 6px;
  background: rgba(247, 241, 231, 0.85);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.calendar-pill:focus-visible,
.schedule-detail-trigger:focus-visible {
  outline: 3px solid rgba(201, 149, 55, 0.55);
  outline-offset: 2px;
}

.calendar-pill.clinic {
  border-left-color: var(--brick);
}

.calendar-pill.private {
  border-left-color: var(--gold);
}

.calendar-pill.event {
  border-left-color: var(--green);
}

.calendar-pill.booked {
  border-left-color: var(--teal);
  background: rgba(7, 91, 97, 0.1);
}

.calendar-pill span,
.calendar-pill em {
  color: var(--brick);
  font-style: normal;
}

.calendar-pill strong {
  color: var(--teal);
  font-size: 15px;
  line-height: 1.15;
}

.calendar-pill small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
}

.calendar-empty {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.calendar-month-labels,
.calendar-month-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(110px, 1fr));
}

.calendar-month-labels {
  border-bottom: 1px solid var(--line);
}

.calendar-month-labels span {
  padding: 12px;
  color: var(--brick);
}

.calendar-month-day {
  min-height: 126px;
  padding: 10px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.calendar-month-day:nth-child(7n) {
  border-right: 0;
}

.calendar-month-day strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
}

.calendar-month-day .calendar-pill {
  margin-top: 6px;
  padding: 7px;
}

.schedule-detail-modal[hidden] {
  display: none;
}

.schedule-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 44;
  display: grid;
  place-items: center;
  padding: 20px;
}

.schedule-detail-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(21, 35, 33, 0.56);
}

.schedule-detail-sheet {
  position: relative;
  width: min(820px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
  box-shadow: 0 32px 80px rgba(21, 35, 33, 0.28);
}

.schedule-detail-close {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--teal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.schedule-detail-header h2 {
  max-width: 650px;
  margin: 8px 0 22px;
  font-size: clamp(38px, 5vw, 62px);
}

.schedule-detail-header dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.schedule-detail-header dl div {
  padding: 14px;
  border-right: 1px solid var(--line);
}

.schedule-detail-header dl div:last-child {
  border-right: 0;
}

.schedule-detail-header dt,
.roster-head span {
  color: var(--brick);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.schedule-detail-header dd {
  margin: 6px 0 0;
  color: var(--teal);
  font-weight: 900;
  line-height: 1.3;
}

.schedule-detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 24px;
  padding-top: 24px;
}

.schedule-detail-content h3 {
  margin: 0;
  color: var(--teal);
  font-size: 24px;
}

.roster-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.attendee-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.attendee-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 241, 231, 0.72);
}

.attendee-list span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--paper-2);
  font-size: 11px;
  font-weight: 900;
}

.attendee-list strong {
  color: var(--ink);
  font-size: 16px;
}

.empty-roster,
.payment-panel p,
.payment-note {
  color: var(--muted);
  line-height: 1.5;
}

.payment-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 241, 231, 0.82);
}

.payment-panel .button {
  justify-self: start;
}

.payment-panel > strong {
  color: var(--teal);
  font-size: 32px;
  line-height: 1;
}

.contact-hero {
  grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 1.08fr);
}

.contact-hero h1 {
  font-size: clamp(46px, 5.4vw, 72px);
  line-height: 1;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  padding: 46px 0 0;
}

.contact-card {
  padding: 38px;
}

.contact-card h2 {
  max-width: 480px;
  font-size: clamp(48px, 7vw, 94px);
}

.contact-card dl,
.contact-card dd {
  margin: 0;
}

.contact-card div {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.contact-card dt {
  position: relative;
  margin-bottom: 7px;
  padding-left: 24px;
  font-weight: 900;
}

.contact-card dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brick);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 32px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-form .full,
.contact-form button,
.form-status {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(247, 241, 231, 0.8);
  color: var(--ink);
  font-size: 16px;
  letter-spacing: 0;
}

.contact-form input,
.contact-form select {
  height: 54px;
  padding: 0 16px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
  padding: 14px 16px;
}

.contact-form button {
  justify-self: start;
}

.form-status {
  min-height: 20px;
  margin: -4px 0 0;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.site-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 24px 78px;
  border-top: 1px solid var(--line);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: -56px;
  height: 72px;
  pointer-events: none;
  background: url("/assets/images/support-assets/palm-tree-border-03-low-tide.svg") center / 680px 132px repeat-x;
  opacity: 0.13;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.footer-brand p {
  margin: 8px 0 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 280px 1fr;
  }

  .header-tools {
    display: none;
  }

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

  .program-grid,
  .session-grid,
  .benefits,
  .quick-programs {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-hero,
  .booking-card {
    grid-template-columns: 1fr;
  }

  .booking-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .booking-tabs button {
    min-height: 126px;
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }

  .booking-tabs button:last-child {
    border-right: 0;
  }

  .signup-routes {
    grid-template-columns: 1fr;
  }

  .launch-details {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits div {
    border-right: 0;
    padding: 18px;
  }
}

@media (max-width: 960px) {
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
    gap: 16px 22px;
  }
}

@media (max-width: 840px) {
  .announcement {
    min-height: 30px;
    font-size: 10px;
    letter-spacing: 1.7px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 66px;
    padding: 0 18px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 30px;
  }

  .brand small {
    font-size: 8px;
    letter-spacing: 2.4px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper-2);
    color: var(--teal);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .main-nav {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px 18px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--paper-2);
  }

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

  .main-nav a {
    padding: 14px 0;
  }

  .main-nav a::after {
    bottom: 8px;
    right: auto;
    width: 42px;
  }

  main {
    padding: 0 16px 38px;
  }

  .hero-home,
  .home-signup,
  .hero-shop,
  .split-hero,
  .contact-hero,
  .signup-start,
  .register-hero,
  .wide-feature,
  .contact-layout,
  .editorial-row,
  .launch-feature,
  .launch-details,
  .private-lessons {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-shop .hero-copy {
    padding: 42px 0 28px;
  }

  h1 {
    font-size: clamp(42px, 12vw, 60px);
    line-height: 0.96;
    overflow-wrap: anywhere;
  }

  .hero-home h1,
  .contact-hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .contact-card h2 {
    font-size: clamp(42px, 13vw, 56px);
    overflow-wrap: anywhere;
  }

  .hero-media {
    border-bottom-left-radius: 0;
  }

  .filter-bar {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 14px;
  }

  .filter-bar > div {
    flex-wrap: wrap;
    gap: 8px 16px;
    width: 100%;
    overflow-x: visible;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 14px;
  }

  .category-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
  }

  .category-tabs button:last-child {
    grid-column: 1 / -1;
  }

  .editorial-row div {
    order: -1;
  }

  .program-grid,
  .session-grid,
  .registration-principles,
  .values-grid,
  .quick-programs,
  .benefits {
    grid-template-columns: 1fr;
  }

  .register-hero {
    gap: 24px;
    min-height: auto;
    padding: 42px 0 34px;
  }

  .booking-hero {
    gap: 20px;
    min-height: auto;
    padding: 32px 0;
  }

  .booking-lead {
    gap: 14px;
  }

  .book-button-xl {
    min-height: 128px;
    font-size: clamp(42px, 12vw, 56px);
  }

  .booking-modal {
    align-items: start;
    padding: 12px;
  }

  .booking-sheet {
    width: min(100%, 390px);
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
  }

  .booking-card {
    min-height: auto;
  }

  .booking-tabs {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
  }

  .booking-tabs button {
    min-height: 60px;
    padding: 12px 14px;
    border: 1px solid var(--line);
  }

  .booking-tabs strong {
    font-size: 22px;
  }

  .booking-form {
    gap: 12px;
    padding: 22px 20px 24px;
  }

  .booking-form h2 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .booking-form input,
  .booking-form select {
    height: 52px;
    font-size: 15px;
    padding-left: 14px;
  }

  .signup-start {
    gap: 18px;
    min-height: auto;
    padding: 34px 0;
  }

  .signup-start-card {
    padding: 24px;
  }

  .signup-start-footer,
  .calendar-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .signup-snapshot,
  .signup-snapshot img {
    min-height: 330px;
    height: 330px;
  }

  .register-visual,
  .register-visual img {
    min-height: 330px;
    height: 330px;
  }

  .fast-pass {
    left: 16px;
    bottom: 16px;
    width: min(310px, calc(100% - 32px));
  }

  .registration-principles div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .schedule-title,
  .subpage-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .subpage-title > div,
  .subpage-title > div > p:not(.eyebrow) {
    width: 100%;
    max-width: 100%;
  }

  .schedule-toggle {
    padding-bottom: 0;
  }

  .session-filters {
    justify-content: flex-start;
  }

  .registration-sheet {
    grid-template-columns: 1fr;
  }

  .slot-picker > div {
    grid-template-columns: 1fr;
  }

  .calendar-shell {
    overflow-x: auto;
  }

  .calendar-week-grid,
  .calendar-month-labels,
  .calendar-month-grid {
    min-width: 920px;
  }

  .schedule-detail-header dl,
  .schedule-detail-content {
    grid-template-columns: 1fr;
  }

  .schedule-detail-header dl div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .schedule-detail-header dl div:last-child {
    border-bottom: 0;
  }

  .home-signup {
    gap: 24px;
    min-height: auto;
    padding: 42px 0 34px;
  }

  .home-signup h1,
  .compact-title h1,
  .compact-hero h1 {
    font-size: clamp(40px, 11vw, 56px);
  }

  .signup-panel {
    padding: 24px;
  }

  .signup-panel a {
    grid-template-columns: 74px 1fr;
  }

  .signup-panel strong {
    font-size: 24px;
  }

  .launch-feature {
    padding: 20px;
  }

  .launch-details img,
  .launch-details div {
    min-height: 160px;
  }

  .event-board article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }

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

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }

  .product-meta {
    display: block;
  }

  .product-meta h3,
  .product-meta p {
    font-size: 11px;
    line-height: 1.2;
  }

  .swatches {
    gap: 6px;
    margin: 8px 0 6px;
  }

  .swatches span {
    width: 11px;
    height: 11px;
  }

  .brand {
    gap: 10px;
  }

  .brand small {
    max-width: 150px;
    line-height: 1.4;
  }

  .eyebrow {
    letter-spacing: 4px;
  }
}

/* Brand redesign layer */
:root {
  --ocean-navy: #023b64;
  --lagoon: #036d8b;
  --midnight: #063556;
  --pine: #1a544b;
  --leaf: #2c6326;
  --rust: #c13d07;
  --vermillion: #cf4a04;
  --ochre: #d38332;
  --sand-tan: #dd9b58;
  --stone: #adac9b;
  --teal: #045867;
  --deep-teal: #063f46;
  --shadow: 0 22px 48px rgba(24, 31, 28, 0.1);
}

body {
  background:
    linear-gradient(90deg, rgba(3, 109, 139, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(195, 61, 7, 0.04), transparent 340px),
    var(--paper);
  background-size: 42px 42px, auto, auto;
}

body::before {
  background-image:
    radial-gradient(rgba(3, 109, 139, 0.12) 1px, transparent 1px),
    radial-gradient(rgba(207, 74, 4, 0.1) 1px, transparent 1px);
  background-position: 0 0, 9px 9px;
  background-size: 24px 24px;
  opacity: 0.18;
}

.announcement {
  border-bottom: 3px solid var(--rust);
  background: var(--teal);
  color: var(--paper-2);
}

.announcement span {
  background: var(--ochre);
}

.site-header {
  grid-template-columns: minmax(250px, 340px) minmax(0, 1fr) 220px;
  min-height: 70px;
  background: rgba(251, 247, 239, 0.94);
}

.site-header::after {
  content: "";
  position: absolute;
  left: clamp(18px, 4vw, 70px);
  right: clamp(18px, 4vw, 70px);
  bottom: -22px;
  height: 44px;
  pointer-events: none;
  background: url("/assets/images/support-assets/wave-stripe-01-seafoam-dunes.svg") center / 420px 118px repeat-x;
  opacity: 0.07;
  z-index: -1;
}

.brand {
  gap: 16px;
}

.brand .brand-ray {
  width: 56px;
  height: 56px;
  border: 0;
  object-fit: contain;
}

.brand img.brand-wordmark {
  width: min(205px, 100%);
  height: auto;
  border: 0;
  object-fit: contain;
}

.brand strong,
.brand small,
.footer-brand strong {
  display: none;
}

.header-tools a {
  width: auto;
  min-width: 54px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--paper-2);
}

.header-tools a:first-child {
  min-width: 104px;
  border-color: var(--teal);
  background: var(--teal);
  color: var(--paper-2);
}

main {
  max-width: 1320px;
}

.booking-hero {
  position: relative;
  grid-template-columns: minmax(420px, 0.96fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(32px, 5vw, 74px);
  min-height: min(640px, calc(100vh - 112px));
  padding: clamp(34px, 5vw, 62px) 0 clamp(34px, 5vw, 58px);
  overflow: hidden;
}

.booking-hero::before {
  content: "";
  position: absolute;
  left: clamp(-90px, -6vw, -42px);
  bottom: 44px;
  width: min(42vw, 520px);
  height: 180px;
  pointer-events: none;
  background: url("/assets/images/support-assets/dotted-path-03-wave-divider.svg") center / contain no-repeat;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 75%, transparent);
  opacity: 0.06;
}

.booking-hero::after {
  content: "";
  position: absolute;
  left: 47%;
  top: 112px;
  width: min(30vw, 420px);
  height: 160px;
  pointer-events: none;
  background: url("/assets/images/support-assets/stingray-trail-01-teal-sweep.svg") center / contain no-repeat;
  opacity: 0.05;
  transform: rotate(-7deg);
}

.booking-lead {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  max-width: 720px;
}

.booking-lead h1 {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--deep-teal);
  font-size: clamp(50px, 4.9vw, 72px);
  line-height: 0.96;
}

.booking-lead > p:not(.eyebrow) {
  max-width: 380px;
  margin: 0;
  color: #40534f;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.42;
}

.booking-nudge {
  position: relative;
  justify-self: end;
  align-self: center;
  width: min(100%, 520px);
  min-height: 380px;
  overflow: hidden;
  padding: clamp(24px, 3vw, 36px);
  border-color: rgba(4, 88, 103, 0.28);
  background:
    linear-gradient(145deg, rgba(251, 247, 239, 0.93), rgba(247, 241, 231, 0.78)),
    var(--paper-2);
}

.booking-ray {
  position: absolute;
  right: -34%;
  top: -20%;
  width: 116%;
  max-width: none;
  opacity: 0.22;
  transform: rotate(-8deg);
}

.booking-nudge .eyebrow,
.booking-nudge h2,
.booking-nudge p,
.booking-nudge div {
  position: relative;
  z-index: 1;
}

.booking-nudge h2 {
  max-width: 360px;
  color: var(--deep-teal);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
}

.booking-nudge p:not(.eyebrow) {
  max-width: 410px;
  font-size: 15px;
  line-height: 1.45;
}

.hero-actions {
  margin-top: 24px;
}

.hero-actions .button {
  min-width: 178px;
}

.hero-register-actions {
  display: grid;
  grid-template-columns: minmax(280px, 500px) minmax(132px, max-content);
  gap: 12px;
  align-items: center;
  margin: clamp(20px, 2.7vw, 28px) 0 16px;
}

.register-hero-button {
  width: 100%;
  min-height: clamp(92px, 7.2vw, 112px);
  border-color: var(--deep-teal);
  background: var(--deep-teal);
  box-shadow: inset 0 -6px 0 var(--rust);
  font-size: clamp(32px, 3.6vw, 46px);
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.register-hero-button:hover {
  border-color: var(--ink);
  background: var(--ink);
}

.hero-mini-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 760px;
  margin-top: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  background: rgba(251, 247, 239, 0.74);
  box-shadow: 0 16px 34px rgba(24, 31, 28, 0.07);
}

.hero-mini-strip a {
  display: grid;
  gap: 6px;
  min-height: 104px;
  padding: 16px;
  border-right: 1px solid var(--line);
}

.hero-mini-strip a:last-child {
  border-right: 0;
}

.hero-mini-strip time,
.hero-mini-strip strong {
  color: var(--rust);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.hero-mini-strip span {
  color: var(--deep-teal);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.06;
}

.hero-mini-strip strong {
  align-self: end;
  color: var(--teal);
}

.home-brand-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: 28px 0 34px;
  border-bottom: 1px solid var(--line);
}

.home-brand-band::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -32px;
  width: min(520px, 54vw);
  height: 92px;
  pointer-events: none;
  background: url("/assets/images/support-assets/sunrise-motif-01-wave-hero.svg") center / contain no-repeat;
  opacity: 0.16;
}

.home-brand-band img {
  width: 100%;
  height: auto;
}

.home-brand-band p {
  max-width: 780px;
  margin: 0;
  color: var(--deep-teal);
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 58px);
  line-height: 0.98;
}

.quick-programs article,
.session-card,
.values-grid article,
.program-grid article,
.contact-card,
.contact-form,
.calendar-shell,
.booking-card,
.signup-start-card,
.payment-panel,
.launch-feature {
  border-radius: 0;
  background: rgba(251, 247, 239, 0.86);
}

.quick-programs {
  position: relative;
}

.quick-programs::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  height: 74px;
  pointer-events: none;
  background: url("/assets/images/support-assets/palm-tree-border-02-small-repeat.svg") center top / 540px 122px repeat-x;
  opacity: 0.11;
  transform: translateY(-50%);
}

.quick-programs article {
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--teal);
}

.quick-programs article:nth-child(2) {
  border-top-color: var(--rust);
}

.quick-programs article:nth-child(3) {
  border-top-color: var(--ochre);
}

.quick-programs article:nth-child(4) {
  border-top-color: var(--pine);
}

.quick-programs article::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid rgba(4, 88, 103, 0.14);
}

.ray-crop-panel,
.story-mark,
.contact-brand-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(4, 88, 103, 0.25);
  background:
    radial-gradient(circle at 22% 28%, rgba(211, 131, 50, 0.2), transparent 34%),
    linear-gradient(140deg, #f9f3e9, #e6d7c2);
  box-shadow: var(--shadow);
}

.ray-crop-panel img,
.story-mark img {
  width: min(760px, 130%);
  max-width: none;
  transform: rotate(-10deg) translateX(3%);
}

.compact-ray {
  min-height: 280px;
}

.compact-ray img {
  width: 126%;
}

.wide-feature {
  grid-template-columns: minmax(360px, 1.08fr) minmax(320px, 0.82fr);
}

.wide-feature > div:last-child {
  padding: 10px 0;
}

.apparel-front {
  position: relative;
  min-height: 520px;
  border-top: 1px solid var(--line);
}

.apparel-front::after {
  content: "";
  position: absolute;
  left: clamp(20px, 4vw, 64px);
  bottom: 20px;
  width: min(420px, 42vw);
  height: 110px;
  pointer-events: none;
  background: url("/assets/images/support-assets/wave-stripe-02-surf-dawn.svg") left center / contain no-repeat;
  opacity: 0.13;
}

.apparel-front .hero-copy {
  padding-left: clamp(18px, 3vw, 36px);
}

.apparel-front .hero-media {
  min-height: 520px;
  border-bottom-left-radius: 34%;
  background: #eadfce;
}

.hero-media img.hero-ray-stamp {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: min(180px, 26vw);
  height: auto;
  min-height: 0;
  object-fit: contain;
  padding: 14px;
  border-radius: 50%;
  background: rgba(251, 247, 239, 0.72);
  backdrop-filter: blur(8px);
}

.launch-feature {
  border-top: 5px solid var(--teal);
}

.category-tabs {
  border-top: 1px solid var(--line);
}

.category-tabs button.active {
  border-color: var(--rust);
  color: var(--teal);
}

.product-card {
  position: relative;
}

.product-action {
  background:
    radial-gradient(circle at 18% 14%, rgba(221, 155, 88, 0.18), transparent 34%),
    #eee5da;
}

.product-meta h3 {
  color: var(--deep-teal);
  font-size: 14px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.program-title {
  max-width: none;
}

.story-hero {
  grid-template-columns: minmax(320px, 0.84fr) minmax(420px, 1.16fr);
}

.story-mark {
  min-height: 480px;
  background:
    linear-gradient(rgba(5, 63, 69, 0.86), rgba(5, 63, 69, 0.86)),
    var(--teal);
}

.story-mark img {
  opacity: 0.95;
  filter: saturate(1.05);
}

.values-grid article:nth-child(1) {
  border-top: 5px solid var(--teal);
}

.values-grid article:nth-child(2) {
  border-top: 5px solid var(--rust);
}

.values-grid article:nth-child(3) {
  border-top: 5px solid var(--ochre);
}

.registration-principles {
  border-top: 1px solid var(--line);
}

.registration-principles div {
  background: rgba(251, 247, 239, 0.54);
}

.session-card {
  position: relative;
  border-top: 5px solid var(--teal);
  overflow: hidden;
}

.session-card::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -44px;
  width: 190px;
  height: 140px;
  pointer-events: none;
  background: url("/assets/images/support-assets/frame-03-corner-entries.svg") center / contain no-repeat;
  opacity: 0.18;
}

.session-card[data-flow-type="private"] {
  border-top-color: var(--ochre);
}

.session-card h2 {
  color: var(--deep-teal);
}

.session-card .button {
  border-color: var(--deep-teal);
  background: var(--deep-teal);
}

.event-board {
  border-top-color: var(--deep-teal);
}

.event-board article {
  padding-left: 18px;
  padding-right: 18px;
  background: rgba(251, 247, 239, 0.44);
}

.event-board article:nth-child(even) {
  background: rgba(247, 241, 231, 0.64);
}

.schedule-detail-trigger {
  min-width: 92px;
}

.contact-brand-card {
  grid-template-rows: auto 1fr;
  gap: 10px;
  min-height: 460px;
  padding: clamp(24px, 4vw, 48px);
}

.contact-brand-card img:first-child {
  width: min(420px, 100%);
}

.contact-brand-card img:last-child {
  width: min(440px, 88%);
}

.footer-brand > img {
  border: 0;
  object-fit: contain;
}

.footer-brand img.footer-wordmark {
  width: min(210px, 100%);
  height: auto;
  border: 0;
  object-fit: contain;
}

.footer-brand p {
  margin-top: 4px;
}

.benefits {
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: "";
  position: absolute;
  inset: auto 20px -36px 20px;
  height: 90px;
  pointer-events: none;
  background: url("/assets/images/support-assets/border-trim-01-medallion-row.svg") center / 680px 110px repeat-x;
  opacity: 0.12;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: minmax(230px, 310px) 1fr;
  }

  .booking-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 38px 0 42px;
  }

  .booking-nudge {
    justify-self: stretch;
    min-height: 320px;
  }

}

@media (max-width: 840px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand .brand-ray {
    width: 48px;
    height: 48px;
  }

  .brand img.brand-wordmark {
    width: min(170px, 48vw);
  }

  .booking-hero {
    padding-top: 30px;
  }

  .booking-lead h1 {
    font-size: clamp(44px, 11vw, 64px);
  }

  .hero-mini-strip,
  .home-brand-band,
  .wide-feature,
  .story-hero {
    grid-template-columns: 1fr;
  }

  .hero-mini-strip a {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-mini-strip a:last-child {
    border-bottom: 0;
  }

  .home-brand-band img {
    max-width: 260px;
  }

  .booking-nudge,
  .ray-crop-panel,
  .story-mark,
  .contact-brand-card {
    min-height: 330px;
  }

  .booking-ray {
    right: -34%;
    top: -18%;
    width: 118%;
  }

  .apparel-front .hero-media {
    min-height: 340px;
    border-bottom-left-radius: 0;
  }

  .site-header::after,
  .booking-hero::after,
  .apparel-front::after,
  .home-brand-band::after {
    display: none;
  }

  .quick-programs::before,
  .site-footer::before {
    opacity: 0.08;
  }
}

@media (max-width: 520px) {
  .brand {
    gap: 8px;
  }

  .brand .brand-ray {
    width: 42px;
    height: 42px;
  }

  .brand img.brand-wordmark {
    width: min(146px, 45vw);
  }

  .booking-lead h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .booking-nudge h2,
  .home-brand-band p {
    font-size: clamp(32px, 10vw, 44px);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-register-actions {
    grid-template-columns: 1fr;
  }

  .register-hero-button {
    min-height: 104px;
    font-size: clamp(42px, 12vw, 54px);
  }

  .quick-programs article {
    min-height: 180px;
  }

  .ray-crop-panel img,
  .story-mark img {
    width: 140%;
  }
}

/* Customer-facing cleanup layer */
.site-header::after,
.booking-hero::before,
.booking-hero::after,
.site-footer::before {
  display: none;
}

.booking-hero {
  grid-template-columns: minmax(300px, 0.58fr) minmax(380px, 0.82fr);
  gap: clamp(22px, 3.4vw, 48px);
  justify-content: stretch;
  align-items: center;
  min-height: auto;
  padding: clamp(28px, 4vw, 46px) 0 clamp(22px, 3vw, 34px);
}

.booking-lead {
  justify-items: start;
  max-width: 460px;
  text-align: left;
}

.booking-lead h1 {
  display: grid;
  max-width: 380px;
  color: var(--teal);
  font-family: var(--sans);
  font-size: clamp(54px, 5.6vw, 88px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.booking-lead h1 span {
  color: var(--rust);
}

.booking-lead > p:not(.eyebrow) {
  max-width: 360px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-register-actions {
  grid-template-columns: minmax(240px, 330px) minmax(120px, max-content);
  justify-content: start;
  justify-items: start;
  width: 100%;
  margin: clamp(16px, 2vw, 22px) 0 12px;
}

.hero-register-actions .button.ghost {
  min-height: 48px;
  width: min(190px, 100%);
  border-color: var(--line-strong);
  background: rgba(251, 247, 239, 0.62);
}

.register-hero-button {
  min-height: clamp(62px, 5vw, 76px);
  border-radius: 8px;
  box-shadow: inset 0 -4px 0 var(--rust);
  font-size: clamp(24px, 2.6vw, 34px);
}

.hero-mini-strip {
  width: min(520px, 100%);
  max-width: none;
  margin-top: clamp(20px, 2.6vw, 30px);
  border-radius: 8px;
  box-shadow: none;
  overflow: hidden;
}

.hero-mini-strip button {
  display: grid;
  gap: 5px;
  min-height: 88px;
  padding: 14px 16px;
  border: 0;
  border-right: 1px solid var(--line);
  background: rgba(251, 247, 239, 0.72);
  text-align: center;
  cursor: pointer;
}

.hero-mini-strip time,
.hero-mini-strip strong {
  font-size: 11px;
  letter-spacing: 1.7px;
}

.hero-mini-strip span {
  font-size: 15px;
}

.beach-hero-photo {
  position: relative;
  min-height: clamp(360px, 39vw, 510px);
  overflow: hidden;
  border: 1px solid rgba(7, 91, 97, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 238, 0.1), rgba(211, 131, 50, 0.16)),
    #eadbc7;
  box-shadow: 0 24px 60px rgba(70, 53, 31, 0.16);
}

.beach-hero-photo::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -12px;
  height: 128px;
  pointer-events: none;
  background: url("/assets/images/support-assets/wave-stripe-03-tropical-reef.svg") center / 620px 150px repeat-x;
  opacity: 0.58;
  z-index: 2;
}

.beach-hero-photo::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: 34px;
  width: min(150px, 18vw);
  height: min(150px, 18vw);
  pointer-events: none;
  background: url("/assets/images/support-assets/badge-03-palm.svg") center / contain no-repeat;
  opacity: 0.78;
  z-index: 3;
}

.beach-hero-photo > img:first-child {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(0.95) brightness(1.04);
}

.beach-hero-ray {
  position: absolute;
  right: -7%;
  top: 3%;
  width: min(390px, 47vw);
  max-width: none;
  opacity: 0.84;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 20px 30px rgba(70, 53, 31, 0.16));
  transform: rotate(-7deg);
  z-index: 2;
}

.beach-hero-buy {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--paper-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.admin-page {
  max-width: none;
  padding: 0;
}

body[data-page="admin"] .announcement,
body[data-page="admin"] .site-header,
body[data-page="admin"] .site-footer {
  display: none;
}

.admin-shell {
  min-height: 100vh;
  padding: clamp(14px, 2vw, 24px);
  background: #f7f1e8;
}

.admin-topbar,
.admin-detail-header,
.admin-roster-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.admin-topbar h1,
.admin-detail h2,
.admin-editor h2 {
  margin: 0;
  color: var(--teal);
  font-family: var(--display);
}

.admin-topbar h1 {
  font-size: clamp(38px, 4vw, 56px);
  line-height: 0.95;
}

.admin-topbar-actions,
.admin-detail-actions,
.admin-form-actions,
.admin-row-actions,
.admin-filter-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-shell .button {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 6px;
  font-size: 10px;
  letter-spacing: 1.6px;
}

.admin-topbar-actions span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.admin-alert {
  margin: 12px 0 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-2);
  color: var(--ink);
  font-weight: 800;
}

.admin-alert[data-tone="error"] {
  border-color: rgba(163, 59, 39, 0.45);
  color: var(--brick);
}

.admin-alert[data-tone="success"] {
  border-color: rgba(31, 111, 63, 0.38);
  color: var(--green);
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 16px 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.admin-metrics article,
.admin-status-grid div {
  display: grid;
  gap: 5px;
  padding: 11px 12px;
  background: var(--paper-2);
}

.admin-metrics span,
.admin-status-grid span,
.admin-event-item span,
.admin-event-item small,
.admin-roster-head span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.admin-metrics strong,
.admin-status-grid strong {
  color: var(--teal);
  font-family: var(--display);
  font-size: 26px;
  line-height: 1;
}

.admin-workspace {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(520px, 1.7fr) minmax(300px, 0.84fr);
  align-items: start;
  gap: 12px;
}

.admin-sidebar,
.admin-detail,
.admin-editor {
  min-width: 0;
}

.admin-filter-row {
  margin-bottom: 10px;
}

.admin-filter-row button {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
}

.admin-filter-row button.active {
  background: var(--teal);
  color: var(--paper-2);
}

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

.admin-event-item {
  display: grid;
  gap: 4px;
  width: 100%;
  min-height: 108px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-2);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.admin-event-item.active {
  border-color: var(--teal);
  box-shadow: inset 4px 0 0 var(--teal);
}

.admin-event-item strong {
  color: var(--teal);
  font-size: 18px;
  line-height: 1.05;
}

.admin-event-item em {
  color: var(--brick);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.admin-detail,
.admin-editor form {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper-2);
}

.admin-detail {
  padding: 18px;
}

.admin-detail-header {
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.admin-detail-header h2 {
  margin: 0 0 6px;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 0.98;
}

.admin-detail-header span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.admin-status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 12px 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.admin-add-person,
.admin-editor form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.admin-add-person {
  margin: 12px 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fbf6ef;
}

.admin-add-person h3,
.admin-roster h3,
.admin-editor h2 {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--teal);
  font-size: 19px;
}

.admin-editor form {
  padding: 14px;
}

.admin-add-person label,
.admin-editor label,
.admin-roster-row label {
  display: grid;
  gap: 5px;
  min-width: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.admin-add-person label.full,
.admin-editor label.full,
.admin-form-actions {
  grid-column: 1 / -1;
}

.admin-add-person input,
.admin-add-person select,
.admin-editor input,
.admin-editor select,
.admin-editor textarea,
.admin-roster-row input,
.admin-roster-row select {
  width: 100%;
  min-width: 0;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
  color: var(--ink);
  padding: 7px 9px;
  font-size: 14px;
  letter-spacing: 0;
}

.admin-roster-table {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.admin-roster-row {
  display: grid;
  grid-template-columns: minmax(130px, 1.2fr) minmax(128px, 1fr) minmax(150px, 1.15fr) 120px 140px 84px;
  gap: 8px;
  align-items: end;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffaf2;
}

.admin-roster-row.canceled {
  opacity: 0.58;
}

.admin-roster-row label.wide,
.admin-row-actions {
  grid-column: 1 / -1;
}

.admin-row-actions {
  justify-content: flex-end;
}

.admin-empty-state,
.admin-empty-note {
  margin: 0;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 7px;
  color: var(--muted);
  background: rgba(255, 248, 238, 0.7);
}

.admin-empty-state h2 {
  margin: 0 0 8px;
}

.button.danger,
.button.ghost.danger {
  color: var(--brick);
}

.contact-page-hero {
  grid-template-columns: minmax(300px, 0.82fr) minmax(360px, 0.9fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  min-height: auto;
  padding: clamp(46px, 6vw, 64px) 0 clamp(40px, 5vw, 56px);
}

.contact-copy {
  display: grid;
  gap: 16px;
  align-content: center;
}

.contact-copy h1 {
  max-width: 440px;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1;
}

.contact-copy p:not(.eyebrow) {
  max-width: 420px;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.2;
}

.contact-form-section {
  max-width: 920px;
  padding: 6px 0 clamp(32px, 5vw, 48px);
}

.contact-page-hero .contact-form,
.contact-form-section .contact-form {
  position: relative;
  overflow: hidden;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 8px;
  box-shadow: none;
}

.contact-page-hero .contact-form::before,
.contact-form-section .contact-form::before {
  content: "";
  position: absolute;
  right: -46px;
  top: -50px;
  width: 190px;
  height: 190px;
  pointer-events: none;
  background: url("/assets/images/support-assets/sunrise-motif-04-concentric-ring.svg") center / contain no-repeat;
  opacity: 0.08;
}

.contact-page-hero .contact-form > *,
.contact-form-section .contact-form > * {
  position: relative;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: 8px;
  background: rgba(255, 252, 247, 0.82);
}

.contact-form button {
  width: min(260px, 100%);
  min-height: 58px;
  border-radius: 8px;
}

.contact-page-hero .contact-form textarea,
.contact-form-section .contact-form textarea {
  min-height: 128px;
}

.contact-info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  border-radius: 8px;
  box-shadow: none;
  overflow: hidden;
}

.contact-info-strip div {
  display: grid;
  gap: 8px;
  min-height: 116px;
  padding: 24px;
  border-top: 0;
  border-right: 1px solid var(--line);
}

.contact-info-strip div:last-child {
  border-right: 0;
}

.contact-info-strip span {
  color: var(--rust);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-info-strip strong {
  color: var(--deep-teal);
  font-size: clamp(16px, 1.9vw, 22px);
  line-height: 1.12;
}

.contact-info-strip a {
  color: inherit;
}

.page-title.about-clean-hero {
  display: grid;
  justify-items: center;
  justify-content: center;
  max-width: none;
  text-align: center;
}

.about-clean-hero > div {
  justify-self: center;
  width: min(100%, 760px);
}

.about-clean-hero h1 {
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.about-clean-hero > div > p:not(.eyebrow) {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.35;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 0;
}

.about-actions .button {
  min-height: 42px;
  padding: 0 20px;
  font-size: 11px;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 238, 0.86), rgba(246, 232, 211, 0.74)),
    var(--paper-2);
  overflow: hidden;
}

.about-principles article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 142px;
  padding: clamp(18px, 2.4vw, 26px);
  border-right: 1px solid var(--line);
}

.about-principles article:last-child {
  border-right: 0;
}

.about-principles span {
  color: var(--rust);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
}

.about-principles h2 {
  margin-bottom: 0;
  color: var(--deep-teal);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
}

.about-principles p {
  max-width: 280px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

.instagram-page {
  max-width: 620px;
  padding-top: clamp(18px, 3vw, 34px);
}

.page-title.instagram-title {
  display: grid;
  justify-items: center;
  justify-content: center;
  max-width: none;
  text-align: center;
}

.instagram-title h1,
.instagram-title > div > p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.instagram-feed-panel {
  display: grid;
  justify-items: center;
  gap: 14px;
  min-height: 0;
  margin: 0 auto;
  padding: 0;
}

.instagram-account-bar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, 540px);
  padding: 0 2px 10px;
  border-bottom: 1px solid var(--line);
}

.instagram-account-bar span,
.instagram-account-bar strong {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.instagram-account-bar span {
  color: var(--brick);
}

.instagram-account-bar strong {
  color: var(--teal);
}

.instagram-feed-panel .instagram-media {
  width: min(100%, 540px) !important;
  min-width: 0 !important;
  margin: 0 auto 24px !important;
}

.instagram-feed-panel .instagram-media a {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.site-header {
  background: rgba(255, 248, 238, 0.94);
  backdrop-filter: blur(14px);
}

.announcement {
  background: linear-gradient(90deg, var(--teal), #08727a);
}

.quick-programs article,
.session-card,
.values-grid article,
.program-grid article,
.contact-card,
.contact-form,
.calendar-shell,
.booking-card,
.signup-start-card,
.payment-panel,
.launch-feature,
.single-product-page {
  border-color: rgba(7, 91, 97, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 248, 238, 0.9), rgba(246, 232, 211, 0.78)),
    var(--paper-2);
}

.session-card::after,
.program-grid article::after,
.contact-info-strip::after {
  opacity: 0.12;
}

.page-title,
.split-hero,
.wide-feature,
.register-hero,
.signup-start {
  position: relative;
}

.page-title::after,
.split-hero::after,
.wide-feature::after,
.register-hero::after,
.signup-start::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -32px;
  height: 74px;
  pointer-events: none;
  background: url("/assets/images/support-assets/wave-stripe-02-surf-dawn.svg") center / 620px 122px repeat-x;
  opacity: 0.1;
}

.single-product-page {
  border: 1px solid rgba(7, 91, 97, 0.16);
  border-radius: 8px;
  padding-left: clamp(18px, 3vw, 34px);
  padding-right: clamp(18px, 3vw, 34px);
}

.hero-mini-strip button:last-child {
  border-right: 0;
}

.hero-mini-strip button:hover,
.calendar-pill:hover,
.schedule-reserve-trigger:hover {
  background: rgba(4, 88, 103, 0.06);
}

.reserve-popup-root {
  display: contents;
}

.schedule-actions {
  display: grid;
  gap: 8px;
}

.schedule-reserve-trigger {
  min-height: 38px;
  border: 1px solid var(--teal);
  border-radius: 999px;
  background: var(--teal);
  color: var(--paper-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.booking-nudge,
.home-brand-band,
.home-feature,
.benefits {
  display: none;
}

.site-footer {
  border-top: 1px solid var(--line);
}

body[data-page="home"] main {
  padding-bottom: 0;
}

.site-footer {
  display: grid;
  justify-content: center;
  justify-items: center;
  gap: 22px;
  padding: 38px 24px 48px;
  text-align: center;
}

.footer-brand {
  justify-content: center;
  justify-self: center;
  width: 100%;
}

.footer-brand > div {
  display: grid;
  justify-items: center;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: center;
  justify-self: center;
  gap: 16px 28px;
}

.single-product-page {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(280px, 0.62fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  max-width: 1080px;
  margin: 12px auto 56px;
  padding: clamp(22px, 3.6vw, 44px);
  border: 1px solid rgba(7, 91, 97, 0.16);
  border-radius: 8px;
}

.single-product-page > img {
  width: 100%;
  max-width: 470px;
  max-height: min(560px, calc(100vh - 260px));
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  justify-self: center;
}

.single-product-page > div {
  display: grid;
  gap: 14px;
  align-content: center;
  max-width: 500px;
}

.single-product-page h1 {
  max-width: 420px;
  margin-bottom: 0;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 0.98;
}

.single-product-page p:not(.eyebrow) {
  max-width: 330px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.4;
}

.single-product-page .shop-payment-note {
  max-width: 390px;
  margin: 2px 0 4px;
  padding: 12px 14px;
  border-left: 3px solid var(--brick);
  background: rgba(163, 59, 39, 0.06);
  color: var(--ink);
}

.single-product-page .button {
  width: min(100%, 300px);
  justify-self: start;
}

.single-product-price {
  color: var(--brick);
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1;
}

.merch-order-modal[hidden] {
  display: none;
}

.merch-order-modal {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.merch-order-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 30, 31, 0.62);
}

.merch-order-sheet {
  position: relative;
  display: grid;
  gap: 22px;
  width: min(620px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 248, 238, 0.96), rgba(246, 232, 211, 0.9)),
    var(--paper-2);
  box-shadow: 0 24px 70px rgba(4, 42, 45, 0.24);
}

.merch-order-close {
  position: absolute;
  top: 16px;
  right: 16px;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.merch-order-summary {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: center;
  padding-right: 94px;
}

.merch-order-summary img {
  width: 96px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.merch-order-summary div,
.merch-order-form {
  display: grid;
  gap: 6px;
}

.merch-order-summary span,
.merch-order-form label {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.merch-order-summary strong {
  color: var(--brick);
  font-size: 26px;
  line-height: 1;
}

.merch-order-summary small {
  color: var(--muted);
  font-size: 14px;
}

.merch-order-form {
  gap: 16px;
}

.merch-order-form[hidden] {
  display: none;
}

.merch-order-confirmation[hidden] {
  display: none;
}

.merch-order-confirmation {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(7, 91, 97, 0.16);
  border-radius: 8px;
  background: rgba(255, 248, 238, 0.72);
}

.merch-order-confirmation h2 {
  max-width: 420px;
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 0.98;
}

.merch-order-confirmation p:not(.eyebrow) {
  max-width: 460px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.merch-order-confirmation .button {
  width: min(100%, 260px);
}

.merch-order-form h2 {
  max-width: 420px;
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 46px);
  line-height: 1;
}

.merch-order-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

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

.merch-order-form input,
.merch-order-form select {
  min-height: 54px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 238, 0.72);
  color: var(--ink);
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  padding: 0 16px;
}

.merch-order-form .button {
  width: 100%;
}

.merch-order-form .button:disabled {
  cursor: wait;
  opacity: 0.64;
}

@media (max-width: 840px) {
  .single-product-page {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .single-product-page > img,
  .single-product-page > div {
    max-width: none;
  }

  .single-product-page > img {
    max-height: 520px;
  }

  .single-product-page .button {
    width: 100%;
  }

  .merch-order-fields {
    grid-template-columns: 1fr;
  }

  .merch-order-summary {
    grid-template-columns: 78px 1fr;
    padding-right: 0;
  }

  .merch-order-summary img {
    width: 78px;
  }

  .booking-hero {
    grid-template-columns: 1fr;
    padding-top: 32px;
    padding-bottom: 38px;
  }

  .booking-lead {
    justify-items: center;
    max-width: none;
    text-align: center;
  }

  .booking-lead h1 {
    max-width: 360px;
    font-size: clamp(48px, 16vw, 72px);
  }

  .hero-register-actions {
    grid-template-columns: minmax(260px, 420px);
    justify-content: center;
    justify-items: center;
  }

  .booking-lead > p:not(.eyebrow),
  .hero-mini-strip {
    display: none;
  }

  .beach-hero-photo {
    min-height: 340px;
  }

  .beach-hero-ray {
    right: -18%;
    top: 2%;
    width: min(330px, 82vw);
  }

  .hero-mini-strip {
    margin-top: 18px;
  }

  .contact-page-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 40px;
  }

  .contact-copy {
    gap: 12px;
    text-align: center;
    justify-items: center;
  }

  .contact-copy h1 {
    font-size: clamp(36px, 10vw, 46px);
  }

  .contact-page-hero .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-info-strip {
    grid-template-columns: 1fr;
  }

  .contact-info-strip div {
    min-height: 92px;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-info-strip div:last-child {
    border-bottom: 0;
  }

  .about-clean-hero {
    padding-top: 34px;
    text-align: center;
    justify-items: center;
  }

  .about-clean-hero > div,
  .about-clean-hero > div > p:not(.eyebrow) {
    width: 100%;
    max-width: 100%;
  }

  .about-clean-hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .about-actions {
    align-self: stretch;
    justify-content: center;
    width: 100%;
  }

  .about-actions .button {
    width: 100%;
  }

  .about-principles {
    grid-template-columns: 1fr;
  }

  .about-principles article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-principles article:last-child {
    border-bottom: 0;
  }

  .hero-mini-strip button {
    min-height: 78px;
    padding: 12px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-mini-strip button:last-child {
    border-bottom: 0;
  }

  .instagram-page {
    padding-top: 18px;
  }

  .instagram-account-bar {
    display: grid;
    justify-items: center;
    gap: 6px;
    text-align: center;
  }
}

@media (max-width: 840px) {
  .site-footer {
    grid-template-columns: 1fr;
    padding: 28px 24px 40px;
  }

  .site-footer nav {
    grid-template-columns: repeat(2, max-content);
  }

  .admin-shell {
    padding: 16px;
  }

  .admin-topbar,
  .admin-detail-header,
  .admin-roster-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-metrics,
  .admin-status-grid,
  .admin-workspace,
  .admin-add-person,
  .admin-editor form {
    grid-template-columns: 1fr;
  }

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

  .admin-topbar-actions {
    width: 100%;
  }

  .admin-topbar-actions span {
    flex-basis: 100%;
  }

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