/* =============================================
   BODYSENSE — Global Stylesheet
   ============================================= */

/* Fragment Mono loaded via Google Fonts in each HTML file */

/* ----- Tokens ----- */
:root {
  --blue:       #6e86f8;
  --blue-light: #c9d3fd;
  --gold:       #97763c;
  --gold-light: #d4c5a0;
  --dark:       #2e3038;
  --cream:      #f5f3ee;
  --white:      #ffffff;

  --font: 'Fragment Mono', 'Courier New', monospace;

  --nav-h: 76px;
  --max-w: 1380px;
  --gutter: clamp(24px, 5vw, 80px);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input { font-family: var(--font); border: none; outline: none; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ----- NAVIGATION ----- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  z-index: 1000;
  background: var(--cream);
  border-bottom: 1px solid rgba(46,48,56,0.08);
  transition: background 0.3s;
  overflow: visible;
}

.nav__logo {
  height: 48px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 44px;
}

.nav__links a {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.2s var(--ease);
}

.nav__links a:hover { color: var(--blue); }

.nav__links .nav__cta {
  border: 1px solid var(--dark);
  padding: 11px 22px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.nav__links .nav__cta:hover {
  background: var(--dark);
  color: var(--cream);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: transform 0.2s;
}

/* ----- NAV DROPDOWN ----- */
.nav__dropdown { position: relative; }

.nav__dropdown > a::after {
  content: ' ↓';
  font-size: 9px;
  opacity: 0.5;
}

.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: -20px;
  background: var(--cream);
  border: 1px solid rgba(46,48,56,0.12);
  min-width: 300px;
  z-index: 500;
  box-shadow: 0 12px 40px rgba(46,48,56,0.1);
}

.nav__dropdown:hover .nav__dropdown-menu {
  display: block;
}

.nav__dropdown-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(46,48,56,0.06);
  color: var(--dark);
  transition: background 0.15s, color 0.15s;
  gap: 16px;
}

.nav__dropdown-menu a:last-child { border-bottom: none; }

.nav__dropdown-menu a:hover {
  background: var(--blue-light);
}

.nav__dropdown-menu .price {
  font-size: 10px;
  opacity: 0.45;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav__dropdown-section {
  padding: 8px 20px 4px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.35;
  background: var(--cream);
  border-bottom: 1px solid rgba(46,48,56,0.06);
}

/* ----- SERVICE CARDS (book page) ----- */
.service-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(46,48,56,0.12);
}

.service-card {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(46,48,56,0.08);
  text-decoration: none;
  color: var(--dark);
  transition: background 0.2s var(--ease);
  cursor: pointer;
}

.service-card:last-child { border-bottom: none; }

.service-card:hover { background: var(--blue-light); }

.service-card__name {
  font-size: clamp(13px, 1.3vw, 16px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card__durations {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.service-card__opt {
  font-size: 11px;
  opacity: 0.55;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.service-card__arrow {
  font-size: 16px;
  opacity: 0.3;
  transition: opacity 0.2s, transform 0.2s;
}

.service-card:hover .service-card__arrow {
  opacity: 1;
  transform: translateX(4px);
}

.book-section-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.4;
  padding: 20px 0 12px;
  border-bottom: 1px solid rgba(46,48,56,0.08);
  margin-bottom: 0;
}

/* Mobile menu overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px;
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  font-size: clamp(28px, 5vw, 48px);
  letter-spacing: -0.01em;
  color: var(--dark);
  transition: color 0.2s;
}

.nav__mobile a:hover { color: var(--blue); }

.nav__mobile-close {
  position: absolute;
  top: 28px;
  right: var(--gutter);
  font-size: 28px;
  cursor: pointer;
  background: none;
  color: var(--dark);
}

/* ----- PAGE BASE ----- */
.page { padding-top: var(--nav-h); }

/* ----- SHARED UTILS ----- */
.label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  width: fit-content;
  transition: gap 0.25s var(--ease), color 0.2s;
}

.link-arrow:hover { gap: 18px; color: var(--blue); }

.btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 48px;
  border: 1.5px solid var(--cream);
  color: var(--cream);
  background: transparent;
  cursor: pointer;
  transition: background 0.22s var(--ease), color 0.22s var(--ease), transform 0.18s var(--ease);
}

.btn:hover {
  background: var(--cream);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(1px) scale(0.97);
  transition-duration: 0.08s;
}

.btn--dark {
  border-color: var(--dark);
  color: var(--dark);
}

.btn--dark:hover {
  background: var(--dark);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn--blue {
  border-color: var(--blue);
  color: var(--cream);
  background: var(--blue);
}

.btn--blue:hover {
  background: transparent;
  color: var(--blue);
}

.btn--gold {
  border-color: var(--dark);
  color: var(--dark);
  background: transparent;
}

.btn--gold:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--cream);
  transform: translateY(-2px);
}

