:root {
  --navy: #061b3d;
  --navy-2: #021936;
  --ink: #071b3f;
  --muted: #5f6883;
  --blue: #0870b7;
  --blue-dark: #065f99;
  --lavender: #b50216;
  --lavender-soft: #fff2f4;
  --accent: #b50216;
  --accent-active: #8f0011;
  --accent-deep: #65000d;
  --accent-heading: #9b0214;
  --accent-link: #a10215;
  --accent-icon: #b50216;
  --accent-script: #a40216;
  --accent-band-start: #9f0013;
  --accent-band-mid: #c91529;
  --accent-band-end: #79000e;
  --accent-surface: #fff8f9;
  --accent-section-start: #fffafa;
  --accent-section-end: #fff0f2;
  --gold: #dcb45f;
  --line: #e5d7bd;
  --white: #ffffff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --shadow: 0 18px 50px rgb(7 27 63 / 16%);
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-size: 16px;
}

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

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

button,
input,
textarea {
  font: inherit;
}

:where(a, button, input, textarea):focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

:where(a, button) {
  touch-action: manipulation;
}

.hero :focus-visible,
.moments-section :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--gold);
}

.first-step :focus-visible {
  outline-color: var(--white);
}

#main-content:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 18px;
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  outline-color: var(--gold);
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  min-height: 92px;
  padding: 0 44px;
  background: rgb(255 255 255 / 96%);
  border-bottom: 1px solid rgb(7 27 63 / 8%);
  box-shadow: 0 5px 26px rgb(7 27 63 / 8%);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(190px, 14vw, 230px);
  line-height: 0;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 36px 0 33px;
}

.nav-links > a {
  min-height: 92px;
  padding: 0;
  line-height: 1;
}

.nav-links a.is-active {
  color: var(--accent-active);
}

.nav-links > a:hover::after,
.nav-links > a:focus-visible::after,
.nav-links > a:active::after,
.nav-links > a.is-active::after {
  position: absolute;
  right: 2px;
  bottom: 27px;
  left: 2px;
  height: 2px;
  content: "";
  background: var(--accent-active);
}

.nav-links > a:hover,
.nav-links > a:focus-visible,
.nav-links > a:active,
.nav-links > a.is-active {
  text-decoration: none;
}

.nav-links svg {
  width: 11px;
  height: 11px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.socials {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.socials a {
  display: inline-grid;
  width: 18px;
  height: 18px;
  color: #0d70ba;
  place-items: center;
}

.socials svg {
  width: 16px;
  height: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 25px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button svg {
  width: 15px;
  height: 15px;
}

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

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 28px rgb(18 168 244 / 28%);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-dark);
}

.button-secondary {
  color: var(--white);
  background: rgb(255 255 255 / 7%);
  border-color: rgb(255 255 255 / 70%);
}

.button-light {
  min-width: min(100%, 360px);
  min-height: 50px;
  color: var(--accent-active);
  background: var(--white);
  box-shadow: 0 16px 34px rgb(15 7 54 / 18%);
}

.header-cta {
  min-height: 50px;
  padding-inline: 24px;
  font-size: 15px;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 557px;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
}

.hero-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgb(2 15 34 / 95%) 0%, rgb(2 15 34 / 76%) 33%, rgb(2 15 34 / 20%) 67%, rgb(2 15 34 / 10%) 100%),
    linear-gradient(180deg, rgb(2 15 34 / 10%) 0%, rgb(2 15 34 / 6%) 68%, rgb(2 15 34 / 52%) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: min(100% - 64px, var(--container));
  min-height: 557px;
  margin: 0 auto;
  padding: 36px 0;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.eyebrow.lavender {
  color: var(--accent);
}

.hero h1,
.section h2,
.moments-section h2,
.first-step h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 510px;
  font-size: clamp(70px, 8vw, 98px);
  line-height: 0.95;
}

.gold-rule {
  width: 82px;
  height: 4px;
  margin: 22px 0 20px;
  background: var(--gold);
}

.hero-subtitle {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.15;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 28px;
  font-size: 16px;
  font-weight: 700;
}

