@font-face {
  font-family: Anton;
  src: url("./assets/fonts/anton.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Noto Hebrew";
  src: url("./assets/fonts/noto-hebrew-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 62.5% 100%;
  font-display: swap;
}
@font-face {
  font-family: "Noto Display";
  src: url("./assets/fonts/noto-hebrew-condensed-900.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}
:root {
  --paper: #fff;
  --ink: #121416;
  --taupe: #af9987;
  --taupe-light: #c8b9ad;
  --taupe-dark: #786150;
  --muted: #555451;
  --line: #d9d4d0;
  --header-height: 94px;
  --gutter: clamp(24px, 4.5vw, 80px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
*,
:before,
:after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Hebrew", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
[hidden] {
  display: none !important;
}
[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
svg {
  display: block;
}
p {
  margin: 0 0 1.3em;
  text-wrap: pretty;
}
h1,
h2,
h3 {
  margin: 0;
  font-family: "Noto Display", "Noto Hebrew", sans-serif;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
h2 {
  font-size: clamp(3rem, 6.4vw, 6rem);
}
h3 {
  font-size: clamp(2.5rem, 4.6vw, 4.5rem);
}
::selection {
  background: var(--taupe);
  color: var(--ink);
}
:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 6px;
}
.icon-definitions {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 24px;
  height: 24px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.skip-link {
  position: fixed;
  top: 12px;
  right: 20px;
  transform: translateY(-200%);
  padding: 12px 24px;
  background: var(--ink);
  color: white;
  z-index: 100;
}
.skip-link:focus {
  transform: none;
}
.site-header {
  height: var(--header-height);
  padding: 0 clamp(24px, 2.8vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: white;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #ece8e5;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  direction: ltr;
  flex: none;
}
.brand img {
  width: 74px;
  height: 70px;
  object-fit: contain;
}
.brand span {
  font-family: "Noto Hebrew", sans-serif;
  font-size: 21px;
  font-weight: 750;
  line-height: 1.02;
  color: var(--taupe-dark);
  letter-spacing: -0.02em;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.8vw, 46px);
  font-size: 14px;
  font-weight: 650;
}
.desktop-nav a {
  padding: 12px 0;
  position: relative;
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  bottom: 3px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--taupe-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s var(--ease);
}
.desktop-nav a:hover:after,
.desktop-nav a[aria-current]:after {
  transform: scaleX(1);
}
.header-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--ink);
  color: white;
  font-weight: 650;
  font-size: 13px;
  min-height: 46px;
  transition: background 0.2s;
}
.header-cta:hover {
  background: var(--taupe-dark);
}
.header-cta .icon {
  width: 19px;
  height: 19px;
}
.nav-toggle {
  background: none;
  border: 0;
  width: 46px;
  height: 46px;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 7px;
}
.nav-toggle span {
  height: 1.5px;
  width: 24px;
  background: var(--ink);
}
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 20px var(--gutter) 30px;
  background: white;
  border-bottom: 1px solid var(--line);
  display: grid;
}
.mobile-nav a {
  padding: 12px 0;
  font-size: 22px;
  font-weight: 700;
}
.nav-open {
  overflow: hidden;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  min-height: 54px;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 750;
  transition:
    background 0.2s,
    color 0.2s;
}
.button .icon {
  width: 22px;
  height: 22px;
  transition: transform 0.2s var(--ease);
}
.button:hover .icon {
  transform: translateX(-5px);
}
.button-taupe {
  background: var(--taupe);
  color: var(--ink);
}
.button-taupe:hover {
  background: var(--taupe-dark);
  color: white;
}
.button-dark {
  background: var(--ink);
  color: white;
}
.button-dark:hover {
  background: var(--taupe-dark);
}
.button-light {
  background: white;
  color: var(--ink);
}
.button-light:hover {
  background: var(--taupe-light);
}
@media (max-width: 1100px) {
  :root {
    --header-height: 82px;
  }
  .desktop-nav {
    gap: 22px;
    font-size: 12px;
  }
  .brand img {
    width: 58px;
    height: 58px;
  }
  .brand span {
    font-size: 18px;
  }
  .site-header {
    gap: 20px;
  }
  .header-cta {
    font-size: 12px;
    padding: 12px;
  }
}
@media (max-width: 800px) {
  :root {
    --header-height: 76px;
  }
  :root.is-header-compact {
    --header-height: 64px;
  }
  .site-header {
    transition: height 0.2s var(--ease);
  }
  .site-header .brand img {
    transition: width 0.2s var(--ease), height 0.2s var(--ease);
  }
  .site-header .brand span {
    transition: font-size 0.2s var(--ease);
  }
  .site-header .nav-toggle span,
  .site-header .header-cta .icon {
    transition: width 0.2s var(--ease), height 0.2s var(--ease);
  }
  .is-header-compact .site-header .brand img {
    width: 44px;
    height: 44px;
  }
  .is-header-compact .site-header .brand span {
    font-size: 14px;
  }
  .is-header-compact .nav-toggle span {
    width: 21px;
  }
  .is-header-compact .site-header .header-cta .icon {
    width: 18px;
    height: 18px;
  }
  .desktop-nav {
    display: none;
  }
  .nav-toggle:not([hidden]) {
    display: flex;
  }
  .header-cta {
    margin-inline-start: auto;
  }
  .site-header {
    gap: 16px;
  }
}
@media (max-width: 600px) {
  :root {
    --header-height: 74px;
    --gutter: 24px;
  }
  .site-header {
    padding: 0 18px;
    gap: 10px;
  }
  .brand {
    gap: 6px;
  }
  .brand img {
    width: 53px;
    height: 52px;
  }
  .brand span {
    font-size: 16px;
  }
  .header-cta {
    font-size: 0;
    gap: 0;
    padding: 12px;
    background: none;
    color: var(--ink);
  }
  .header-cta .icon {
    width: 24px;
    height: 24px;
  }
  .is-header-compact .site-header .header-cta .icon {
    width: 20px;
    height: 20px;
  }
  h2 {
    font-size: 48px;
  }
  h3 {
    font-size: 38px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.section {
  padding: 100px var(--gutter);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
  min-height: 44px;
  padding: 8px 0;
  border-bottom: 1px solid var(--taupe);
}
.text-link:hover {
  color: var(--taupe-dark);
}
.training-film {
  position: relative;
  background: #090a0b;
}
.film-cover {
  position: relative;
  height: clamp(330px, 37vw, 570px);
  overflow: hidden;
}
.film-cover > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  filter: grayscale(1) brightness(0.62);
}
.film-play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: white;
  font-family: "Noto Display", sans-serif;
  font-size: 27px;
}
.play-disc {
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: background 0.2s;
}
.play-disc .icon {
  width: 43px;
  height: 43px;
  fill: currentColor;
  stroke-width: 1;
  transform: translateX(3px);
}
.film-play:hover .play-disc {
  background: #ffffff26;
}
.film-play:focus-visible {
  outline-offset: -7px;
}
.training-film video {
  display: block;
  width: 100%;
  height: min(80svh, 760px);
  background: #090a0b;
  object-fit: contain;
}
.video-fallback {
  padding: 24px;
  color: white;
  text-align: center;
}
.video-fallback a {
  text-decoration: underline;
}
.studio-films {
  grid-column: 1 / -1;
  padding: 56px var(--gutter) 72px;
}
.studio-films h3 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3.5vw, 42px);
}
.studio-intro {
  max-width: 36ch;
  margin-bottom: 26px;
  font-size: 17px;
  line-height: 1.7;
  color: #ddd8d4;
}
.studio-film-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.studio-film {
  margin: 0;
  min-width: 0;
  background: transparent;
}
.studio-film .film-cover,
.studio-film video {
  height: auto;
  aspect-ratio: 4 / 3;
}
.studio-film .film-cover > img {
  filter: none;
  object-position: center;
}
.studio-film .film-play {
  background: rgba(0, 0, 0, 0.12);
}
.studio-film .play-disc {
  width: 76px;
  height: 76px;
  background: rgba(12, 14, 15, 0.7);
}
.studio-film .play-disc .icon {
  width: 30px;
  height: 30px;
}
.studio-film figcaption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-top: 16px;
  font-weight: 600;
}
.studio-film figcaption span:last-child {
  color: #ddd8d4;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}
.about {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--paper);
  align-items: start;
}
.about-portrait { margin: 0; overflow: hidden; }
.about-photo { display: block; width: 100%; height: auto; }
.about-copy { width: 100%; max-width: 760px; margin-inline: auto; }
.about-copy h2 { font-size: clamp(40px, 4.5vw, 64px); margin-bottom: 28px; }
.about-copy p { font-size: 17px; line-height: 1.85; }
.about-copy > p + p { margin-top: 1.45em; }
.about-copy .about-lead { font-size: 20px; line-height: 1.65; }
.about-copy .about-note { font-size: 18px; font-weight: 600; line-height: 1.65; margin-block: 28px; }
.about-copy .button { margin-top: 8px; }
.program {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 750px;
}
.program-copy {
  padding: 90px var(--gutter);
  align-self: center;
  max-width: 750px;
}
.chapter-opening {
  grid-column: 1 / -1;
  padding-block: 80px;
  direction: rtl;
}
.chapter-opening .chapter-lines { display: block; width: min(100%, clamp(260px, 32vw, 420px)); aspect-ratio: 1.8; margin-bottom: 32px; }
.chapter-opening h2 { font-size: clamp(40px, 5vw, 72px); line-height: 1.1; margin-bottom: 24px; max-width: 20ch; }
.chapter-support { font-size: clamp(18px, 2vw, 22px); line-height: 1.65; max-width: 40ch; margin-bottom: 0; }
.program-strength .chapter-opening .chapter-lines { stroke: var(--taupe); }
.chapter-photo { grid-column: 1 / -1; position: relative; width: 100%; margin: 0; aspect-ratio: 16 / 10; max-height: 760px; overflow: hidden; }
.chapter-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.program-copy > p {
  font-size: 17px;
  line-height: 1.9;
  max-width: 50ch;
}
.program-copy > .program-format {
  max-width: 46ch;
  margin-bottom: 32px;
  font-size: 20px;
  line-height: 1.65;
}
.program-format strong,
.program-format span {
  display: block;
}
.program-format strong {
  color: var(--ink);
  font-weight: 750;
}
.program-format span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
}
.program-strength {
  background: var(--ink);
  color: white;
}
.program-strength > .program-copy {
  grid-column: 1 / -1;
  background: var(--paper);
  color: var(--ink);
  align-self: stretch;
  max-width: none;
}
.program-strength .program-copy > p {
  color: var(--muted);
}
.program-strength .program-points li {
  border-color: var(--line);
}
.program-points {
  list-style: none;
  margin: 30px 0;
  padding: 0;
  max-width: 460px;
  font-size: 15px;
}
.program-points li {
  padding: 12px 0;
  border-top: 1px solid #ffffff38;
}
.program-points li:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border: 1px solid var(--taupe);
  transform: rotate(45deg);
  margin-inline-end: 15px;
}
.program-count {
  display: inline-block;
  font-size: 1.22em;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.program-breath { background: #d4c8be; direction: rtl; }
.program-breath > .program-copy { grid-column: 1 / -1; max-width: 800px; width: 100%; justify-self: center; }
.section-category {
  font-size: 15px;
  font-weight: 650;
  line-height: 1.5;
  margin-bottom: 16px;
}
.program-breath .program-points li {
  border-color: #a6988c;
}
.program-breath .program-points li:before {
  border-color: var(--taupe-dark);
}
.breath-art {
  position: relative;
  grid-column: 1 / -1;
  display: block;
  padding: 0;
  min-width: 0;
  direction: rtl;
}
.breath-moment {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  min-height: clamp(380px, 44vw, 580px);
  padding: 88px 24px;
  overflow: hidden;
}
.breath-moment .breath-geometry {
  flex: none;
  width: min(100%, 360px);
}
.breath-caption { text-align: center; }
.breath-caption .breath-word {
  display: block;
  margin: 0;
}
.breath-caption .motion-toggle {
  margin: 12px auto 0;
  padding-inline: 0;
}
.breath-geometry {
  position: relative;
  aspect-ratio: 1.8;
}
.chapter-lines {
  fill: none;
  stroke: var(--taupe-dark);
  stroke-width: 1;
}
.chapter-lines path { vector-effect: non-scaling-stroke; }

.breath-geometry > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.breath-word {
  font-family: "Noto Display", sans-serif;
  font-size: clamp(40px, 4.5vw, 64px);
  margin-top: 30px;
}
.motion-toggle {
  background: none;
  border: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  min-height: 44px;
  font-size: 12px;
  margin-top: 15px;
}
.motion-toggle .icon {
  width: 17px;
  height: 17px;
}
.is-moving .breath-geometry {
  animation: breath 8s ease-in-out infinite;
}
@keyframes breath {
  0%,
  100% {
    transform: scale(0.89);
  }
  50% {
    transform: scale(1);
  }
}
.testimonials {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 9%;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-top: 110px;
  padding-bottom: 100px;
  background: var(--paper);
  color: var(--ink);
}
.testimonials h2 {
  font-size: clamp(36px, 4vw, 56px);
  max-width: 12ch;
}
.testimonials-heading { align-self: start; }
.testimonial-track { display: grid; gap: 36px; min-width: 0; }
.testimonial-track:focus-visible { outline-color: var(--taupe-dark); }
.story { display: flex; flex-direction: column; margin: 0; min-width: 0; }
.testimonial-track .story + .story {
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.story p { font-size: 18px; font-weight: 400; line-height: 1.85; margin-bottom: 20px; }
.story footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-top: auto;
  font-size: 13px;
}
.story footer strong { font-weight: 750; }
.story-service { color: var(--muted); font-size: 12px; font-weight: 400; }
.story-pull {
  grid-column: 1 / -1;
  width: min(100%, 900px);
  margin: 72px auto 0;
  padding-top: 72px;
  text-align: center;
}
.story-pull p {
  font-family: "Noto Display", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 16px;
}
.story-pull footer { align-items: center; }
.contact {
  background: var(--ink);
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 240px;
  gap: 8%;
}
.contact h2 {
  font-size: clamp(4rem, 8vw, 7.5rem);
  margin-bottom: 28px;
}
.contact-copy p {
  font-size: 20px;
  line-height: 1.8;
  color: #ddd8d4;
}
.contact-copy p span { display: block; }
.contact-actions {
  align-self: center;
  justify-self: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}
.contact-actions > .button {
  font-size: 16px;
  padding: 18px 32px;
  min-height: 62px;
  gap: 55px;
}
.contact-phone {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contact-phone span {
  font-size: 13px;
  color: #c8b9ad;
}
.contact-phone bdi {
  font-size: 30px;
  font-weight: 650;
  letter-spacing: -0.025em;
  direction: ltr;
}
.contact-phone:hover bdi {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.contact-location {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: #ddd8d4;
}
.contact-location .icon {
  width: 17px;
  height: 17px;
}
.closing-wordmark {
  position: absolute;
  bottom: -0.2em;
  left: 2%;
  right: 2%;
  text-align: center;
  font-family: Anton, sans-serif;
  font-size: 23vw;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #303234;
  z-index: -1;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 40px var(--gutter);
}
.site-footer > p {
  margin: 0;
  font-size: 14px;
}
.footer-social {
  display: flex;
  gap: 24px;
  align-items: center;
}
.footer-social a {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  min-height: 44px;
}
.footer-social a:hover {
  color: var(--taupe-dark);
}
.footer-social .icon {
  width: 18px;
  height: 18px;
}
.mobile-contact-bar {
  position: fixed;
  z-index: 15;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 8px 20px calc(8px + env(safe-area-inset-bottom));
  min-height: 44px;
  background: var(--ink);
  color: white;
  border-top: 1px solid #ffffff40;
  font-size: 13px;
  font-weight: 650;
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + env(safe-area-inset-bottom)));
  visibility: hidden;
  transition: none;
}
.mobile-contact-bar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.26s var(--ease), opacity 0.18s ease;
}
.mobile-contact-bar > span:last-child {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #d4c8be;
}
.mobile-contact-bar .icon { width: 20px; height: 20px; }
@media (min-width: 601px) {
  .mobile-contact-bar { display: none; }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
/* The chosen comp calls for an unusually compressed display silhouette. */
@media (max-width: 1100px) {
  .section {
    padding: 75px var(--gutter);
  }
  .about-copy p {
    font-size: 15px;
  }
  .program {
    min-height: 650px;
  }
  .program-copy {
    padding: 65px var(--gutter);
  }
  .program-copy > p {
    font-size: 15px;
  }
  .breath-art {
    padding: 0;
  }
  .testimonials {
    gap: 7%;
  }
  .contact {
    padding-bottom: 170px;
  }
  .contact-actions > .button {
    padding: 18px 24px;
    gap: 30px;
    font-size: 14px;
  }
  .contact h2 {
    font-size: 90px;
  }
}
@media (max-width: 800px) {
  .program-copy {
    padding: 55px 30px;
  }
  .program-points {
    font-size: 13px;
  }
  .program .button {
    font-size: 12px;
    padding: 14px 18px;
    gap: 20px;
  }
  .breath-art {
    padding: 0;
  }
  .testimonials {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .testimonials h2 {
    margin-bottom: 0;
  }
  .testimonials h2 br {
    display: none;
  }
  .contact {
    gap: 30px;
  }
  .contact h2 {
    font-size: 72px;
  }
  .contact-actions > .button {
    gap: 20px;
    padding: 16px 20px;
  }
  .contact-location {
    font-size: 11px;
  }
  .site-footer {
    flex-wrap: wrap;
  }
  .site-footer > p {
    order: 3;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 60px 24px;
  }
  html {
    scroll-padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }
  .film-cover {
    height: 310px;
  }
  .studio-films {
    padding: 45px 24px 60px;
  }
  .studio-film-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .film-cover > img {
    object-position: 47% center;
  }
  .film-play {
    font-size: 25px;
    gap: 22px;
  }
  .play-disc {
    width: 83px;
    height: 83px;
  }
  .play-disc .icon {
    width: 34px;
    height: 34px;
  }
  .about { grid-template-columns: minmax(0, 1fr); }
  .about-portrait { aspect-ratio: 4 / 5; }
  .about-photo { height: 100%; object-fit: cover; object-position: center 35%; }
  .about-copy p { max-width: 34ch; font-size: 16px; line-height: 1.9; }
  .about-copy > p + p { margin-top: 1.65em; }
  .about-copy .about-lead { font-size: 19px; line-height: 1.7; }
  .about-copy .about-note { margin-block: 32px; }
  .chapter-opening { padding-block: 60px; }
  .chapter-photo { aspect-ratio: 4 / 3; }
  .program {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .program-copy {
    padding: 60px 24px;
    max-width: none;
  }
  .program-copy > p {
    font-size: 16px;
  }
  .program-copy > .program-format {
    margin-bottom: 30px;
    font-size: 19px;
    line-height: 1.65;
  }
  .program-format span {
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.8;
  }
  .program-points {
    font-size: 14px;
  }
  .program .button {
    font-size: 14px;
  }
  .program-breath {
    direction: rtl;
  }
  .breath-art {
    grid-column: 1;
    padding: 0;
  }
  .breath-moment {
    gap: 20px;
    min-height: 420px;
    padding: 80px 24px;
  }
  .breath-moment .breath-geometry {
    width: min(100%, 320px);
  }
  .breath-geometry {
    max-width: 320px;
  }
  .breath-word {
    font-size: 44px;
    margin-top: 10px;
  }
  .testimonials {
    display: block;
    overflow: hidden;
    padding-top: 76px;
    padding-bottom: 84px;
  }
  .testimonials-heading { margin-bottom: 40px; }
  .testimonials h2 { max-width: 11ch; margin-bottom: 0; }
  .testimonial-track {
    display: flex;
    align-items: stretch;
    gap: 22px;
    direction: rtl;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 24px;
    margin-inline: -24px;
    padding: 4px 24px 22px 56px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .testimonial-track::-webkit-scrollbar { display: none; }
  .testimonial-track .story {
    flex: 0 0 calc(100vw - 80px);
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }
  .testimonial-track .story + .story {
    padding-top: 0;
    border-top: 0;
  }
  .story p { margin-bottom: 18px; font-size: 17px; line-height: 1.82; }
  .story-pull {
    width: 100%;
    margin-top: 74px;
    padding: 72px 0 12px;
  }
  .story-pull p {
    font-size: clamp(34px, 11vw, 48px);
    line-height: 1.28;
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: calc(130px + env(safe-area-inset-bottom));
  }
  .contact h2 {
    font-size: 76px;
  }
  .contact-copy p {
    font-size: 18px;
    margin-bottom: 0;
  }
  .contact-actions {
    gap: 23px;
  }
  .contact-actions > .button {
    font-size: 15px;
    padding: 16px 24px;
    gap: 40px;
  }
  .contact-location {
    font-size: 12px;
  }
  .closing-wordmark {
    bottom: -0.12em;
  }
  .site-footer {
    padding: 32px 22px calc(90px + env(safe-area-inset-bottom));
    gap: 20px;
  }
  .site-footer .brand img {
    width: 48px;
  }
  .site-footer .brand span {
    font-size: 15px;
  }
  .footer-social {
    gap: 16px;
  }
  .footer-social a {
    font-size: 12px;
    gap: 7px;
  }
  .footer-social .icon {
    width: 16px;
    height: 16px;
  }
  .site-footer > p {
    font-size: 12px;
  }
}
@media (max-width: 360px) {
  .brand img {
    width: 44px;
  }
  .brand span {
    font-size: 14px;
  }
  .section {
    padding-inline: 20px;
  }
  .program-copy {
    padding-inline: 20px;
  }
  .footer-social {
    gap: 10px;
  }
  .contact-actions > .button {
    gap: 25px;
  }
  .contact h2 {
    font-size: 66px;
  }
}

.closing-wordmark {
  color: #727577;
}

/* Brand introduction: two large fragments foreshadow Strength and Breath. */
.hero { overflow: hidden; background: #e7ddd4; color: var(--ink); }
.hero-stage {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: clamp(560px, 76svh, 760px);
  max-width: 1440px;
  margin-inline: auto;
  overflow: hidden;
}
.hero-message {
  position: relative;
  z-index: 1;
  width: min(100%, 1100px);
  margin-inline: auto;
  padding: 72px var(--gutter);
}
.hero-lines {
  position: absolute;
  z-index: 0;
  width: clamp(520px, 55vw, 850px);
  pointer-events: none;
  opacity: 0.42;
}
.hero-lines-strength {
  top: -16%;
  right: -23%;
  stroke: var(--taupe-dark);
  transform: rotate(-7deg);
}
.hero-lines-breath {
  bottom: -8%;
  left: -25%;
  width: clamp(560px, 60vw, 920px);
  stroke: var(--taupe);
  transform: rotate(4deg);
}
.hero .hero-title { font-size: clamp(48px, 7vw, 92px); line-height: 1.06; margin-bottom: 28px; }
.hero .hero-title span { display: block; }
.hero-contact p { font-size: 18px; line-height: 1.65; margin: 0; }
.hero-contact .hero-support { margin-top: 12px; max-width: 32ch; }
.service-choices {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(40px, 6vw, 88px);
  max-width: 1440px;
  margin: auto;
  padding-block: 52px 68px;
}
.world-preview {
  display: block;
  min-width: 0;
  color: var(--ink);
}
.world-preview-strength {
  justify-self: start;
  max-width: 480px;
}
.world-preview-breath {
  justify-self: end;
  max-width: 540px;
  padding-top: 18px;
}
.world-preview h2 { font-size: clamp(32px, 3vw, 44px); }
.world-preview .chapter-lines { height: auto; margin: 0; }
.world-preview-strength .chapter-lines { width: min(100%, 120px); }
.world-preview-breath .chapter-lines {
  width: min(100%, 154px);
  margin-inline-start: clamp(32px, 5vw, 72px);
}
.world-preview-strength h2 { margin-top: 9px; }
.world-preview-breath h2 { margin-top: 18px; }
.world-preview p { margin: 10px 0 0; font-size: 17px; line-height: 1.7; }
.world-preview-strength p { max-width: 32ch; }
.world-preview-breath p { max-width: 36ch; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  margin-top: 16px;
  padding-block: 8px;
  font-size: 16px;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}
.service-link:hover { color: var(--taupe-dark); }
.service-link:focus-visible { outline-color: var(--ink); }
.world-preview-breath .service-link { margin-top: 22px; }
@media (min-width: 801px) {
  .service-choices { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.studio-film-grid { grid-template-columns: minmax(0, 1fr); max-width: 720px; margin-inline: auto; }
@media (max-width: 600px) {
  .hero-stage { min-height: clamp(560px, calc(100svh - var(--header-height)), 690px); }
  .hero-message { padding: 72px 24px; }
  .hero-lines { opacity: 0.46; }
  .hero-lines-strength {
    top: -30px;
    right: -170px;
    width: 410px;
    transform: rotate(-9deg);
  }
  .hero-lines-breath {
    bottom: 0;
    left: -188px;
    width: 430px;
    transform: rotate(6deg);
  }
  .hero .hero-title { font-size: clamp(42px, 11.5vw, 60px); margin-bottom: 24px; }
  .hero-contact p { font-size: 16px; }
  .hero-contact .hero-support { max-width: 29ch; }
  .service-choices {
    gap: 36px;
    padding-block: 42px 58px;
  }
  .world-preview-strength {
    width: 92%;
  }
  .world-preview-breath {
    width: calc(100% - 22px);
    padding-top: 4px;
  }
  .world-preview-strength .chapter-lines { width: 96px; }
  .world-preview-breath .chapter-lines {
    width: 124px;
    margin-inline-start: 44px;
  }
  .world-preview-strength h2 { margin-top: 7px; }
  .world-preview-breath h2 { margin-top: 15px; }
  .world-preview p { margin-top: 8px; }
  .world-preview-breath .service-link { margin-top: 18px; }
}
