@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("assets/fonts/fraunces-latin-600-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/instrument-sans-latin-400-800.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --blue-900: #133f68;
  --blue-700: #1f5f93;
  --coral: #ff8f78;
  --paper: #fff5ec;
  --paper-soft: #fffbf7;
  --sage: #7f9888;
  --ink: #20282d;
  --muted: #667078;
  --white: #ffffff;
  --line: rgba(32, 40, 45, 0.14);
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --display: "Fraunces", Georgia, serif;
  --body: "Instrument Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
}

main {
  overflow-x: clip;
}

img,
video {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 82px;
  padding: 16px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(19, 63, 104, 0.08);
  background: rgba(255, 245, 236, 0.82);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: min-height 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  border-bottom-color: rgba(255, 255, 255, 0.42);
  background: linear-gradient(180deg, rgba(255, 251, 247, 0.7), rgba(255, 245, 236, 0.58));
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  backdrop-filter: blur(24px) saturate(1.2);
  box-shadow: 0 18px 42px rgba(19, 63, 104, 0.06);
}

.brand {
  display: inline-flex;
  width: 158px;
}

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

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  color: rgba(32, 40, 45, 0.72);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.nav-menu-cta {
  display: none;
}

.nav-links a,
.nav-cta,
.button,
.resource-card a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--blue-900);
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 17px;
  border: 1px solid rgba(255, 143, 120, 0.82);
  border-radius: 20px;
  background: var(--coral);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(255, 143, 120, 0.22);
  transition: transform 180ms var(--motion-ease), background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.menu-toggle {
  position: relative;
  justify-self: end;
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(19, 63, 104, 0.2);
  border-radius: 15px;
  background: rgba(255, 251, 247, 0.86);
  color: var(--blue-900);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(19, 63, 104, 0.08);
  transition: transform 180ms var(--motion-ease), background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: transform 180ms var(--motion-ease), opacity 160ms ease, width 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 6px));
}

.menu-toggle span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 6px));
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 128px clamp(20px, 5vw, 72px) 72px;
  background: var(--paper);
}

.hero::after {
  content: none;
}

.hero-video,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: 0;
  object-fit: cover;
}

.hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 245, 236, 0.94) 0%, rgba(255, 245, 236, 0.78) 42%, rgba(255, 245, 236, 0.34) 100%),
    linear-gradient(180deg, rgba(255, 245, 236, 0.54) 0%, rgba(255, 245, 236, 0.22) 48%, rgba(255, 245, 236, 0.86) 100%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 660px) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
  width: min(1240px, 100%);
  min-height: calc(100svh - 200px);
  margin: 0 auto;
}