.hero-note svg {
  width: 19px;
  height: 19px;
  color: var(--gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 24px max(32px, calc((100vw - var(--container)) / 2));
  background: var(--accent-surface);
  box-shadow: inset 0 -1px 0 rgb(7 27 63 / 6%);
}

.trust-strip article {
  display: flex;
  align-items: center;
  gap: 17px;
  min-height: 56px;
  padding: 0 26px;
  border-right: 1px solid var(--line);
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-strip svg {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--navy);
  stroke-width: 1.5;
}

.trust-strip p {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.section {
  width: min(100% - 64px, var(--container));
  margin: 0 auto;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(410px, 0.9fr) minmax(610px, 1.1fr);
  align-items: center;
  gap: clamp(56px, 7vw, 104px);
  padding: 78px 0 88px;
}

.section-copy h2,
.section-heading h2 {
  color: var(--navy);
  font-size: clamp(50px, 5vw, 72px);
  line-height: 0.96;
}

.section-copy p {
  max-width: 520px;
  margin: 0 0 22px;
  color: #243056;
  font-size: 16px;
  line-height: 1.78;
}

.section-copy p strong {
  color: var(--accent-deep);
}

.about-collage {
  position: relative;
  min-height: 650px;
  padding: 0;
  --main-left: 0px;
  --main-top: 20px;
  --main-width: min(520px, 66%);
  --small-width: clamp(178px, 24vw, 246px);
  --main-right: calc(var(--main-left) + var(--main-width));
  --step-x: calc(var(--main-right) - 16px);
}

.collage-main,
.collage-small {
  overflow: hidden;
  background: var(--white);
  border: 3px solid #ecd4a3;
  box-shadow: 0 24px 48px rgb(7 27 63 / 13%);
}

.collage-main {
  position: absolute;
  top: var(--main-top);
  left: var(--main-left);
  z-index: 2;
  width: var(--main-width);
  aspect-ratio: 0.79;
}

.collage-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.collage-small {
  position: absolute;
  z-index: 3;
  width: var(--small-width);
  aspect-ratio: 1.12;
}

.collage-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-small-top {
  top: calc(var(--main-top) + 44px);
  left: var(--step-x);
}

.collage-small-bottom {
  top: calc(var(--main-top) + 264px);
  left: calc(var(--step-x) + 48px);
  width: clamp(250px, 28vw, 310px);
  aspect-ratio: 1.45;
}

.signature {
  position: absolute;
  top: calc(var(--main-top) + 494px);
  left: calc(var(--step-x) + 48px);
  bottom: auto;
  z-index: 4;
  width: clamp(250px, 28vw, 310px);
  margin: 0;
  color: var(--accent-script);
  font-family: "Snell Roundhand", "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(36px, 3vw, 46px);
  font-style: italic;
  font-weight: 400;
  line-height: 0.78;
  text-align: center;
  white-space: nowrap;
  transform: rotate(-5deg);
}

.programs-section {
  width: 100%;
  padding: 42px max(32px, calc((100vw - var(--container)) / 2)) 72px;
  background: linear-gradient(180deg, var(--accent-section-start) 0%, var(--accent-section-end) 100%);
}

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

.section-heading.centered .gold-rule {
  margin-inline: auto;
  margin-top: 16px;
}

.section-heading h2 {
  font-size: clamp(42px, 4.2vw, 55px);
  line-height: 1.02;
}

.programs-shell {
  position: relative;
  margin-top: 30px;
  padding: 8px;
  background: var(--white);
  border: 1px solid rgb(7 27 63 / 10%);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.program-card {
  position: relative;
  --program-image-height: clamp(238px, 20vw, 302px);
  min-height: calc(var(--program-image-height) + 214px);
  background: var(--white);
  border-right: 1px solid rgb(7 27 63 / 10%);
}

.program-card:last-child {
  border-right: 0;
}

.program-image {
  height: var(--program-image-height);
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.program-icon {
  position: absolute;
  top: calc(var(--program-image-height) - 27px);
  left: 24px;
  display: grid;
  width: 54px;
  height: 54px;
  color: var(--white);
  background: var(--accent-icon);
  border: 4px solid rgb(255 255 255 / 92%);
  border-radius: 50%;
  place-items: center;
  box-shadow: 0 8px 18px rgb(83 45 151 / 24%);
}

.program-icon svg {
  width: 29px;
  height: 29px;
}

.program-body {
  padding: 42px 25px 25px;
}

.program-body h3 {
  margin: 0 0 9px;
  color: var(--accent-heading);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
}

.program-body p {
  min-height: 78px;
  margin: 0 0 17px;
  color: #46506c;
  font-size: 15px;
  line-height: 1.55;
}

.program-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-link);
  font-size: 15px;
  font-weight: 800;
}

.program-body a svg {
  width: 13px;
  height: 13px;
}

.moments-section {
  position: relative;
  display: grid;
  grid-template-columns: clamp(340px, 24vw, 430px) minmax(0, 1fr);
  gap: clamp(34px, 4vw, 66px);
  align-items: center;
  padding: 42px max(44px, calc((100vw - 1680px) / 2)) 38px;
  color: var(--white);
  background: linear-gradient(90deg, #021735 0%, #072b5c 100%);
}

.moments-copy {
  padding-left: 0;
}

.moments-copy .eyebrow {
  margin-bottom: 14px;
  color: #d8d9ec;
}

.moments-copy h2 {
  max-width: 430px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(46px, 3.8vw, 64px);
  line-height: 0.94;
  white-space: nowrap;
}

.moments-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.moment-card {
  position: relative;
  isolation: isolate;
  min-width: 0;
  aspect-ratio: 0.64;
  overflow: hidden;
  border: 3px solid rgb(255 255 255 / 78%);
  box-shadow: 0 16px 28px rgb(0 0 0 / 20%);
}

.moment-card::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 48%;
  content: "";
  background: linear-gradient(180deg, transparent, rgb(0 0 0 / 74%));
}

.moment-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moment-card:nth-child(2) img {
  object-position: 36% center;
}

.moment-card:nth-child(3) img {
  object-position: 42% center;
}

.moment-card:nth-child(4) img {
  object-position: 50% 38%;
}

.moment-card:nth-child(5) img {
  object-position: 48% center;
}

.moment-card strong {
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  z-index: 5;
  display: block;
  color: #fff;
  font-size: clamp(16px, 1.2vw, 22px);
  font-weight: 900;
  text-align: center;
  opacity: 1;
  text-shadow:
    0 2px 3px rgb(0 0 0 / 95%),
    0 0 10px rgb(0 0 0 / 70%);
  -webkit-text-fill-color: #fff;
}

.testimonials-section {
  padding: 44px 0 38px;
  text-align: center;
}

.testimonials-section .section-heading h2 {
  font-size: clamp(40px, 4vw, 52px);
}

.reviews-embed {
  min-height: 260px;
  margin-top: 28px;
  padding: 18px;
  background: var(--white);
  border: 1px solid rgb(7 27 63 / 8%);
  border-radius: 8px;
  box-shadow: 0 24px 55px rgb(7 27 63 / 8%);
  text-align: left;
}

.reviews-fallback {
  display: grid;
  min-height: 220px;
  place-items: center;
  align-content: center;
  gap: 18px;
  color: var(--navy);
  text-align: center;
}

.reviews-fallback[hidden] {
  display: none;
}

.reviews-fallback p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.first-step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 25px max(64px, calc((100vw - var(--container)) / 2));
  color: var(--white);
  background:
    linear-gradient(90deg, var(--accent-band-start) 0%, var(--accent-band-mid) 45%, var(--accent-band-end) 100%);
}

.mail-icon {
  display: grid;
  width: 78px;
  height: 78px;
  color: var(--navy);
  background: #fff0ad;
  border-radius: 50%;
  place-items: center;
}

.mail-icon svg {
  width: 38px;
  height: 38px;
}

.first-step .eyebrow {
  margin-bottom: 4px;
  font-size: 15px;
  letter-spacing: 3px;
}

.first-step h2 {
  color: var(--white);
  font-size: 32px;
  line-height: 1;
}

.first-step p:last-child {
  margin: 8px 0 0;
  font-size: 15px;
  font-weight: 600;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 0.95fr 1.85fr;
  gap: 58px;
  padding: 42px max(64px, calc((100vw - var(--container)) / 2)) 22px;
  color: var(--white);
  background: #021936;
}

.brand-footer {
  width: 174px;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 260px;
  margin: 0 0 26px;
  color: #d8e2f3;
  font-size: 15px;
  line-height: 1.65;
}

.site-footer .socials a {
  width: 44px;
  height: 44px;
  color: #22aaf3;
}

.site-footer .socials {
  gap: 0;
}

.mobile-nav a:hover,
.program-body a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-contact,
.footer-form {
  font-style: normal;
}

.footer-contact h3,
.footer-form h3 {
  margin: 0 0 17px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-contact p {
  display: grid;
  grid-template-columns: 23px 1fr;
  gap: 10px;
  margin: 0 0 18px;
  color: #e9f0fb;
  font-size: 15px;
  line-height: 1.55;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.footer-form {
  display: grid;
  gap: 9px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.footer-form label {
  display: grid;
  gap: 4px;
  color: #d8e2f3;
  font-size: 15px;
}

.footer-form label span {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  color: var(--white);
  background: transparent;
  border: 1px solid rgb(255 255 255 / 60%);
  border-radius: 0;
}

.footer-form input {
  height: 36px;
  padding: 0 12px;
}

.footer-form textarea {
  resize: vertical;
  padding: 10px 12px;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: rgb(216 226 243 / 78%);
  opacity: 1;
}

.footer-form input:focus-visible,
.footer-form textarea:focus-visible {
  border-color: var(--blue);
  outline-color: var(--blue);
  outline-offset: 2px;
}

.footer-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 8px 16px;
  align-items: center;
  margin: 0;
  padding: 0;
  color: #d8e2f3;
  border: 0;
}

.footer-form legend {
  grid-column: 1 / -1;
  padding: 0;
  font-size: 15px;
}

.footer-form fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
  font-size: 15px;
}

.footer-form input[type="checkbox"] {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin: 0;
  accent-color: var(--blue);
}

.footer-form .button {
  justify-self: end;
  min-width: 184px;
  min-height: 39px;
  margin-top: 4px;
}

.footer-intake {
  align-content: start;
  gap: 18px;
}

.footer-intake p {
  max-width: 330px;
  margin: 0;
  color: #d8e2f3;
  font-size: 15px;
  line-height: 1.65;
}

.footer-intake .button {
  justify-self: start;
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  gap: 22px;
  align-items: center;
  padding-top: 24px;
  color: #d3dded;
  font-size: 15px;
  border-top: 1px solid rgb(255 255 255 / 10%);
}

.footer-bottom a {
  padding-left: 22px;
  border-left: 1px solid rgb(255 255 255 / 22%);
}

@media (max-width: 1280px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    color: var(--navy);
    background: transparent;
    border: 1px solid rgb(7 27 63 / 14%);
    border-radius: 50%;
    place-items: center;
  }

  .mobile-nav {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 18px;
    padding: 0 0 20px;
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .mobile-nav a {
    padding: 10px 0;
    font-weight: 800;
    border-bottom: 1px solid rgb(7 27 63 / 10%);
  }

  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-strip article {
    border-bottom: 1px solid var(--line);
  }

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

  .program-card {
    --program-image-height: clamp(260px, 32vw, 320px);
  }

  .program-card:nth-child(2n) {
    border-right: 0;
  }

  .moments-section {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-form {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 76px;
    padding: 0 20px;
  }

  .brand {
    width: 172px;
  }

  .hero,
  .hero-content {
    min-height: 620px;
  }

  .hero-picture {
    object-position: 88% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgb(2 15 34 / 96%) 0%, rgb(2 15 34 / 75%) 58%, rgb(2 15 34 / 32%) 100%),
      linear-gradient(180deg, transparent, rgb(2 15 34 / 55%));
  }

  .hero-content {
    width: min(100% - 38px, var(--container));
    padding: 72px 0;
  }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(58px, 17vw, 78px);
  }

  .hero-subtitle {
    max-width: 340px;
    font-size: 25px;
  }

  .booking-thank-you-hero {
    min-height: 0;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .booking-next-steps {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 0 10px;
    overflow: visible;
  }

  .trust-strip article {
    min-width: 0;
    min-height: 96px;
    padding: 16px 12px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .trust-strip article:nth-child(2n) {
    border-right: 0;
  }

  .trust-strip article:nth-child(n + 3) {
    border-bottom: 0;
  }

  .trust-strip article:last-child {
    display: none;
  }

  .trust-strip svg {
    width: 28px;
    height: 28px;
  }

  .section {
    width: min(100% - 38px, var(--container));
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 58px 0 48px;
  }

  .about-collage {
    width: min(100%, 520px);
    min-height: 0;
    margin: 0 auto;
  }

  .collage-main {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    aspect-ratio: 950 / 1125;
  }

  .collage-small {
    display: none;
  }

  .signature {
    display: block;
    position: static;
    width: 100%;
    margin: 18px 0 0;
    padding-right: 8px;
    font-size: clamp(32px, 9vw, 40px);
    line-height: 0.82;
    text-align: right;
    white-space: normal;
    transform: rotate(-3deg);
  }

  .programs-section {
    padding-inline: 20px;
  }

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

  .program-card {
    --program-image-height: min(78vw, 340px);
    border-right: 0;
    border-bottom: 1px solid rgb(7 27 63 / 10%);
  }

  .moments-section {
    padding-inline: 20px;
  }

  .moments-copy h2 {
    white-space: normal;
  }

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

  .first-step {
    grid-template-columns: 1fr;
    padding-inline: 24px;
    text-align: center;
  }

  .mail-icon {
    margin: 0 auto;
  }

  .button-light {
    justify-self: center;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-inline: 24px;
  }

  .form-row,
  .footer-form fieldset {
    grid-template-columns: 1fr;
  }

  .footer-form .button {
    justify-self: stretch;
  }

  .footer-bottom {
    flex-wrap: wrap;
  }

}

@media (max-width: 520px) {
  .mobile-nav {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    width: 100%;
  }

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

  .section-copy h2,
  .section-heading h2 {
    font-size: 44px;
  }

  .about-collage {
    max-width: 360px;
  }

  .moments-gallery {
    grid-template-columns: 1fr;
  }

  .moment-card {
    aspect-ratio: 1;
  }
}

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

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

/* Shared navigation and secondary page system */
.nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 92px;
}

.nav-disclosure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 92px;
  padding: 0;
  color: inherit;
  font-weight: inherit;
  line-height: 1;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.nav-group.is-active > .nav-disclosure {
  color: var(--accent-active);
}

.nav-group.is-active::after {
  position: absolute;
  right: 4px;
  bottom: 27px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--accent-active);
}

.nav-submenu {
  position: absolute;
  top: calc(100% - 18px);
  left: 50%;
  z-index: 30;
  display: none;
  width: max-content;
  min-width: 230px;
  padding: 10px;
  background: var(--white);
  border: 1px solid rgb(7 27 63 / 10%);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.nav-disclosure[aria-expanded="true"] + .nav-submenu {
  display: grid;
}

.nav-disclosure[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

@media (hover: hover) and (pointer: fine) {
  .nav-group:hover > .nav-submenu {
    display: grid;
  }

  .nav-group:hover > .nav-disclosure {
    color: var(--accent-active);
  }
}

.nav-submenu a {
  min-height: 42px;
  padding: 11px 13px;
  border-radius: 6px;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible,
.nav-submenu a.is-current {
  color: var(--accent-active);
  background: var(--accent-surface);
  text-decoration: none;
}

.mobile-disclosure {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  padding: 10px 0;
  color: var(--navy);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgb(7 27 63 / 10%);
}

.mobile-disclosure svg {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
}

.mobile-nav-group.is-active > .mobile-disclosure,
.mobile-disclosure:hover,
.mobile-disclosure:focus-visible {
  color: var(--accent-active);
}

.mobile-disclosure[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: none;
  padding-left: 18px;
}

.mobile-disclosure[aria-expanded="true"] + .mobile-submenu {
  display: grid;
}

.mobile-submenu a,
.mobile-nav a.is-current {
  color: var(--accent-active);
}

.mobile-booking {
  color: var(--white) !important;
  border-bottom: 0 !important;
}

.site-footer {
  grid-template-columns: 1.15fr 0.75fr 1fr 1.1fr;
  gap: 44px;
}

.footer-nav h3 {
  margin: 0 0 17px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-nav nav {
  display: grid;
  gap: 9px;
  color: #e9f0fb;
  font-size: 15px;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-preview-note {
  margin: -4px 0 8px;
  color: #d8e2f3;
  font-size: 15px;
  line-height: 1.55;
}

.form-preview-note a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.alias-notice {
  padding: 11px 24px;
  color: var(--navy);
  font-size: 15px;
  text-align: center;
  background: var(--accent-surface);
  border-bottom: 1px solid #efd1d5;
}

.secondary-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  min-height: 570px;
  background: var(--navy);
}

.secondary-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 62px max(44px, calc((100vw - var(--container)) / 2));
  padding-right: clamp(36px, 4vw, 64px);
  color: var(--white);
}

.secondary-hero-copy h1 {
  max-width: 720px;
  margin: 12px 0 19px;
  font-family: var(--serif);
  font-size: clamp(54px, 4.7vw, 76px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -1.5px;
}

.secondary-hero-copy > p:last-child {
  max-width: 610px;
  margin: 22px 0 0;
  color: #e0e8f4;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.72;
}

.secondary-hero-media {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  background: #0a2247;
}

.secondary-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position);
}

.secondary-hero-compact,
.secondary-hero-compact .secondary-hero-media {
  min-height: 470px;
}

.secondary-hero-compact .secondary-hero-copy {
  padding-top: 40px;
  padding-bottom: 40px;
}

.secondary-hero-compact .secondary-hero-copy h1 {
  font-size: clamp(48px, 4.4vw, 66px);
}

.content-section {
  padding: 96px max(28px, calc((100vw - var(--container)) / 2));
}

.tinted-section {
  background: linear-gradient(135deg, var(--accent-section-start), var(--accent-section-end));
}

.section-intro {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.secondary-sections .section-heading {
  margin-bottom: 48px;
}

.secondary-sections .section-heading h2,
.editorial-heading h2 {
  margin: 9px 0 0;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 68px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -1px;
}

.editorial-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 8vw, 120px);
}

.editorial-heading {
  align-self: start;
}

.editorial-body {
  color: #253653;
  font-size: 17px;
  line-height: 1.8;
}

.editorial-body > p:first-child {
  margin-top: 0;
}

.editorial-body strong {
  color: var(--navy);
}

.youth-promotion-section .section-heading {
  max-width: 760px;
  margin-right: auto;
  margin-bottom: 38px;
  margin-left: auto;
}

.youth-promotion-artwork {
  width: min(100%, 720px);
  margin: 0 auto;
}

.youth-promotion-artwork img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgb(7 27 63 / 16%);
}

.schedule-section {
  padding-top: 84px;
  padding-bottom: 84px;
}

.schedule-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.schedule-heading h2 {
  margin: 9px 0 0;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 68px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -1px;
}

.schedule-heading .section-intro {
  margin-right: 0;
  margin-left: 0;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(var(--schedule-columns, 4), minmax(0, 1fr));
  gap: 28px clamp(24px, 3vw, 42px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.schedule-entry {
  min-width: 0;
  padding: 20px 0 18px;
  border-top: 2px solid var(--gold);
}

.schedule-entry h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 700;
  line-height: 1;
}

.schedule-entry-copy {
  margin-top: 12px;
  color: #253653;
  font-size: 16px;
  line-height: 1.55;
}

.schedule-entry-copy > :first-child {
  margin-top: 0;
}

.schedule-entry-copy > :last-child {
  margin-bottom: 0;
}

.schedule-label {
  margin: 0;
  color: var(--accent-heading);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.schedule-entry ul {
  padding: 0;
  margin: 8px 0 0;
  list-style: none;
}

.schedule-entry li {
  margin: 4px 0;
}

.schedule-artwork-section .schedule-heading {
  max-width: 820px;
}

.schedule-artwork-grid {
  display: grid;
  max-width: 920px;
  gap: 24px;
}

.schedule-artwork-grid figure {
  margin: 0;
}

.schedule-artwork-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 14px 42px rgb(7 27 63 / 12%);
}

.schedule-artwork-grid figcaption {
  padding-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.schedule-note {
  max-width: 820px;
  margin: 28px 0 0;
}

.detail-item {
  padding: 25px 0;
  border-top: 1px solid var(--line);
}

.detail-item:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.detail-item h3,
.feature-card h3,
.pricing-card h3,
.contact-options h3 {
  margin: 0 0 11px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 700;
  line-height: 1.05;
}

.detail-subtitle,
.archive-label {
  color: var(--accent-heading);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.archive-label {
  display: inline-flex;
  margin-top: 20px;
  padding: 8px 12px;
  background: var(--accent-surface);
  border: 1px solid #ecc7cd;
  border-radius: 999px;
}

.detail-item ul,
.pricing-card ul,
.feature-card ul {
  padding-left: 21px;
}

.detail-item li,
.pricing-card li,
.feature-card li {
  margin: 7px 0;
}

.detail-image {
  margin: 22px 0 0;
}

.detail-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 14px 42px rgb(7 27 63 / 12%);
}

.content-note,
.form-notice {
  padding: 16px 18px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.6;
  background: var(--accent-surface);
  border-left: 4px solid var(--accent);
}

.text-link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--accent-link);
  font-size: 15px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-link svg {
  width: 15px;
}

.profile-list {
  display: grid;
  gap: 72px;
}

.profile-row {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.profile-row-reverse {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
}

.profile-row-reverse .profile-image {
  grid-column: 2;
}

.profile-row-reverse .profile-copy {
  grid-row: 1;
  grid-column: 1;
}

.profile-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-copy h3 {
  margin: 8px 0 22px;
  font-family: var(--serif);
  font-size: clamp(45px, 5vw, 66px);
  font-weight: 600;
  line-height: 0.95;
}

.profile-copy p:not(.eyebrow) {
  color: #34435d;
  font-size: 16px;
  line-height: 1.75;
}

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

.centered-feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  max-width: 900px;
  margin-inline: auto;
}

.single-feature-grid {
  max-width: 560px;
}

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

.dance-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1080px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

.dance-directory-group {
  padding: 32px clamp(24px, 3vw, 42px);
  border-left: 1px solid var(--line);
}

.dance-directory-group:first-child {
  border-left: 0;
}

.dance-directory-group h3 {
  max-width: 260px;
  margin: 0 0 22px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 700;
  line-height: 1;
}

.dance-directory-group ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dance-directory-group li {
  position: relative;
  padding-left: 16px;
  color: #34435d;
  font-size: 15px;
  line-height: 1.45;
}

.dance-directory-group li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 5px;
  height: 5px;
  content: '';
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
}

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

.pricing-grid-featured {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  justify-content: center;
}

.feature-card,
.pricing-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgb(7 27 63 / 10%);
  border-radius: 8px;
  box-shadow: 0 12px 38px rgb(7 27 63 / 8%);
}

