:root {
  --navy: #061a33;
  --navy-2: #0b2c55;
  --navy-3: #123d72;
  --blue: #1d7ce0;
  --ice: #8fd6ff;
  --ice-2: #cfefff;
  --paper: #f6f9fc;
  --white: #ffffff;
  --ink: #172637;
  --muted: #637386;
  --line: #dce8f2;
  --line-dk: rgba(255, 255, 255, 0.16);
  --r: 8px;
  --maxw: 1160px;
  --shadow: 0 18px 46px -24px rgba(6, 26, 51, 0.36);
  --shadow-sm: 0 8px 24px -16px rgba(6, 26, 51, 0.32);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  color: var(--ink);
  background: var(--white);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 740px;
  font-size: clamp(2.8rem, 6.4vw, 5.25rem);
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.45rem);
}

h3 {
  font-size: clamp(1.24rem, 1.6vw, 1.52rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px clamp(20px, 5vw, 48px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 50px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
}

nav a {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-button {
  padding: 9px 16px;
  border: 1px solid var(--navy);
  border-radius: var(--r);
  color: var(--white);
  background: var(--navy);
}

.section-inner {
  width: min(var(--maxw), calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--navy-3);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--ice);
}

.hero .eyebrow {
  color: var(--ice-2);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(105deg, rgba(6, 26, 51, 0.97) 0%, rgba(6, 26, 51, 0.92) 45%, rgba(10, 44, 85, 0.72) 100%),
    radial-gradient(circle at 74% 22%, rgba(143, 214, 255, 0.28), transparent 34%),
    var(--navy);
  color: var(--white);
}

.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  opacity: 0.34;
  filter: saturate(0.9) contrast(1.08);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(var(--maxw), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) 0;
}

.hero__mark {
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(143, 214, 255, 0.22);
}

.hero__mark img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.hero h1 {
  color: var(--white);
  max-width: 820px;
}

.hero__copy {
  width: min(680px, 100%);
  margin: 22px 0 30px;
  color: #d7eafb;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 42px;
  color: #bdd7eb;
}

.hero__facts div {
  min-width: 120px;
}

.hero__facts strong {
  display: block;
  color: var(--white);
  font-size: 1.65rem;
  line-height: 1;
}

.hero__facts span {
  display: block;
  margin-top: 5px;
  font-size: 0.84rem;
}

.hero__rink {
  position: absolute;
  inset: auto -10vw -22vw auto;
  width: min(760px, 74vw);
  aspect-ratio: 1.72;
  border: 2px solid rgba(143, 214, 255, 0.24);
  border-radius: 50% / 36%;
  transform: rotate(-10deg);
}

.hero__rink::before,
.hero__rink::after,
.hero__rink span {
  content: "";
  position: absolute;
  border: 1px solid rgba(143, 214, 255, 0.18);
}

.hero__rink::before {
  inset: 18%;
  border-radius: 50% / 36%;
}

.hero__rink::after {
  top: 0;
  bottom: 0;
  left: 50%;
}

.hero__rink span:nth-child(1) {
  width: 16%;
  aspect-ratio: 1;
  left: 42%;
  top: 37%;
  border-radius: 50%;
}

.hero__rink span:nth-child(2) {
  top: 18%;
  bottom: 18%;
  left: 22%;
}

.hero__rink span:nth-child(3) {
  top: 18%;
  bottom: 18%;
  right: 22%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1.5px solid transparent;
  border-radius: var(--r);
  font-weight: 750;
  cursor: pointer;
  transition: transform 0.16s var(--ease), background 0.16s var(--ease), border-color 0.16s var(--ease), box-shadow 0.16s var(--ease);
}

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

.button--primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: var(--shadow-sm);
}

.button--ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
}

.quick-book {
  padding: clamp(56px, 7vw, 86px) 0;
  background: var(--paper);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 104px;
}

.booking-copy p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.04rem;
}

.booking-copy .fee-disclaimer {
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 760;
}

.booking-form {
  display: grid;
  gap: 15px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row,
.filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

select,
input,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 0.96rem;
}

textarea {
  resize: vertical;
}

select:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--ice);
  outline-offset: 1px;
  border-color: var(--navy-3);
}