.hero-copy {
  max-width: 660px;
  animation: hero-copy-intro 1500ms cubic-bezier(0.22, 1, 0.36, 1) 180ms both;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 1080ms var(--motion-ease),
    transform 1080ms var(--motion-ease);
  transition-delay: calc(var(--reveal-index, 0) * 70ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.eyebrow,
.section-kicker,
.booking-head p,
.resource-type {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 16px;
  color: var(--coral);
  font-family: var(--display);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: none;
}

.eyebrow-icon {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  transform: translateY(-1px);
  pointer-events: none;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--blue-900);
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.02;
}

h1 {
  max-width: 650px;
  font-size: clamp(44px, 5.15vw, 76px);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(40px, 5vw, 74px);
}

h3 {
  font-size: 30px;
}

.hero-lede {
  max-width: 500px;
  margin: 22px 0 0;
  color: rgba(32, 40, 45, 0.78);
  font-size: clamp(17px, 1.45vw, 20px);
}

.text-mark {
  color: var(--ink);
  font-weight: 700;
  box-shadow: inset 0 -0.38em 0 rgba(255, 128, 109, 0.22);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 21px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 180ms var(--motion-ease), background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.button-primary {
  background: var(--coral);
  color: var(--ink);
  box-shadow: 0 16px 28px rgba(255, 143, 120, 0.24);
}

.button-secondary {
  border: 1px solid rgba(19, 63, 104, 0.18);
  background: rgba(255, 251, 247, 0.7);
  color: var(--blue-900);
  box-shadow: none;
}

.button-outline {
  border: 1px solid rgba(19, 63, 104, 0.24);
  background: rgba(255, 251, 247, 0.72);
  color: var(--blue-900);
  box-shadow: none;
}

.button-outline:hover {
  background: rgba(255, 251, 247, 0.96);
  border-color: rgba(19, 63, 104, 0.34);
}

@media (hover: hover) and (pointer: fine) {
  .nav-cta:hover,
  .button:hover,
  .available-panel a:hover,
  .menu-toggle:hover {
    transform: translateY(-2px);
  }

  .nav-cta:hover,
  .button-primary:hover {
    border-color: rgba(255, 143, 120, 0.98);
    background: #ff806b;
    box-shadow: 0 18px 34px rgba(255, 143, 120, 0.32);
  }

  .button-secondary:hover,
  .button-outline:hover {
    border-color: rgba(19, 63, 104, 0.34);
    background: rgba(255, 251, 247, 0.96);
    box-shadow: 0 14px 30px rgba(19, 63, 104, 0.1);
  }

  .available-panel a:hover {
    border-color: rgba(19, 63, 104, 0.22);
    background: rgba(255, 251, 247, 0.9);
    box-shadow: 0 14px 28px rgba(19, 63, 104, 0.1);
  }

  .available-panel a:hover span {
    color: rgba(32, 40, 45, 0.74);
  }

  .menu-toggle:hover {
    border-color: rgba(19, 63, 104, 0.24);
    background: rgba(255, 251, 247, 0.94);
    box-shadow: 0 16px 32px rgba(19, 63, 104, 0.12);
  }
}

.nav-cta:active,
.button:active,
.available-panel a:active,
.menu-toggle:active {
  transform: translateY(0);
}

.nav-links a:focus-visible,
.nav-cta:focus-visible,
.button:focus-visible,
.available-panel a:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(255, 143, 120, 0.46);
  outline-offset: 4px;
}

.booking-card {
  position: relative;
  width: min(100%, 760px);
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(19, 63, 104, 0.12);
  border-radius: 8px;
  background: rgba(255, 251, 247, 0.94);
  box-shadow: 0 24px 64px rgba(19, 63, 104, 0.13);
  backdrop-filter: blur(16px);
}

.booking-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.booking-head p,
.newsletter-box p.eyebrow,
.resource-card p.resource-type {
  margin-top: 0;
  margin-bottom: 16px;
}

.booking-head h2 {
  max-width: 520px;
  font-size: clamp(32px, 3.2vw, 48px);
}

.booking-body {
  display: block;
  margin-top: 28px;
}

.available-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.available-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 13px 16px;
  border: 1px solid rgba(19, 63, 104, 0.11);
  border-radius: 8px;
  background: rgba(255, 143, 120, 0.11);
  color: var(--blue-900);
  font-weight: 800;
  text-decoration: none;
}

.available-panel a span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: rgba(32, 40, 45, 0.58);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.16;
}

.available-panel a small {
  color: rgba(32, 40, 45, 0.5);
  font-size: 11px;
  font-weight: 700;
}

.available-panel a strong {
  margin-left: 16px;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1;
}

.section {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 72px);
}

.point-section,
.about-origin-section,
.about-purpose-section,
.section-paper,
.newsletter-section,
.logos-section,
.method-section,
.booking-contact-section {
  position: relative;
  overflow: visible;
  isolation: isolate;
}

.point-section > *,
.about-origin-section > *,
.about-purpose-section > *,
.section-paper > *,
.newsletter-section > *,
.logos-section > *,
.method-section > *,
.booking-contact-section > * {
  position: relative;
  z-index: 1;
}

.point-section::before,
.about-origin-section::before,
.about-purpose-section::before,
.section-paper::before,
.newsletter-section::before,
.logos-section::before,
.method-section::before,
.point-section::after,
.about-origin-section::after,
.about-purpose-section::after,
.section-paper::after,
.logos-section::after,
.booking-contact-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
}

.point-section::before {
  right: min(2vw, 36px);
  bottom: 2%;
  width: clamp(260px, 29vw, 430px);
  height: clamp(210px, 24vw, 350px);
  border-radius: 48% 52% 44% 56% / 56% 42% 58% 44%;
  background: rgba(255, 143, 120, 0.16);
}

