:root {
  --ivory: #f5f0e7;
  --paper: #fbf8f2;
  --paper-deep: #eee7da;
  --stone: #d6ccbb;
  --stone-dark: #a99f8f;
  --charcoal: #202925;
  --charcoal-soft: #35413c;
  --ink: #29332f;
  --ink-muted: #66706b;
  --gold: #aa8147;
  --gold-bright: #c7a56f;
  --gold-pale: #e9d9b8;
  --sage: #819183;
  --sage-pale: #dbe2d8;
  --sea: #527b80;
  --sea-deep: #365e64;
  --white: #fffdf8;
  --error: #a74438;
  --success: #356b50;
  --font-serif: "Iowan Old Style", Baskerville, Georgia, "Times New Roman", serif;
  --font-sans: Inter, Avenir, "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: 1200px;
  --section-space: clamp(5rem, 10vw, 9rem);
  --shadow-soft: 0 24px 70px rgb(42 48 43 / 9%);
  --shadow-card: 0 16px 45px rgb(42 48 43 / 10%);
  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

::selection {
  background: var(--gold-pale);
  color: var(--charcoal);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 0.5rem;
  transform: translateY(-200%);
  transition: transform 160ms ease;
}

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

.shell {
  width: min(calc(100% - 2.5rem), var(--shell));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow span {
  width: 2.35rem;
  height: 1px;
  background: currentColor;
}

.eyebrow-light {
  color: var(--gold-bright);
}

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

h1,
h2 {
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.99;
}

h1 em,
h2 em {
  color: var(--sea);
  font-weight: 400;
}

h1 {
  max-width: 14ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.45rem, 4.8vw, 5.3rem);
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.75rem, 5vw, 5rem);
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

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

.button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.button svg {
  width: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.button-primary {
  background: var(--charcoal);
  box-shadow: 0 8px 20px rgb(32 41 37 / 15%);
  color: var(--white);
}

.button-primary:hover:not(:disabled) {
  background: var(--sea-deep);
  box-shadow: 0 12px 28px rgb(54 94 100 / 20%);
}

.button-dark {
  background: var(--charcoal);
  color: var(--white) !important;
}

.button-small {
  min-height: 2.8rem;
  padding: 0.72rem 1.15rem;
  font-size: 0.82rem;
}

.button-outline {
  border-color: var(--stone-dark);
  background: transparent;
  color: var(--charcoal);
}

.button-outline:hover {
  border-color: var(--sea);
  background: var(--white);
}

.button-gold {
  background: var(--gold-bright);
  color: var(--charcoal);
}

.button-gold:hover:not(:disabled) {
  background: var(--gold-pale);
}

.button-ghost-light {
  border-color: rgb(255 253 248 / 35%);
  background: transparent;
  color: var(--white);
}

.button-ghost-light:hover {
  border-color: var(--white);
  background: rgb(255 255 255 / 7%);
}

.button-full {
  width: 100%;
}

.text-link {
  position: relative;
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.5rem;
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0.32rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 220ms ease;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.instagram-icon {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

/* Header */

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgb(64 72 67 / 10%);
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.site-header.is-sticky {
  position: fixed;
  background: rgb(245 240 231 / 94%);
  box-shadow: 0 7px 26px rgb(48 57 51 / 8%);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 5.2rem;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--charcoal);
  text-decoration: none;
}

.brand-mark {
  width: 2.35rem;
  color: var(--gold);
}

.brand-mark svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 0.9;
}

.brand-mark svg circle:last-child {
  fill: var(--ivory);
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.2rem);
}

.site-nav > a:not(.button) {
  position: relative;
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid var(--stone);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1rem;
  height: 1px;
  margin: 0.25rem auto;
  background: var(--charcoal);
  transition: transform 180ms ease;
}

/* Hero */

.hero {
  position: relative;
  min-height: min(940px, 100svh);
  padding: clamp(7.5rem, 10vw, 8.5rem) 0 clamp(4rem, 7vw, 5.5rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 42%, rgb(196 174 128 / 13%), transparent 25rem),
    linear-gradient(115deg, var(--ivory), #f0ebdf 65%, #e6e1d4);
}

.hero::after {
  position: absolute;
  right: -10vw;
  bottom: -34vw;
  width: 68vw;
  height: 68vw;
  border: 1px solid rgb(82 123 128 / 15%);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: clamp(3rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 1.12fr) minmax(20rem, 0.75fr);
}

.hero-copy {
  padding-top: 1rem;
}

.hero-lede {
  max-width: 37rem;
  margin-bottom: 2.2rem;
  color: var(--ink-muted);
  font-size: clamp(1.02rem, 1.4vw, 1.17rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.hero-details {
  display: grid;
  max-width: 42rem;
  margin-top: clamp(3rem, 6vw, 5.4rem);
  border-top: 1px solid var(--stone);
  grid-template-columns: repeat(3, 1fr);
}

.hero-details > div {
  padding: 1.35rem 1rem 0 0;
}

.hero-details > div + div {
  padding-left: 1rem;
  border-left: 1px solid var(--stone);
}

.hero-details strong,
.hero-details span {
  display: block;
}

.hero-details strong {
  margin-bottom: 0.2rem;
  color: var(--charcoal);
  font-size: 0.84rem;
}

.hero-details span {
  color: var(--ink-muted);
  font-size: 0.72rem;
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 31rem);
}

.hero-image-wrap {
  position: relative;
  padding: 0.85rem;
  border: 1px solid rgb(170 129 71 / 37%);
  border-radius: 15.5rem 15.5rem 1.2rem 1.2rem;
}

.hero-image-wrap > img {
  width: 100%;
  height: clamp(32rem, 50vw, 40rem);
  border-radius: 15rem 15rem 0.7rem 0.7rem;
  object-fit: cover;
  object-position: 50% 32%;
}

.image-ring {
  position: absolute;
  top: -1.8rem;
  right: -1.8rem;
  width: 8.5rem;
  height: 8.5rem;
  border: 1px solid rgb(170 129 71 / 62%);
  border-radius: 50%;
  animation: slowSpin 30s linear infinite;
}

.image-ring::before,
.image-ring::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgb(170 129 71 / 45%);
  content: "";
  transform: translate(-50%, -50%);
}

.image-ring::before {
  width: 72%;
  height: 1px;
}

.image-ring::after {
  width: 1px;
  height: 72%;
}

.image-ring span {
  position: absolute;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 0.8rem;
}

.image-ring span:nth-child(1) { top: 0.45rem; left: 50%; transform: translateX(-50%); }
.image-ring span:nth-child(2) { top: 50%; right: 0.6rem; transform: translateY(-50%); }
.image-ring span:nth-child(3) { bottom: 0.4rem; left: 50%; transform: translateX(-50%); }
.image-ring span:nth-child(4) { top: 50%; left: 0.6rem; transform: translateY(-50%); }

.photo-credit {
  position: absolute;
  right: 1.6rem;
  bottom: 1.5rem;
  margin: 0;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgb(24 32 29 / 58%);
  color: rgb(255 255 255 / 80%);
  font-size: 0.61rem;
  line-height: 1.25;
  backdrop-filter: blur(6px);
}

.photo-credit a {
  color: var(--white);
  text-decoration: none;
}

.hero-note {
  position: absolute;
  bottom: 3.2rem;
  left: -3rem;
  display: flex;
  min-width: 13.5rem;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: var(--paper);
  box-shadow: var(--shadow-card);
}

.hero-note p {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.35;
}

.hero-note-glyph {
  color: var(--gold);
  font-size: 1.45rem;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgb(82 123 128 / 13%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  top: 22%;
  left: -17rem;
  width: 30rem;
  height: 30rem;
}

.hero-orbit-two {
  top: 33%;
  left: -12rem;
  width: 20rem;
  height: 20rem;
}

/* Principles */

.principles {
  background: var(--paper);
}

.section-heading-split {
  display: grid;
  align-items: end;
  gap: 4rem;
  grid-template-columns: 1.4fr 0.6fr;
}

.section-heading-split h2 {
  margin-bottom: 0;
}

.section-heading-split > p {
  max-width: 29rem;
  margin-bottom: 0.55rem;
  color: var(--ink-muted);
}

.principle-grid {
  display: grid;
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--stone);
  border-left: 1px solid var(--stone);
  grid-template-columns: repeat(3, 1fr);
}

.principle-card {
  position: relative;
  min-height: 23rem;
  padding: clamp(2rem, 4vw, 3.4rem);
  border-right: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  transition: background-color 220ms ease;
}

.principle-card:hover {
  background: var(--ivory);
}

.principle-number {
  color: var(--stone-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.principle-icon {
  display: grid;
  width: 4rem;
  height: 4rem;
  margin: 3.7rem 0 2.1rem;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--sea);
}

.principle-icon svg {
  width: 2.5rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

.principle-card h3 {
  margin-bottom: 0.8rem;
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.2;
}

.principle-card p {
  max-width: 18rem;
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: 0.91rem;
}

/* About */

.about {
  background: var(--ivory);
}

.about-grid {
  display: grid;
  align-items: center;
  gap: clamp(4rem, 10vw, 9rem);
  grid-template-columns: minmax(20rem, 0.85fr) minmax(0, 1fr);
}

.about-visual {
  position: relative;
}

.about-image-frame {
  position: relative;
  padding: 0 0 1.1rem 1.1rem;
}

.about-image-frame::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 67%;
  height: 72%;
  border: 1px solid var(--gold-bright);
  content: "";
}

.about-image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(31rem, 56vw, 43rem);
  object-fit: cover;
  object-position: center 25%;
}

.about-symbol {
  position: absolute;
  z-index: 2;
  right: -2.5rem;
  bottom: 1.8rem;
  display: grid;
  width: 6.5rem;
  height: 6.5rem;
  place-items: center;
  border: 1px solid var(--gold-pale);
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--gold-bright);
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-style: italic;
}

.photo-credit-dark {
  right: 1.5rem;
  bottom: 2rem;
  z-index: 3;
}

.about-copy h2 {
  max-width: 11ch;
}

.about-body {
  max-width: 37rem;
  padding-left: clamp(0rem, 5vw, 4rem);
  color: var(--ink-muted);
}

.about-intro {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.45;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-top: 2.2rem;
  padding-left: clamp(0rem, 5vw, 4rem);
}

/* Calculator */

.calculator {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  color: rgb(255 253 248 / 72%);
}

.calculator::before {
  position: absolute;
  top: -22rem;
  right: -14rem;
  width: 45rem;
  height: 45rem;
  border: 1px solid rgb(199 165 111 / 13%);
  border-radius: 50%;
  content: "";
}

.calculator-orbit {
  position: absolute;
  right: -4rem;
  bottom: -21rem;
  width: 40rem;
  height: 40rem;
  border: 1px solid rgb(199 165 111 / 10%);
  border-radius: 50%;
}

.calculator-orbit::before,
.calculator-orbit::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgb(199 165 111 / 9%);
  content: "";
  transform: translate(-50%, -50%);
}

