:root {
  --ink: #16211f;
  --muted: #66706c;
  --paper: #fbfaf6;
  --logo-paper: #fdf9f3;
  --soft: #f1eee6;
  --line: #ded8cb;
  --green: #1e5146;
  --green-dark: #12362f;
  --rust: #a14f32;
  --blue: #2f6d88;
  --gold: #d09a35;
  --white: #ffffff;
  --leaf: #dfe9df;
  --rose: #ead7cf;
  --shadow: 0 18px 48px rgba(22, 33, 31, 0.12);
  --radius: 8px;
  --anchor-offset: 120px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(22, 33, 31, 0.035) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(0deg, rgba(22, 33, 31, 0.025) 1px, transparent 1px) 0 0 / 80px 80px,
    var(--paper);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2vw, 24px);
  padding: 14px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgba(222, 216, 203, 0.82);
  background: var(--logo-paper);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: clamp(220px, 21vw, 300px);
  text-decoration: none;
}

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

.main-nav {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  justify-content: center;
  min-width: 0;
  gap: clamp(12px, 1.35vw, 20px);
  color: #3c4945;
  font-size: 0.93rem;
  white-space: nowrap;
}

.main-nav a,
.site-footer a {
  text-decoration: none;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--rust);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-dark);
  background: var(--white);
  font: inherit;
  font-weight: 780;
  cursor: pointer;
}

.menu-toggle:hover {
  border-color: var(--green);
}

.menu-toggle-icon {
  display: grid;
  gap: 4px;
  width: 18px;
}

.menu-toggle-icon span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--green);
}

.header-cta:hover,
.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  color: var(--green-dark);
  border-color: var(--green);
  background: var(--white);
}

.button.ghost {
  color: var(--rust);
  border-color: var(--line);
  background: transparent;
}

.button.small {
  min-height: 36px;
  padding: 0 13px;
  font-size: 0.82rem;
}

.section-band,
.section,
.booking-section,
.split-section,
.personal-note-section {
  padding: clamp(56px, 7vw, 104px) clamp(18px, 5vw, 72px);
}

.hero {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 72px);
  background:
    linear-gradient(90deg, rgba(13, 30, 27, 0.92), rgba(13, 30, 27, 0.63), rgba(13, 30, 27, 0.22)),
    url("assets/movement-practice.png") center / cover no-repeat;
}

.hero-copy {
  min-width: 0;
  width: min(980px, 100%);
  max-width: 100%;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 840;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 5.4vw, 5rem);
  font-weight: 520;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.8vw, 3.7rem);
  font-weight: 520;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.25;
}

p {
  color: #4c5a56;
  line-height: 1.65;
  overflow-wrap: break-word;
}

.hero-lede {
  max-width: 780px;
  font-size: clamp(1.06rem, 1.8vw, 1.25rem);
}

.hero h1,
.hero .hero-lede {
  color: var(--white);
}

.hero .eyebrow {
  color: #f0c274;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 24px;
}

.orientation-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 640px;
  margin: 0 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
}

.orientation-strip span {
  position: relative;
  padding: 13px 18px;
  color: rgba(255, 255, 255, 0.88);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  text-align: center;
}

.orientation-strip span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 900px;
  margin: 0;
}

.trust-metrics div,
.path-card,
.approach-grid article,
.credential-grid article,
.service-grid article,
.workshop-grid article,
.testimonial-grid blockquote,
.faq-grid details,
.contact-grid a,
.contact-card,
.booking-panel,
.summary-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1px 0 rgba(22, 33, 31, 0.03);
}

.trust-metrics div {
  padding: 18px;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.9);
}

.trust-metrics dt {
  color: var(--green);
  font-weight: 800;
}

.trust-metrics dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.personal-note-section {
  background: var(--green-dark);
}

.personal-note {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
  color: var(--white);
}

.personal-note .eyebrow {
  color: #f0c274;
}

.personal-note blockquote {
  margin: 0;
  padding-left: clamp(20px, 4vw, 40px);
  border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.personal-note blockquote p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.65rem);
  line-height: 1.18;
}

.personal-note cite {
  color: #f0c274;
  font-style: normal;
  font-weight: 780;
}

.split-media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 760px;
}

.path-grid,
.approach-grid,
.credential-grid,
.service-grid,
.workshop-grid,
.testimonial-grid,
.faq-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.path-card,
.approach-grid article,
.credential-grid article,
.service-grid article,
.workshop-grid article,
.testimonial-grid blockquote,
.faq-grid details,
.contact-grid a,
.contact-card {
  padding: 24px;
}

.path-card,
.approach-grid article,
.credential-grid article,
.service-grid article,
.workshop-grid article {
  position: relative;
  overflow: hidden;
}

.path-card::before,
.approach-grid article::before,
.credential-grid article::before,
.service-grid article::before,
.workshop-grid article::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--blue), var(--gold));
}

.path-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 820;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  background: var(--white);
}