.point-section::after {
  left: max(-170px, -12vw);
  top: 20%;
  width: clamp(240px, 28vw, 390px);
  height: clamp(185px, 22vw, 300px);
  border-radius: 52% 48% 58% 42% / 42% 60% 40% 58%;
  background: rgba(127, 152, 136, 0.18);
  transform: rotate(-8deg);
}

.about-origin-section::before {
  left: -140px;
  top: 18%;
  width: clamp(280px, 32vw, 470px);
  height: clamp(230px, 27vw, 380px);
  border-radius: 48% 52% 44% 56% / 56% 42% 58% 44%;
  background: rgba(255, 143, 120, 0.16);
}

.about-origin-section::after {
  right: 3%;
  bottom: 0;
  width: clamp(260px, 30vw, 430px);
  height: clamp(180px, 21vw, 290px);
  border-radius: 56% 44% 48% 52% / 48% 58% 42% 52%;
  background: rgba(19, 63, 104, 0.08);
  transform: rotate(9deg);
}

.about-purpose-section::before {
  right: -180px;
  top: 18%;
  width: clamp(300px, 34vw, 520px);
  height: clamp(320px, 38vw, 560px);
  border-radius: 48% 52% 44% 56% / 56% 42% 58% 44%;
  background: rgba(19, 63, 104, 0.1);
  transform: rotate(-10deg);
}

.about-purpose-section::after {
  left: clamp(72px, 9vw, 150px);
  bottom: clamp(68px, 7vw, 120px);
  width: clamp(220px, 24vw, 360px);
  height: clamp(190px, 21vw, 310px);
  border-radius: 54% 46% 48% 52% / 44% 58% 42% 56%;
  background: rgba(127, 152, 136, 0.16);
}

.section-paper::before {
  left: 0;
  bottom: 4%;
  width: clamp(320px, 39vw, 560px);
  height: clamp(170px, 20vw, 290px);
  border-radius: 48% 52% 44% 56% / 56% 42% 58% 44%;
  background: rgba(127, 152, 136, 0.12);
}

.section-paper::after {
  right: 4%;
  top: 8%;
  width: clamp(240px, 29vw, 420px);
  height: clamp(200px, 24vw, 330px);
  border-radius: 52% 48% 56% 44% / 40% 60% 42% 58%;
  background: rgba(255, 143, 120, 0.12);
  transform: rotate(12deg);
}

.newsletter-section::before {
  right: 2%;
  bottom: 4%;
  width: clamp(320px, 40vw, 560px);
  height: clamp(230px, 28vw, 390px);
  border-radius: 42% 58% 48% 52% / 54% 38% 62% 46%;
  background: rgba(255, 143, 120, 0.18);
}

.logos-section::before {
  right: -4%;
  top: 14%;
  width: clamp(280px, 34vw, 500px);
  height: clamp(160px, 19vw, 280px);
  border-radius: 48% 52% 44% 56% / 56% 42% 58% 44%;
  background: rgba(19, 63, 104, 0.08);
  transform: rotate(8deg);
}

.logos-section::after {
  left: -8%;
  bottom: 12%;
  width: clamp(230px, 28vw, 400px);
  height: clamp(190px, 23vw, 320px);
  border-radius: 54% 46% 48% 52% / 42% 58% 42% 58%;
  background: rgba(255, 143, 120, 0.12);
}

.method-section::before {
  right: 4%;
  top: 10%;
  width: clamp(280px, 32vw, 470px);
  height: clamp(240px, 28vw, 390px);
  border-radius: 48% 52% 44% 56% / 56% 42% 58% 44%;
  background: rgba(127, 152, 136, 0.14);
  transform: rotate(-7deg);
}

.newsletter-section::after,
.method-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
}

.newsletter-section::after {
  left: max(-170px, -10vw);
  top: 20%;
  width: clamp(260px, 32vw, 480px);
  height: clamp(220px, 27vw, 390px);
  border-radius: 54% 46% 48% 52% / 44% 58% 42% 56%;
  background: rgba(127, 152, 136, 0.16);
  transform: rotate(-12deg);
}

.method-section::after {
  left: -8%;
  bottom: 6%;
  width: clamp(260px, 31vw, 450px);
  height: clamp(180px, 21vw, 300px);
  border-radius: 52% 48% 56% 44% / 40% 60% 42% 58%;
  background: rgba(255, 143, 120, 0.14);
  transform: rotate(10deg);
}