.calculator-orbit::before { width: 100%; height: 1px; }
.calculator-orbit::after { width: 1px; height: 100%; }

.calculator-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: clamp(3rem, 9vw, 9rem);
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.72fr);
}

.calculator h2 {
  max-width: 10ch;
  color: var(--white);
}

.calculator h2 em {
  color: var(--gold-bright);
}

.calculator-copy > p:not(.eyebrow, .fine-print) {
  max-width: 35rem;
  font-size: 1.05rem;
}

.calculator-points {
  display: grid;
  gap: 0.7rem;
  margin: 2.2rem 0;
  padding: 0;
  list-style: none;
}

.calculator-points li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgb(255 253 248 / 86%);
  font-size: 0.9rem;
}

.calculator-points span {
  display: grid;
  width: 1.7rem;
  height: 1.7rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgb(199 165 111 / 55%);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: var(--font-serif);
  font-size: 0.85rem;
}

.fine-print {
  max-width: 34rem;
  margin-bottom: 0;
  color: rgb(255 253 248 / 48%);
  font-size: 0.76rem;
}

.calculator-card {
  min-height: 33rem;
  padding: clamp(2rem, 4vw, 3.4rem);
  background: var(--paper);
  box-shadow: 0 35px 70px rgb(0 0 0 / 18%);
  color: var(--ink);
}

