:root {
  --paper: #faf7f1;
  --ink: #283d35;
  --muted: #5e665d;
  --line: #d7d4c9;
  --soft: #efece3;
  --sand: #e6d9c4;
}

* {
  box-sizing: border-box;
  }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.65 Arial, Helvetica, sans-serif;
  }

a {
  color: inherit;
  text-underline-offset: 5px;
  }

button {
  font: inherit;
  }

p {
  margin: 0 0 20px;
  }

h1, h2, h3, .brand, .footer-brand {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  }

h1 {
  margin: 16px 0 22px;
  font-size: clamp(2.5rem, 4.8vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
  text-wrap: balance;
  }

h2 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.16;
  letter-spacing: -0.035em;
  text-wrap: balance;
  }

h3 {
  margin: 0 0 14px;
  font-size: 1.65rem;
  line-height: 1.25;
  }

:focus-visible {
  outline: 3px solid #926632;
  outline-offset: 5px;
  }

.shell {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  }

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  }

.header-top {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 30px;
  }

.brand {
  text-decoration: none;
  font-size: 2rem;
  line-height: 1;
  white-space: nowrap;
  }

.brand span {
  display: block;
  margin-top: 7px;
  font: 0.62rem Arial, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  }

.nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
  }

.nav a {
  padding: 12px 0;
  font-size: 0.84rem;
  text-decoration: none;
  white-space: nowrap;
  }

.nav :where(a:hover, a[aria-current]) {
  text-decoration: underline;
  }

.header-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  }

.language, .current-language {
  font-size: 0.75rem;
  padding: 12px 3px;
  }

.current-language {
  color: var(--muted);
  }

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  }

.menu-toggle span {
  height: 1px;
  width: 23px;
  background: currentcolor;
  transition: transform 180ms;
  }

.menu-toggle:where([aria-expanded="true"]) :where(span:first-child) {
  transform: translateY(3.5px) rotate(45deg);
  }

.menu-toggle:where([aria-expanded="true"]) :where(span:last-child) {
  transform: translateY(-3.5px) rotate(-45deg);
  }

.hero {
  background: var(--soft);
  }

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  padding: 62px 0;
  }

.hero-copy {
  animation: arrive 450ms ease-out both;
  }

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1.55;
  }

.lead {
  font-size: 1.17rem;
  max-width: 32rem;
  line-height: 1.6;
  }

.byline {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 24px 0;
  }

.hero-actions {
  display: flex;
  }

.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  min-height: 52px;
  padding: 14px 23px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-size: 0.94rem;
  transition: background 160ms, transform 160ms;
  }

.button:hover {
  background: #40594b;
  transform: translateY(-2px);
  }

.small {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 12px 0 16px;
  }

.text-link {
  display: inline-block;
  padding: 10px 0;
  font-size: 0.91rem;
  }

.hero-more {
  font-size: 0.85rem;
  }

.portrait {
  margin: 0;
  }

.portrait img {
  display: block;
  width: 100%;
  height: 470px;
  object-fit: cover;
  object-position: center 35%;
  }

.atmosphere img {
  border-radius: 160px 160px 2px 2px;
  object-position: 62% center;
  }

.portrait figcaption {
  margin-top: 12px;
  font-size: 0.7rem;
  color: var(--muted);
  }

.section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  padding: 84px 0;
  border-bottom: 1px solid var(--line);
  }

.section-copy, .intro {
  font-size: 1.04rem;
  }

.service-links {
  width: 100%;
  }

.service-link {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-size: 1.08rem;
  line-height: 1.4;
  }

.service-link:hover {
  text-decoration: underline;
  }

.path-section, .workshop-section {
  padding-top: 86px;
  padding-bottom: 86px;
  }

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 38px;
  }

.path-card {
  display: flex;
  flex-direction: column;
  padding: 30px 28px 24px;
  background: var(--soft);
  border-top: 2px solid var(--sand);
  }

.path-card:first-child {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  }

.path-number {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  }

.path-card h3 {
  font-size: 1.75rem;
  }

.path-card p {
  font-size: 0.92rem;
  }

.path-card .path-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  margin-top: -2px;
  }

.path-card .text-link {
  margin-top: auto;
  }

.consultation-section {
  background: #f0ede5;
  }

