:root {
  --cardinal: #8f151b;
  --cardinal-deep: #4a0d15;
  --ink: #181716;
  --charcoal: #2c2a28;
  --stone: #6f6962;
  --paper: #f5efe5;
  --paper-soft: #fbf7ef;
  --cream: #fff6e7;
  --sage: #6f8374;
  --grass: #1f5b47;
  --blue: #cbdfe7;
  --gold: #d6a23f;
  --white: #ffffff;
  --line: rgba(24, 23, 22, 0.14);
  --soft-shadow: 0 28px 80px rgba(24, 23, 22, 0.16);
  --content-max: 1240px;
  --page-pad: max(72px, calc((100vw - var(--content-max)) / 2));
  --nav-pad: max(28px, calc((100vw - 1380px) / 2));
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  background: var(--paper-soft);
}

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

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

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

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

h1,
h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  line-height: 0.98;
}

h2 {
  font-size: 64px;
}

h3 {
  font-size: 22px;
  line-height: 1.12;
}

svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.site {
  min-height: 100svh;
  overflow-x: hidden;
}

.motion-enabled body {
  animation: page-fade-in 480ms var(--motion-ease) both;
}

.motion-enabled .site-nav-shell {
  animation: nav-slide-in 520ms var(--motion-ease) both;
}

.motion-enabled .motion-item {
  opacity: 0;
  filter: blur(1px);
  transform: translate3d(0, 18px, 0);
  transition:
    background 260ms var(--motion-ease),
    border-color 220ms var(--motion-ease),
    box-shadow 260ms var(--motion-ease),
    color 220ms var(--motion-ease),
    opacity 680ms var(--motion-ease),
    filter 680ms var(--motion-ease),
    transform 680ms var(--motion-ease);
  transition-delay: calc(var(--motion-order, 0) * 55ms);
  will-change: opacity, filter, transform;
}

.motion-enabled .motion-item.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.motion-enabled .motion-item.motion-complete {
  transition-delay: 0ms;
  will-change: auto;
}

@keyframes page-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes nav-slide-in {
  from {
    opacity: 0;
    transform: translate3d(0, -12px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.site-nav-shell {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  padding: 6px var(--nav-pad);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper-soft);
  box-shadow: 0 18px 50px rgba(24, 23, 22, 0.08);
  color: var(--ink);
}

.identity {
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  min-width: 0;
  padding: 0 8px 0 4px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  font-weight: 800;
}

.mobile-mark {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(251, 247, 239, 0.76);
  font-size: 13px;
}

.brand-lockup {
  display: grid;
  grid-template-columns: auto 24px auto;
  gap: 9px;
  align-items: center;
  color: var(--ink);
}

.brand-name,
.brand-service {
  display: grid;
  text-transform: uppercase;
}

.brand-name {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 2.2px;
  line-height: 0.82;
}

.brand-stick {
  width: 20px;
  height: 62px;
  object-fit: contain;
  transition: transform 320ms var(--motion-ease);
}

.brand-service {
  color: var(--sage);
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: 1.9px;
  line-height: 1.75;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 4px;
  color: rgba(24, 23, 22, 0.64);
  font-size: 13px;
  font-weight: 800;
  transition:
    background 220ms var(--motion-ease),
    box-shadow 220ms var(--motion-ease),
    color 220ms var(--motion-ease),
    transform 220ms var(--motion-ease);
}

.site-nav a[aria-current="page"]:not(.nav-book) {
  background: transparent;
  color: rgba(24, 23, 22, 0.64);
}

.site-nav a[data-page="about.html"] {
  position: relative;
  left: -6px;
}

.site-nav .nav-book {
  gap: 8px;
  min-height: 42px;
  margin-left: 0;
  padding: 0 16px;
  border-radius: 6px;
  background: var(--cardinal);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(143, 21, 27, 0.24);
}

.site-nav .nav-book[aria-current="page"] {
  background: var(--cardinal);
  color: var(--white);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.38);
  color: var(--ink);
  cursor: pointer;
}

.eyebrow,
.section-kicker {
  color: var(--cardinal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 16px;
}

.primary-action,
.text-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  font-size: 14px;
  font-weight: 800;
  transition:
    background 220ms var(--motion-ease),
    border-color 220ms var(--motion-ease),
    box-shadow 220ms var(--motion-ease),
    color 220ms var(--motion-ease),
    transform 220ms var(--motion-ease);
}

.primary-action svg,
.text-action svg,
.nav-book svg {
  transition: transform 220ms var(--motion-ease);
}

.primary-action {
  padding: 0 20px;
  border-radius: 6px;
  background: var(--cardinal);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(143, 21, 27, 0.24);
}

.text-action {
  padding: 0 18px;
  border: 1px solid rgba(79, 101, 91, 0.32);
  border-radius: 6px;
  background: rgba(251, 247, 239, 0.52);
  color: var(--cardinal-deep);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
}

.page-home {
  background:
    linear-gradient(90deg, rgba(245, 239, 229, 0.95) 0%, rgba(245, 239, 229, 0.91) 50%, rgba(245, 239, 229, 0.62) 100%),
    url("../images/anna-timeout-huddle.jpg") center 42% / cover no-repeat fixed;
}

.editorial-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.78fr);
  gap: clamp(36px, 3.8vw, 58px);
  min-height: 92svh;
  padding: 132px var(--page-pad) 72px;
  align-items: center;
}