.calculator-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.mini-label {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.calculator-mark {
  color: var(--gold);
  font-size: 1.3rem;
}

.calculator-card label {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: 1.45rem;
}

.calculator-card input {
  width: 100%;
  min-height: 3.8rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--stone);
  border-radius: 0;
  background: var(--white);
  color: var(--charcoal);
  font-size: 1rem;
}

.calculator-card input:focus {
  border-color: var(--sea);
  outline: 2px solid rgb(82 123 128 / 18%);
}

.field-hint {
  margin: 0.7rem 0 2rem;
  color: var(--ink-muted);
  font-size: 0.73rem;
}

.calculator-result {
  text-align: center;
}

.result-kicker {
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.result-number {
  display: grid;
  width: 8rem;
  height: 8rem;
  margin: 0 auto 1.2rem;
  place-items: center;
  border: 1px solid var(--gold-bright);
  border-radius: 50%;
  color: var(--sea-deep);
  font-family: var(--font-serif);
  font-size: 5.5rem;
  font-weight: 500;
  line-height: 1;
}

.result-title {
  margin-bottom: 0.7rem;
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: 1.65rem;
  line-height: 1.2;
}

.result-text {
  max-width: 25rem;
  margin: 0 auto 1rem;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.result-math {
  margin: 1.2rem auto;
  padding: 0.75rem;
  background: var(--ivory);
  color: var(--ink-muted);
  font-size: 0.73rem;
}

.text-button {
  min-height: 2.5rem;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--sea-deep);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
}

.form-error {
  margin: 1rem 0 0;
  color: var(--error);
  font-size: 0.82rem;
}

/* Course */

.course {
  background: var(--paper-deep);
}

.course-card {
  display: grid;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  grid-template-columns: minmax(20rem, 0.82fr) minmax(0, 1.18fr);
}

.course-image {
  position: relative;
  min-height: 48rem;
  overflow: hidden;
}

.course-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgb(22 29 26 / 70%));
  content: "";
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