.intro-section,
.method-section,
.about-origin-section,
.about-purpose-section,
.booking-contact-section,
.newsletter-section {
  width: min(1240px, 100%);
  margin: 0 auto;
}

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

.point-section {
  background: rgba(255, 251, 247, 0.62);
}

.point-editorial {
  display: flex;
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.point-column {
  flex: 1 1 0;
  min-width: 0;
}

.point-column-lead {
  display: flex;
  flex-direction: column;
}

.point-column-lead h2 {
  max-width: 680px;
  font-size: clamp(38px, 4.6vw, 68px);
}

.editorial-rule {
  width: min(360px, 48%);
  height: 3px;
  margin: 26px 0;
  border-radius: 999px;
  background: var(--coral);
}

.point-column-lead > p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
  color: rgba(32, 40, 45, 0.74);
  font-size: 19px;
}

.point-continuation {
  max-width: 640px;
  margin-top: clamp(34px, 5vw, 58px);
}

.point-continuation h3 {
  max-width: 500px;
  margin-bottom: 16px;
  font-size: clamp(28px, 2.8vw, 40px);
}

.point-continuation p {
  margin: 0;
  color: rgba(32, 40, 45, 0.74);
  font-size: 18px;
}

.point-column-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.point-column-cards .point-card,
.point-column-cards .point-image {
  flex: 1 1 0;
}

.point-card {
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(19, 63, 104, 0.12);
  border-radius: 8px;
  background: rgba(255, 251, 247, 0.72);
}

.point-card h3 {
  max-width: 420px;
  font-size: clamp(26px, 2.6vw, 36px);
}

.point-card p,
.about-card p,
.about-card-deep p,
.formation-note {
  margin: 0;
  color: rgba(32, 40, 45, 0.74);
  font-size: 18px;
}

.point-card p {
  margin-top: 20px;
}

.point-card-accent {
  background: rgba(255, 143, 120, 0.14);
}

.point-image {
  flex: 1 1 auto;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.point-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.section-heading {
  width: min(1080px, 100%);
  margin: 0 auto 42px;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.intro-grid h2 {
  max-width: 760px;
}

.intro-grid p,
.method-copy p,
.about-copy p,
.newsletter-box p,
.contact-fallback p {
  margin: 0;
  color: rgba(32, 40, 45, 0.74);
  font-size: 19px;
}

.intro-grid p + p,
.about-copy p + p {
  margin-top: 18px;
}

.offer-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.offer-card,
.resource-card,
.method-steps > div,
.newsletter-box,
.contact-form {
  border-radius: 8px;
}

.offer-card {
  position: relative;
  min-height: 300px;
  padding: 34px 28px 30px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.offer-card::before {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: var(--coral);
}

.offer-card h3 {
  max-width: 300px;
}

.offer-card p,
.resource-card p,
.method-steps p {
  margin: 16px 0 0;
  color: rgba(32, 40, 45, 0.7);
}

.method-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.9fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}

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

.method-copy h2 {
  margin-bottom: 20px;
}

.method-steps {
  display: grid;
  gap: 14px;
}

.method-steps > div {
  position: relative;
  padding: 26px 28px 26px 32px;
  border: 1px solid rgba(19, 63, 104, 0.11);
  background: rgba(255, 251, 247, 0.68);
}

.method-steps > div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 4px;
  border-radius: 999px;
  background: rgba(255, 143, 120, 0.74);
}

.method-steps strong {
  display: block;
  color: var(--blue-900);
  font-size: 20px;
}

.section-blue {
  background: var(--blue-900);
}

.section-blue h2,
.section-blue h3 {
  color: var(--paper-soft);
}

.section-blue .section-heading {
  color: rgba(255, 251, 247, 0.78);
}

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

.resource-grid.light {
  align-items: stretch;
}

.resource-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 330px;
  padding: clamp(28px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03)),
    var(--blue-700);
  color: rgba(255, 251, 247, 0.8);
}

.resource-card.light-card {
  border: 1px solid rgba(19, 63, 104, 0.12);
  background: var(--paper);
  color: rgba(32, 40, 45, 0.74);
}

.resource-card.light-card h3 {
  color: var(--blue-900);
}

