:root {
  --gndn-blue: #263f68;
  --gndn-blue-deep: #172f54;
  --gndn-blue-soft: #dbe4ec;
  --gndn-cream: #f4efe6;
  --gndn-cream-strong: #ebe2d4;
  --gndn-paper: #fbf8f1;
  --gndn-ink: #172f54;
  --gndn-muted: #5f6976;
  --gndn-brass: #b08a4c;
  --gndn-border: rgba(23, 47, 84, 0.16);
  --gndn-soft-border: rgba(23, 47, 84, 0.09);
  --gndn-shadow: 0 24px 70px rgba(23, 47, 84, 0.13);
  --gndn-max: 1120px;
  --gndn-measure: 760px;
  --gndn-edge: clamp(1.5rem, 5vw, 2.5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--gndn-cream);
  color: var(--gndn-ink);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body .wp-site-blocks {
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--gndn-brass);
  outline-offset: 4px;
}

.site-header {
  background: rgba(244, 239, 230, 0.94);
  border-bottom: 1px solid var(--gndn-soft-border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header__inner,
.site-footer__inner,
.section-inner,
.hero-inner {
  width: min(calc(100% - (var(--gndn-edge) * 2)), var(--gndn-max));
  margin-inline: auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  padding-block: 1rem;
}

.site-brand {
  align-items: baseline;
  color: var(--gndn-blue-deep);
  display: inline-flex;
  gap: 0.48rem;
  text-decoration: none;
  text-transform: uppercase;
}

.site-brand__main {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.site-brand__sub {
  color: var(--gndn-muted);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.2vw, 1.75rem);
  color: #445065;
  font-size: 0.94rem;
  font-weight: 630;
}

.site-nav a {
  border-radius: 999px;
  color: inherit;
  padding: 0.35rem 0.05rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gndn-blue-deep);
  text-decoration: underline;
}

.hero {
  background: var(--gndn-blue);
  color: var(--gndn-paper);
  padding-block: 3.5rem 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
}

.eyebrow {
  color: var(--gndn-brass);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  margin: 0 0 1.15rem;
  text-transform: uppercase;
}

.hero-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.45rem;
  font-weight: 430;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
  max-width: 820px;
}

.hero-title span {
  display: block;
}

.hero-secondary {
  border-left: 2px solid rgba(251, 248, 241, 0.32);
  color: rgba(251, 248, 241, 0.84);
  font-size: 1.18rem;
  line-height: 1.55;
  margin: 1.65rem 0 0;
  max-width: 610px;
  padding-left: 1rem;
}

.hero-lede {
  color: rgba(251, 248, 241, 0.88);
  font-size: 1.08rem;
  line-height: 1.65;
  margin: 0;
}

.hero-proof {
  border: 1px solid rgba(251, 248, 241, 0.18);
  background: rgba(251, 248, 241, 0.07);
  padding: 1.25rem;
}

.hero-proof p {
  margin: 0;
}

.section {
  padding-block: 5rem;
}

.section--cream {
  background: var(--gndn-cream);
}

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

.section--blue {
  background: var(--gndn-blue);
  color: var(--gndn-paper);
}

.section--ruled {
  border-top: 1px solid var(--gndn-soft-border);
}

.section-kicker {
  color: var(--gndn-brass);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

.section-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.75rem;
  font-weight: 430;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0;
  max-width: 760px;
}

.section-copy {
  color: #405069;
  font-size: 1.14rem;
  line-height: 1.65;
  margin: 1.1rem 0 0;
  max-width: 710px;
}

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

.choice-panel {
  background: var(--gndn-paper);
  border: 1px solid var(--gndn-border);
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 2rem;
  position: relative;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.choice-panel::after {
  content: "→";
  color: var(--gndn-brass);
  font-size: 2.3rem;
  line-height: 1;
  position: absolute;
  right: 1.5rem;
  top: 1.2rem;
  transition: transform 180ms ease;
}

.choice-panel--counsel {
  background: #eef2f4;
}

.choice-panel:hover,
.choice-panel:focus-visible {
  border-color: var(--gndn-blue);
  box-shadow: var(--gndn-shadow);
  transform: translateY(-4px);
}

.choice-panel:hover::after,
.choice-panel:focus-visible::after {
  transform: translateX(5px);
}

.choice-panel h2,
.offer-card h2,
.intake-step h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  font-weight: 430;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0;
}

.choice-panel p {
  color: #405069;
  font-size: 1.16rem;
  line-height: 1.55;
  margin: 1rem 0 0;
  max-width: 430px;
}