.course-image-label {
  position: absolute;
  z-index: 2;
  right: 2.4rem;
  bottom: 3rem;
  left: 2.4rem;
  color: var(--white);
}

.course-image-label span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--gold-pale);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.course-image-label strong {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.93;
}

.course-image .photo-credit {
  z-index: 3;
  right: auto;
  bottom: 1rem;
  left: 2.4rem;
}

.course-content {
  padding: clamp(2.5rem, 6vw, 5.5rem);
}

.course-content h2 {
  max-width: 11ch;
  font-size: clamp(2.7rem, 4.7vw, 4.75rem);
}

.course-lede {
  max-width: 36rem;
  margin-bottom: 2.6rem;
  color: var(--ink-muted);
}

.course-outline {
  border-top: 1px solid var(--stone);
}

.course-outline > div {
  display: grid;
  gap: 1.2rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--stone);
  grid-template-columns: 2.2rem 1fr;
}

.course-outline > div > span {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 0.95rem;
}

.course-outline p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.83rem;
}

.course-outline strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--charcoal);
  font-size: 0.9rem;
}

.course-purchase {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2.4rem;
}

.course-purchase > div span,
.course-purchase > div strong {
  display: block;
}

.course-purchase > div span {
  color: var(--ink-muted);
  font-size: 0.7rem;
}

.course-purchase > div strong {
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.1;
}

.course-purchase small,
.summary-price small {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.checkout-note {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 1.1rem 0 0;
  color: var(--ink-muted);
  font-size: 0.7rem;
}

.checkout-note svg {
  width: 1rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.checkout-status {
  min-height: 1.4rem;
  margin: 0.6rem 0 0;
  color: var(--error);
  font-size: 0.76rem;
}

.checkout-status.is-loading {
  color: var(--sea-deep);
}

/* Booking */

.booking {
  background: var(--ivory);
}

.booking-heading {
  display: grid;
  align-items: end;
  gap: 2rem 4rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  grid-template-columns: 1.35fr 0.65fr;
}

.booking-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -0.4rem;
}

.booking-heading h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.booking-heading > p {
  max-width: 29rem;
  margin-bottom: 0.7rem;
  color: var(--ink-muted);
}

.booking-layout {
  display: grid;
  align-items: start;
  gap: 1.4rem;
  grid-template-columns: minmax(17rem, 0.35fr) minmax(0, 0.65fr);
}

.booking-layout > *,
.booking-summary,
.booking-panel,
.date-strip-wrap,
.date-strip {
  min-width: 0;
  max-width: 100%;
}

.booking-summary {
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--charcoal);
  color: rgb(255 253 248 / 70%);
}