.editorial-copy {
  max-width: 780px;
}

.editorial-copy h1 {
  max-width: 760px;
  color: var(--cardinal-deep);
  font-size: clamp(76px, 6.7vw, 88px);
}

.editorial-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 24px;
  color: var(--charcoal);
  font-size: 20px;
}

.editorial-visual {
  position: relative;
  min-height: 640px;
}

.anna-full {
  position: absolute;
  right: -10px;
  top: 0;
  width: 78%;
  height: 88%;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--soft-shadow);
  transition: transform 700ms var(--motion-ease);
}

.anna-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 44%;
  transform: scale(1.08) translateX(3.7%);
  transition: transform 700ms var(--motion-ease), filter 700ms var(--motion-ease);
}

.field-detail {
  position: absolute;
  left: 10px;
  bottom: 0;
  width: 52%;
  height: 30%;
  object-fit: cover;
  object-position: center 46%;
  border-radius: 6px;
  filter: saturate(0.82);
  box-shadow: 0 24px 60px rgba(24, 23, 22, 0.15);
  transition: transform 700ms var(--motion-ease), filter 700ms var(--motion-ease);
}

.quote-band {
  padding-right: var(--page-pad);
  padding-left: var(--page-pad);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 247, 239, 0.9);
}

.quote-band p {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px 0;
  color: var(--cardinal-deep);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1.04;
  text-align: center;
}

.section {
  padding: 88px var(--page-pad);
  background: var(--paper-soft);
}

.intro-layout,
.story-layout,
.booking-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(42px, 4.5vw, 70px);
  align-items: start;
  margin-top: 18px;
}

.story-layout {
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 46px);
  align-items: center;
  max-width: none;
  margin-top: 28px;
}

.intro-layout h2,
.booking-intro h2 {
  max-width: 760px;
  color: var(--ink);
}

.story-shell {
  max-width: 1080px;
  margin: 0 auto;
}

.story-shell h2 {
  max-width: 740px;
  color: var(--ink);
}

.story-photo {
  margin: 0;
  height: 625px;
  min-height: 625px;
}

.story-photo img {
  width: 100%;
  height: 100%;
  min-height: 625px;
  object-fit: cover;
  object-position: center 24%;
  border-radius: 6px;
  box-shadow: 0 22px 58px rgba(24, 23, 22, 0.13);
  transition: transform 700ms var(--motion-ease), filter 700ms var(--motion-ease);
}

.intro-copy,
.story-copy,
.who-copy,
.meeting-details {
  display: grid;
  gap: 18px;
}