.choice-panel .button-link {
  margin-top: 2rem;
}

.button-link,
.wp-block-button__link {
  align-items: center;
  background: var(--gndn-blue);
  border: 1px solid var(--gndn-blue);
  border-radius: 999px;
  color: var(--gndn-paper);
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 760;
  justify-content: center;
  line-height: 1;
  min-height: 48px;
  padding: 0.95rem 1.25rem;
  text-decoration: none;
  width: fit-content;
}

.button-link:hover,
.wp-block-button__link:hover {
  background: var(--gndn-blue-deep);
  border-color: var(--gndn-blue-deep);
}

.button-link--secondary {
  background: transparent;
  color: var(--gndn-blue);
}

.button-link--secondary:hover {
  background: var(--gndn-blue);
  color: var(--gndn-paper);
}

.about-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(260px, 0.44fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.portrait-reserve {
  aspect-ratio: 4 / 5;
  background: var(--gndn-blue-soft);
  border: 1px solid rgba(23, 47, 84, 0.2);
  box-shadow: var(--gndn-shadow);
  display: grid;
  place-items: end start;
  padding: 1.25rem;
}

.portrait-reserve span {
  color: rgba(23, 47, 84, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portrait-frame {
  aspect-ratio: 4 / 5;
  background: var(--gndn-blue-soft);
  border: 1px solid rgba(23, 47, 84, 0.18);
  box-shadow: var(--gndn-shadow);
  margin: 0;
  overflow: hidden;
}

.portrait-frame img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.home-portrait {
  max-width: 340px;
  justify-self: end;
}

.home-bio {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.35rem;
  max-width: 720px;
}

.home-bio p {
  color: #405069;
  font-size: 1.08rem;
  line-height: 1.65;
  margin: 0;
}

.page-shell {
  background: var(--gndn-cream);
  padding-block: 4rem;
}

.page-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.3rem;
  font-weight: 430;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
  max-width: 940px;
}

.page-intro {
  color: #405069;
  font-size: 1.24rem;
  line-height: 1.58;
  margin: 1.4rem 0 0;
  max-width: 760px;
}

.intake-notice {
  background: #fffdf8;
  border: 1px solid rgba(176, 141, 87, 0.34);
  color: #405069;
  display: grid;
  gap: 0.85rem;
  line-height: 1.62;
  margin-top: 2rem;
  max-width: 860px;
  padding: clamp(1.1rem, 3vw, 1.55rem);
}

.intake-notice p {
  margin: 0;
}

.intake-notice__title {
  color: var(--gndn-brass);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.intake-notice__emphasis {
  border-left: 3px solid var(--gndn-brass);
  color: var(--gndn-ink);
  font-weight: 650;
  padding-left: 1rem;
}

.intake-shell {
  background: var(--gndn-paper);
  border: 1px solid var(--gndn-border);
  box-shadow: var(--gndn-shadow);
  margin-top: 2.5rem;
  overflow: hidden;
}

.gndn-honeypot {
  left: -9999px;
  position: absolute;
}

.intake-progress {
  background: var(--gndn-blue);
  height: 6px;
}

.intake-progress__bar {
  background: var(--gndn-brass);
  display: block;
  height: 100%;
  width: 14.285%;
  transition: width 220ms ease;
}

.intake-step {
  display: none;
  min-height: 390px;
  padding: clamp(1.4rem, 4vw, 3rem);
}

.intake-step.is-active {
  display: grid;
  align-content: center;
  animation: gndn-step-in 220ms ease both;
}

.intake-count {
  color: var(--gndn-brass);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.field-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
  max-width: 680px;
}

.field-row {
  display: grid;
  gap: 0.45rem;
}

.field-row label {
  color: var(--gndn-muted);
  font-size: 0.86rem;
  font-weight: 720;
}

.field-row input,
.field-row textarea {
  background: #fffdf8;
  border: 1px solid var(--gndn-border);
  color: var(--gndn-ink);
  font: inherit;
  min-height: 52px;
  padding: 0.9rem 1rem;
  width: 100%;
}

.field-row textarea {
  min-height: 132px;
  resize: vertical;
}

.option-group {
  border: 0;
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
}

.option-group legend {
  color: var(--gndn-muted);
  font-size: 0.86rem;
  font-weight: 720;
  margin: 0 0 0.2rem;
  padding: 0;
}

.field-hint {
  color: var(--gndn-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0 0 0.25rem;
}

.option-choice {
  align-items: center;
  background: #fffdf8;
  border: 1px solid var(--gndn-border);
  cursor: pointer;
  display: flex;
  gap: 0.72rem;
  min-height: 52px;
  padding: 0.78rem 0.9rem;
}

.option-choice input {
  accent-color: var(--gndn-blue);
  flex: 0 0 auto;
  height: 1.05rem;
  margin: 0;
  width: 1.05rem;
}

.option-choice span {
  color: var(--gndn-ink);
  font-weight: 650;
}

.intake-other-field[hidden] {
  display: none;
}

.intake-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 2rem;
}

.intake-button {
  background: var(--gndn-blue);
  border: 1px solid var(--gndn-blue);
  border-radius: 999px;
  color: var(--gndn-paper);
  cursor: pointer;
  font: inherit;
  font-weight: 760;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
}

.intake-button:hover {
  background: var(--gndn-blue-deep);
}

.intake-button:disabled,
.intake-button:disabled:hover {
  background: #d8dde3;
  border-color: #c4ccd6;
  color: #657286;
  cursor: not-allowed;
}

.intake-button--ghost {
  background: transparent;
  color: var(--gndn-blue);
}

.intake-button--ghost:hover {
  background: var(--gndn-blue-soft);
}

.prototype-note {
  color: var(--gndn-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 1rem 0 0;
}

.journey {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.ongoing-accordion {
  width: min(100%, calc(100vw - (var(--gndn-edge) * 2)));
}

.offer-card {
  background: var(--gndn-paper);
  border: 1px solid var(--gndn-border);
  display: grid;
  gap: 1rem;
  grid-template-columns: 58px minmax(0, 1fr);
  padding: 1.35rem;
}

.ongoing-accordion__item.offer-card {
  display: block;
  gap: 0;
  overflow: hidden;
  padding: 0;
  transition:
    background-color 260ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 260ms cubic-bezier(0.4, 0, 0.2, 1);
}

.ongoing-accordion__item[open] {
  background: #fffdf8;
  border-color: rgba(176, 141, 87, 0.42);
}

.ongoing-accordion__summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: 1rem;
  grid-template-columns: 58px minmax(0, 1fr) 32px;
  list-style: none;
  padding: 1.25rem 1.35rem;
}

.ongoing-accordion__summary::-webkit-details-marker {
  display: none;
}

.ongoing-accordion__summary:focus-visible {
  outline: 2px solid var(--gndn-brass);
  outline-offset: -4px;
}

.ongoing-accordion__title {
  color: var(--gndn-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  font-weight: 430;
  letter-spacing: 0;
  line-height: 1.12;
  min-width: 0;
  overflow-wrap: break-word;
}

.ongoing-accordion__icon {
  align-items: center;
  border: 1px solid rgba(23, 47, 84, 0.2);
  color: var(--gndn-blue);
  display: inline-flex;
  height: 32px;
  justify-content: center;
  justify-self: end;
  position: relative;
  transition:
    background-color 260ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 260ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 32px;
}

.ongoing-accordion__icon::before,
.ongoing-accordion__icon::after {
  background: currentColor;
  content: "";
  height: 1px;
  position: absolute;
  width: 12px;
}

.ongoing-accordion__icon::after {
  transform: rotate(90deg);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.ongoing-accordion__item[open] .ongoing-accordion__icon {
  background: var(--gndn-blue);
  border-color: var(--gndn-blue);
  color: var(--gndn-paper);
  transform: rotate(180deg);
}

.ongoing-accordion__item[open] .ongoing-accordion__icon::after {
  transform: rotate(0deg);
}

.ongoing-accordion__panel {
  overflow: hidden;
}

.js .ongoing-accordion__panel {
  height: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    height 320ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 260ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
}

.ongoing-accordion__item[open] .ongoing-accordion__panel {
  opacity: 1;
  transform: translateY(0);
}

.ongoing-accordion__content {
  border-left: 3px solid var(--gndn-brass);
  display: grid;
  gap: 0.85rem;
  margin: 0 1.35rem 1.45rem calc(1.35rem + 58px + 1rem);
  padding: 0.1rem 1.35rem 0.1rem 1.1rem;
}

.offer-card__number {
  align-items: center;
  background: var(--gndn-blue);
  color: var(--gndn-paper);
  display: inline-flex;
  font-weight: 800;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.offer-card p,
.offer-card ul {
  color: #405069;
  font-size: 1.06rem;
  line-height: 1.55;
  margin: 0;
}

.offer-card ul {
  display: grid;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
}

.ongoing-accordion__content ul {
  gap: 0.5rem;
  list-style: disc;
  padding-left: 1.1rem;
}

.js .ongoing-accordion__content li {
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 220ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.js .ongoing-accordion__item[open] .ongoing-accordion__content li {
  opacity: 1;
  transform: translateY(0);
}

.js .ongoing-accordion__item[open] .ongoing-accordion__content li:nth-child(1) {
  transition-delay: 70ms;
}

.js .ongoing-accordion__item[open] .ongoing-accordion__content li:nth-child(2) {
  transition-delay: 120ms;
}

.js .ongoing-accordion__item[open] .ongoing-accordion__content li:nth-child(3) {
  transition-delay: 170ms;
}

.js .ongoing-accordion__item[open] .ongoing-accordion__content li:nth-child(4) {
  transition-delay: 220ms;
}

.js .ongoing-accordion__item[open] .ongoing-accordion__content li:nth-child(5) {
  transition-delay: 270ms;
}

.boundary-note {
  color: #405069;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.ongoing-accordion__cta {
  margin-top: 1.5rem;
}

.booking-trigger {
  appearance: none;
  cursor: pointer;
  font: inherit;
}

.booking-trigger:focus-visible {
  outline: 2px solid var(--gndn-brass);
  outline-offset: 3px;
}

.booking-panel {
  background: #fffdf8;
  border: 1px solid rgba(176, 141, 87, 0.34);
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  margin-top: 1.35rem;
  overflow: hidden;
  padding: clamp(1.35rem, 3vw, 2rem);
  scroll-margin-top: 2rem;
}

.js .booking-panel {
  max-height: 0;
  opacity: 0;
  padding-bottom: 0;
  padding-top: 0;
  transform: translateY(-8px);
  transition:
    max-height 360ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 280ms cubic-bezier(0.4, 0, 0.2, 1),
    padding-bottom 360ms cubic-bezier(0.4, 0, 0.2, 1),
    padding-top 360ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 360ms cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 360ms;
  visibility: hidden;
}

.js .booking-panel.is-open {
  max-height: 1400px;
  opacity: 1;
  padding-bottom: clamp(1.35rem, 3vw, 2rem);
  padding-top: clamp(1.35rem, 3vw, 2rem);
  transform: translateY(0);
  transition:
    max-height 380ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 280ms cubic-bezier(0.4, 0, 0.2, 1),
    padding-bottom 380ms cubic-bezier(0.4, 0, 0.2, 1),
    padding-top 380ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 380ms cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 0s;
  visibility: visible;
}

.booking-panel__intro {
  display: grid;
  gap: 0.9rem;
  max-width: 790px;
}

.booking-panel__title {
  color: var(--gndn-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 430;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

.booking-panel__intro p {
  color: #405069;
  font-size: 1.06rem;
  line-height: 1.6;
  margin: 0;
}

.booking-panel__note {
  color: var(--gndn-muted) !important;
  font-size: 0.96rem !important;
}

.booking-panel__fallback {
  font-size: 0.95rem !important;
}

.booking-panel__fallback a {
  color: var(--gndn-blue);
  font-weight: 760;
  text-decoration-color: rgba(176, 141, 87, 0.45);
  text-underline-offset: 0.25em;
}

.booking-panel__fallback a:hover {
  color: var(--gndn-blue-deep);
}

.booking-panel__embed {
  background: var(--gndn-paper);
  border: 1px solid var(--gndn-border);
  min-height: 760px;
  overflow: hidden;
}

.booking-panel__embed iframe {
  border: 0;
  display: block;
  min-height: 760px;
  width: 100%;
}


.cta-row {
  margin-top: 1.5rem;
}

.about-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(300px, 0.42fr);
  column-gap: clamp(2rem, 6vw, 5rem);
  row-gap: 2rem;
  align-items: start;
}

.about-copy {
  grid-column: 1;
  max-width: 780px;
}

.bio-stack {
  display: grid;
  gap: 1.05rem;
  grid-column: 1;
  margin-top: 2rem;
  max-width: 780px;
}

.bio-stack p {
  color: #405069;
  font-size: 1.06rem;
  line-height: 1.68;
  margin: 0;
}

.about-portrait {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: sticky;
  top: 6.5rem;
}

.about-stack {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

.about-note {
  background: var(--gndn-paper);
  border: 1px solid var(--gndn-border);
  color: #405069;
  line-height: 1.65;
  padding: 1.35rem;
}

.site-footer {
  background: var(--gndn-blue-deep);
  color: rgba(251, 248, 241, 0.82);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 2rem;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gndn-paper);
  text-decoration: underline;
}

.reveal {
  opacity: 1;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

.fork-reveal {
  opacity: 1;
}

.js .fork-reveal .choice-panel {
  opacity: 0;
  transform: translateY(46px);
  transition:
    opacity 780ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 780ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.js .fork-reveal .choice-panel:nth-child(2) {
  transition-delay: 90ms;
}

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

.js .fork-reveal.is-visible .choice-panel:hover,
.js .fork-reveal.is-visible .choice-panel:focus-visible {
  transform: translateY(-4px);
}

@keyframes gndn-step-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@media (max-width: 920px) {
  .hero-inner,
  .about-preview,
  .about-page-grid {
    grid-template-columns: 1fr;
  }

  .home-portrait {
    justify-self: start;
    max-width: min(320px, 100%);
  }

  .about-portrait {
    grid-column: auto;
    grid-row: auto;
    max-width: min(420px, 100%);
    position: static;
  }

  .hero-title,
  .page-title {
    font-size: 3.65rem;
  }
}

@media (max-width: 760px) {
  :root {
    --gndn-edge: clamp(1.5rem, 7.2vw, 2rem);
  }

  .site-header__inner,
  .site-footer__inner {
    align-items: center;
    flex-direction: column;
    gap: 0.9rem;
    text-align: center;
  }

  .site-header__inner {
    padding-block: 1.15rem 1.05rem;
  }

  .site-brand {
    justify-content: center;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.6rem;
    width: 100%;
  }

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

  .choice-panel {
    min-height: 285px;
  }

  .about-preview {
    gap: 2rem;
  }

  .home-portrait {
    max-width: 240px;
  }

  .section {
    padding-block: 3.75rem;
  }

  .hero {
    padding-block: 2.75rem 2.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .choice-panel h2,
  .offer-card h2,
  .intake-step h2,
  .ongoing-accordion__title {
    font-size: 1.86rem;
  }

  .intake-step {
    min-height: 430px;
    padding: 1.5rem;
  }

  .offer-card {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .ongoing-accordion__item.offer-card {
    padding: 0;
  }

  .ongoing-accordion__summary {
    grid-template-columns: 46px 30px minmax(0, 1fr);
    padding: 1rem;
  }

  .ongoing-accordion__title {
    grid-column: 3;
  }

  .ongoing-accordion__icon {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
  }

  .ongoing-accordion__content {
    margin: 0 1rem 1.25rem calc(1rem + 46px + 30px + 2rem);
    padding: 0.05rem 1rem 0.05rem 1rem;
  }

  .booking-panel {
    padding: 1rem;
  }

  .js .booking-panel.is-open {
    padding-bottom: 1rem;
    padding-top: 1rem;
  }

  .booking-panel__embed,
  .booking-panel__embed iframe {
    min-height: 880px;
  }

  .site-footer__inner {
    justify-content: center;
    padding-block: 2.5rem;
  }

  .footer-links {
    justify-content: center;
    gap: 1.4rem;
  }
}

@media (max-width: 460px) {
  .hero-title,
  .page-title {
    font-size: 2.75rem;
  }

  .hero-secondary,
  .page-intro {
    font-size: 1.08rem;
  }

  .bio-stack p,
  .home-bio p {
    font-size: 1rem;
  }

  .site-nav {
    font-size: 0.9rem;
    gap: 0.75rem 1rem;
  }

  .ongoing-accordion__summary {
    gap: 0.75rem;
    grid-template-columns: 40px 28px minmax(0, 1fr);
    padding: 0.85rem;
  }

  .ongoing-accordion__title {
    font-size: 1.58rem;
  }

  .ongoing-accordion__icon {
    height: 28px;
    width: 28px;
  }

  .ongoing-accordion__content {
    margin: 0 0.85rem 1.1rem calc(0.85rem + 40px + 28px + 1.5rem);
    padding-inline: 0.85rem;
  }

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


@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

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

  .js .fork-reveal .choice-panel {
    opacity: 1;
    transform: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
  }

  .js .ongoing-accordion__panel {
    transform: none;
  }


  .js .booking-panel,
  .js .booking-panel.is-open {
    transform: none;
    transition-duration: 0.001ms !important;
  }

  .js .ongoing-accordion__content li {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0ms !important;
  }
}