/* =============================================
   HOME — HERO
   ============================================= */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: calc(100vh - var(--nav-h));
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) var(--gutter);
  gap: 60px;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero__sub {
  color: var(--dark);
  margin-bottom: -8px;
}

.hero__title {
  font-size: clamp(80px, 12.5vw, 168px);
  line-height: 0.87;
  letter-spacing: -0.03em;
  font-weight: normal;
}

.hero__desc {
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.55;
  max-width: 460px;
  opacity: 0.75;
}

.hero__image {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero__image img {
  width: 100%;
  max-width: 580px;
}

/* =============================================
   SQUIGGLE DECORATION
   ============================================= */

@keyframes sq-draw {
  0%   { stroke-dashoffset: 900; opacity: 0; }
  6%   { opacity: 0.55; }
  75%  { opacity: 0.55; stroke-dashoffset: 0; }
  92%  { opacity: 0; stroke-dashoffset: 0; }
  100% { opacity: 0; stroke-dashoffset: 0; }
}

.squiggle-deco {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.sq {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  opacity: 0;
}

.sq--1 { stroke: var(--blue); stroke-width: 1.5; animation: sq-draw 7s ease-in-out infinite 0s; }
.sq--2 { stroke: var(--blue); stroke-width: 1;   animation: sq-draw 7s ease-in-out infinite 2.3s; }
.sq--3 { stroke: var(--blue); stroke-width: 1.2; animation: sq-draw 7s ease-in-out infinite 4.6s; }
.sq--4 { stroke: var(--blue); stroke-width: 0.8; animation: sq-draw 7s ease-in-out infinite 1.1s; }

/* =============================================
   HOME — INTRO STRIP
   ============================================= */

.intro-strip {
  background: var(--dark);
  color: var(--cream);
  padding: clamp(80px, 11vw, 150px) var(--gutter);
  text-align: center;
}

.intro-strip__keywords {
  color: var(--cream);
  margin-bottom: 44px;
  opacity: 0.8;
}

.intro-strip__text {
  font-size: clamp(26px, 3.8vw, 56px);
  line-height: 1.2;
  max-width: 880px;
  margin: 0 auto;
  font-weight: normal;
  letter-spacing: -0.01em;
}

.intro-strip__sub {
  font-size: clamp(12px, 1.1vw, 15px);
  line-height: 1.8;
  max-width: 560px;
  margin: 48px auto 0;
  opacity: 0.65;
}

/* =============================================
   TESTIMONIALS
   ============================================= */

.testimonials {
  padding: clamp(80px, 11vw, 150px) var(--gutter);
  background: var(--cream);
}

.testimonials__heading {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: normal;
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
  margin-bottom: clamp(60px, 9vw, 120px);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 5vw, 80px) clamp(32px, 4vw, 64px);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial__quote {
  font-size: clamp(12px, 1.05vw, 14px);
  line-height: 1.9;
  opacity: 0.75;
}

.testimonial__name {
  font-size: clamp(11px, 1vw, 13px);
  line-height: 1.6;
  opacity: 0.5;
}

/* =============================================
   HOME — SERVICE BLOCKS
   ============================================= */

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 75vh;
  align-items: stretch;
}

.service-block--flip { direction: rtl; }
.service-block--flip > * { direction: ltr; }

.service-block__img {
  overflow: hidden;
  background: var(--cream);
}

.service-block__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
}

.service-block:hover .service-block__img img { transform: scale(1.04); }

.service-block__content {
  padding: clamp(60px, 7vw, 110px) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  background: var(--cream);
}

.service-block--dark .service-block__content {
  background: var(--dark);
  color: var(--cream);
}

.service-block__tag { color: var(--blue); }

.service-block--dark .service-block__tag { color: var(--cream); }