.summary-price {
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgb(255 255 255 / 13%);
}

.summary-price span,
.summary-price strong {
  display: block;
}

.summary-price span {
  margin-bottom: 0.65rem;
  color: rgb(255 253 248 / 70%);
  font-size: 0.76rem;
}

.summary-price strong {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}

.booking-summary ul {
  display: grid;
  gap: 1.35rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.booking-summary li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.booking-summary li svg {
  width: 1.5rem;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.booking-summary li strong,
.booking-summary li span {
  display: block;
}

.booking-summary li strong {
  color: var(--white);
  font-size: 0.82rem;
}

.booking-summary li span {
  font-size: 0.76rem;
}

.instagram-help {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2rem;
  padding: 1rem;
  background: rgb(255 255 255 / 6%);
}

.instagram-help > span {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgb(199 165 111 / 45%);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.instagram-help p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.5;
}

.instagram-help a {
  display: block;
  color: var(--white);
  font-weight: 700;
}

.booking-panel {
  padding: clamp(1.6rem, 4vw, 3rem);
  background: var(--paper);
  box-shadow: var(--shadow-card);
}

.booking-progress {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
  color: var(--stone-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-progress span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.booking-progress span b {
  display: grid;
  width: 1.6rem;
  height: 1.6rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.65rem;
}

.booking-progress span.is-active {
  color: var(--sea-deep);
}

.booking-progress span.is-active b {
  border-color: var(--sea);
  background: var(--sea);
  color: var(--white);
}

.booking-progress i {
  width: 3rem;
  height: 1px;
  margin: 0 0.7rem;
  background: var(--stone);
}

.booking-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.booking-section-head h3 {
  margin: 0.15rem 0 0;
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
}

.timezone-pill {
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--stone);
  border-radius: 999px;
  color: var(--ink-muted);
  font-size: 0.65rem;
  white-space: nowrap;
}

.date-strip-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.date-strip {
  display: flex;
  flex: 1 1 auto;
  width: 100%;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.2rem 0.1rem 0.6rem;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

.date-button {
  min-width: 4.7rem;
  min-height: 5.2rem;
  padding: 0.6rem 0.4rem;
  border: 1px solid var(--stone);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  text-align: center;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.date-button:hover:not(:disabled) {
  border-color: var(--sea);
}

.date-button.is-selected {
  border-color: var(--sea-deep);
  background: var(--sea-deep);
  color: var(--white);
}

.date-button:disabled,
.date-button.is-unavailable {
  cursor: not-allowed;
  opacity: 0.42;
}

.date-button span,
.date-button strong,
.date-button small {
  display: block;
}

.date-button span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.date-button strong {
  margin: 0.08rem 0;
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1.05;
}

.date-button small {
  font-size: 0.62rem;
}

.date-scroll {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--stone);
  border-radius: 50%;
  background: var(--paper);
  color: var(--charcoal);
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1;
}

.date-scroll:disabled {
  opacity: 0.35;
}

.date-skeleton {
  display: flex;
  gap: 0.55rem;
}

.date-skeleton span {
  min-width: 4.7rem;
  height: 5.2rem;
  background: linear-gradient(90deg, var(--paper-deep), var(--white), var(--paper-deep));
  background-size: 220% 100%;
  animation: skeleton 1.4s ease infinite;
}

.booking-time-head {
  margin-top: 2.2rem;
}

.selected-date-label {
  color: var(--ink-muted);
  font-size: 0.73rem;
  text-align: right;
}

.time-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, 1fr);
}

.time-slot {
  display: grid;
  min-height: 6.8rem;
  align-items: center;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--stone);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  grid-template-columns: 1fr auto;
  text-align: left;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.time-slot:hover:not(:disabled) {
  border-color: var(--sea);
}

.time-slot.is-selected {
  border-color: var(--sea-deep);
  background: var(--sage-pale);
}

.time-slot:disabled,
.time-slot.is-unavailable {
  cursor: not-allowed;
  opacity: 0.42;
}

.time-slot span {
  color: var(--ink-muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.time-slot strong {
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
}

.time-slot small {
  color: var(--ink-muted);
  font-size: 0.65rem;
  grid-column: 1 / -1;
}

.booking-contact {
  margin-top: 2.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--stone);
}

.contact-fields {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr 1fr;
}

.contact-fields label {
  display: block;
}

.contact-fields label > span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 700;
}

.contact-fields label small {
  color: var(--ink-muted);
  font-size: 0.62rem;
  font-weight: 400;
}

.contact-fields input {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--stone);
  border-radius: 0;
  background: var(--white);
  color: var(--charcoal);
}

.contact-fields input:focus {
  border-color: var(--sea);
  outline: 2px solid rgb(82 123 128 / 18%);
}

.contact-fields input:user-invalid {
  border-color: var(--error);
}

.contact-field-wide {
  grid-column: 1 / -1;
}

.booking-error {
  margin-top: 1rem;
  padding: 1rem;
  border-left: 3px solid var(--error);
  background: rgb(167 68 56 / 7%);
}

.booking-error p {
  margin: 0 0 0.5rem;
  color: var(--error);
  font-size: 0.8rem;
}

.booking-checkout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--stone);
}