.resource-card.light-card p {
  color: rgba(32, 40, 45, 0.72);
}

.resource-card.light-card a {
  color: var(--blue-900);
}

.resource-card.light-card.coral {
  background: rgba(255, 143, 120, 0.2);
}

.resource-card.coral {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04)),
    #d97462;
}

.resource-card h3 {
  margin-bottom: 0;
}

.resource-card p {
  margin: 0;
  color: rgba(255, 251, 247, 0.78);
}

.resource-card a {
  display: inline-flex;
  width: 100%;
  margin-top: auto;
  font-weight: 800;
}

.resource-card .button {
  justify-content: center;
  color: var(--blue-900);
  border-bottom: 0;
}

.resource-card .button-outline {
  background: rgba(255, 143, 120, 0.88);
  border-color: transparent;
  box-shadow: none;
}

.resource-card.light-card.coral .button-outline {
  background: rgba(255, 251, 247, 0.86);
  border-color: transparent;
}

.resource-card.light-card.coral {
  background: rgba(255, 143, 120, 0.2);
  color: rgba(32, 40, 45, 0.74);
}

.resource-card.light-card.coral p,
.resource-card.light-card.coral a {
  color: var(--blue-900);
}

.about-origin-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.about-origin-grid,
.about-purpose-grid {
  display: flex;
  gap: clamp(26px, 5vw, 64px);
  align-items: stretch;
}

.about-origin-grid > *,
.about-purpose-grid > * {
  flex: 1 1 0;
  min-width: 0;
}

.about-purpose-section {
  background: rgba(255, 251, 247, 0.6);
  box-shadow: 0 0 0 100vmax rgba(255, 251, 247, 0.6);
  clip-path: inset(0 -100vmax);
}

.about-purpose-grid {
  align-items: stretch;
}

.about-purpose-copy,
.about-purpose-media {
  display: flex;
  flex-direction: column;
}

.about-purpose-copy h2 {
  max-width: 820px;
  margin-bottom: 28px;
}

.about-visual,
.about-inline-image {
  margin: 0;
}

.about-visual {
  display: flex;
}

.about-visual img,
.about-inline-image img {
  display: block;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 22px 58px rgba(19, 63, 104, 0.14);
}

.about-visual img {
  height: 100%;
  min-height: 0;
  object-position: 22% 50%;
}

.about-card-flow {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-card-pair,
.purpose-card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: stretch;
}

.about-card-pair > .about-card,
.purpose-card-row > .about-card {
  flex: 1 1 min(100%, 280px);
  min-width: 0;
}

.about-purpose-media {
  min-height: 0;
}

.about-card,
.about-inline-image,
.formation-note {
  border-radius: 8px;
}

.about-card {
  padding: 24px;
  border: 1px solid rgba(19, 63, 104, 0.12);
  background: rgba(255, 251, 247, 0.72);
}

.about-card h3 {
  max-width: 440px;
  margin-bottom: 14px;
  font-size: clamp(24px, 2.5vw, 34px);
}

.about-card-deep {
  background: rgba(255, 143, 120, 0.13);
}

.about-card-deep p + p {
  margin-top: 14px;
}

.about-inline-image {
  overflow: hidden;
}

.about-inline-image img {
  min-height: 500px;
  height: 100%;
}

.about-inline-image-large {
  flex: 1 1 auto;
  min-height: 0;
}

.about-inline-image-large img {
  min-height: 0;
}

.formation-note {
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 4px solid var(--coral);
  background: var(--paper-soft);
  color: var(--blue-900);
  font-weight: 750;
}

.newsletter-section {
  padding-top: clamp(72px, 10vw, 128px);
}

.newsletter-box {
  position: relative;
  overflow: hidden;
  contain: layout paint;
  display: flex;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  justify-content: space-between;
  min-height: clamp(440px, 44vw, 560px);
  padding: clamp(34px, 7vw, 72px);
  background: var(--paper-soft);
  box-shadow: 0 24px 70px rgba(19, 63, 104, 0.1);
}

.newsletter-box > * {
  position: relative;
  z-index: 1;
}

.newsletter-copy {
  position: relative;
  z-index: 2;
  flex: 1 1 680px;
  min-width: 0;
}

.newsletter-box h2 {
  max-width: 840px;
}