.feature-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy);
}

.feature-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card-copy,
.pricing-card {
  padding: 28px;
}

.feature-card-copy p,
.pricing-card p,
.feature-card li,
.pricing-card li {
  color: #42506a;
  font-size: 15px;
  line-height: 1.7;
}

.press-grid .feature-card-image {
  aspect-ratio: 16 / 10;
}

.card-note {
  color: var(--accent-heading) !important;
  font-weight: 700;
}

.price-display {
  margin: -2px 0 14px !important;
  color: var(--accent-heading) !important;
  font-family: var(--serif);
  font-size: 27px !important;
  font-weight: 700;
}

.pricing-grid-featured .pricing-card {
  padding: clamp(34px, 5vw, 56px);
  text-align: center;
  border-top: 4px solid var(--accent);
}

.pricing-grid-featured .pricing-card h3 {
  font-size: clamp(34px, 4vw, 46px);
}

.pricing-grid-featured .price-display {
  margin: 8px 0 18px !important;
  font-size: clamp(60px, 7vw, 84px) !important;
  line-height: 0.95;
}

.pricing-grid-featured .pricing-card > p:not(.price-display, .card-note) {
  max-width: 540px;
  margin-right: auto;
  margin-left: auto;
}

.pricing-grid-featured .button {
  margin-top: 18px;
}