.story-copy {
  min-height: 470px;
  align-content: start;
  max-width: none;
  padding: clamp(36px, 4vw, 52px) 0 32px clamp(24px, 3.2vw, 42px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-copy p,
.story-copy p,
.who-copy p,
.meeting-details p {
  color: var(--charcoal);
  font-size: 18px;
}

.program-grid-section {
  padding-top: 0;
}

.program-grid,
.credential-grid {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.program-grid::after,
.credential-grid::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid var(--line);
  content: "";
  pointer-events: none;
}

.program-grid article,
.credential-grid article {
  position: relative;
  z-index: 1;
  min-height: 270px;
  padding: 34px;
  background: var(--paper-soft);
  transition:
    background 260ms var(--motion-ease),
    box-shadow 260ms var(--motion-ease),
    transform 260ms var(--motion-ease);
}

.program-grid span,
.credential-grid span,
.studio-card span {
  color: var(--cardinal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.credential-profile-link,
.credential-profile-link:visited {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  color: var(--cardinal);
  text-decoration: none;
}

.credential-profile-link svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.25;
  transition: transform 220ms var(--motion-ease);
}

.credential-profile-link:focus-visible {
  border-radius: 3px;
  outline: 2px solid var(--cardinal);
  outline-offset: 4px;
}

.program-grid h3,
.credential-grid h3 {
  margin-top: 24px;
  color: var(--cardinal-deep);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.02;
}

.program-grid p,
.credential-grid p {
  margin-top: 18px;
  color: var(--stone);
  font-size: 16px;
}

.who-section,
.about-why {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 0.9fr);
  gap: clamp(42px, 4.5vw, 70px);
  align-items: center;
  background: var(--paper);
}

.who-visual img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 6px;
  box-shadow: var(--soft-shadow);
  transition: transform 700ms var(--motion-ease), filter 700ms var(--motion-ease);
}

.page-home .who-visual img {
  object-position: 50% 50%;
}

.who-copy h2 {
  max-width: 700px;
  margin-bottom: 26px;
}

.check-list p,
.meeting-details p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
}

.check-list svg,
.meeting-details svg {
  flex: 0 0 18px;
  margin-top: 5px;
  color: var(--cardinal);
}

.note-panel {
  margin: 0;
  padding: 44px var(--page-pad);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.note-panel p:last-child {
  max-width: 980px;
  color: var(--charcoal);
  font-size: 18px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: 76px var(--page-pad);
  background: var(--cardinal-deep);
  color: var(--cream);
}

.final-cta .eyebrow {
  color: var(--gold);
}

.final-cta h2 {
  max-width: 760px;
}

.final-cta .primary-action {
  flex: 0 0 auto;
  background: var(--cream);
  color: var(--cardinal-deep);
  box-shadow: none;
}

@media (min-width: 761px) {
  .page-about .final-cta .eyebrow,
  .page-about .final-cta h2 {
    margin-left: 10px;
  }

  .page-about .final-cta .primary-action {
    margin-right: 15px;
  }
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.7fr);
  gap: clamp(42px, 4.5vw, 70px);
  min-height: 78svh;
  padding: 132px var(--page-pad) 72px;
  align-items: center;
  background: linear-gradient(115deg, rgba(245, 239, 229, 0.98) 0%, rgba(251, 247, 239, 0.92) 100%);
}

.subpage-copy h1 {
  max-width: 760px;
  color: var(--cardinal-deep);
  font-size: 82px;
}

.subpage-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 34px;
  color: var(--charcoal);
  font-size: 20px;
}

.subpage-image img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 6px;
  box-shadow: var(--soft-shadow);
  transition: transform 700ms var(--motion-ease), filter 700ms var(--motion-ease);
}

.about-hero .subpage-image img {
  aspect-ratio: 1153 / 1564;
  max-height: none;
  object-fit: contain;
  object-position: center center;
}

.booking-hero .subpage-image img {
  aspect-ratio: 0.9;
}

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

.story-section .section-kicker {
  position: relative;
  top: -5px;
}

.credentials-section {
  padding-top: 0;
}

.credentials-section .section-kicker {
  margin-bottom: 18px;
}

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

.credential-grid article {
  min-height: 250px;
}

.credential-grid article h3 {
  font-size: clamp(30px, 3vw, 38px);
}

.credential-photo {
  position: relative;
  z-index: 1;
  grid-column: 3 / -1;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  background: var(--paper-soft);
}

.credential-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 24%;
  border-radius: 6px;
}

.motion-enabled .credential-grid article.motion-item {
  transform: none;
}

.motion-enabled .credential-grid article.motion-item.is-visible {
  transform: none;
}

.about-why .who-copy p {
  max-width: 680px;
}

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

.booking-section .booking-intro {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  align-items: center;
  width: min(100%, 1120px);
  margin: 0 auto;
  gap: clamp(48px, 6vw, 96px);
}

.page-signup .booking-intro > div:first-child {
  position: static;
}

.page-signup .booking-intro h2 {
  max-width: 620px;
}

.page-signup .meeting-details {
  align-content: center;
  justify-self: center;
  width: min(100%, 430px);
}

.calendly-inline-widget {
  width: min(100%, 1120px);
  margin: 36px auto 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(24, 23, 22, 0.08);
  overflow: hidden;
}

noscript p {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--charcoal);
}

noscript a {
  color: var(--cardinal);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px var(--page-pad);
  background: var(--ink);
  color: var(--cream);
}

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer-brand-logo {
  width: fit-content;
  color: inherit;
}