.service-block__title {
  font-size: clamp(44px, 6vw, 90px);
  line-height: 0.9;
  font-weight: normal;
  letter-spacing: -0.02em;
}

.service-block__desc {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.7;
  max-width: 440px;
  opacity: 0.75;
}

/* =============================================
   HOME — ABOUT TEASER
   ============================================= */

.about-teaser {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 65vh;
  align-items: stretch;
  background: var(--blue-light);
}

.about-teaser__img {
  overflow: hidden;
  min-height: 420px;
}

.about-teaser__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-teaser__content {
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.about-teaser__name {
  font-size: clamp(52px, 8vw, 116px);
  line-height: 0.88;
  font-weight: normal;
  letter-spacing: -0.025em;
}

.about-teaser__bio {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.65;
  max-width: 480px;
  opacity: 0.8;
}

/* =============================================
   HOME — BOOK CTA
   ============================================= */

.book-cta {
  background: var(--cream);
  color: var(--dark);
  padding: clamp(100px, 13vw, 190px) var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 52px;
}

.book-cta__title {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.88;
  font-weight: normal;
  letter-spacing: -0.025em;
}

/* =============================================
   REGULATE TO CREATE — PRICING
   ============================================= */

.rtc-pricing {
  padding: clamp(80px, 11vw, 150px) var(--gutter);
  background: var(--dark);
  color: var(--cream);
}

.rtc-pricing__heading {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: normal;
  letter-spacing: -0.025em;
  line-height: 0.9;
  margin-bottom: clamp(48px, 7vw, 96px);
}

.rtc-pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 900px;
}

.rtc-pricing__card {
  border: 1px solid rgba(245,243,238,0.15);
  padding: clamp(36px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rtc-pricing__card--featured {
  border-color: rgba(245,243,238,0.4);
  background: rgba(245,243,238,0.04);
}

.rtc-pricing__name {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: normal;
  letter-spacing: -0.01em;
}

.rtc-pricing__price {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: normal;
  letter-spacing: -0.02em;
  line-height: 1;
}

.rtc-pricing__period {
  font-size: clamp(12px, 1.2vw, 16px);
  opacity: 0.5;
}

.rtc-pricing__desc {
  font-size: clamp(11px, 1vw, 13px);
  line-height: 1.8;
  opacity: 0.65;
  flex: 1;
}

/* =============================================
   HOME — NEWSLETTER
   ============================================= */

.newsletter {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
  border-top: 1px solid rgba(46,48,56,0.1);
}

.newsletter__title {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: normal;
  line-height: 1;
  letter-spacing: -0.02em;
}

.newsletter__sub {
  font-size: clamp(14px, 1.4vw, 17px);
  opacity: 0.6;
  margin-top: -8px;
}

.newsletter__form {
  display: flex;
  max-width: 500px;
  width: 100%;
}

.newsletter__form input {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid rgba(46,48,56,0.3);
  border-right: none;
  background: transparent;
  font-size: 14px;
  color: var(--dark);
}

.newsletter__form input::placeholder { opacity: 0.35; }
.newsletter__form input:focus { border-color: var(--blue); outline: none; }

.newsletter__form button {
  padding: 16px 28px;
  background: var(--dark);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--dark);
  transition: background 0.2s, border-color 0.2s;
}

.newsletter__form button:hover {
  background: var(--blue);
  border-color: var(--blue);
}

/* =============================================
   FOOTER
   ============================================= */

footer {
  background: var(--dark);
  color: var(--cream);
  padding: clamp(60px, 8vw, 100px) var(--gutter) 44px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245,243,238,0.1);
  margin-bottom: 36px;
}

.footer-logo {
  height: 34px;
  width: auto;
  filter: invert(1);
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 14px;
  opacity: 0.45;
  line-height: 1.65;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.35;
  margin-bottom: 20px;
  font-weight: normal;
}

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
  font-size: 14px;
  opacity: 0.65;
  transition: opacity 0.2s;
}

.footer-col ul li a:hover { opacity: 1; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-disclaimer {
  font-size: 11px;
  opacity: 0.28;
  line-height: 1.75;
  max-width: 680px;
}

.footer-copy {
  font-size: 11px;
  opacity: 0.28;
  white-space: nowrap;
}

/* =============================================
   OFFERINGS PAGE
   ============================================= */

.page-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(60px, 9vw, 130px) var(--gutter);
}