.consultation-section .section {
  border: 0;
  padding-bottom: 40px;
  }

.topic-list {
  list-style: none;
  padding: 0;
  margin: 0;
  }

.topic-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  }

.approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  padding-bottom: 76px;
  }

.approach p {
  font-size: 0.95rem;
  }

.about-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
  align-items: center;
  padding: 92px 0;
  }

.about-section img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: center 45%;
  }

.about-section p {
  max-width: 36rem;
  }

.training-section {
  background: var(--ink);
  color: var(--paper);
  padding: 86px 0;
  }

.section-intro {
  max-width: 39rem;
  }

.study-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 38px 0 20px;
  }

.study-card {
  padding-top: 26px;
  border-top: 1px solid var(--line);
  }

.training-section .study-card {
  border-color: #6e7b6e;
  }

.study-card p {
  max-width: 31rem;
  font-size: 0.95rem;
  }

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
  }

.ethics {
  padding-top: 0;
  padding-bottom: 40px;
  color: var(--muted);
  font-size: 0.8rem;
  }

.process-band {
  padding: 76px 0;
  background: var(--ink);
  color: var(--paper);
  }

.process-band .intro {
  max-width: 34rem;
  }

.process-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 70px;
  list-style: none;
  padding: 24px 0 0;
  margin: 0;
  }

.process-list li {
  display: flex;
  gap: 20px;
  border-top: 1px solid #6e7b6e;
  padding-top: 22px;
  }

.step-number {
  font-size: 0.78rem;
  padding-top: 6px;
  }

.process-list p {
  margin-bottom: 0;
  color: #e1e5d9;
  }

.academy-band {
  padding: 76px 0;
  background: var(--soft);
  }

.academy-band p {
  max-width: 44rem;
  }

.faq details, .footer details {
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
  }

summary {
  cursor: pointer;
  line-height: 1.5;
  }

.faq p {
  color: var(--muted);
  margin-top: 16px;
  }

.library-list a {
  display: block;
  padding: 0 0 20px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  }

.library-list a:hover h3 {
  text-decoration: underline;
  }

.library-list p {
  margin: 0;
  color: var(--muted);
  }

.related {
  padding: 70px 0;
  }

.contact-band {
  background: var(--sand);
  padding: 78px 0;
  }

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: center;
  }

.contact-layout p {
  max-width: 38rem;
  }

.contact-actions {
  font-size: 0.88rem;
  }

.contact-actions .button {
  margin-bottom: 18px;
  }

.footer {
  padding: 46px 0 52px;
  font-size: 0.82rem;
  }

.footer-brand {
  font-size: 1.6rem;
  }

.footer-brand span {
  font-size: 1rem;
  }

.footer details {
  max-width: 48rem;
  }

.consent-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  }

.consent-buttons button {
  padding: 12px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  cursor: pointer;
  }

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  padding: 14px;
  background: var(--ink);
  color: white;
  z-index: 20;
  }

.skip-link:focus {
  top: 8px;
  }