.split-section.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  background: var(--soft);
}

.split-section.reverse .split-media {
  order: 2;
}

.split-media img {
  aspect-ratio: 16 / 11;
}

.step-list,
.check-list {
  display: grid;
  gap: 18px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.step-list li,
.check-list li {
  padding-left: 18px;
  border-left: 4px solid var(--gold);
  color: #41504b;
  line-height: 1.6;
}

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

.workshop-section {
  background:
    linear-gradient(90deg, rgba(234, 215, 207, 0.72), rgba(251, 250, 246, 0.94)),
    var(--paper);
}

.workshop-grid article {
  min-height: 190px;
}

.workshop-grid.education-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1120px;
}

.workshop-grid span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 840;
  text-transform: uppercase;
}

.workshop-grid h3 {
  color: var(--green-dark);
}

.text-link {
  color: var(--green);
  font-weight: 840;
  text-decoration-color: rgba(20, 96, 82, 0.34);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--green-dark);
  text-decoration-color: currentColor;
}

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

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

.approach-section {
  background:
    linear-gradient(90deg, rgba(223, 233, 223, 0.9), rgba(251, 250, 246, 0.86)),
    var(--white);
}

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

.approach-grid h3 {
  color: var(--green-dark);
}

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

.service-grid article {
  grid-column: span 2;
  min-height: 172px;
}

.booking-section {
  background:
    linear-gradient(135deg, rgba(18, 54, 47, 0.98), rgba(30, 81, 70, 0.92)),
    var(--green-dark);
}

.booking-intro {
  max-width: 860px;
  margin-bottom: 28px;
}

.booking-intro h2,
.booking-intro p {
  color: var(--white);
}

.booking-intro .eyebrow {
  color: #f0c274;
}

.booking-app {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
}

.booking-main {
  display: grid;
  gap: 18px;
}

.booking-panel,
.summary-card {
  padding: 22px;
}

.panel-heading {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.panel-heading span {
  display: grid;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--blue);
  font-weight: 800;
}

.panel-heading h3,
.panel-heading p {
  margin: 0;
}

.panel-heading p {
  font-size: 0.92rem;
}

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

.picker-card,
.date-button,
.slot-button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-align: left;
  cursor: pointer;
}

.picker-card {
  min-height: 132px;
  padding: 16px;
}

.picker-card strong,
.date-button strong {
  display: block;
  color: var(--ink);
}

.picker-card span,
.date-button span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.coming-soon-badge,
.picker-card em {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 9px;
  border: 1px solid rgba(160, 79, 50, 0.28);
  border-radius: 999px;
  color: var(--rust);
  background: #fbf2ed;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.picker-card:disabled,
.picker-card.is-unavailable {
  cursor: default;
  opacity: 0.74;
}

.picker-card:disabled strong,
.picker-card:disabled span,
.picker-card.is-unavailable strong,
.picker-card.is-unavailable span {
  color: #7a827e;
}

.picker-card[aria-pressed="true"],
.date-button[aria-pressed="true"],
.slot-button[aria-pressed="true"] {
  border-color: var(--green);
  outline: 3px solid rgba(30, 81, 70, 0.14);
  background: #f1f8f4;
}

.date-strip,
.slot-grid {
  display: grid;
  gap: 10px;
}

.date-strip {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-bottom: 14px;
}

.date-button {
  min-height: 72px;
  padding: 11px;
}

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

.slot-button {
  min-height: 48px;
  padding: 10px 12px;
  color: var(--green-dark);
  font-weight: 780;
  text-align: center;
}

.slot-button:disabled {
  color: #a5aaa7;
  cursor: not-allowed;
  background: #f3f1eb;
}

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

.booking-form label {
  align-content: start;
  align-self: start;
}

label {
  display: grid;
  gap: 8px;
  color: #33413d;
  font-weight: 720;
}

label small {
  color: var(--muted);
  font-weight: 520;
  line-height: 1.45;
}

.field-note {
  color: #566560;
  font-size: 0.9rem;
  font-weight: 540;
  line-height: 1.45;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfc7b7;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

input:not([type="checkbox"]),
select {
  min-height: 57px;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(47, 109, 136, 0.28);
  outline-offset: 2px;
}

.full-row {
  grid-column: 1 / -1;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 560;
}

.checkbox input {
  width: auto;
  margin-top: 4px;
}

.booking-sidebar {
  display: grid;
  align-self: start;
  gap: 18px;
  position: sticky;
  top: 92px;
}

.summary-card dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.summary-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.summary-card dt {
  color: var(--muted);
}

.summary-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 760;
  text-align: right;
}

.confirmation {
  margin-top: 18px;
  padding: 14px;
  border-radius: var(--radius);
  background: #e7f4ec;
  color: #173b30;
  line-height: 1.5;
}

.confirmation[data-type="error"] {
  color: #6f2c1f;
  background: #f6e3dc;
}

.cancel-details {
  margin: 22px 0;
}

.cancel-session-details {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.cancel-session-details div {
  display: grid;
  gap: 4px;
}

.cancel-session-details dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 820;
  text-transform: uppercase;
}

.cancel-session-details dd {
  margin: 0;
  color: var(--ink);
  font-weight: 720;
}

.cancel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booking-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.62);
}