.page-header__label { opacity: 0.45; margin-bottom: 20px; }

.page-header h1 {
  font-size: clamp(52px, 8.5vw, 120px);
  line-height: 0.9;
  font-weight: normal;
  letter-spacing: -0.025em;
}

.page-header__sub {
  margin-top: 28px;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.6;
  max-width: 440px;
  opacity: 0.65;
}

.page-header__image {
  display: flex;
  justify-content: center;
}

.page-header__image img {
  max-width: 360px;
  width: 100%;
}

.offering-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 75vh;
  align-items: stretch;
}

.offering-block--flip { direction: rtl; }
.offering-block--flip > * { direction: ltr; }

.offering-block__media {
  overflow: hidden;
  background: var(--cream);
  position: relative;
}

.offering-block__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offering-block__media .img--spin-cw {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  object-fit: cover;
  object-position: center;
}

.offering-block__content {
  padding: clamp(60px, 7vw, 120px) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
}

.offering-block__tag { margin-bottom: -4px; }

.offering-block__content h2 {
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.9;
  font-weight: normal;
  letter-spacing: -0.02em;
}

.offering-block__content p {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.75;
  max-width: 460px;
  opacity: 0.75;
}

/* Expect / approach grid */
.expect {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
}

.expect__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.expect__inner h2 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  font-weight: normal;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
}

.expect__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 60px;
}

.expect__item h3 {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: normal;
  margin-bottom: 14px;
  line-height: 1.1;
}

.expect__item p {
  font-size: clamp(14px, 1.4vw, 17px);
  opacity: 0.65;
  line-height: 1.75;
}

/* =============================================
   ABOUT PAGE
   ============================================= */

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  align-items: stretch;
}

.about-hero__image {
  overflow: hidden;
}

.about-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-hero__content {
  padding: clamp(60px, 8vw, 120px) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--dark);
  color: var(--cream);
  gap: 16px;
}

.about-hero__content .label { opacity: 0.35; }

.about-hero__content h1 {
  font-size: clamp(64px, 10vw, 148px);
  line-height: 0.87;
  font-weight: normal;
  letter-spacing: -0.03em;
  margin: 8px 0 4px;
}

.about-hero__role {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  opacity: 0.45;
  line-height: 2;
  text-transform: uppercase;
}

/* Bio section */
.bio-section {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
}

.bio-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}

.bio-section__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bio-section__text p {
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.75;
  opacity: 0.8;
}

.bio-section__image img { width: 100%; }

/* Training */
.training {
  background: var(--blue-light);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
}

.training__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.training__heading {
  font-size: clamp(32px, 4vw, 60px);
  font-weight: normal;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 52px;
}

.training__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 60px;
}

.training__item h3 {
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: normal;
  margin-bottom: 8px;
  line-height: 1.25;
}

.training__item p {
  font-size: 12.5px;
  opacity: 0.55;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

.training__specialist {
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid rgba(46,48,56,0.12);
}

.training__specialist p {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.75;
  max-width: 680px;
  opacity: 0.7;
  margin-top: 16px;
}

/* Full bleed accent image */
@keyframes swirl-rotate {
  from { transform: rotate(0deg) scale(1.15); }
  to   { transform: rotate(360deg) scale(1.15); }
}

@keyframes spin-cw {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.img--spin-cw {
  animation: spin-cw 15s ease-in-out infinite;
  transform-origin: center center;
}

.accent-image {
  width: 100%;
  height: clamp(280px, 40vw, 520px);
  overflow: hidden;
}

.accent-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: swirl-rotate 90s linear infinite;
  transform-origin: center center;
}

/* =============================================
   BOOK PAGE
   ============================================= */

.book-page {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) var(--gutter);
  align-items: start;
}