.form-message {
  min-height: 24px;
  color: var(--muted);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.locked-window-note {
  margin-top: -4px;
  padding: 10px 12px;
  border-left: 3px solid var(--blue);
  border-radius: 6px;
  color: var(--navy);
  background: #f1f8ff;
  font-size: 0.9rem;
  font-weight: 750;
}

.facility-fee-note {
  margin-top: -4px;
  padding: 10px 12px;
  border: 1px solid rgba(135, 196, 232, 0.55);
  border-radius: 8px;
  color: var(--navy);
  background: #f7fbff;
  font-size: 0.9rem;
  font-weight: 760;
}

.section {
  padding: clamp(64px, 8vw, 108px) 0;
  scroll-margin-top: 118px;
}

.programs-section {
  background: var(--white);
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(34px, 5vw, 54px);
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 28px;
  align-items: end;
}

.section-note {
  color: var(--muted);
}

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

.program-card {
  min-height: 304px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), border-color 0.18s var(--ease);
}

.program-card:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 124, 224, 0.42);
  box-shadow: var(--shadow);
}

.program-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.program-card__top span {
  color: var(--navy-3);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-card__top strong {
  flex: none;
  padding: 5px 9px;
  border-radius: 6px;
  color: var(--navy);
  background: var(--ice-2);
  font-size: 0.9rem;
}

.program-card p {
  margin-top: 12px;
  color: var(--muted);
}

.text-button {
  align-self: flex-start;
  margin-top: auto;
  padding: 14px 0 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.text-button::after {
  content: " ->";
}

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

.filters {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.status-line {
  min-height: 30px;
  margin: 18px 0;
  color: var(--muted);
  font-weight: 700;
}

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

.slot-card {
  min-height: 196px;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.slot-card strong {
  color: var(--navy);
  font-size: 1.06rem;
}

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

.slot-card .button {
  align-self: end;
  width: 100%;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(20px, 5vw, 48px);
  border-top: 1px solid var(--line-dk);
  background: var(--navy);
  color: #c9dded;
}

.site-footer img {
  width: 126px;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--navy);
}

.thanks {
  width: min(520px, calc(100% - 36px));
  display: grid;
  justify-items: start;
  gap: 18px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.thanks img {
  width: 176px;
}

.thanks h1 {
  color: var(--navy);
  font-size: clamp(2.2rem, 5vw, 4rem);
}

@media (max-width: 940px) {
  .hero {
    min-height: 620px;
  }

  .booking-layout,
  .section-heading--split {
    grid-template-columns: 1fr;
  }

  .booking-copy {
    position: static;
  }

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

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
  }

  .hero__mark {
    width: 96px;
    height: 96px;
  }

  .hero__mark img {
    width: 72px;
    height: 72px;
  }

  .hero__facts {
    gap: 18px;
  }

  .form-row,
  .filters,
  .program-grid,
  .slot-list {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

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

/* Final top polish */
.site-header {
  min-height: 74px;
  padding-block: 10px;
}

.site-header .brand {
  flex: 0 1 auto;
  min-width: 0;
}

.site-header .brand img {
  width: clamp(150px, 17vw, 218px);
  background: #ffffff;
  border: 1px solid rgba(143, 214, 255, 0.28);
  border-radius: 6px;
  padding: 7px 9px;
  box-shadow: 0 14px 34px -24px rgba(143, 214, 255, 0.55);
}

.site-header nav {
  gap: clamp(10px, 1.8vw, 22px);
}

.site-header nav a {
  font-size: 0.9rem;
}

.hero {
  min-height: 650px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 11, 22, 0.88) 0%, rgba(4, 11, 22, 0.66) 48%, rgba(4, 11, 22, 0.28) 100%);
  pointer-events: none;
}

.hero__photo {
  opacity: 0.58;
  object-position: center 34%;
}

.hero__inner {
  position: relative;
  z-index: 2;
}

.hero__content {
  padding-top: 12px;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 6.2vw, 5.8rem);
}

.hero__lead {
  max-width: 720px;
}

@media (max-width: 760px) {
  .site-header {
    gap: 10px;
    padding-inline: 16px;
  }

  .site-header .brand img {
    width: min(188px, 58vw);
  }

  .site-header nav {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 2px;
  }

  .site-header nav a {
    flex: none;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 590px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }
}

/* Real Jeter logo and photo asset integration */
.site-header .brand img {
  width: clamp(170px, 19vw, 270px);
  height: auto;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(143, 214, 255, 0.24);
  border-radius: 8px;
  padding: 8px 10px;
  box-shadow: 0 18px 44px -30px rgba(143, 214, 255, 0.45);
}

.site-header .brand span {
  display: none;
}

.hero__mark {
  width: min(390px, 100%);
  height: auto;
  min-height: 122px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(143, 214, 255, 0.35);
}

.hero__mark img {
  width: 100%;
  height: auto;
}

.site-footer img {
  width: min(280px, 62vw);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  padding: 10px 12px;
}

.class-guide-section {
  background: #f3f7fb;
}

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

.class-guide-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 238px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.class-guide-card span {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.class-guide-card p {
  color: var(--muted);
}

@media (max-width: 940px) {
  .photo-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 700px) {
  .site-header .brand img {
    width: min(210px, 66vw);
  }

  .hero__mark {
    width: min(320px, 100%);
    min-height: 0;
  }

  .hero__mark img {
    width: 100%;
    height: auto;
  }

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

  .class-guide-grid {
    grid-template-columns: 1fr;
  }
}

/* Premium JHD refresh */
:root {
  --red: #8fc8ec;
  --silver: #e8eef5;
  --charcoal: #111923;
  --deep: #040b16;
  --glow: rgba(115, 205, 255, 0.28);
}

body {
  background: #f3f7fb;
}

.site-header {
  min-height: 86px;
  background: rgba(4, 11, 22, 0.92);
  border-bottom: 1px solid rgba(143, 214, 255, 0.22);
  color: var(--white);
}

.brand {
  gap: 13px;
}

.brand img {
  width: clamp(150px, 18vw, 255px);
  height: auto;
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 5px;
  color: var(--ice);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

nav a {
  color: #dcebf8;
}

.nav-social {
  color: var(--ice);
}

.nav-button {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 30px -18px rgba(143, 200, 236, 0.9);
}

.hero {
  min-height: 720px;
  background:
    linear-gradient(110deg, rgba(4, 11, 22, 0.98) 0%, rgba(6, 26, 51, 0.95) 54%, rgba(10, 47, 83, 0.9) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 112px),
    var(--deep);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(143, 214, 255, 0.08) 60%, rgba(255, 255, 255, 0.1) 100%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
}

.hero__content {
  min-width: 0;
}

.hero__mark {
  width: min(390px, 100%);
  height: auto;
  min-height: 122px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(143, 214, 255, 0.28), 0 28px 70px -40px var(--glow);
  padding: 18px 22px;
}

.hero__mark img {
  width: 100%;
  height: auto;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.35rem, 7vw, 6.7rem);
  text-transform: uppercase;
}

.hero__lead {
  width: min(760px, 100%);
  margin-top: 24px;
  color: var(--white);
  font-size: clamp(1.22rem, 2.2vw, 1.6rem);
  font-weight: 760;
  line-height: 1.32;
}

.hero__copy {
  max-width: 640px;
  margin-top: 16px;
}

.button {
  min-height: 50px;
  border-radius: 7px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.button--primary {
  background: var(--red);
  box-shadow: 0 18px 34px -22px rgba(143, 200, 236, 0.95);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.08);
}

.hero__panel {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(143, 214, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 80px -50px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(14px);
}

.hero__panel img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  border-radius: 7px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero__panel p {
  color: var(--ice);
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__panel > strong {
  display: block;
  margin-top: 12px;
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.08;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.hero__facts div {
  min-width: 0;
  padding: 14px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(4, 11, 22, 0.32);
}

.panel-link {
  display: block;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-weight: 850;
}

.panel-link::after {
  content: " ->";
  color: var(--red);
}

.hero__rink {
  opacity: 0.9;
  inset: auto -8vw -18vw auto;
}

.quick-book {
  margin-top: -48px;
  padding-top: 0;
  background: linear-gradient(180deg, transparent 0, #f3f7fb 48px);
  scroll-margin-top: 118px;
}

.booking-layout {
  position: relative;
  z-index: 2;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(6, 26, 51, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 80px -48px rgba(6, 26, 51, 0.55);
}

.booking-copy {
  top: 118px;
}

.booking-copy h2,
.section-heading h2 {
  text-transform: uppercase;
}

.booking-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.booking-badges span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--navy);
  background: #f7fbff;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-form {
  border-radius: 8px;
  box-shadow: none;
}

.programs-section {
  background:
    linear-gradient(180deg, #f3f7fb 0%, #ffffff 22%, #ffffff 100%);
}

.program-card {
  border-radius: 8px;
  border-top: 4px solid var(--navy-3);
}

.program-card:nth-child(3n + 2) {
  border-top-color: var(--ice);
}

.program-card:nth-child(3n) {
  border-top-color: var(--red);
}

.program-card__top strong {
  color: var(--white);
  background: var(--navy);
}

.text-button {
  color: var(--red);
}

.photo-band {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 18px;
  margin: -12px 0 28px;
}

.photo-band figure {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.photo-band img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.photo-band figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 7px;
  color: var(--white);
  background: rgba(4, 11, 22, 0.72);
  font-weight: 800;
  backdrop-filter: blur(10px);
}

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

.availability-section h2,
.availability-section .eyebrow {
  color: var(--white);
}

.availability-section .section-note,
.availability-section .status-line {
  color: #b9ccdc;
}

.filters {
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.filters label {
  color: var(--ice);
}

.slot-card {
  min-height: 222px;
  border-radius: 8px;
  border-color: rgba(143, 214, 255, 0.22);
  background: #ffffff;
  box-shadow: 0 22px 54px -38px rgba(0, 0, 0, 0.7);
}

.slot-card em {
  color: var(--navy);
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 850;
}

.site-footer {
  background: var(--deep);
}

@media (max-width: 940px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    max-width: 560px;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 150px;
  }

  .section,
  .quick-book {
    scroll-margin-top: 150px;
  }

  .site-header {
    background: rgba(4, 11, 22, 0.96);
  }

  .brand span {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.5rem);
  }

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

  .quick-book {
    margin-top: 0;
    padding-top: 42px;
  }

  .booking-layout {
    width: min(var(--maxw), calc(100% - 24px));
    padding: 18px;
  }
}

/* JHD core brand redesign */
:root {
  --navy: #102344;
  --navy-2: #182d53;
  --navy-3: #274a78;
  --blue: #5fa6d5;
  --ice: #8fc8ec;
  --ice-2: #d9f0ff;
  --paper: #f5f9fc;
  --white: #ffffff;
  --black: #05070a;
  --ink: #111827;
  --muted: #596879;
  --line: #d8e7f1;
  --red: #8fc8ec;
  --charcoal: #05070a;
  --deep: #05070a;
  --shadow: 0 22px 54px -34px rgba(16, 35, 68, 0.48);
  --shadow-sm: 0 12px 28px -22px rgba(16, 35, 68, 0.34);
}

body {
  background: var(--white);
  color: var(--ink);
}

.site-header {
  min-height: 82px;
  background: rgba(5, 7, 10, 0.94);
  border-bottom: 1px solid rgba(143, 200, 236, 0.28);
}

.site-header .brand img,
.brand img {
  width: clamp(178px, 20vw, 292px);
  height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

nav a {
  color: #e9f6ff;
}

.nav-button,
.button--primary,
.slot-card .button {
  border-color: var(--ice);
  background: var(--ice);
  color: var(--black);
  box-shadow: 0 16px 32px -24px rgba(143, 200, 236, 0.9);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero--brand {
  min-height: min(760px, calc(100vh - 20px));
  align-items: end;
  background:
    linear-gradient(105deg, rgba(5, 7, 10, 0.94) 0%, rgba(16, 35, 68, 0.88) 48%, rgba(16, 35, 68, 0.38) 100%),
    var(--black);
}

.hero--brand::before {
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.1), rgba(5, 7, 10, 0.42)),
    linear-gradient(90deg, rgba(143, 200, 236, 0.08) 0 1px, transparent 1px 120px);
}

.hero__photo {
  opacity: 0.56;
  object-position: center 42%;
}

.hero__inner--story {
  display: block;
  padding-top: clamp(92px, 14vw, 160px);
  padding-bottom: clamp(70px, 9vw, 112px);
}

.hero__content {
  max-width: 760px;
}

.hero__logo {
  width: min(430px, 86vw);
  margin: 0 0 34px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.9rem, 6.5vw, 5.8rem);
}

.hero__lead {
  width: min(720px, 100%);
  margin: 22px 0 30px;
  color: #e1f4ff;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.eyebrow {
  color: var(--navy-3);
}

.hero .eyebrow {
  color: var(--ice-2);
}

.eyebrow::before {
  background: var(--ice);
}

.section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.coach-section {
  background: var(--white);
}

.coach-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}

.coach-photo-stack {
  display: grid;
  grid-template-columns: 0.7fr 0.3fr;
  gap: 14px;
  align-items: end;
}

.coach-photo {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.coach-photo--main {
  aspect-ratio: 0.72;
  object-position: center 38%;
}

.coach-photo--side {
  aspect-ratio: 0.62;
  margin-bottom: 34px;
  object-position: center 34%;
}

.coach-copy p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.02rem;
}

.credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.credential-row span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-panel-section {
  padding: 0;
  background: var(--white);
}

.brand-panel-section img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-section,
.photo-story-section {
  background: var(--white);
}

.photo-story-section {
  padding-top: clamp(58px, 8vw, 96px);
}

.photo-story-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.photo-story-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.04rem;
}

.photo-story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(170px, 1fr));
  gap: 12px;
}

.photo-story-grid img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.photo-story-main {
  grid-row: span 2;
  min-height: 430px;
  object-position: center 46%;
}

.photo-story-grid img:nth-child(2) {
  object-position: center 46%;
}

.photo-story-grid img:nth-child(3) {
  object-position: center 34%;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 14px;
  margin-top: 34px;
}

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--black);
  box-shadow: var(--shadow-sm);
}