@keyframes arrive {
  from {
  opacity: 0;
  transform: translateY(9px);
  }

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

@media (max-width: 1050px) {
  .shell {
  width: calc(100% - 48px);
  }

  .header-top {
  min-height: 76px;
  gap: 16px;
  flex-wrap: wrap;
  }

  .header-controls {
  margin-left: auto;
  }

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

  .nav {
  order: 3;
  width: 100%;
  margin: 0;
  gap: 18px;
  padding-bottom: 16px;
  }

  .menu-ready .nav {
  display: none;
  }

  .menu-ready .nav.is-open {
  display: flex;
  }

  .hero-layout {
  gap: 36px;
  padding: 45px 0;
  }

  .portrait img {
  height: 430px;
  }

  .section, .approach, .about-section, .contact-layout {
  gap: 42px;
  }

  .path-grid {
  gap: 14px;
  }

  .path-card {
  padding: 24px 20px;
  }
}

@media (max-width: 620px) {
  html {
  scroll-padding-top: 24px;
  }

  .shell {
  width: calc(100% - 40px);
  }

  .header-top {
  min-height: 72px;
  gap: 10px;
  }

  .brand {
  font-size: 1.6rem;
  }

  .brand span {
  font-size: 0.54rem;
  margin-top: 5px;
  }

  .header-controls {
  gap: 8px;
  }

  .language {
  min-width: 32px;
  text-align: center;
  }

  .nav, .menu-ready .nav.is-open {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 8px 0 18px;
  }

  .nav a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  }

  .hero-layout {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: stretch;
  padding: 36px 0 30px;
  }

  h1 {
  font-size: 2.65rem;
  line-height: 1.08;
  }

  h2 {
  font-size: 2rem;
  }

  h3 {
  font-size: 1.5rem;
  }

  .lead {
  font-size: 1.05rem;
  margin-bottom: 20px;
  }

  .eyebrow {
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  }

  .byline {
  font-size: 0.78rem;
  margin: 18px 0;
  }

  .hero-more {
  display: inline-block;
  padding: 6px 0;
  }

  .portrait img {
  height: 230px;
  }

  .atmosphere img {
  border-radius: 110px 110px 2px 2px;
  object-position: center 54%;
  }

  .section, .approach, .about-section, .contact-layout, .study-grid, .path-grid {
  grid-template-columns: 1fr;
  gap: 24px;
  }

  .path-section, .workshop-section, .training-section, .about-section, .section {
  padding-top: 56px;
  padding-bottom: 56px;
  }

  .path-grid {
  margin-top: 28px;
  gap: 16px;
  }

  .path-card {
  padding: 26px;
  }

  .path-number {
  margin-bottom: 18px;
  }

  .path-card h3 {
  font-size: 1.65rem;
  }

  .path-card p {
  margin-bottom: 14px;
  }

  .consultation-section .section {
  padding-bottom: 30px;
  }

  .approach {
  padding-bottom: 48px;
  }

  .about-section img {
  width: 170px;
  height: 205px;
  }

  .study-grid {
  margin-top: 30px;
  gap: 18px;
  }

  .section-actions {
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  }

  .section-heading h2 {
  margin-bottom: 10px;
  }

  .process-band, .academy-band, .contact-band, .related {
  padding: 52px 0;
  }

  .process-list {
  grid-template-columns: 1fr;
  gap: 26px;
  }

  .contact-actions {
  margin-top: 4px;
  }

  .button {
  width: 100%;
  }
}

.reviews-section, .academy-catalog {
  padding-top: 72px;
  padding-bottom: 72px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 28px 0;
}

.review-photo {
  display: block;
  text-decoration: none;
}

.review-photo img {
  display: block;
  width: 100%;
  height: 270px;
  object-fit: contain;
  background: #eeeae1;
  border: 1px solid #d7d1c5;
}

.review-photo > span, .video-original {
  display: inline-block;
  padding: 12px 0;
  font-size: 14px;
}

.review-more {
  border-bottom: 1px solid #d7d1c5;
  padding: 12px 0;
}

.review-more summary {
  cursor: pointer;
  padding: 12px 0;
}

.video-heading {
  margin-top: 56px;
}

.video-stage {
  position: relative;
  background: #2c3e36;
  color: #faf7f1;
  aspect-ratio: 16 / 11;
}

.video-load {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  color: inherit;
  text-align: center;
  text-decoration: none;
}

.video-load[hidden] { display: none; }
.play-symbol { font-size: 28px; }

.video-stage iframe {
  width: 100%;
  height: calc(100% - 42px);
  border: 0;
}

.video-close {
  width: 100%;
  height: 42px;
  color: #faf7f1;
  background: #2c3e36;
  border: 0;
  cursor: pointer;
}

.academy-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 24px 0;
  border-block: 1px solid #d7d1c5;
}

.academy-group {
  padding-top: 56px;
  scroll-margin-top: 24px;
}

.course-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 36px;
  margin-top: 24px;
}

.course-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 0;
  border-top: 1px solid #d7d1c5;
  text-decoration: none;
}

.course-link > span { font-size: 20px; }
.course-link small { color: #565e55; }
.course-link:hover > span { text-decoration: underline; }

@media (width <= 650px) {
  .review-grid, .course-list { grid-template-columns: 1fr; }
  .reviews-section, .academy-catalog { padding-block: 48px; }
  .review-photo img { height: 300px; }
}

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

  *, *::before, *::after {
  animation: none !important;
  transition: none !important;
  }
}