.newsletter-box p {
  max-width: 620px;
  margin: 20px 0 0;
}

.newsletter-box .button {
  margin-top: 30px;
  min-width: min(100%, 220px);
  min-height: 58px;
  padding: 17px 30px;
  font-size: 16px;
}

.newsletter-icon {
  position: absolute;
  right: min(-120px, -6vw);
  bottom: max(-260px, -22vw);
  z-index: 0;
  width: clamp(560px, 58vw, 820px);
  height: clamp(560px, 58vw, 820px);
  display: grid;
  place-items: center;
  pointer-events: none;
}

.newsletter-icon video,
.newsletter-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.logos-section {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.logos-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  contain: layout paint;
  width: 100%;
  max-width: 100%;
  padding-block: clamp(12px, 2vw, 20px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.logo-track {
  display: flex;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.logo-list {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(26px, 4vw, 54px);
  margin: 0;
  padding: 0 clamp(26px, 4vw, 54px) 0 0;
  list-style: none;
  animation: logo-marquee-scroll 42s linear infinite;
}

.logo-list li {
  display: grid;
  place-items: center;
  width: clamp(126px, 14vw, 178px);
  height: clamp(74px, 8vw, 104px);
}

.logo-list img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: clamp(56px, 6vw, 78px);
  border: 0;
  background: transparent;
  object-fit: contain;
}

@keyframes logo-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.booking-contact-section {
  display: flex;
  gap: clamp(34px, 5vw, 62px);
  align-items: stretch;
  position: relative;
  isolation: isolate;
}

.booking-focus {
  display: flex;
  flex-direction: column;
  flex: 1.25 1 0;
  min-width: 0;
}

.contact-fallback {
  display: flex;
  flex-direction: column;
  flex: 0.75 1 0;
  min-width: 330px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(19, 63, 104, 0.12);
  border-radius: 8px;
  background: rgba(255, 251, 247, 0.72);
  box-shadow: 0 18px 52px rgba(19, 63, 104, 0.08);
}

.booking-contact-section::before {
  content: "";
  position: absolute;
  left: max(-170px, -12vw);
  top: 13%;
  z-index: -1;
  width: clamp(260px, 30vw, 440px);
  height: clamp(220px, 25vw, 360px);
  border-radius: 48% 52% 44% 56% / 56% 42% 58% 44%;
  background: rgba(127, 152, 136, 0.14);
}

.booking-contact-section::after {
  right: -5%;
  bottom: 6%;
  width: clamp(150px, 18vw, 260px);
  height: clamp(120px, 14vw, 210px);
  border-radius: 54% 46% 50% 50% / 46% 58% 42% 54%;
  background: rgba(255, 143, 120, 0.12);
  transform: rotate(10deg);
}

.booking-focus h2 {
  margin-bottom: 20px;
}

.booking-focus > p:not(.eyebrow),
.contact-fallback > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: rgba(32, 40, 45, 0.74);
  font-size: 19px;
}

.contact-fallback h3 {
  max-width: 360px;
  margin-bottom: 14px;
}

.booking-focus .booking-card {
  flex: 1;
  width: 100%;
  margin-top: 28px;
}

.contact-form {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
  margin-top: 22px;
  padding: 0;
  border: 0;
  background: transparent;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--blue-900);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(19, 63, 104, 0.18);
  border-radius: 5px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

.contact-form textarea {
  min-height: 190px;
  resize: vertical;
}

.contact-form label:last-of-type {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
}

.contact-form label:last-of-type textarea {
  flex: 1;
  height: auto;
}

.contact-form button {
  border: 0;
  cursor: pointer;
}

.contact-submit {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form .contact-privacy {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.contact-privacy a {
  text-underline-offset: 0.15em;
}

.contact-form .contact-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.contact-form button:disabled { cursor: wait; opacity: 0.7; }
.contact-status { margin: 0; font-size: 0.9375rem; line-height: 1.5; }
.contact-status:empty { display: none; }
.contact-status[data-state="success"] { color: #285044; }
.contact-status[data-state="error"] { color: #8c3030; }

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: clamp(26px, 5vw, 64px);
  row-gap: 24px;
  align-items: end;
  padding: 56px clamp(20px, 5vw, 72px) 26px;
  background: var(--blue-900);
  color: rgba(255, 251, 247, 0.72);
}

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

.site-footer p {
  max-width: 440px;
  margin: 18px 0 0;
}

.footer-links {
  display: flex;
  gap: 12px;
}

.footer-links {
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  min-width: 180px;
  text-align: right;
}

.footer-links a,
.footer-legal a {
  color: var(--paper-soft);
  font-weight: 800;
  text-decoration: none;
}

.footer-links a {
  font-family: var(--display);
  letter-spacing: 0;
}

.footer-mail {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: 18px;
  color: var(--paper-soft);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.footer-meta,
.footer-legal {
  color: rgba(255, 251, 247, 0.66);
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.2;
}

.footer-meta span + span {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.footer-meta span + span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--coral);
  opacity: 0.9;
}

.footer-legal {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 14px 28px;
  margin-top: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 251, 247, 0.14);
  font-size: 13px;
}

.footer-legal > div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-self: start;
}

.footer-legal a {
  color: rgba(255, 251, 247, 0.72);
}

.footer-credit {
  color: var(--paper-soft);
  justify-self: end;
}

@keyframes hero-copy-intro {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero p.eyebrow,
.point-column-lead p.eyebrow,
.about-origin-heading p.eyebrow,
.about-purpose-copy p.eyebrow,
.section-heading p.eyebrow,
.method-copy p.eyebrow,
.logos-heading p.eyebrow,
.booking-focus p.eyebrow,
.newsletter-box p.eyebrow,
.resource-card p.resource-type,
.resource-card.light-card.coral p.resource-type,
.booking-head p {
  color: var(--coral);
  font-family: var(--display);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: none;
}

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

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: clamp(20px, 5vw, 72px);
    left: clamp(20px, 5vw, 72px);
    display: grid;
    gap: 4px;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(19, 63, 104, 0.1);
    border-radius: 8px;
    background: rgba(255, 251, 247, 0.92);
    box-shadow: 0 22px 54px rgba(19, 63, 104, 0.13);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms var(--motion-ease);
  }

  .site-header.is-menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 6px;
  }

  .nav-links a:hover {
    background: rgba(19, 63, 104, 0.06);
  }

  .nav-menu-cta {
    display: flex;
    justify-content: center;
    margin-top: 4px;
    border: 1px solid rgba(255, 143, 120, 0.72);
    background: var(--coral);
    color: var(--ink);
    font-family: var(--body);
    font-weight: 800;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    min-height: auto;
    padding: 118px clamp(20px, 5vw, 72px) 70px;
  }

  .hero-inner,
  .intro-grid,
  .method-section {
    grid-template-columns: 1fr;
  }

  .point-editorial,
  .booking-contact-section,
  .about-origin-grid,
  .about-purpose-grid {
    flex-direction: column;
  }

  .contact-fallback {
    min-width: 0;
    width: 100%;
  }

  .point-column-lead,
  .method-copy,
  .about-purpose-media {
    position: static;
  }

  .about-visual img {
    min-height: 420px;
  }

  .hero-inner {
    min-height: auto;
    align-items: start;
  }

  .about-card-pair,
  .purpose-card-row,
  .booking-body {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .about-card-pair > .about-card,
  .purpose-card-row > .about-card {
    flex-basis: auto;
    width: 100%;
  }

  .newsletter-box {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
  }

  .newsletter-copy {
    flex-basis: auto;
  }

  .newsletter-icon {
    right: 0;
    bottom: -170px;
    width: 430px;
    height: 430px;
  }

  .booking-card {
    max-width: 100%;
  }

  .available-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 12px 18px;
  }

  .brand {
    width: 132px;
  }

  .nav-cta {
    min-height: 44px;
    padding: 9px 12px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding: 104px 18px 56px;
  }

  .hero-video {
    object-position: 58% center;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(255, 245, 236, 0.94) 0%, rgba(255, 245, 236, 0.82) 56%, rgba(255, 245, 236, 0.95) 100%);
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-links a,
  .footer-legal a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
  }

  .booking-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 68px 18px;
  }

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

  .about-visual img {
    min-height: 360px;
  }

  .about-inline-image img {
    min-height: 280px;
  }

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

  .footer-links {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

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

  .contact-form {
    padding: 0;
  }
}