.book-page__text {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.book-page__text .label { opacity: 0.45; }

.book-page__text h1 {
  font-size: clamp(52px, 8vw, 110px);
  line-height: 0.88;
  font-weight: normal;
  letter-spacing: -0.025em;
}

.book-page__text p {
  font-size: clamp(11px, 1vw, 13px);
  line-height: 1.75;
  opacity: 0.65;
}

.book-page__note {
  font-size: 12px;
  opacity: 0.45;
  line-height: 1.7;
  padding-top: 20px;
  border-top: 1px solid rgba(46,48,56,0.12);
}

.book-page__cal {
  min-height: 700px;
  border: 1px solid rgba(46,48,56,0.1);
}

/* =============================================
   SOMATIC DEPTH COACHING — TIERS
   ============================================= */

.sdc-tiers {
  padding: clamp(80px, 11vw, 150px) var(--gutter) 0;
}

.sdc-tiers__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.sdc-tier {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid rgba(46,48,56,0.1);
}

.sdc-tier--dark {
  background: var(--dark);
  color: var(--cream);
  border-color: rgba(245,243,238,0.1);
}

.sdc-tier__header {
  padding: clamp(32px, 4vw, 52px) clamp(28px, 3vw, 44px);
  border-bottom: 1px solid rgba(46,48,56,0.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sdc-tier--dark .sdc-tier__header {
  border-bottom-color: rgba(245,243,238,0.12);
}

.sdc-tier__name {
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: normal;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-top: 4px;
}

.sdc-tier__price {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: normal;
  letter-spacing: -0.02em;
  line-height: 1;
}

.sdc-tier__detail {
  font-size: clamp(12px, 1.1vw, 14px);
  opacity: 0.5;
}

.sdc-tier__body {
  padding: clamp(28px, 3.5vw, 48px) clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.sdc-tier__body > p {
  font-size: clamp(13px, 1.15vw, 15px);
  line-height: 1.85;
  opacity: 0.7;
}

.sdc-tier__includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}

.sdc-tier__includes .label { margin-bottom: 2px; }

.sdc-tier__includes ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.sdc-tier__includes ul li {
  font-size: clamp(11px, 1vw, 13px);
  line-height: 1.7;
  opacity: 0.65;
  padding-left: 18px;
  position: relative;
}

.sdc-tier__includes ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  opacity: 0.45;
  font-size: 10px;
}

.sdc-tier__body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* =============================================
   BODYWORK PAGE — SERVICES
   ============================================= */

.bw-service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 75vh;
  align-items: stretch;
}

.bw-service--flip { direction: rtl; }
.bw-service--flip > * { direction: ltr; }

.bw-service__image {
  overflow: hidden;
  background: var(--cream);
}

.bw-service__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.bw-service:hover .bw-service__image img { transform: scale(1.04); }

.bw-service__content {
  padding: clamp(60px, 7vw, 110px) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.bw-service__content h2 {
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.9;
  font-weight: normal;
  letter-spacing: -0.02em;
}

.bw-service__content p {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.75;
  max-width: 460px;
  opacity: 0.75;
}

.bw-service__prices {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bw-service__prices span {
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: 0.08em;
  opacity: 0.55;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 80px;
    gap: 48px;
  }
  .hero__image { justify-content: center; order: -1; }
  .hero__image img { max-width: 380px; }

  .service-block,
  .offering-block {
    grid-template-columns: 1fr;
    min-height: auto;
    direction: ltr !important;
  }
  .service-block__img,
  .offering-block__media {
    min-height: 320px;
    max-height: 480px;
  }

  .about-teaser {
    grid-template-columns: 1fr;
  }
  .about-teaser__img { min-height: 300px; max-height: 420px; }

  .about-hero {
    grid-template-columns: 1fr;
  }
  .about-hero__image { min-height: 360px; max-height: 460px; }

  .bio-section__inner { grid-template-columns: 1fr; gap: 40px; }

  .page-header { grid-template-columns: 1fr; }
  .page-header__image { display: none; }

  .expect__grid { grid-template-columns: 1fr 1fr; }
  .training__grid { grid-template-columns: 1fr 1fr; }

  .sdc-tiers__inner { grid-template-columns: 1fr; }
  .sdc-tier { border: 1px solid rgba(46,48,56,0.1); }

  .bw-service {
    grid-template-columns: 1fr;
    min-height: auto;
    direction: ltr !important;
  }
  .bw-service__image { min-height: 320px; max-height: 480px; }

  .rtc-pricing__grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }

  .book-page {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .book-page__text { position: static; }
}

@media (max-width: 600px) {
  .expect__grid,
  .training__grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .newsletter__form {
    flex-direction: column;
  }
  .newsletter__form input {
    border-right: 1px solid rgba(46,48,56,0.3);
    border-bottom: none;
  }

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