.footer-brand-logo .brand-name {
  color: var(--cream);
}

.footer-brand-logo .brand-service {
  color: rgba(255, 246, 231, 0.72);
}

.footer-brand-logo .brand-stick {
  opacity: 0.96;
}

.site-footer p {
  color: rgba(255, 246, 231, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  opacity: 1;
  filter: none;
  transform: none;
}

.footer-links a,
.footer-links a:visited {
  color: rgba(255, 246, 231, 0.86);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: color 220ms var(--motion-ease), transform 220ms var(--motion-ease);
}

.motion-enabled .site-footer .motion-item {
  opacity: 1;
  filter: none;
  transform: none;
  transition-delay: 0ms;
  will-change: auto;
}

@media (hover: hover) and (pointer: fine) {
  .identity:hover .brand-stick,
  .footer-brand-logo:hover .brand-stick {
    transform: translate3d(0, -2px, 0) scale(1.03);
  }

  .site-nav a:hover {
    transform: translate3d(0, -1px, 0);
  }

  .site-nav a:not(.nav-book):hover {
    background: rgba(24, 23, 22, 0.05);
  }

  .site-nav .nav-book:hover,
  .site-nav .nav-book[aria-current="page"]:hover,
  .primary-action:hover {
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 20px 38px rgba(143, 21, 27, 0.28);
  }

  .site-nav .nav-book:hover {
    background: var(--cardinal);
    color: var(--white);
  }

  .site-nav .nav-book[aria-current="page"]:hover {
    background: var(--cardinal);
    color: var(--white);
  }

  .final-cta .primary-action:hover {
    background: var(--white);
    box-shadow: 0 18px 36px rgba(24, 23, 22, 0.18);
  }

  .primary-action:hover svg,
  .text-action:hover svg,
  .nav-book:hover svg {
    transform: translate3d(2px, -2px, 0);
  }

  .text-action:hover {
    border-color: rgba(143, 21, 27, 0.38);
    background: rgba(255, 246, 231, 0.8);
    transform: translate3d(0, -2px, 0);
  }

  .program-grid article:hover,
  .credential-grid article:hover {
    z-index: 1;
    background: #fffaf1;
    box-shadow: 0 18px 42px rgba(24, 23, 22, 0.1);
    transform: translate3d(0, -5px, 0);
  }

  .credential-profile-link:hover svg {
    transform: translate3d(2px, -2px, 0);
  }

  .editorial-visual:hover .anna-full {
    transform: translate3d(0, -4px, 0) scale(1.015);
  }

  .editorial-visual:hover .field-detail {
    filter: saturate(0.92);
    transform: translate3d(0, -6px, 0) scale(1.025);
  }

  .who-visual:hover img,
  .subpage-image:hover img,
  .story-photo:hover img {
    filter: saturate(1.03);
    transform: scale(1.018);
  }

  .footer-links a:hover {
    color: var(--cream);
    transform: translate3d(0, -1px, 0);
  }
}

@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;
  }

  .motion-enabled .motion-item {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

@media (max-width: 1120px) {
  :root {
    --page-pad: 34px;
    --nav-pad: 28px;
  }

  h2 {
    font-size: 52px;
  }

  .editorial-hero,
  .subpage-hero,
  .intro-layout,
  .story-layout,
  .booking-intro,
  .who-section,
  .about-why {
    grid-template-columns: 1fr;
  }

  .editorial-hero,
  .subpage-hero,
  .section {
    padding-right: 34px;
    padding-left: 34px;
  }

  .editorial-copy h1,
  .subpage-copy h1 {
    font-size: 72px;
  }

  .editorial-visual {
    min-height: 560px;
  }

  .about-hero .subpage-image {
    justify-self: center;
    width: min(100%, 520px);
  }

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

  .credential-photo {
    grid-column: 1 / -1;
    height: 287px;
  }

  .credential-photo img {
    height: 100%;
  }

  .who-visual {
    order: 2;
  }

  .who-copy {
    order: 1;
  }

  .story-shell {
    max-width: 720px;
  }

  .story-photo,
  .story-photo img,
  .story-copy {
    min-height: 0;
  }

  .story-photo {
    height: auto;
    width: min(100%, 440px);
    margin: 0 auto;
  }

  .story-photo img {
    height: auto;
    aspect-ratio: 0.64;
    object-position: center 24%;
  }

  .story-copy {
    padding: 30px 0 0;
    border-bottom: 0;
    gap: 14px;
  }

  .story-copy p {
    font-size: 15px;
    line-height: 1.48;
  }

  .brand-lockup {
    grid-template-columns: auto 20px auto;
    gap: 8px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-stick {
    width: 18px;
    height: 56px;
  }

  .brand-service {
    font-size: 7px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 760px) {
  :root {
    --page-pad: 18px;
    --nav-pad: 14px;
  }

  .site-nav-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 74px;
    padding: 7px 10px;
  }

  .identity {
    justify-self: start;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .identity .brand-lockup {
    display: grid;
    grid-template-columns: auto 17px auto;
    gap: 7px;
  }

  .identity .brand-name {
    font-size: 15px;
    letter-spacing: 1.8px;
  }

  .identity .brand-stick {
    width: 16px;
    height: 48px;
  }

  .identity .brand-service {
    font-size: 6.2px;
    letter-spacing: 1.4px;
  }

  .mobile-mark {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    background: var(--paper-soft);
    box-shadow: 0 12px 28px rgba(24, 23, 22, 0.1);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    align-items: stretch;
    width: min(50vw, 220px);
    min-width: 180px;
    padding: 8px;
    border: 1px solid rgba(24, 23, 22, 0.1);
    border-radius: 8px;
    background: var(--paper-soft);
    box-shadow: 0 22px 48px rgba(24, 23, 22, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -8px, 0);
    visibility: hidden;
    transition:
      opacity 180ms var(--motion-ease),
      transform 180ms var(--motion-ease),
      visibility 0ms linear 180ms;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    visibility: visible;
    transition-delay: 0ms;
  }

  .site-nav a,
  .site-nav .nav-book {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    min-height: 38px;
    padding: 0 8px;
    font-size: 12px;
  }

  .site-nav a[data-page="about.html"] {
    left: 0;
  }

  .editorial-hero,
  .subpage-hero {
    padding: 112px 18px 44px;
  }

  .section {
    padding: 62px 18px;
  }

  h2,
  .editorial-copy h1,
  .subpage-copy h1 {
    font-size: 54px;
  }

  .editorial-copy > p:not(.eyebrow),
  .subpage-copy > p:not(.eyebrow),
  .intro-copy p,
  .story-copy p,
  .who-copy p,
  .meeting-details p {
    font-size: 17px;
  }

  .story-copy p {
    font-size: 15px;
  }

  .booking-section .booking-intro {
    grid-template-columns: 1fr;
    gap: 26px;
    justify-items: stretch;
    width: 100%;
  }

  .page-signup .booking-intro h2 {
    max-width: 100%;
  }

  .page-signup .meeting-details {
    justify-self: stretch;
    width: 100%;
  }

  .action-row {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-action,
  .text-action {
    width: 100%;
  }

  .page-home .action-row {
    flex-flow: row nowrap;
    gap: 10px;
  }

  .page-home .action-row .primary-action,
  .page-home .action-row .text-action {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    min-height: 52px;
    padding: 0 10px;
    text-align: center;
  }

  .page-home .action-row .primary-action {
    gap: 6px;
    font-size: 12.5px;
    line-height: 1.15;
  }

  .editorial-visual {
    min-height: 430px;
  }

  .anna-full {
    width: 92%;
    height: 86%;
  }

  .anna-full img {
    object-position: 38% 44%;
  }

  .field-detail {
    width: 64%;
    height: 28%;
  }

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

  .credential-photo {
    height: auto;
    min-height: 220px;
  }

  .credential-photo img {
    height: auto;
    min-height: 220px;
  }

  .quote-band p {
    padding: 28px 0;
  }

  .story-layout {
    margin-top: 22px;
  }

  .story-photo {
    width: min(100%, 380px);
  }

  .story-photo img {
    aspect-ratio: 0.71;
  }

  .page-signup .booking-intro {
    gap: 22px;
  }

  .page-signup .booking-intro h2 {
    font-size: clamp(44px, 14vw, 58px);
    line-height: 1.03;
  }

  .page-signup .meeting-details p {
    font-size: 17px;
    line-height: 1.35;
  }

  .program-grid article,
  .credential-grid article {
    min-height: auto;
    padding: 28px;
  }

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

  .note-panel,
  .final-cta,
  .site-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .final-cta,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-brand-logo .brand-lockup {
    display: grid;
  }

  .subpage-image img {
    max-height: none;
  }

  .calendly-inline-widget {
    min-width: 0 !important;
    height: 720px !important;
  }
}