.compact-heading {
  margin-bottom: 12px;
}

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

.testimonial-grid blockquote {
  margin: 0;
}

.testimonial-grid p {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  line-height: 1.55;
}

.testimonial-grid cite {
  display: block;
  margin-bottom: 16px;
  color: var(--rust);
  font-style: normal;
  font-weight: 780;
}

.testimonial-grid details {
  margin-top: 12px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.testimonial-grid summary {
  cursor: pointer;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 820;
}

.testimonial-grid details p {
  margin: 12px 0 0;
  color: #4c5a56;
  font-family: inherit;
  font-size: 0.94rem;
  line-height: 1.55;
}

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

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

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

.faq-grid summary {
  cursor: pointer;
  color: var(--green-dark);
  font-size: 1.02rem;
  font-weight: 820;
}

.faq-grid p {
  margin: 14px 0 0;
}

.contact-section {
  background:
    linear-gradient(90deg, var(--soft), var(--leaf));
}

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

.contact-grid a,
.contact-card {
  display: grid;
  min-height: 120px;
  text-decoration: none;
}

.contact-grid span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 780;
  text-transform: uppercase;
}

.contact-grid strong {
  align-self: end;
  color: var(--green-dark);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  overflow-wrap: anywhere;
}

.contact-grid small {
  color: var(--muted);
  font-weight: 560;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.84);
  background: var(--ink);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.site-footer strong {
  color: var(--white);
}

.admin-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(22, 33, 31, 0.035) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(0deg, rgba(22, 33, 31, 0.025) 1px, transparent 1px) 0 0 / 80px 80px,
    var(--paper);
}

.admin-shell {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
}

.admin-shell.narrow {
  width: min(680px, 100%);
}

.admin-hero,
.admin-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.admin-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.admin-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
}

.admin-card h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
}

.admin-login-form {
  display: grid;
  gap: 14px;
  max-width: 420px;
}

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

.request-list {
  display: grid;
  gap: 14px;
}

.request-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.request-card-heading {
  display: grid;
  gap: 4px;
}

.request-card h3 {
  margin: 0;
  color: var(--green-dark);
}

.request-card-heading span,
.request-status {
  color: var(--rust);
  font-size: 0.84rem;
  font-weight: 820;
  text-transform: capitalize;
}

.request-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.request-card dl div {
  display: grid;
  gap: 2px;
}

.request-card dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 820;
  text-transform: uppercase;
}

.request-card dd {
  margin: 0;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 1240px) {
  .site-header {
    align-items: center;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% - 1px);
    right: clamp(18px, 4vw, 52px);
    left: clamp(18px, 4vw, 52px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 0 0 var(--radius) var(--radius);
    background: var(--logo-paper);
    box-shadow: 0 16px 34px rgba(22, 33, 31, 0.14);
    font-size: 0.95rem;
    white-space: normal;
  }

  .site-header.is-menu-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 12px 14px;
    border-radius: var(--radius);
  }

  .main-nav a:hover {
    background: var(--soft);
  }

  .booking-app,
  .split-section,
  .split-section.reverse {
    grid-template-columns: 1fr;
  }

  .split-section.reverse .split-media {
    order: 0;
  }

  .booking-sidebar {
    position: static;
  }

  .service-grid article {
    grid-column: span 3;
  }

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

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

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

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

@media (max-width: 760px) {
  .site-header {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 12px;
  }

  .brand {
    grid-column: 1 / 3;
    grid-row: 1;
    justify-self: start;
    width: min(280px, calc(100vw - 96px));
    margin-inline: 0;
  }

  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    width: 44px;
    padding: 0;
  }

  .menu-toggle > span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .main-nav {
    right: 0;
    left: 0;
    border-right: 0;
    border-left: 0;
  }

  .header-cta {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .trust-metrics,
  .orientation-strip,
  .path-grid,
  .approach-grid,
  .credential-grid,
  .service-grid,
  .workshop-grid,
  .testimonial-grid,
  .faq-grid,
  .contact-grid,
  .meeting-picker,
  .date-strip,
  .slot-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .orientation-strip span + span {
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-left: 0;
  }

  .personal-note {
    grid-template-columns: 1fr;
  }

  .personal-note blockquote {
    padding-left: 0;
    border-left: 0;
  }

  .service-grid article {
    grid-column: auto;
  }

  .workshop-grid.education-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8.3vw, 2.35rem);
    line-height: 1.06;
  }

  .hero-lede {
    max-width: 100%;
    font-size: 0.98rem;
  }

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

  .site-footer {
    flex-direction: column;
  }

  .admin-hero,
  .admin-toolbar {
    flex-direction: column;
  }
}