.selection-recap span,
.selection-recap strong {
  display: block;
}

.selection-recap span {
  color: var(--ink-muted);
  font-size: 0.65rem;
}

.selection-recap strong {
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
}

.booking-secure {
  justify-content: flex-end;
}

/* FAQ */

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 9vw, 8rem);
  grid-template-columns: minmax(17rem, 0.4fr) minmax(0, 0.6fr);
}

.faq-heading {
  position: sticky;
  top: 8rem;
}

.faq-heading h2 {
  max-width: 8ch;
}

.faq-heading > p:not(.eyebrow) {
  max-width: 27rem;
  color: var(--ink-muted);
}

.faq-heading .button {
  margin-top: 1rem;
}

.accordion {
  border-top: 1px solid var(--stone);
}

.accordion-item {
  border-bottom: 1px solid var(--stone);
}

.accordion-item h3 {
  margin: 0;
}

.accordion-item button {
  display: flex;
  width: 100%;
  min-height: 5.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.2rem 0;
  border: 0;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
}

.accordion-item button span {
  position: relative;
  width: 1.4rem;
  height: 1.4rem;
  flex: 0 0 auto;
}

.accordion-item button span::before,
.accordion-item button span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.accordion-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item button[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion-panel p {
  max-width: 39rem;
  margin: -0.4rem 0 1.8rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

/* Closing and footer */

.closing-cta {
  position: relative;
  padding: clamp(5.5rem, 10vw, 9rem) 0;
  overflow: hidden;
  background: var(--sea-deep);
  color: var(--white);
  text-align: center;
}

.closing-cta::before,
.closing-cta::after {
  position: absolute;
  top: 50%;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgb(255 253 248 / 10%);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.closing-cta::before { left: -18rem; }
.closing-cta::after { right: -18rem; }

.closing-inner {
  position: relative;
  z-index: 2;
}

.closing-star {
  display: block;
  margin-bottom: 1rem;
  color: var(--gold-bright);
  font-size: 1.5rem;
}

.closing-cta h2 {
  margin-bottom: 2.4rem;
  color: var(--white);
}

.closing-cta h2 em {
  color: var(--gold-pale);
}

.closing-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.closing-symbol {
  position: absolute;
  top: 50%;
  color: rgb(255 253 248 / 5%);
  font-family: var(--font-serif);
  font-size: 17rem;
  line-height: 1;
  transform: translateY(-50%);
}

.closing-symbol-left { left: 3%; }
.closing-symbol-right { right: 3%; }

.site-footer {
  padding: 4.5rem 0 1.5rem;
  background: #1a211e;
  color: rgb(255 253 248 / 62%);
}

.footer-top {
  display: grid;
  gap: 4rem;
  padding-bottom: 3.5rem;
  grid-template-columns: 0.8fr 1.2fr;
}

.brand-light {
  color: var(--white);
}

.brand-light .brand-mark svg circle:last-child {
  fill: #1a211e;
}

.footer-brand > p {
  max-width: 24rem;
  margin: 1.3rem 0 0;
  font-size: 0.83rem;
}

.footer-links {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}

.footer-links h3 {
  margin: 0 0 1rem;
  color: var(--gold-bright);
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  width: fit-content;
  min-height: 2rem;
  color: rgb(255 253 248 / 70%);
  font-size: 0.78rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / 10%);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.68rem;
}

.noscript-notice {
  position: fixed;
  z-index: 100;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem;
  border: 1px solid var(--gold);
  background: var(--paper);
  box-shadow: var(--shadow-card);
  color: var(--charcoal);
  font-size: 0.85rem;
  text-align: center;
}

/* Shared inner pages */

.inner-page {
  min-height: 100vh;
  background: var(--paper);
}

.inner-hero {
  padding: 10rem 0 4rem;
  background: var(--ivory);
  border-bottom: 1px solid var(--stone);
}

.inner-hero h1 {
  max-width: 15ch;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.inner-hero p {
  max-width: 40rem;
  margin-bottom: 0;
  color: var(--ink-muted);
}

.content-page {
  padding: 4rem 0 7rem;
}

.prose {
  max-width: 48rem;
}

.prose h2 {
  margin: 3rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.prose h3 {
  margin: 2rem 0 0.7rem;
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
}

.prose p,
.prose li {
  color: var(--ink-muted);
}

.prose a {
  color: var(--sea-deep);
  font-weight: 600;
}

.status-page {
  display: grid;
  min-height: 100vh;
  padding: 7rem 1.25rem;
  place-items: center;
  background: var(--ivory);
}

.status-card {
  width: min(100%, 37rem);
  padding: clamp(2rem, 6vw, 4rem);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.status-card .brand {
  margin-bottom: 2rem;
}

.status-card h1 {
  max-width: none;
  margin-bottom: 1rem;
  font-size: clamp(2.7rem, 7vw, 4.5rem);
}

.status-card > p {
  color: var(--ink-muted);
}

.status-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* Motion */

@keyframes slowSpin {
  to { transform: rotate(360deg); }
}

@keyframes skeleton {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 800ms var(--ease),
    transform 800ms var(--ease);
}

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

.reveal-delay { transition-delay: 120ms; }
.reveal-delay-small { transition-delay: 80ms; }
.reveal-delay-large { transition-delay: 160ms; }

/* Responsive */

@media (max-width: 1060px) {
  .hero-grid {
    gap: 3.5rem;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.65fr);
  }

  .hero-note {
    left: -1.5rem;
  }

  .course-content {
    padding: 3.2rem;
  }

  .course-image {
    min-height: 51rem;
  }
}

@media (max-width: 900px) {
  :root {
    --section-space: clamp(4.5rem, 12vw, 7rem);
  }

  .nav-toggle {
    display: block;
  }

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

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

  .site-nav {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    display: grid;
    min-height: 100svh;
    align-content: center;
    padding: 6rem 2rem 3rem;
    background: var(--ivory);
    opacity: 0;
    pointer-events: none;
    text-align: center;
    transform: translateY(-1rem);
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }

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

  .site-nav > a:not(.button) {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
  }

  .site-nav .button {
    justify-self: center;
    margin-top: 1rem;
  }

  .hero {
    min-height: 0;
    padding-top: 8.5rem;
  }

  .hero-grid,
  .about-grid,
  .calculator-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 1rem;
  }

  .hero-visual {
    width: min(88%, 33rem);
    margin-right: 4%;
  }

  .hero-image-wrap > img {
    height: 43rem;
  }

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

  .booking-heading .eyebrow {
    grid-column: auto;
  }

  .principle-card {
    min-height: 20rem;
    padding: 2.2rem;
  }

  .about-visual {
    width: min(82%, 35rem);
  }

  .about-copy {
    max-width: 42rem;
    margin-left: auto;
  }

  .calculator-grid {
    max-width: 43rem;
  }

  .course-card {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .course-content {
    padding: 2.4rem;
  }

  .course-image {
    min-height: 55rem;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 0.7fr 1.3fr;
  }

  .booking-summary ul {
    margin: 0;
  }

  .instagram-help {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .faq-heading {
    position: static;
  }

  .faq-heading h2 {
    max-width: 11ch;
  }

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

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 2rem), var(--shell));
  }

  h1 {
    font-size: clamp(3.15rem, 15vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .header-inner {
    min-height: 4.65rem;
  }

  .brand-name {
    font-size: 1.3rem;
  }

  .brand-mark {
    width: 2.1rem;
  }

  .hero {
    padding-top: 7.5rem;
  }

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

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-details {
    margin-top: 3.2rem;
    grid-template-columns: 1fr;
  }

  .hero-details > div {
    display: grid;
    align-items: center;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--stone);
    grid-template-columns: 0.8fr 1.2fr;
  }

  .hero-details > div + div {
    padding-left: 0;
    border-left: 0;
  }

  .hero-details strong,
  .hero-details span {
    margin: 0;
  }

  .hero-visual {
    width: calc(100% - 1.2rem);
    margin: 1rem 0 0;
    justify-self: start;
  }

  .hero-image-wrap {
    padding: 0.55rem;
  }

  .hero-image-wrap > img {
    height: min(118vw, 36rem);
  }

  .image-ring {
    top: -1rem;
    right: -1rem;
    width: 6.5rem;
    height: 6.5rem;
  }

  .hero-note {
    bottom: 2rem;
    left: -0.5rem;
    min-width: 11.5rem;
    padding: 0.8rem 1rem;
  }

  .hero-note p {
    font-size: 0.87rem;
  }

  .section-heading-split h2 br {
    display: none;
  }

  .principle-grid {
    border-top: 1px solid var(--stone);
    grid-template-columns: 1fr;
  }

  .principle-card {
    min-height: 0;
    padding: 2rem;
  }

  .principle-icon {
    margin: 2.2rem 0 1.5rem;
  }

  .about-visual {
    width: calc(100% - 1.8rem);
  }

  .about-image-frame img {
    height: min(125vw, 38rem);
  }

  .about-symbol {
    right: -1.7rem;
    width: 5.2rem;
    height: 5.2rem;
    font-size: 2.6rem;
  }

  .about-body,
  .about-actions {
    padding-left: 0;
  }

  .about-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.7rem;
  }

  .about-actions .text-link {
    align-self: flex-start;
  }

  .calculator-card {
    min-height: 31rem;
    margin-inline: -0.25rem;
    padding: 1.6rem;
  }

  .course-card {
    margin-inline: -0.5rem;
    grid-template-columns: 1fr;
  }

  .course-image {
    min-height: 34rem;
  }

  .course-content {
    padding: 2rem 1.5rem 2.4rem;
  }

  .course-purchase {
    align-items: stretch;
    flex-direction: column;
  }

  .course-purchase .button {
    width: 100%;
  }

  .booking-heading h2 {
    max-width: 11ch;
  }

  .booking-summary {
    padding: 1.7rem;
    grid-template-columns: 1fr;
  }

  .booking-panel {
    margin-inline: -0.5rem;
    padding: 1.4rem 1rem 1.7rem;
  }

  .booking-progress {
    justify-content: center;
  }

  .booking-progress i {
    width: 1.2rem;
    margin-inline: 0.35rem;
  }

  .booking-progress span {
    font-size: 0.57rem;
  }

  .date-scroll {
    display: none;
  }

  .date-strip {
    margin-inline: -0.15rem;
  }

  .date-button,
  .date-skeleton span {
    min-width: 4.25rem;
  }

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

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

  .contact-field-wide {
    grid-column: auto;
  }

  .time-slot {
    min-height: 5.8rem;
  }

  .booking-checkout {
    align-items: stretch;
    flex-direction: column;
  }

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

  .booking-secure {
    justify-content: flex-start;
  }

  .closing-cta h2 br {
    display: none;
  }

  .closing-actions,
  .status-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }

  .inner-hero {
    padding-top: 8rem;
  }
}

@media (max-width: 430px) {
  .footer-links {
    grid-template-columns: 1fr;
  }

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

  .selected-date-label {
    text-align: left;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