.pricing-more-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(100%, 820px);
  margin: 28px auto 0;
  padding: 26px 30px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 8px;
  box-shadow: 0 12px 38px rgb(7 27 63 / 12%);
}

.pricing-more-card .eyebrow {
  margin-bottom: 7px;
  color: var(--gold);
}

.pricing-more-card h3 {
  margin: 0 0 6px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 35px);
  font-weight: 700;
  line-height: 1.05;
}

.pricing-more-card p:not(.eyebrow) {
  max-width: 600px;
  margin: 0;
  color: rgb(255 255 255 / 76%);
  font-size: 15px;
  line-height: 1.6;
}

.pricing-more-card .button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.card-kicker {
  margin: 0 0 9px;
  color: var(--accent-heading) !important;
  font-size: 15px !important;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

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

.media-grid figure {
  margin: 0;
}

.media-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 14px 42px rgb(7 27 63 / 12%);
}

.media-grid figcaption {
  padding-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.compact-media-grid {
  margin-top: 30px;
}

.policy-pages {
  align-items: start;
}

.policy-pages figure {
  padding: 12px;
  background: #eef1f5;
  border-radius: 8px;
}

.intake-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(350px, 0.65fr);
  gap: 24px;
  align-items: start;
}

.intake-section {
  background: linear-gradient(180deg, #f8fafc 0%, var(--white) 100%);
}

.intake-section .section-heading {
  margin-bottom: 48px;
}

.intake-section .section-heading h2 {
  margin: 9px 0 0;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 68px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -1px;
}

.intake-form {
  padding: 42px;
  background: var(--white);
  border: 1px solid rgb(7 27 63 / 12%);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgb(7 27 63 / 10%);
}

.wufoo-form-card {
  min-width: 0;
  min-height: 660px;
  padding: 28px;
  overflow: hidden;
}

.wufoo-form-card #wufoo-meyv4r90aw598b {
  min-height: 596px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.wufoo-form-card #wufoo-meyv4r90aw598b > a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wufoo-form-card iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  min-height: 596px;
  border: 0;
}