.media-card--wide {
  grid-column: span 2;
}

.media-card--tall {
  grid-row: span 2;
}

.media-card img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  transition: transform 420ms var(--ease);
}

.media-card:hover img {
  transform: scale(1.035);
}

.media-card figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(143, 200, 236, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(5, 7, 10, 0.72);
  font-size: 0.84rem;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.programs-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--paper) 100%);
  padding-top: clamp(64px, 8vw, 104px);
}

.section-heading--split {
  align-items: end;
}

.section-note {
  color: var(--muted);
}

.program-card {
  border: 1px solid var(--line);
  border-top: 4px solid var(--navy);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.program-card:nth-child(3n + 2) {
  border-top-color: var(--ice);
}

.program-card:nth-child(3n) {
  border-top-color: var(--navy-3);
}

.program-card__top span,
.class-guide-card span {
  color: var(--navy-3);
}

.program-card__top strong {
  color: var(--black);
  background: var(--ice);
}

.text-button {
  color: var(--navy);
}

.class-guide-section {
  background: var(--black);
  color: var(--white);
  padding-top: clamp(62px, 8vw, 100px);
  padding-bottom: clamp(62px, 8vw, 100px);
}

.class-guide-section h2,
.class-guide-section h3 {
  color: var(--white);
}

.class-guide-section .eyebrow {
  color: var(--ice);
}

.class-guide-card {
  min-height: 220px;
  border-color: rgba(143, 200, 236, 0.24);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.class-guide-card p {
  color: #c8d8e5;
}

.quick-book {
  margin-top: 0;
  padding: clamp(76px, 9vw, 120px) 0;
  background: var(--paper);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-copy {
  position: sticky;
  top: 116px;
}

.booking-badges span {
  border-color: var(--line);
  background: var(--paper);
}

.calendly-note {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: var(--paper);
  font-size: 0.94rem;
  font-weight: 750;
}

.booking-form,
.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

label {
  color: var(--navy);
}

input,
select,
textarea {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(143, 200, 236, 0.6);
  border-color: var(--ice);
}

.availability-section {
  background: var(--white);
  color: var(--ink);
}

.availability-section h2,
.availability-section .eyebrow {
  color: var(--navy);
}

.availability-section .section-note,
.availability-section .status-line {
  color: var(--muted);
}

.filters {
  border-color: var(--line);
  background: var(--paper);
}

.filters label {
  color: var(--navy);
}

.slot-list--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-height: 580px;
  overflow: auto;
  padding-right: 6px;
}

.slot-card {
  min-height: 188px;
  border-color: var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

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

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.review-card {
  display: grid;
  align-content: space-between;
  min-height: 240px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-top: 4px solid var(--ice);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.review-card::before {
  content: "Parent feedback";
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--black);
  background: var(--ice);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-card blockquote {
  color: var(--navy);
  font-size: clamp(1.16rem, 2vw, 1.44rem);
  font-weight: 850;
  line-height: 1.34;
}

.review-card figcaption {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-section {
  background: var(--navy);
  color: var(--white);
}

.contact-section h2 {
  color: var(--white);
}

.contact-section .eyebrow {
  color: var(--ice);
}

.contact-section p {
  color: #d8e9f4;
}

.response-note {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(143, 200, 236, 0.34);
  border-radius: 8px;
  color: var(--white);
  background: rgba(143, 200, 236, 0.12);
  font-size: 0.9rem;
  font-weight: 850;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.contact-email {
  display: inline-block;
  margin-top: 22px;
  color: var(--ice);
  font-weight: 900;
}

.social-links,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.social-links a,
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(143, 200, 236, 0.45);
  border-radius: 8px;
  color: var(--white);
  background: rgba(143, 200, 236, 0.12);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-links a:hover,
.footer-social a:hover {
  border-color: var(--ice);
  background: rgba(143, 200, 236, 0.22);
}

.contact-form {
  background: var(--white);
}

.hidden-field {
  display: none;
}

.site-footer {
  background: var(--black);
}

.site-footer img {
  width: min(320px, 72vw);
  padding: 0;
  background: transparent;
}

.footer-social {
  justify-content: center;
}

.panel-link::after {
  color: var(--ice);
}

.mobile-book-cta {
  display: none;
}

@media (max-width: 940px) {
  .coach-layout,
  .booking-layout,
  .contact-layout,
  .photo-story-layout {
    grid-template-columns: 1fr;
  }

  .booking-copy {
    position: static;
  }

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

  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 190px;
  }

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

  .photo-story-grid {
    grid-template-rows: repeat(2, minmax(150px, 1fr));
  }

  .photo-story-main {
    min-height: 330px;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    min-height: auto;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
  }

  .site-header .brand img,
  .brand img {
    width: min(210px, 64vw);
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
  }

  .nav-social {
    display: none;
  }

  .photo-story-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .photo-story-grid img,
  .photo-story-main {
    min-height: 0;
    aspect-ratio: 1.25;
  }

  .photo-story-main {
    object-position: center 48%;
  }

  .photo-story-grid img:nth-child(2) {
    object-position: center 54%;
  }

  .photo-story-grid img:nth-child(3) {
    object-position: center 28%;
  }

  nav a {
    font-size: 0.78rem;
  }

  .nav-button {
    padding: 7px 10px;
  }

  .hero--brand {
    min-height: 700px;
  }

  .hero__photo {
    object-position: 76% 42%;
    opacity: 0.5;
  }

  .hero__inner--story {
    padding-top: 82px;
    padding-bottom: 58px;
  }

  .hero__logo {
    width: min(330px, 88vw);
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .coach-photo-stack,
  .slot-list--compact {
    grid-template-columns: 1fr;
  }

  .media-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .media-card--wide,
  .media-card--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .coach-photo--main,
  .coach-photo--side {
    aspect-ratio: 1.18;
    margin: 0;
  }

  .coach-photo--main {
    object-position: center 24%;
  }

  .coach-photo--side {
    object-position: center 22%;
  }

  .brand-panel-section .section-inner {
    width: 100%;
  }

  .brand-panel-section img {
    border-radius: 0;
  }

  .mobile-book-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 70;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    color: var(--black);
    background: var(--ice);
    box-shadow: 0 18px 34px -18px rgba(5, 7, 10, 0.7);
    font-size: 0.92rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
}