.intake-form > fieldset {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.intake-form .intake-group {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 30px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.intake-form .intake-group:first-child {
  padding-top: 0;
  border-top: 0;
}

.intake-form .intake-group:last-child {
  padding-bottom: 0;
}

.intake-form legend {
  margin: 0 0 2px;
  padding: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
}

.intake-form label:not(.choice) {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}

.intake-form input[type="text"],
.intake-form input[type="email"],
.intake-form input[type="tel"] {
  width: 100%;
  min-height: 54px;
  padding: 12px 14px;
  color: var(--navy);
  background: #fbfcfe;
  border: 1px solid #c7cfda;
  border-radius: 8px;
  box-shadow: inset 0 1px 2px rgb(7 27 63 / 4%);
}

.intake-form .form-row {
  gap: 16px;
}

.choice-grid {
  display: grid;
  gap: 10px;
}

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

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

.choice {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 50px;
  padding: 11px 13px;
  color: #3b4860;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
  background: #f7f9fc;
  border: 1px solid #d8dee7;
  border-radius: 8px;
}

.choice input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.intake-form :disabled {
  opacity: 1;
}

.contact-options {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 28px;
  padding: 38px 32px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgb(7 27 63 / 20%);
}

.contact-options-heading {
  display: grid;
  gap: 13px;
}

.contact-options h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(36px, 3.2vw, 44px);
  font-weight: 600;
  line-height: 0.98;
}

.contact-options p {
  margin: 0;
  color: rgb(255 255 255 / 78%);
  font-size: 15px;
  line-height: 1.65;
}

.contact-options .contact-kicker {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.contact-options .contact-booking-button {
  width: 100%;
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
  white-space: nowrap;
}

.contact-options .contact-booking-button:hover {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.contact-details {
  display: grid;
  gap: 0;
  border-top: 1px solid rgb(255 255 255 / 18%);
}

.contact-details > a,
.contact-location {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 18px 0;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.contact-location {
  border-bottom: 0;
}

.contact-details svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--gold);
}

.contact-details span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-details small {
  display: block;
  margin-bottom: 3px;
  color: rgb(255 255 255 / 60%);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.contact-details > a:hover {
  color: var(--gold);
}

.booking-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  padding: 64px max(28px, calc((100vw - var(--container)) / 2));
  color: var(--white);
  background: linear-gradient(110deg, var(--accent-band-start), var(--accent-band-mid), var(--accent-band-end));
}

.booking-band h2 {
  margin: 7px 0;
  font-family: var(--serif);
  font-size: clamp(40px, 4.4vw, 58px);
  font-weight: 600;
  line-height: 1;
}

.booking-band p:last-child {
  max-width: 680px;
  margin: 0;
  color: #fff3f4;
  font-size: 16px;
  line-height: 1.65;
}

.booking-page-main {
  min-height: 70vh;
  color: var(--navy);
  background:
    radial-gradient(circle at 0 0, rgb(181 2 22 / 8%), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f7f8fb 100%);
}

.booking-page-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
  width: min(calc(100% - 48px), 1360px);
  margin: 0 auto;
  padding: clamp(64px, 7vw, 108px) 0;
}

.booking-page-copy {
  position: sticky;
  top: 118px;
  padding: clamp(34px, 4.5vw, 58px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgb(181 2 22 / 32%), transparent 42%),
    linear-gradient(145deg, #031630, var(--navy) 72%, #082857);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgb(5 28 59 / 18%);
}

.booking-page-copy::after {
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  content: "";
  border: 1px solid rgb(220 180 95 / 25%);
  border-radius: 50%;
  pointer-events: none;
}

.booking-page-copy .eyebrow {
  color: var(--gold);
}

.booking-page-copy h1 {
  max-width: 690px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 5vw, 76px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -1.5px;
}

.booking-page-lead {
  max-width: 620px;
  margin: 0;
  color: #dce6f4;
  font-size: 17px;
  line-height: 1.7;
}

.booking-offer-list {
  display: grid;
  gap: 12px;
  margin: 34px 0 26px;
}

.booking-offer-list article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  padding: 18px;
  background: rgb(255 255 255 / 7%);
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 8px;
}

.booking-offer-list article > svg {
  width: 30px;
  height: 30px;
  color: var(--gold);
}

.booking-offer-list h2 {
  margin: 0 0 3px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.1;
}

.booking-offer-list p {
  margin: 0;
  color: #dce6f4;
  font-size: 15px;
  line-height: 1.5;
}

.booking-offer-list strong {
  color: var(--white);
  font-size: 18px;
}

.booking-page-reassurance {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0 0 18px;
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.booking-page-reassurance svg {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  margin-top: 1px;
  color: var(--gold);
}

.booking-page-help {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #c6d4e8;
  font-size: 15px;
  line-height: 1.65;
}

.booking-page-help a {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

.booking-widget-card {
  min-width: 0;
  padding: clamp(24px, 3.5vw, 46px);
  background: var(--white);
  border: 1px solid rgb(5 28 59 / 10%);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgb(5 28 59 / 13%);
}

.booking-widget-heading {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.booking-widget-heading h2 {
  margin: 4px 0 10px;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 600;
  line-height: 1;
}

.booking-widget-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.booking-widget-embed {
  min-height: 640px;
  overflow: hidden;
  background: #f7f8fb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.booking-widget-embed #frameTitle {
  color: var(--navy) !important;
  font-family: var(--serif) !important;
}

.booking-widget-embed .vagaro {
  width: 100% !important;
  max-width: 100%;
}

.booking-widget-embed .vagaro a,
.booking-widget-embed .vagaro-footer a {
  color: #4d596b !important;
  text-decoration: underline !important;
  text-underline-offset: 2px;
}

.booking-widget-embed iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  min-height: 640px;
  border: 0;
}

.booking-widget-fallback {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

.booking-widget-fallback a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-thank-you-main {
  color: var(--white);
  background: var(--navy);
}

.booking-thank-you-hero {
  position: relative;
  display: grid;
  min-height: 690px;
  padding: clamp(68px, 8vw, 110px) max(24px, calc((100vw - var(--container)) / 2));
  overflow: hidden;
  place-items: center;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 18%, rgb(181 2 22 / 24%), transparent 34%),
    radial-gradient(circle at 84% 78%, rgb(8 112 183 / 22%), transparent 36%),
    linear-gradient(135deg, #031630 0%, var(--navy) 56%, #082857 100%);
}

.booking-thank-you-hero::before,
.booking-thank-you-hero::after {
  position: absolute;
  z-index: -1;
  width: 360px;
  height: 360px;
  content: "";
  border: 1px solid rgb(220 180 95 / 20%);
  border-radius: 50%;
}

.booking-thank-you-hero::before {
  top: -180px;
  left: -120px;
}

.booking-thank-you-hero::after {
  right: -150px;
  bottom: -210px;
}

.booking-thank-you-card {
  width: min(100%, 980px);
  text-align: center;
}

.booking-confirmation-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  color: var(--white);
  background: var(--accent);
  border: 5px solid rgb(255 255 255 / 92%);
  border-radius: 50%;
  place-items: center;
  box-shadow: 0 16px 36px rgb(0 0 0 / 26%);
}

.booking-confirmation-icon svg {
  width: 34px;
  height: 34px;
}

.booking-thank-you-card .eyebrow {
  color: var(--gold);
}

.booking-thank-you-card h1 {
  max-width: 820px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(56px, 6.4vw, 84px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -1.5px;
}

.booking-thank-you-card .gold-rule {
  margin: 28px auto 24px;
}

.booking-thank-you-lead {
  max-width: 690px;
  margin: 0 auto;
  color: #d9e3f2;
  font-size: 18px;
  line-height: 1.75;
}

.booking-thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
}

.booking-next-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 54px;
  text-align: left;
}

.booking-next-steps article {
  padding: 26px;
  background: rgb(255 255 255 / 7%);
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.booking-next-steps article > svg {
  width: 28px;
  height: 28px;
  margin-bottom: 17px;
  color: var(--gold);
}

.booking-next-steps h2 {
  margin: 0 0 9px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.05;
}

.booking-next-steps p {
  margin: 0;
  color: #d9e3f2;
  font-size: 15px;
  line-height: 1.65;
}

.booking-next-steps a {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

.not-found-page {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 690px;
  color: var(--white);
  background: var(--navy);
}

.not-found-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(72px, 8vw, 130px) clamp(28px, 7vw, 112px);
}

.not-found-copy .eyebrow {
  color: var(--gold);
}

.not-found-copy h1 {
  max-width: 650px;
  margin: 18px 0 28px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(64px, 7vw, 108px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.88;
}

.not-found-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 0;
  color: rgb(255 255 255 / 78%);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.not-found-actions .button-secondary {
  color: var(--white);
  border-color: rgb(255 255 255 / 34%);
}

.not-found-actions .button-secondary:hover {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.not-found-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 32px;
}

.not-found-links a {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.not-found-links a:hover {
  color: var(--gold);
}

.not-found-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.not-found-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgb(7 27 63 / 24%), transparent 40%);
}

.not-found-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

@media (max-width: 1280px) {
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-nav {
    max-height: calc(100vh - 92px);
    overflow-y: auto;
  }
}

@media (max-width: 1080px) {
  .booking-page-section {
    grid-template-columns: 1fr;
    max-width: 820px;
  }

  .booking-page-copy {
    position: relative;
    top: auto;
  }
}

@media (max-width: 900px) {
  .not-found-page {
    grid-template-columns: 1fr;
  }

  .not-found-copy {
    min-height: 520px;
  }

  .not-found-media {
    min-height: 420px;
  }

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

  .secondary-hero-copy {
    min-height: 420px;
    padding: 48px 28px 62px;
  }

  .secondary-hero-media {
    min-height: 430px;
  }

  .secondary-hero-compact .secondary-hero-copy {
    min-height: 350px;
  }

  .secondary-hero-compact .secondary-hero-media {
    min-height: 350px;
  }

  .editorial-section,
  .profile-row,
  .profile-row-reverse,
  .intake-layout {
    grid-template-columns: 1fr;
  }

  .profile-row-reverse .profile-image,
  .profile-row-reverse .profile-copy {
    grid-row: auto;
    grid-column: auto;
  }

  .profile-image {
    max-width: 560px;
  }

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

  .dance-directory-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .dance-directory-group,
  .dance-directory-group:first-child {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .dance-directory-group:first-child {
    border-top: 0;
  }

  .contact-options {
    position: static;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    column-gap: 46px;
  }

  .contact-options-heading,
  .contact-options .contact-booking-button {
    grid-column: 1;
  }

  .contact-details {
    grid-row: 1 / span 2;
    grid-column: 2;
  }

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

@media (max-width: 620px) {
  .not-found-copy {
    min-height: auto;
    padding: 72px 22px;
  }

  .not-found-copy h1 {
    font-size: 56px;
  }

  .not-found-actions {
    display: grid;
    width: 100%;
  }

  .not-found-actions .button {
    width: 100%;
  }

  .not-found-media {
    min-height: 340px;
  }

  .content-section {
    padding: 70px 22px;
  }

  .secondary-hero-copy h1 {
    font-size: 48px;
    line-height: 0.98;
    letter-spacing: -1px;
  }

  .secondary-hero-compact .secondary-hero-copy {
    min-height: 330px;
    padding: 40px 22px 48px;
  }

  .secondary-hero-compact .secondary-hero-copy h1 {
    font-size: 40px;
  }

  .secondary-hero-media {
    min-height: 360px;
  }

  .booking-thank-you-card h1 {
    font-size: 48px;
    letter-spacing: -1px;
  }

  .booking-page-section {
    width: min(calc(100% - 32px), 820px);
    padding: 48px 0 70px;
  }

  .booking-page-copy {
    padding: 38px 28px;
  }

  .booking-page-copy h1 {
    font-size: 52px;
  }

  .booking-widget-card {
    padding: 28px 18px;
  }

  .booking-widget-heading h2 {
    font-size: 40px;
  }

  .booking-widget-embed,
  .booking-widget-embed iframe {
    min-height: 720px;
  }

  .booking-thank-you-lead {
    font-size: 16px;
  }

  .booking-thank-you-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .booking-thank-you-actions .button {
    width: 100%;
  }

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

  .pricing-more-card {
    grid-template-columns: 1fr;
    padding: 26px 24px;
    text-align: center;
  }

  .pricing-more-card .button {
    width: 100%;
    white-space: normal;
  }

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

  .dance-directory-group {
    padding: 26px 0;
  }

  .schedule-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .schedule-heading {
    margin-bottom: 30px;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .schedule-entry {
    display: grid;
    grid-template-columns: minmax(112px, 0.42fr) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 18px 0;
    border-top-width: 1px;
  }

  .schedule-entry h3 {
    font-size: 27px;
  }

  .schedule-entry-copy {
    margin-top: 2px;
  }

  .profile-list {
    gap: 52px;
  }

  .intake-form,
  .contact-options {
    padding: 24px;
  }

  .contact-options {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-options-heading,
  .contact-options .contact-booking-button,
  .contact-details {
    grid-row: auto;
    grid-column: auto;
  }

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

  .choice-grid-interests {
    grid-template-columns: 1fr;
  }

  .booking-band {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 54px 22px;
  }

  .booking-band .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}


/* WordPress bridge: preserve the verified first-boundary ACF focal-position controls. */
.hero-picture {
  object-position: var(--hero-position-desktop, center right);
}

@media (max-width: 820px) {
  .hero-picture {
    object-position: var(--hero-position-mobile, 88% center);
  }
}
