/* zhenaixiao.com — consolidated, modernized stylesheet
   Organised with @layer; design tokens centralised; each page's rules
   are scoped to its body class so the four themes never collide. */

@layer reset, tokens, pages;

@layer reset {
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  html {
    scroll-behavior: smooth;
  }

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

@layer tokens {
  :root {
    --f-display: 'The Seasons', 'Cormorant Garamond', Georgia, serif;
    --ink: #0C0C0C;
    --muted: #6E6E6E;
    --pad: clamp(24px, 5vw, 80px);
    --rule: rgba(12,12,12,0.10);
  }

  body.page-index {
    --paper: #FFFFFF;
    --red: #C8102E;
    --red-deep: #8A0A1F;
    --red-tint: rgba(200,16,46,0.06);
    --f-body: 'Poppins', system-ui, sans-serif;
    --max: 1280px;
    --gap: clamp(72px, 10vw, 128px);
  }

  body.page-ch {
    --paper: #FFFFFF;
    --red: #C8102E;
    --red-deep: #8A0A1F;
    --red-tint: rgba(200,16,46,0.06);
    --f-body: 'Poppins', 'Noto Sans SC', system-ui, sans-serif;
    --f-zh: 'Noto Serif SC', 'Songti SC', serif;
    --max: 1280px;
    --gap: clamp(72px, 10vw, 128px);
  }

  body.page-coaching {
    --paper: #FAF7F2;
    --paper-2: #F2EBDF;
    --aqua: #A2D5DC;
    --aqua-deep: #7BB7C2;
    --aqua-navy: #1F4D5C;
    --aqua-bg: #E8F2F4;
    --max: 1240px;
    --f-body: 'Poppins', system-ui, sans-serif;
  }

  body.page-privacy {
    --paper: #FFFFFF;
    --red: #C8102E;
    --f-body: 'Poppins', system-ui, sans-serif;
  }
}

@layer pages {

  /* ===== page-index ===== */
  @keyframes ix-floatDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); } }
  @keyframes ix-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; } }
  @keyframes ix-arrowPulse {
  0%, 100% { transform: translateX(0); opacity: 0.7; }
  50% { transform: translateX(6px); opacity: 1; } }
  body.page-index {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--f-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    & a {
      color: inherit;
      text-decoration: none;
    }
    & img {
      display: block;
      max-width: 100%;
      height: auto;
    }
    &::after {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.03 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.5;
    }
    & nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px var(--pad);
      background: rgba(200,16,46,0);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid transparent;
      transition: background 0.4s, border-color 0.4s;
      &.on-red {
        background: rgba(200,16,46,0.92);
        border-bottom-color: rgba(255,255,255,0.12);
      }
      &.on-light {
        background: rgba(255,255,255,0.88);
        border-bottom-color: var(--rule);
      }
      &.on-dark {
        background: rgba(12,12,12,0.92);
        border-bottom-color: rgba(255,255,255,0.12);
      }
    }
    & .nav-mark {
      display: flex;
      align-items: center;
      gap: 11px;
    }
    & .nav-dot {
      width: 8px;
      height: 8px;
      background: #fff;
      border-radius: 50%;
      box-shadow: 0 0 0 3px rgba(255,255,255,0.25);
      transition: background 0.4s, box-shadow 0.4s;
    }
    & nav.on-light .nav-dot {
      background: var(--red);
      box-shadow: 0 0 0 3px rgba(200,16,46,0.15);
    }
    & .nav-name {
      font-family: var(--f-display);
      font-size: 18px;
      font-weight: 400;
      letter-spacing: 0.01em;
      color: #fff;
      transition: color 0.4s;
    }
    & nav.on-light .nav-name {
      color: var(--ink);
    }
    & .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
      & a {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.85);
        transition: color 0.2s;
      }
    }
    & nav.on-light .nav-links a {
      color: var(--muted);
    }
    & .nav-links a:hover {
      color: #fff;
    }
    & nav.on-light .nav-links a:hover {
      color: var(--red);
    }
    & .nav-coaching {
      font-family: var(--f-display);
      font-style: italic;
      font-size: 16px;
      font-weight: 400;
      letter-spacing: 0.01em;
      color: rgba(255,255,255,0.85);
      margin-left: 24px;
      margin-right: 4px;
      transition: color 0.2s;
      white-space: nowrap;
      &:hover {
        color: #fff;
      }
    }
    & nav.on-light .nav-coaching {
      color: var(--ink);
      &:hover {
        color: var(--red);
      }
    }
    & .nav-cta {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #fff;
      border: 1px solid #fff;
      padding: 9px 22px;
      transition: background 0.2s, color 0.2s, border-color 0.4s;
      &:hover {
        background: #fff;
        color: var(--red);
      }
    }
    & nav.on-light .nav-cta {
      color: var(--red);
      border-color: var(--red);
      &:hover {
        background: var(--red);
        color: #fff;
      }
    }
    & .lang-toggle {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-right: 16px;
      margin-left: 12px;
    }
    & .lang-opt {
      font-family: var(--f-body);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      padding: 3px 2px;
      transition: color 0.2s, border-color 0.2s;
      border-bottom: 1px solid transparent;
      &.active {
        color: #fff;
        border-bottom-color: #fff;
      }
      &:hover {
        color: #fff;
      }
    }
    & .lang-sep {
      color: rgba(255,255,255,0.4);
      font-size: 11px;
      font-weight: 300;
    }
    & nav.on-light .lang-opt {
      color: var(--muted);
      &.active {
        color: var(--red);
        border-bottom-color: var(--red);
      }
      &:hover {
        color: var(--red);
      }
    }
    & nav.on-light .lang-sep {
      color: var(--rule);
    }
    & .nav-menu-btn {
      display: none;
      background: transparent;
      border: none;
      color: inherit;
      cursor: pointer;
      padding: 8px;
      margin-left: 8px;
      & svg {
        width: 22px;
        height: 22px;
        fill: currentColor;
        display: block;
      }
      & .nav-name-fallback {
        color: #fff;
      }
    }
    & nav.on-light .nav-menu-btn {
      color: var(--ink);
    }
    & .mobile-drawer {
      position: fixed;
      inset: 0;
      background: var(--ink);
      z-index: 99;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      padding: 80px var(--pad);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
      &.open {
        opacity: 1;
        pointer-events: auto;
      }
      & .md-link {
        font-family: var(--f-display);
        font-size: clamp(34px, 7vw, 64px);
        font-weight: 400;
        letter-spacing: -0.02em;
        color: #fff;
        padding: 14px 0;
        display: block;
        transition: color 0.2s;
        &:hover {
          color: var(--red);
        }
        &.coaching {
          font-style: italic;
          font-size: clamp(22px, 4vw, 36px);
          margin-top: 24px;
          opacity: 0.85;
        }
      }
      & .md-bottom {
        position: absolute;
        bottom: 32px;
        left: var(--pad);
        right: var(--pad);
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 11px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.5);
        & .md-lang {
          display: flex;
          gap: 8px;
          & a {
            color: rgba(255,255,255,0.5);
            padding: 4px 2px;
            border-bottom: 1px solid transparent;
            &.active {
              color: #fff;
              border-bottom-color: #fff;
            }
          }
        }
      }
      & .md-close {
        position: absolute;
        top: 22px;
        right: var(--pad);
        background: transparent;
        border: none;
        color: #fff;
        cursor: pointer;
        padding: 8px;
        & svg {
          width: 22px;
          height: 22px;
        }
      }
    }
  }
  @media (max-width: 1080px) {
    body.page-index .nav-links {
      gap: 22px;
    }
    body.page-index .nav-coaching {
      font-size: 15px;
      margin-left: 18px;
    }
  }
  @media (max-width: 980px) {
    body.page-index .nav-links, body.page-index .nav-coaching, body.page-index .lang-toggle {
      display: none;
    }
    body.page-index .nav-menu-btn {
      display: inline-flex;
      align-items: center;
    }
  }
  body.page-index .floating-contacts {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    &.visible {
      opacity: 1;
      pointer-events: auto;
    }
  }
  body.page-index .fc-item {
    position: relative;
    width: 44px;
    height: 44px;
    background: var(--red);
    border: 1px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(200,16,46,0.25);
    padding: 0;
    &:hover {
      background: var(--ink);
      border-color: var(--ink);
      transform: scale(1.08);
      box-shadow: 0 4px 14px rgba(0,0,0,0.35);
    }
    & svg {
      width: 18px;
      height: 18px;
      fill: #fff;
      transition: fill 0.25s;
    }
  }
  body.page-index .fc-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--ink);
    color: #fff;
    font-family: var(--f-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 6px 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
  }
  body.page-index .fc-item:hover .fc-tooltip {
    opacity: 1;
  }
  body.page-index .fc-wechat-pop {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--ink);
    color: #fff;
    padding: 12px 18px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
    font-family: var(--f-body);
  }
  body.page-index .fc-wechat.active .fc-wechat-pop {
    opacity: 1;
    pointer-events: auto;
  }
  body.page-index .fc-wechat.active .fc-tooltip {
    opacity: 0 !important;
  }
  body.page-index .fc-wechat-pop .label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
  }
  body.page-index .fc-wechat-pop .id {
    font-family: var(--f-display);
    font-size: 16px;
    font-weight: 400;
  }
  @media (max-width: 760px) {
    body.page-index .floating-contacts {
      flex-direction: row;
      bottom: 18px;
      top: auto;
      right: 50%;
      transform: translateX(50%);
    }
  }
  body.page-index .hero-block {
    background: var(--red);
    color: #fff;
    position: relative;
  }
  body.page-index .hero {
    min-height: 68svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 112px var(--pad) 96px;
    max-width: var(--max);
    margin: 0 auto;
  }
  body.page-index .hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 48px;
    position: relative;
    padding-left: 50px;
    opacity: 0;
    animation: ix-fadeIn 0.6s ease 0.2s forwards;
    &::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      width: 36px;
      height: 1px;
      background: #fff;
    }
  }
  body.page-index .hero-headline {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(36px, 5.5vw, 88px);
    line-height: 1.02;
    letter-spacing: -0.022em;
    max-width: 20ch;
    margin-bottom: 38px;
    color: #fff;
    min-height: 2.2em;
    & .line-1 {
      display: block;
      opacity: 0;
      animation: ix-floatDown 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    }
    & .line-2 {
      display: block;
      font-style: italic;
      color: var(--ink);
      opacity: 0;
      animation: ix-floatDown 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.0s forwards;
    }
  }
  body.page-index .hero-shorthand {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(20px, 2.4vw, 32px);
    line-height: 1.3;
    color: #fff;
    letter-spacing: -0.005em;
    opacity: 0;
    animation: ix-floatDown 0.9s cubic-bezier(0.16, 1, 0.3, 1) 2.0s forwards;
  }
  body.page-index .section-wrap {
    position: relative;
    &.light {
      background: var(--paper);
      color: var(--ink);
    }
    &.dark {
      background: var(--ink);
      color: var(--paper);
    }
    &.red {
      background: var(--red);
      color: #fff;
    }
  }
  body.page-index .section {
    padding: var(--gap) var(--pad);
    max-width: var(--max);
    margin: 0 auto;
  }
  body.page-index .section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 24px;
    &::before {
      content: '';
      display: block;
      width: 22px;
      height: 1px;
      background: var(--red);
    }
  }
  body.page-index .dark .section-label, body.page-index .red .section-label {
    color: #fff;
  }
  body.page-index .dark .section-label::before, body.page-index .red .section-label::before {
    background: #fff;
  }
  body.page-index .section-heading {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
    & em {
      font-style: italic;
      color: var(--red);
    }
  }
  body.page-index .dark .section-heading em, body.page-index .red .section-heading em {
    color: #fff;
  }
  body.page-index .section-sub {
    font-size: clamp(15px, 1.3vw, 17px);
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    max-width: 720px;
    margin-bottom: 64px;
  }
  body.page-index .dark .section-sub {
    color: rgba(255,255,255,0.65);
  }
  body.page-index .red .section-sub {
    color: rgba(255,255,255,0.85);
  }
  body.page-index .flow {
    display: grid;
    grid-template-columns: 1fr 56px 1fr 56px 1fr;
    gap: 0;
    align-items: stretch;
  }
  @media (max-width: 960px) {
    body.page-index .flow {
      grid-template-columns: 1fr;
    }
  }
  body.page-index .flow-card {
    background: var(--paper);
    border: 1px solid var(--ink);
    padding: 38px 32px 36px;
    display: flex;
    flex-direction: column;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    &:hover {
      background: var(--red-tint);
      transform: translateY(-4px);
      box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    }
  }
  body.page-index .flow-card-num {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 15px;
    color: var(--red);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
  }
  body.page-index .flow-card-title {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 20px;
    min-height: 2.2em;
    & em {
      font-style: italic;
      color: var(--red);
    }
  }
  body.page-index .flow-card-rule {
    width: 32px;
    height: 2px;
    background: var(--red);
    margin-bottom: 20px;
  }
  body.page-index .flow-card-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    & li {
      font-size: 13px;
      font-weight: 300;
      color: var(--ink);
      line-height: 1.6;
      padding: 10px 0 10px 22px;
      border-bottom: 1px solid var(--rule);
      position: relative;
      &:last-child {
        border-bottom: none;
      }
      &::before {
        content: '';
        position: absolute;
        left: 0;
        top: 19px;
        width: 8px;
        height: 1px;
        background: var(--red);
      }
    }
  }
  body.page-index .flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-display);
    font-style: italic;
    font-size: 52px;
    color: var(--red);
    line-height: 1;
    user-select: none;
    & span {
      display: inline-block;
      animation: ix-arrowPulse 2.5s ease-in-out infinite;
    }
    &:nth-of-type(4) span {
      animation-delay: 0.4s;
    }
  }
  @media (max-width: 960px) {
    body.page-index .flow-arrow {
      padding: 24px 0;
      font-size: 44px;
      transform: rotate(90deg);
    }
  }
  body.page-index .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 64px;
    align-items: center;
  }
  @media (max-width: 880px) {
    body.page-index .about-grid {
      grid-template-columns: 1fr;
      gap: 48px;
    }
  }
  body.page-index .carousel {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #1a1a1a;
    overflow: hidden;
    &::before {
      content: '';
      position: absolute;
      top: -10px;
      left: -10px;
      width: 50px;
      height: 50px;
      border-top: 2px solid var(--red);
      border-left: 2px solid var(--red);
      z-index: 4;
      pointer-events: none;
    }
    &::after {
      content: '';
      position: absolute;
      bottom: -10px;
      right: -10px;
      width: 50px;
      height: 50px;
      border-bottom: 2px solid var(--red);
      border-right: 2px solid var(--red);
      z-index: 4;
      pointer-events: none;
    }
  }
  body.page-index .carousel-track {
    position: absolute;
    inset: 0;
  }
  body.page-index .carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    &.active {
      opacity: 1;
    }
    & img {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
    }
  }
  body.page-index .carousel-progress {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
  }
  body.page-index .carousel-dot {
    width: 24px;
    height: 2px;
    background: rgba(255,255,255,0.3);
    transition: background 0.3s, width 0.3s;
    border: none;
    padding: 0;
    cursor: pointer;
    &:hover {
      background: rgba(255,255,255,0.6);
    }
    &.active {
      background: var(--red);
      width: 32px;
    }
  }
  body.page-index .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s, background 0.25s, border-color 0.25s;
    z-index: 5;
    color: #fff;
    font-family: var(--f-display);
    font-style: italic;
    font-size: 18px;
    padding: 0;
    line-height: 1;
  }
  body.page-index .carousel:hover .carousel-nav {
    opacity: 1;
  }
  body.page-index .carousel-nav:hover {
    background: var(--red);
    border-color: var(--red);
  }
  body.page-index .carousel-nav.prev {
    left: 12px;
  }
  body.page-index .carousel-nav.next {
    right: 12px;
  }
  @media (max-width: 760px) {
    body.page-index .carousel-nav {
      opacity: 1;
      width: 32px;
      height: 32px;
      font-size: 16px;
    }
  }
  body.page-index .about-langs {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    flex-wrap: wrap;
  }
  body.page-index .lang-pill {
    font-family: var(--f-display);
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    padding: 5px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    letter-spacing: 0.04em;
    & em {
      font-style: italic;
      color: var(--red);
      margin-right: 4px;
      font-weight: 500;
    }
  }
  body.page-index .about-content .signature {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 13px;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
  }
  body.page-index .about-lead {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(24px, 2.6vw, 34px);
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
    color: #fff;
    & em {
      font-style: italic;
      color: #fff;
    }
  }
  body.page-index .about-body {
    font-size: 14.5px;
    font-weight: 300;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    margin-bottom: 18px;
    & strong {
      font-weight: 500;
      color: #fff;
    }
  }
  body.page-index .coaching-callout {
    margin-top: 36px;
    padding: 26px 30px;
    background: var(--red);
    color: #fff;
    border-radius: 14px;
    position: relative;
  }
  body.page-index .coaching-callout-eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.85;
    margin-bottom: 10px;
  }
  body.page-index .coaching-callout p {
    font-family: var(--f-display);
    font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #fff;
    & em {
      font-style: italic;
    }
  }
  body.page-index .coaching-callout a.cc-link {
    display: inline-block;
    margin-top: 14px;
    font-family: var(--f-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 1px solid #fff;
    padding-bottom: 2px;
    transition: opacity 0.2s, padding-right 0.25s;
    &:hover {
      opacity: 0.85;
      padding-right: 8px;
    }
  }
  body.page-index .steps {
    border-top: 1px solid var(--ink);
  }
  body.page-index .step {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 28px;
    padding: 30px 0;
    border-bottom: 1px solid var(--rule);
    align-items: baseline;
    transition: padding-left 0.3s, background 0.3s;
    &:hover {
      padding-left: 14px;
      background: var(--red-tint);
    }
  }
  @media (max-width: 640px) {
    body.page-index .step {
      grid-template-columns: 50px 1fr;
      gap: 18px;
      padding: 24px 0;
    }
  }
  body.page-index .step-num {
    font-family: var(--f-display);
    font-style: italic;
    font-size: clamp(26px, 2.8vw, 36px);
    font-weight: 400;
    color: var(--red);
    line-height: 1;
  }
  body.page-index .step-title {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(19px, 1.8vw, 24px);
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 8px;
    & em {
      font-style: italic;
      color: var(--red);
    }
  }
  body.page-index .step-title-tag {
    font-family: var(--f-body);
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-left: 10px;
    padding: 3px 9px;
    border: 1px solid var(--red);
    vertical-align: middle;
    position: relative;
    top: -3px;
  }
  body.page-index .step-body {
    font-size: 13.5px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    max-width: 60ch;
  }
  body.page-index .retainer-note {
    margin-top: 48px;
    padding: 28px 32px;
    background: var(--red);
    color: #fff;
    & p {
      font-family: var(--f-display);
      font-style: italic;
      font-size: clamp(15px, 1.4vw, 18px);
      font-weight: 400;
      line-height: 1.55;
      letter-spacing: 0.01em;
      color: #fff;
    }
  }
  body.page-index .trusted {
    text-align: center;
    padding: clamp(48px, 7vw, 78px) var(--pad);
    max-width: var(--max);
    margin: 0 auto;
  }
  body.page-index .trusted-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }
  body.page-index .trusted-label::before, body.page-index .trusted-label::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--red);
  }
  body.page-index .trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(60px, 12vw, 140px);
    flex-wrap: wrap;
  }
  body.page-index .trusted-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 32px;
    transition: transform 0.4s;
    &:hover {
      transform: scale(1.05);
    }
    & img {
      width: auto;
      object-fit: contain;
    }
    &.cipp img {
      height: 175px;
    }
    &.cdv img {
      height: 153px;
    }
  }
  @media (max-width: 720px) {
    body.page-index .trusted-logo {
      padding: 16px 20px;
      &.cipp img {
        height: 125px;
      }
      &.cdv img {
        height: 110px;
      }
    }
  }
  body.page-index .contact-wrap {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  @media (max-width: 880px) {
    body.page-index .contact-wrap {
      grid-template-columns: 1fr;
      gap: 48px;
    }
  }
  body.page-index .contact-headline {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(36px, 4.8vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 28px;
    color: #fff;
    & em {
      font-style: italic;
      color: var(--red);
    }
  }
  body.page-index .contact-note {
    font-size: 14.5px;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 460px;
  }
  body.page-index .connect-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--red);
    color: #fff;
    font-family: var(--f-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 18px 36px;
    transition: background 0.25s, transform 0.25s, gap 0.25s;
    &:hover {
      background: #fff;
      color: var(--red);
      transform: translateY(-2px);
      gap: 20px;
    }
  }
  body.page-index .connect-btn-arrow {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 18px;
    letter-spacing: 0;
  }
  body.page-index .contact-zh {
    padding: 40px;
    background: var(--red);
    color: #fff;
    position: relative;
    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: #fff;
    }
  }
  body.page-index .czh-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
    opacity: 0.85;
  }
  body.page-index .czh-text {
    font-size: 14px;
    color: #fff;
    line-height: 1.85;
    letter-spacing: 0.02em;
    font-weight: 300;
    & + .czh-text {
      margin-top: 12px;
    }
    & strong {
      font-weight: 600;
      color: #fff;
      border-bottom: 1px solid #fff;
      padding-bottom: 1px;
    }
  }
  body.page-index .czh-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    margin-top: 18px;
    letter-spacing: 0.06em;
    font-weight: 500;
  }
  body.page-index .form-section-wrap {
    background: var(--red);
    padding: clamp(64px, 9vw, 96px) var(--pad);
  }
  body.page-index .form-section {
    max-width: 720px;
    margin: 0 auto;
    background: var(--paper);
    border-radius: 24px;
    padding: clamp(40px, 5vw, 56px) clamp(28px, 4vw, 48px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  }
  body.page-index .form-intro {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
  }
  body.page-index .form-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 14px;
    &::before {
      content: '';
      display: block;
      width: 22px;
      height: 1px;
      background: var(--red);
    }
  }
  body.page-index .form-headline {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(26px, 3.4vw, 40px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
    & em {
      font-style: italic;
      color: var(--red);
    }
  }
  body.page-index .form-note {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.65;
  }
  body.page-index .contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 28px;
  }
  body.page-index .form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    &.full {
      grid-column: 1 / -1;
    }
  }
  body.page-index .form-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    & .req {
      color: var(--red);
      margin-left: 4px;
    }
  }
  body.page-index .form-field input, body.page-index .form-field select, body.page-index .form-field textarea {
    font-family: var(--f-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--ink);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--rule);
    padding: 8px 0 10px;
    outline: none;
    transition: border-color 0.25s;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
  }
  body.page-index .form-field input:focus, body.page-index .form-field select:focus, body.page-index .form-field textarea:focus {
    border-bottom-color: var(--red);
  }
  body.page-index .form-field textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.55;
  }
  body.page-index .form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C8102E'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    background-size: 18px;
    cursor: pointer;
    padding-right: 28px;
  }
  body.page-index .form-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
  }
  @media (max-width: 640px) {
    body.page-index .form-checks {
      grid-template-columns: 1fr;
    }
  }
  body.page-index .form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 3px 0;
    & input {
      width: 16px;
      height: 16px;
      border: 1px solid var(--rule);
      background: var(--paper);
      accent-color: var(--red);
      cursor: pointer;
      appearance: auto;
      -webkit-appearance: auto;
      padding: 0;
    }
    & span {
      font-size: 13px;
      font-weight: 300;
      color: var(--ink);
      line-height: 1.4;
    }
  }
  body.page-index .form-submit {
    grid-column: 1 / -1;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    & button {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      background: var(--ink);
      color: #fff;
      font-family: var(--f-body);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      padding: 17px 38px;
      border: none;
      cursor: pointer;
      border-radius: 999px;
      transition: background 0.25s, transform 0.25s, gap 0.25s;
      &:hover {
        background: var(--red);
        transform: translateY(-2px);
        gap: 20px;
      }
      & .arrow {
        font-family: var(--f-display);
        font-style: italic;
        font-size: 18px;
      }
    }
  }
  body.page-index .form-status {
    font-size: 12.5px;
    color: var(--muted);
    font-style: italic;
    &.success {
      color: var(--red);
      font-weight: 500;
    }
    &.error {
      color: #B00020;
    }
  }
  @media (max-width: 720px) {
    body.page-index .contact-form {
      grid-template-columns: 1fr;
      gap: 22px;
    }
  }
  body.page-index footer {
    border-top: 1px solid var(--rule);
    padding: 48px var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    flex-wrap: wrap;
    gap: 20px;
    & .f-red {
      color: var(--red);
    }
  }
  body.page-index .js-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    &.visible {
      opacity: 1;
      transform: translateY(0);
    }
  }
  body.page-index hr.ruled {
    border: none;
    border-top: 1px solid var(--rule);
    margin: 0;
  }

  /* ===== page-ch ===== */
  @keyframes ch-floatDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); } }
  @keyframes ch-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; } }
  @keyframes ch-arrowPulse {
  0%, 100% { transform: translateX(0); opacity: 0.7; }
  50% { transform: translateX(6px); opacity: 1; } }
  body.page-ch {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--f-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    & a {
      color: inherit;
      text-decoration: none;
    }
    & img {
      display: block;
      max-width: 100%;
      height: auto;
    }
    &::after {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.03 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.5;
    }
    & nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px var(--pad);
      background: rgba(200,16,46,0);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid transparent;
      transition: background 0.4s, border-color 0.4s;
      &.on-red {
        background: rgba(200,16,46,0.92);
        border-bottom-color: rgba(255,255,255,0.12);
      }
      &.on-light {
        background: rgba(255,255,255,0.88);
        border-bottom-color: var(--rule);
      }
      &.on-dark {
        background: rgba(12,12,12,0.92);
        border-bottom-color: rgba(255,255,255,0.12);
      }
    }
    & .nav-mark {
      display: flex;
      align-items: center;
      gap: 11px;
    }
    & .nav-dot {
      width: 8px;
      height: 8px;
      background: #fff;
      border-radius: 50%;
      box-shadow: 0 0 0 3px rgba(255,255,255,0.25);
      transition: background 0.4s, box-shadow 0.4s;
    }
    & nav.on-light .nav-dot {
      background: var(--red);
      box-shadow: 0 0 0 3px rgba(200,16,46,0.15);
    }
    & .nav-name {
      font-family: var(--f-display);
      font-size: 18px;
      font-weight: 400;
      letter-spacing: 0.01em;
      color: #fff;
      transition: color 0.4s;
    }
    & nav.on-light .nav-name {
      color: var(--ink);
    }
    & .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
      & a {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.85);
        transition: color 0.2s;
      }
    }
    & nav.on-light .nav-links a {
      color: var(--muted);
    }
    & .nav-links a:hover {
      color: #fff;
    }
    & nav.on-light .nav-links a:hover {
      color: var(--red);
    }
    & .nav-cta {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #fff;
      border: 1px solid #fff;
      padding: 9px 22px;
      transition: background 0.2s, color 0.2s, border-color 0.4s;
      &:hover {
        background: #fff;
        color: var(--red);
      }
    }
    & nav.on-light .nav-cta {
      color: var(--red);
      border-color: var(--red);
      &:hover {
        background: var(--red);
        color: #fff;
      }
    }
    & .lang-toggle {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-right: 16px;
    }
    & .lang-opt {
      font-family: var(--f-body);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      padding: 3px 2px;
      transition: color 0.2s, border-color 0.2s;
      border-bottom: 1px solid transparent;
      &.active {
        color: #fff;
        border-bottom-color: #fff;
      }
      &:hover {
        color: #fff;
      }
    }
    & .lang-sep {
      color: rgba(255,255,255,0.4);
      font-size: 11px;
      font-weight: 300;
    }
    & nav.on-light .lang-opt {
      color: var(--muted);
      &.active {
        color: var(--red);
        border-bottom-color: var(--red);
      }
      &:hover {
        color: var(--red);
      }
    }
    & nav.on-light .lang-sep {
      color: var(--rule);
    }
  }
  @media (max-width: 1080px) {
    body.page-ch .nav-links {
      gap: 22px;
    }
  }
  @media (max-width: 920px) {
    body.page-ch .nav-links {
      display: none;
    }
  }
  @media (max-width: 760px) {
    body.page-ch .nav-cta {
      padding: 8px 16px;
      font-size: 10px;
    }
  }
  body.page-ch .floating-contacts {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    &.visible {
      opacity: 1;
      pointer-events: auto;
    }
  }
  body.page-ch .fc-item {
    position: relative;
    width: 44px;
    height: 44px;
    background: var(--red);
    border: 1px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(200,16,46,0.25);
    padding: 0;
    &:hover {
      background: var(--ink);
      border-color: var(--ink);
      transform: scale(1.08);
      box-shadow: 0 4px 14px rgba(0,0,0,0.35);
    }
    & svg {
      width: 18px;
      height: 18px;
      fill: #fff;
      transition: fill 0.25s;
    }
  }
  body.page-ch .fc-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--ink);
    color: #fff;
    font-family: var(--f-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 6px 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
  }
  body.page-ch .fc-item:hover .fc-tooltip {
    opacity: 1;
  }
  body.page-ch .fc-wechat-pop {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--ink);
    color: #fff;
    padding: 12px 18px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
    font-family: var(--f-body);
  }
  body.page-ch .fc-wechat.active .fc-wechat-pop {
    opacity: 1;
    pointer-events: auto;
  }
  body.page-ch .fc-wechat.active .fc-tooltip {
    opacity: 0 !important;
  }
  body.page-ch .fc-wechat-pop .label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
  }
  body.page-ch .fc-wechat-pop .id {
    font-family: var(--f-display);
    font-size: 16px;
    font-weight: 400;
  }
  @media (max-width: 760px) {
    body.page-ch .floating-contacts {
      flex-direction: row;
      bottom: 18px;
      top: auto;
      right: 50%;
      transform: translateX(50%);
    }
  }
  body.page-ch .hero-block {
    background: var(--red);
    color: #fff;
    position: relative;
  }
  body.page-ch .hero {
    min-height: 80svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 112px var(--pad) 96px;
    max-width: var(--max);
    margin: 0 auto;
  }
  body.page-ch .hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    position: relative;
    padding-left: 50px;
    opacity: 0;
    animation: ch-fadeIn 0.6s ease 0.2s forwards;
    &::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      width: 36px;
      height: 1px;
      background: #fff;
    }
  }
  body.page-ch .hero-panel {
    position: relative;
    margin-bottom: 32px;
    &.zh-panel {
    }
    &.en-panel {
      margin-top: 4px;
      padding-top: 28px;
      border-top: 1px solid rgba(255,255,255,0.25);
      max-width: 40ch;
    }
  }
  body.page-ch .zh-line {
    font-family: var(--f-zh);
    font-weight: 400;
    font-size: clamp(34px, 5.4vw, 84px);
    line-height: 1.12;
    letter-spacing: -0.005em;
    color: #fff;
    display: block;
    opacity: 0;
    &.line-emph {
      font-weight: 700;
      color: var(--ink);
    }
    &.line-tagline {
      font-family: var(--f-zh);
      font-weight: 500;
      font-size: clamp(20px, 2.8vw, 38px);
      letter-spacing: 0.06em;
      margin-top: 22px;
      color: #fff;
    }
  }
  body.page-ch .en-line {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(19px, 2vw, 26px);
    line-height: 1.35;
    letter-spacing: -0.005em;
    color: rgba(255,255,255,0.88);
    display: block;
    opacity: 0;
    &.line-emph {
      font-style: italic;
      color: var(--ink);
    }
    &.line-tagline {
      font-style: italic;
      color: #fff;
      margin-top: 12px;
      font-size: clamp(15px, 1.55vw, 20px);
    }
  }
  body.page-ch .zh-line.m1, body.page-ch .en-line.m1 {
    animation: ch-floatDown 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
  }
  body.page-ch .zh-line.m2, body.page-ch .en-line.m2 {
    animation: ch-floatDown 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.0s forwards;
  }
  body.page-ch .zh-line.m3, body.page-ch .en-line.m3 {
    animation: ch-floatDown 0.9s cubic-bezier(0.16, 1, 0.3, 1) 2.0s forwards;
  }
  body.page-ch .hero-headline {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(36px, 5.5vw, 88px);
    line-height: 1.02;
    letter-spacing: -0.022em;
    max-width: 20ch;
    margin-bottom: 38px;
    color: #fff;
    min-height: 2.2em;
    & .line-1 {
      display: block;
      opacity: 0;
      animation: ch-floatDown 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    }
    & .line-2 {
      display: block;
      font-style: italic;
      color: var(--ink);
      opacity: 0;
      animation: ch-floatDown 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.0s forwards;
    }
  }
  body.page-ch .hero-shorthand {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(20px, 2.4vw, 32px);
    line-height: 1.3;
    color: #fff;
    letter-spacing: -0.005em;
    opacity: 0;
    animation: ch-floatDown 0.9s cubic-bezier(0.16, 1, 0.3, 1) 2.0s forwards;
  }
  body.page-ch .section-wrap {
    position: relative;
    &.light {
      background: var(--paper);
      color: var(--ink);
    }
    &.dark {
      background: var(--ink);
      color: var(--paper);
    }
    &.red {
      background: var(--red);
      color: #fff;
    }
  }
  body.page-ch .section {
    padding: var(--gap) var(--pad);
    max-width: var(--max);
    margin: 0 auto;
  }
  body.page-ch .section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 24px;
    &::before {
      content: '';
      display: block;
      width: 22px;
      height: 1px;
      background: var(--red);
    }
  }
  body.page-ch .dark .section-label, body.page-ch .red .section-label {
    color: #fff;
  }
  body.page-ch .dark .section-label::before, body.page-ch .red .section-label::before {
    background: #fff;
  }
  body.page-ch .section-heading {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
    & em {
      font-style: italic;
      color: var(--red);
    }
  }
  body.page-ch .dark .section-heading em, body.page-ch .red .section-heading em {
    color: #fff;
  }
  body.page-ch .section-sub {
    font-size: clamp(15px, 1.3vw, 17px);
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    max-width: 720px;
    margin-bottom: 64px;
  }
  body.page-ch .dark .section-sub {
    color: rgba(255,255,255,0.65);
  }
  body.page-ch .red .section-sub {
    color: rgba(255,255,255,0.85);
  }
  body.page-ch .flow {
    display: grid;
    grid-template-columns: 1fr 56px 1fr 56px 1fr;
    gap: 0;
    align-items: stretch;
  }
  @media (max-width: 960px) {
    body.page-ch .flow {
      grid-template-columns: 1fr;
    }
  }
  body.page-ch .flow-card {
    background: var(--paper);
    border: 1px solid var(--ink);
    padding: 38px 32px 36px;
    display: flex;
    flex-direction: column;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    &:hover {
      background: var(--red-tint);
      transform: translateY(-4px);
      box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    }
  }
  body.page-ch .flow-card-num {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 15px;
    color: var(--red);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
  }
  body.page-ch .flow-card-title {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 20px;
    min-height: 2.2em;
    & em {
      font-style: italic;
      color: var(--red);
    }
  }
  body.page-ch .flow-card-rule {
    width: 32px;
    height: 2px;
    background: var(--red);
    margin-bottom: 20px;
  }
  body.page-ch .flow-card-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    & li {
      font-size: 13px;
      font-weight: 300;
      color: var(--ink);
      line-height: 1.6;
      padding: 10px 0 10px 22px;
      border-bottom: 1px solid var(--rule);
      position: relative;
      &:last-child {
        border-bottom: none;
      }
      &::before {
        content: '';
        position: absolute;
        left: 0;
        top: 19px;
        width: 8px;
        height: 1px;
        background: var(--red);
      }
    }
  }
  body.page-ch .flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-display);
    font-style: italic;
    font-size: 52px;
    color: var(--red);
    line-height: 1;
    user-select: none;
    & span {
      display: inline-block;
      animation: ch-arrowPulse 2.5s ease-in-out infinite;
    }
    &:nth-of-type(4) span {
      animation-delay: 0.4s;
    }
  }
  @media (max-width: 960px) {
    body.page-ch .flow-arrow {
      padding: 24px 0;
      font-size: 44px;
      transform: rotate(90deg);
    }
  }
  body.page-ch .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 64px;
    align-items: center;
  }
  @media (max-width: 880px) {
    body.page-ch .about-grid {
      grid-template-columns: 1fr;
      gap: 48px;
    }
  }
  body.page-ch .carousel {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #1a1a1a;
    overflow: hidden;
    &::before {
      content: '';
      position: absolute;
      top: -10px;
      left: -10px;
      width: 50px;
      height: 50px;
      border-top: 2px solid var(--red);
      border-left: 2px solid var(--red);
      z-index: 4;
      pointer-events: none;
    }
    &::after {
      content: '';
      position: absolute;
      bottom: -10px;
      right: -10px;
      width: 50px;
      height: 50px;
      border-bottom: 2px solid var(--red);
      border-right: 2px solid var(--red);
      z-index: 4;
      pointer-events: none;
    }
  }
  body.page-ch .carousel-track {
    position: absolute;
    inset: 0;
  }
  body.page-ch .carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    &.active {
      opacity: 1;
    }
    & img {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
    }
  }
  body.page-ch .carousel-progress {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
  }
  body.page-ch .carousel-dot {
    width: 24px;
    height: 2px;
    background: rgba(255,255,255,0.3);
    transition: background 0.3s, width 0.3s;
    border: none;
    padding: 0;
    cursor: pointer;
    &:hover {
      background: rgba(255,255,255,0.6);
    }
    &.active {
      background: var(--red);
      width: 32px;
    }
  }
  body.page-ch .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s, background 0.25s, border-color 0.25s;
    z-index: 5;
    color: #fff;
    font-family: var(--f-display);
    font-style: italic;
    font-size: 18px;
    padding: 0;
    line-height: 1;
  }
  body.page-ch .carousel:hover .carousel-nav {
    opacity: 1;
  }
  body.page-ch .carousel-nav:hover {
    background: var(--red);
    border-color: var(--red);
  }
  body.page-ch .carousel-nav.prev {
    left: 12px;
  }
  body.page-ch .carousel-nav.next {
    right: 12px;
  }
  @media (max-width: 760px) {
    body.page-ch .carousel-nav {
      opacity: 1;
      width: 32px;
      height: 32px;
      font-size: 16px;
    }
  }
  body.page-ch .about-langs {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    flex-wrap: wrap;
  }
  body.page-ch .lang-pill {
    font-family: var(--f-display);
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    padding: 5px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    letter-spacing: 0.04em;
    & em {
      font-style: italic;
      color: var(--red);
      margin-right: 4px;
      font-weight: 500;
    }
  }
  body.page-ch .about-content .signature {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 13px;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
  }
  body.page-ch .about-lead {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(24px, 2.6vw, 34px);
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
    color: #fff;
    & em {
      font-style: italic;
      color: #fff;
    }
  }
  body.page-ch .about-body {
    font-size: 14.5px;
    font-weight: 300;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    margin-bottom: 18px;
    & strong {
      font-weight: 500;
      color: #fff;
    }
  }
  body.page-ch .coaching-callout {
    margin-top: 36px;
    padding: 26px 30px;
    background: var(--red);
    color: #fff;
    border-radius: 14px;
    position: relative;
  }
  body.page-ch .coaching-callout-eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.85;
    margin-bottom: 10px;
  }
  body.page-ch .coaching-callout p {
    font-family: var(--f-zh);
    font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #fff;
    & em {
      font-weight: 600;
    }
  }
  body.page-ch .coaching-callout a.cc-link {
    display: inline-block;
    margin-top: 14px;
    font-family: var(--f-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 1px solid #fff;
    padding-bottom: 2px;
    transition: opacity 0.2s, padding-right 0.25s;
    &:hover {
      opacity: 0.85;
      padding-right: 8px;
    }
  }
  body.page-ch .steps {
    border-top: 1px solid var(--ink);
  }
  body.page-ch .step {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 28px;
    padding: 30px 0;
    border-bottom: 1px solid var(--rule);
    align-items: baseline;
    transition: padding-left 0.3s, background 0.3s;
    &:hover {
      padding-left: 14px;
      background: var(--red-tint);
    }
  }
  @media (max-width: 640px) {
    body.page-ch .step {
      grid-template-columns: 50px 1fr;
      gap: 18px;
      padding: 24px 0;
    }
  }
  body.page-ch .step-num {
    font-family: var(--f-display);
    font-style: italic;
    font-size: clamp(26px, 2.8vw, 36px);
    font-weight: 400;
    color: var(--red);
    line-height: 1;
  }
  body.page-ch .step-title {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(19px, 1.8vw, 24px);
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 8px;
    & em {
      font-style: italic;
      color: var(--red);
    }
  }
  body.page-ch .step-title-tag {
    font-family: var(--f-body);
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-left: 10px;
    padding: 3px 9px;
    border: 1px solid var(--red);
    vertical-align: middle;
    position: relative;
    top: -3px;
  }
  body.page-ch .step-body {
    font-size: 13.5px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    max-width: 60ch;
  }
  body.page-ch .retainer-note {
    margin-top: 48px;
    padding: 28px 32px;
    background: var(--red);
    color: #fff;
    & p {
      font-family: var(--f-display);
      font-style: italic;
      font-size: clamp(15px, 1.4vw, 18px);
      font-weight: 400;
      line-height: 1.55;
      letter-spacing: 0.01em;
      color: #fff;
    }
  }
  body.page-ch .trusted {
    text-align: center;
    padding: clamp(56px, 8vw, 90px) var(--pad);
    max-width: var(--max);
    margin: 0 auto;
  }
  body.page-ch .trusted-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }
  body.page-ch .trusted-label::before, body.page-ch .trusted-label::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--red);
  }
  body.page-ch .trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(60px, 12vw, 140px);
    flex-wrap: wrap;
  }
  body.page-ch .trusted-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 32px;
    transition: transform 0.4s;
    &:hover {
      transform: scale(1.05);
    }
    & img {
      width: auto;
      object-fit: contain;
    }
    &.cipp img {
      height: 175px;
    }
    &.cdv img {
      height: 153px;
    }
  }
  @media (max-width: 720px) {
    body.page-ch .trusted-logo {
      padding: 16px 20px;
      &.cipp img {
        height: 125px;
      }
      &.cdv img {
        height: 110px;
      }
    }
  }
  body.page-ch .contact-wrap {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  @media (max-width: 880px) {
    body.page-ch .contact-wrap {
      grid-template-columns: 1fr;
      gap: 48px;
    }
  }
  body.page-ch .contact-headline {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(36px, 4.8vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 28px;
    color: #fff;
    & em {
      font-style: italic;
      color: var(--red);
    }
  }
  body.page-ch .contact-note {
    font-size: 14.5px;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 460px;
  }
  body.page-ch .connect-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--red);
    color: #fff;
    font-family: var(--f-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 18px 36px;
    transition: background 0.25s, transform 0.25s, gap 0.25s;
    &:hover {
      background: #fff;
      color: var(--red);
      transform: translateY(-2px);
      gap: 20px;
    }
  }
  body.page-ch .connect-btn-arrow {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 18px;
    letter-spacing: 0;
  }
  body.page-ch .contact-zh {
    padding: 40px;
    background: var(--red);
    color: #fff;
    position: relative;
    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: #fff;
    }
  }
  body.page-ch .czh-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
    opacity: 0.85;
  }
  body.page-ch .czh-text {
    font-size: 14px;
    color: #fff;
    line-height: 1.85;
    letter-spacing: 0.02em;
    font-weight: 300;
    & + .czh-text {
      margin-top: 12px;
    }
    & strong {
      font-weight: 600;
      color: #fff;
      border-bottom: 1px solid #fff;
      padding-bottom: 1px;
    }
  }
  body.page-ch .czh-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    margin-top: 18px;
    letter-spacing: 0.06em;
    font-weight: 500;
  }
  body.page-ch .form-section-wrap {
    background: var(--red);
    padding: clamp(64px, 9vw, 96px) var(--pad);
  }
  body.page-ch .form-section {
    max-width: 720px;
    margin: 0 auto;
    background: var(--paper);
    border-radius: 24px;
    padding: clamp(40px, 5vw, 56px) clamp(28px, 4vw, 48px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  }
  body.page-ch .form-intro {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
  }
  body.page-ch .form-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 14px;
    &::before {
      content: '';
      display: block;
      width: 22px;
      height: 1px;
      background: var(--red);
    }
  }
  body.page-ch .form-headline {
    font-family: var(--f-zh);
    font-weight: 500;
    font-size: clamp(26px, 3.4vw, 40px);
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: var(--ink);
    & em {
      font-style: normal;
      color: var(--red);
    }
  }
  body.page-ch .form-note {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    font-family: var(--f-zh);
  }
  body.page-ch .contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 28px;
  }
  body.page-ch .form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    &.full {
      grid-column: 1 / -1;
    }
  }
  body.page-ch .form-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--ink);
    font-family: var(--f-zh);
    & .req {
      color: var(--red);
      margin-left: 4px;
    }
  }
  body.page-ch .form-field input, body.page-ch .form-field select, body.page-ch .form-field textarea {
    font-family: var(--f-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--ink);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--rule);
    padding: 8px 0 10px;
    outline: none;
    transition: border-color 0.25s;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
  }
  body.page-ch .form-field input:focus, body.page-ch .form-field select:focus, body.page-ch .form-field textarea:focus {
    border-bottom-color: var(--red);
  }
  body.page-ch .form-field textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.55;
    font-family: var(--f-zh);
  }
  body.page-ch .form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C8102E'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    background-size: 18px;
    cursor: pointer;
    padding-right: 28px;
    font-family: var(--f-zh);
  }
  body.page-ch .form-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
  }
  @media (max-width: 640px) {
    body.page-ch .form-checks {
      grid-template-columns: 1fr;
    }
  }
  body.page-ch .form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 3px 0;
    & input {
      width: 16px;
      height: 16px;
      accent-color: var(--red);
      cursor: pointer;
      appearance: auto;
      -webkit-appearance: auto;
      padding: 0;
    }
    & span {
      font-size: 13px;
      font-weight: 300;
      color: var(--ink);
      line-height: 1.4;
      font-family: var(--f-zh);
    }
  }
  body.page-ch .form-submit {
    grid-column: 1 / -1;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    & button {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      background: var(--ink);
      color: #fff;
      font-family: var(--f-zh);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.12em;
      padding: 17px 38px;
      border: none;
      cursor: pointer;
      border-radius: 999px;
      transition: background 0.25s, transform 0.25s, gap 0.25s;
      &:hover {
        background: var(--red);
        transform: translateY(-2px);
        gap: 20px;
      }
      & .arrow {
        font-family: var(--f-display);
        font-style: italic;
        font-size: 18px;
      }
    }
  }
  body.page-ch .form-status {
    font-size: 12.5px;
    color: var(--muted);
    font-style: italic;
    font-family: var(--f-zh);
    &.success {
      color: var(--red);
      font-weight: 500;
    }
    &.error {
      color: #B00020;
    }
  }
  @media (max-width: 720px) {
    body.page-ch .contact-form {
      grid-template-columns: 1fr;
      gap: 22px;
    }
  }
  body.page-ch footer {
    border-top: 1px solid var(--rule);
    padding: 26px var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    flex-wrap: wrap;
    gap: 16px;
    & .f-red {
      color: var(--red);
    }
  }
  body.page-ch .js-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    &.visible {
      opacity: 1;
      transform: translateY(0);
    }
  }
  body.page-ch hr.ruled {
    border: none;
    border-top: 1px solid var(--rule);
    margin: 0;
  }

  /* ===== page-coaching ===== */
  @keyframes cg-fadeIn { to { opacity: 1; } }
  @keyframes cg-floatDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); } }
  body.page-coaching {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--f-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    & a {
      color: inherit;
      text-decoration: none;
      transition: color 0.2s;
    }
  }
  body.page-coaching ul, body.page-coaching ol {
    list-style: none;
  }
  body.page-coaching::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.025 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
  }
  body.page-coaching nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px var(--pad);
    background: rgba(162,213,220,0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(12,12,12,0.08);
    transition: background 0.4s, border-color 0.4s;
    &.scrolled {
      background: rgba(250,247,242,0.88);
    }
  }
  body.page-coaching .nav-mark {
    display: flex;
    align-items: center;
    gap: 11px;
  }
  body.page-coaching .nav-dot {
    width: 8px;
    height: 8px;
    background: var(--aqua-deep);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(123,183,194,0.18);
  }
  body.page-coaching .nav-name {
    font-family: var(--f-display);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: var(--ink);
  }
  body.page-coaching .nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    & a {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      &:hover {
        color: var(--aqua-deep);
      }
      &.active {
        color: var(--ink);
        position: relative;
        &::after {
          content: '';
          position: absolute;
          left: 0;
          right: 0;
          bottom: -6px;
          height: 1px;
          background: var(--aqua-deep);
        }
      }
    }
  }
  body.page-coaching .nav-cta {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    border: 1px solid var(--ink);
    padding: 9px 22px;
    transition: background 0.2s, color 0.2s;
    &:hover {
      background: var(--ink);
      color: var(--paper);
    }
  }
  body.page-coaching .nav-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    & svg {
      width: 22px;
      height: 22px;
      fill: var(--ink);
      display: block;
    }
  }
  @media (max-width: 880px) {
    body.page-coaching .nav-links {
      display: none;
    }
    body.page-coaching .nav-menu-btn {
      display: inline-flex;
    }
  }
  body.page-coaching .mobile-drawer {
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px var(--pad);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    &.open {
      opacity: 1;
      pointer-events: auto;
    }
    & .md-link {
      font-family: var(--f-display);
      font-size: clamp(30px, 6vw, 52px);
      font-weight: 400;
      letter-spacing: -0.02em;
      color: #fff;
      padding: 10px 0;
      display: block;
      &:hover {
        color: var(--aqua);
      }
      &.italic {
        font-style: italic;
      }
    }
    & .md-close {
      position: absolute;
      top: 22px;
      right: var(--pad);
      background: transparent;
      border: none;
      color: #fff;
      cursor: pointer;
      padding: 8px;
      & svg {
        width: 22px;
        height: 22px;
        fill: #fff;
      }
    }
  }
  body.page-coaching .hero-block {
    background: var(--aqua);
    position: relative;
  }
  body.page-coaching .hero {
    min-height: 68svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 132px var(--pad) 96px;
    max-width: var(--max);
    margin: 0 auto;
  }
  body.page-coaching .hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 40px;
    position: relative;
    padding-left: 50px;
    opacity: 0;
    animation: cg-fadeIn 0.6s ease 0.2s forwards;
    &::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      width: 36px;
      height: 1px;
      background: var(--ink);
    }
  }
  body.page-coaching .hero-headline {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(34px, 5.2vw, 76px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
    max-width: 22ch;
    margin-bottom: 38px;
    & .line-1 {
      display: block;
      color: #fff;
      font-weight: 400;
      opacity: 0;
      animation: cg-floatDown 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    }
    & .line-2 {
      display: block;
      font-style: italic;
      font-weight: 400;
      color: var(--ink);
      opacity: 0;
      animation: cg-floatDown 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.0s forwards;
    }
  }
  body.page-coaching .hero-tagline {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(20px, 2.2vw, 30px);
    line-height: 1.3;
    color: var(--ink);
    letter-spacing: -0.005em;
    opacity: 0;
    animation: cg-floatDown 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.8s forwards;
    & .ti-1 {
      color: var(--ink);
      font-weight: 400;
      font-style: italic;
    }
    & .ti-2 {
      color: #fff;
      font-weight: 400;
      font-style: italic;
      opacity: 1;
    }
  }
  body.page-coaching .section-wrap {
    position: relative;
    &.paper {
      background: var(--paper);
    }
    &.paper-2 {
      background: var(--paper-2);
    }
    &.aqua-bg {
      background: var(--aqua-bg);
    }
    &.white {
      background: #fff;
    }
  }
  body.page-coaching .section {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(80px, 11vw, 130px) var(--pad);
  }
  body.page-coaching .section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--aqua-deep);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    &::before {
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background: var(--aqua-deep);
    }
  }
  body.page-coaching .section-heading {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(34px, 4.4vw, 60px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--ink);
    max-width: 22ch;
    margin-bottom: 26px;
    & em {
      font-style: italic;
      color: var(--aqua-deep);
    }
  }
  body.page-coaching .section-sub {
    font-size: 16px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.65;
    max-width: 60ch;
    margin-bottom: 56px;
  }
  body.page-coaching .flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 24px;
    align-items: stretch;
    margin-top: 48px;
  }
  body.page-coaching .flow-card {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
  }
  body.page-coaching .flow-card-num {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.22em;
    color: var(--aqua-deep);
    margin-bottom: 14px;
    text-transform: uppercase;
  }
  body.page-coaching .flow-card-title {
    font-family: var(--f-display);
    font-size: clamp(24px, 2.4vw, 30px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 14px;
    color: var(--ink);
    & em {
      font-style: italic;
    }
  }
  body.page-coaching .flow-card-rule {
    width: 24px;
    height: 1px;
    background: var(--aqua-deep);
    margin-bottom: 18px;
  }
  body.page-coaching .flow-card-body {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.65;
  }
  body.page-coaching .flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--aqua-deep);
    font-family: var(--f-display);
    font-style: italic;
    font-size: 28px;
    font-weight: 400;
    user-select: none;
  }
  @media (max-width: 880px) {
    body.page-coaching .flow {
      grid-template-columns: 1fr;
      gap: 12px;
    }
    body.page-coaching .flow-arrow {
      transform: rotate(90deg);
      margin: 6px auto;
      font-size: 22px;
    }
  }
  body.page-coaching .arch-intro {
    max-width: 60ch;
  }
  body.page-coaching .arch-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 56px;
  }
  @media (max-width: 1080px) {
    body.page-coaching .arch-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media (max-width: 720px) {
    body.page-coaching .arch-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }
  }
  @media (max-width: 480px) {
    body.page-coaching .arch-grid {
      grid-template-columns: 1fr;
    }
  }
  body.page-coaching .arch-card {
    background: var(--aqua-bg);
    border: 1px solid rgba(123,183,194,0.2);
    border-radius: 14px;
    padding: 32px 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
    &:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(123,183,194,0.18);
      border-color: var(--aqua-deep);
    }
  }
  body.page-coaching .arch-roman {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.22em;
    color: var(--aqua-deep);
    text-transform: uppercase;
  }
  body.page-coaching .arch-name {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
  }
  body.page-coaching .arch-rule {
    width: 22px;
    height: 1px;
    background: var(--aqua-deep);
    margin: 4px auto;
  }
  body.page-coaching .arch-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.55;
  }
  body.page-coaching .work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 24px;
  }
  @media (max-width: 880px) {
    body.page-coaching .work-grid {
      grid-template-columns: 1fr;
    }
  }
  body.page-coaching .work-card {
    background: #fff;
    border-radius: 14px;
    padding: 36px 32px;
    border: 1px solid var(--rule);
  }
  body.page-coaching .work-icon-num {
    font-family: var(--f-display);
    font-size: 32px;
    font-style: italic;
    color: var(--aqua-deep);
    margin-bottom: 14px;
  }
  body.page-coaching .work-title {
    font-family: var(--f-display);
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 18px;
    color: var(--ink);
  }
  body.page-coaching .work-bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
    & li {
      font-size: 14px;
      font-weight: 300;
      color: var(--ink);
      line-height: 1.55;
      padding-left: 16px;
      position: relative;
      &::before {
        content: '';
        position: absolute;
        left: 0;
        top: 9px;
        width: 6px;
        height: 1px;
        background: var(--aqua-deep);
      }
    }
  }
  body.page-coaching .aud-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 36px;
    margin-top: 24px;
  }
  @media (max-width: 720px) {
    body.page-coaching .aud-list {
      grid-template-columns: 1fr;
    }
  }
  body.page-coaching .aud-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--rule);
    display: flex;
    align-items: baseline;
    gap: 14px;
  }
  body.page-coaching .aud-num {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 13px;
    color: var(--aqua-deep);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    flex-shrink: 0;
    width: 64px;
    text-align: center;
    white-space: nowrap;
  }
  body.page-coaching .aud-text {
    font-size: 15px;
    font-weight: 300;
    color: var(--ink);
    line-height: 1.55;
    & strong {
      font-weight: 500;
    }
  }
  body.page-coaching .how-wrap {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    margin-top: 24px;
  }
  @media (max-width: 880px) {
    body.page-coaching .how-wrap {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  }
  body.page-coaching .how-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  body.page-coaching .how-item {
    display: flex;
    gap: 22px;
  }
  body.page-coaching .how-num {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 20px;
    color: var(--aqua-deep);
    flex-shrink: 0;
    min-width: 28px;
  }
  body.page-coaching .how-body {
    font-size: 15px;
    font-weight: 300;
    color: var(--ink);
    line-height: 1.6;
    & strong {
      font-weight: 500;
    }
  }
  body.page-coaching .price-panel {
    background: #fff;
    border-radius: 18px;
    padding: 40px 36px;
    border: 1px solid var(--rule);
    align-self: start;
  }
  body.page-coaching .price-eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--aqua-deep);
    margin-bottom: 16px;
  }
  body.page-coaching .price-amount {
    font-family: var(--f-display);
    font-size: 56px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 8px;
    & .from {
      font-family: var(--f-display);
      font-style: italic;
      font-size: 18px;
      color: var(--muted);
      vertical-align: super;
      margin-right: 4px;
    }
    & .unit {
      font-family: var(--f-body);
      font-size: 14px;
      font-weight: 400;
      color: var(--muted);
      margin-left: 6px;
    }
  }
  body.page-coaching .price-divider {
    width: 28px;
    height: 1px;
    background: var(--aqua-deep);
    margin: 22px 0;
  }
  body.page-coaching .price-note {
    font-size: 13.5px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 6px;
    & strong {
      font-weight: 500;
      color: var(--ink);
    }
  }
  body.page-coaching .intro-callout {
    margin-top: 56px;
    padding: 26px 32px;
    background: var(--aqua);
    color: var(--ink);
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 760px;
  }
  body.page-coaching .intro-callout-icon {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 22px;
    color: var(--ink);
    opacity: 0.6;
    flex-shrink: 0;
  }
  body.page-coaching .intro-callout p {
    font-family: var(--f-display);
    font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: var(--ink);
    & em {
      font-style: italic;
    }
  }
  body.page-coaching .form-section-wrap {
    background: var(--aqua-bg);
    padding: clamp(64px, 9vw, 96px) var(--pad);
  }
  body.page-coaching .form-section {
    max-width: 640px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    padding: clamp(40px, 5vw, 56px) clamp(28px, 4vw, 48px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  }
  body.page-coaching .form-intro {
    margin-bottom: 36px;
  }
  body.page-coaching .form-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--aqua-deep);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    &::before {
      content: '';
      display: block;
      width: 22px;
      height: 1px;
      background: var(--aqua-deep);
    }
  }
  body.page-coaching .form-headline {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 12px;
    & em {
      font-style: italic;
      color: var(--aqua-deep);
    }
  }
  body.page-coaching .form-note {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.65;
  }
  body.page-coaching .coach-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  body.page-coaching .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  @media (max-width: 540px) {
    body.page-coaching .form-row {
      grid-template-columns: 1fr;
    }
  }
  body.page-coaching .form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  body.page-coaching .form-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    & .req {
      color: var(--aqua-deep);
      margin-left: 4px;
    }
  }
  body.page-coaching .form-label .opt {
    color: var(--muted);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    font-size: 11px;
    margin-left: 6px;
  }
  body.page-coaching .form-field input, body.page-coaching .form-field select, body.page-coaching .form-field textarea {
    font-family: var(--f-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--ink);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--rule);
    padding: 8px 0 10px;
    outline: none;
    transition: border-color 0.25s;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
  }
  body.page-coaching .form-field input:focus, body.page-coaching .form-field select:focus, body.page-coaching .form-field textarea:focus {
    border-bottom-color: var(--aqua-deep);
  }
  body.page-coaching .form-field textarea {
    resize: vertical;
    min-height: 84px;
    line-height: 1.55;
  }
  body.page-coaching .form-field textarea::placeholder {
    color: var(--muted);
  }
  body.page-coaching .form-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
    margin-top: 4px;
  }
  @media (max-width: 640px) {
    body.page-coaching .form-checks {
      grid-template-columns: 1fr;
    }
  }
  body.page-coaching .form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 3px 0;
    & input {
      width: 16px;
      height: 16px;
      border: 1px solid var(--rule);
      background: var(--paper);
      accent-color: var(--aqua-deep);
      cursor: pointer;
      appearance: auto;
      -webkit-appearance: auto;
      padding: 0;
    }
    & span {
      font-size: 13px;
      font-weight: 300;
      color: var(--ink);
      line-height: 1.4;
    }
  }
  body.page-coaching .booking-embed-placeholder {
    margin-top: 40px;
    border: 1px dashed var(--aqua-deep);
    border-radius: 14px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    color: var(--muted);
    & .hint { font-size: 13px; }
  }
  body.page-coaching .book-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    background: var(--ink);
    color: #fff;
    font-family: var(--f-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 16px 36px;
    transition: background 0.25s;
    &:hover { background: var(--aqua-navy); }
  }
  body.page-coaching .booking-back {
    margin-top: 32px;
    & a { color: var(--aqua-deep); }
  }
  body.page-coaching .audit-section-label {
    font-family: var(--f-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--aqua-deep);
    border-top: 1px solid var(--rule);
    padding-top: 22px;
    margin-top: 4px;
    & .opt {
      color: var(--muted);
      font-weight: 400;
      letter-spacing: 0;
      text-transform: none;
      font-size: 11px;
      margin-left: 6px;
    }
    &.flush {
      border-top: none;
      padding-top: 0;
      margin-top: 0;
    }
  }
  body.page-coaching .swot-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  body.page-coaching .swot-cell {
    border-radius: 14px;
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  body.page-coaching .swot-head {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    & .req { color: currentColor; opacity: 0.65; }
  }
  body.page-coaching .swot-sub {
    font-size: 11px;
    font-style: italic;
    color: var(--muted);
    margin-top: -4px;
  }
  body.page-coaching .swot-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
  }
  body.page-coaching .swot-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  body.page-coaching .swot-item input {
    width: 100%;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(12, 12, 12, 0.07);
    border-radius: 8px;
    padding: 8px 11px;
    font-family: var(--f-body);
    font-size: 12.5px;
    font-weight: 300;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s;
    &:focus { border-color: rgba(12, 12, 12, 0.24); }
    &::placeholder { color: var(--muted); }
  }
  body.page-coaching .swot-item .swot-action {
    margin-left: 16px;
    width: calc(100% - 16px);
    background: rgba(255, 255, 255, 0.45);
  }
  body.page-coaching .swot-s { background: #E6F2E9; & .swot-head { color: #3F7A54; } }
  body.page-coaching .swot-w { background: #FBF2D4; & .swot-head { color: #927420; } }
  body.page-coaching .swot-o { background: #EDE5F6; & .swot-head { color: #6B4E97; } }
  body.page-coaching .swot-t { background: #F9E3E3; & .swot-head { color: #A84C4C; } }
  body.page-coaching .scale-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  body.page-coaching .scale-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px 20px;
    flex-wrap: wrap;
  }
  body.page-coaching .scale-label {
    font-size: 14px;
    color: var(--ink);
  }
  body.page-coaching .scale {
    display: inline-flex;
    border: 1px solid var(--rule);
    border-radius: 999px;
    overflow: hidden;
  }
  body.page-coaching .scale input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }
  body.page-coaching .scale label {
    min-width: 42px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--rule);
    font-size: 13px;
    color: var(--ink);
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    &:first-of-type { border-left: none; }
    &:hover { background: var(--aqua-bg); }
  }
  body.page-coaching .scale input:checked + label {
    background: var(--aqua-deep);
    color: #fff;
  }
  body.page-coaching .scale input:focus-visible + label {
    outline: 2px solid var(--aqua-navy);
    outline-offset: -2px;
  }
  body.page-coaching .form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%237BB7C2'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    background-size: 18px;
    cursor: pointer;
    padding-right: 28px;
  }
  body.page-coaching .form-submit {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    & button {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      background: var(--ink);
      color: #fff;
      font-family: var(--f-body);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      padding: 16px 36px;
      border: none;
      cursor: pointer;
      border-radius: 999px;
      transition: background 0.25s, transform 0.25s, gap 0.25s;
      &:hover {
        background: var(--aqua-deep);
        transform: translateY(-2px);
        gap: 20px;
      }
      & .arrow {
        font-family: var(--f-display);
        font-style: italic;
        font-size: 18px;
      }
    }
  }
  body.page-coaching .form-status {
    font-size: 12.5px;
    color: var(--muted);
    font-style: italic;
    &.success {
      color: var(--aqua-deep);
      font-weight: 500;
    }
    &.error {
      color: #B00020;
    }
  }
  body.page-coaching footer {
    background: var(--paper);
    border-top: 1px solid var(--rule);
    padding: 48px var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    flex-wrap: wrap;
    gap: 20px;
    & .f-aqua {
      color: var(--aqua-deep);
    }
    & a {
      color: var(--muted);
      transition: color 0.2s;
      &:hover {
        color: var(--aqua-deep);
      }
    }
    & .f-row-right {
      display: flex;
      align-items: center;
      gap: 24px;
    }
  }
  body.page-coaching .js-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    &.in-view {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ===== page-privacy ===== */
  body.page-privacy {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--f-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    & a {
      color: var(--red);
      text-decoration: none;
      transition: opacity 0.2s;
      &:hover {
        opacity: 0.7;
      }
    }
    &::after {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.03 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.5;
    }
    & nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px var(--pad);
      background: rgba(255,255,255,0.88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--rule);
    }
    & .nav-mark {
      display: flex;
      align-items: center;
      gap: 11px;
    }
    & .nav-dot {
      width: 8px;
      height: 8px;
      background: var(--red);
      border-radius: 50%;
      box-shadow: 0 0 0 3px rgba(200,16,46,0.15);
    }
    & .nav-name {
      font-family: var(--f-display);
      font-size: 18px;
      font-weight: 400;
      letter-spacing: 0.01em;
      color: var(--ink);
    }
    & .nav-back {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--red);
      border: 1px solid var(--red);
      padding: 9px 22px;
      transition: background 0.2s, color 0.2s;
      &:hover {
        background: var(--red);
        color: #fff;
        opacity: 1;
      }
    }
    & main {
      max-width: 760px;
      margin: 0 auto;
      padding: 140px var(--pad) 96px;
    }
    & .eyebrow {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 24px;
      &::before {
        content: '';
        display: block;
        width: 24px;
        height: 1px;
        background: var(--red);
      }
    }
    & h1 {
      font-family: var(--f-display);
      font-weight: 400;
      font-size: clamp(40px, 5.5vw, 68px);
      line-height: 1.05;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
      & em {
        font-style: italic;
        color: var(--red);
      }
    }
    & .updated {
      font-family: var(--f-display);
      font-style: italic;
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 56px;
    }
    & h2 {
      font-family: var(--f-display);
      font-weight: 400;
      font-size: clamp(22px, 2.4vw, 30px);
      line-height: 1.2;
      letter-spacing: -0.01em;
      margin: 48px 0 14px;
      color: var(--ink);
      &:first-of-type {
        margin-top: 0;
      }
    }
    & p {
      margin-bottom: 16px;
      color: var(--ink);
      max-width: 680px;
    }
    & ul {
      margin: 0 0 16px 0;
      padding-left: 20px;
      max-width: 680px;
      & li {
        margin-bottom: 8px;
        color: var(--ink);
        &::marker {
          color: var(--red);
        }
      }
    }
    & .contact-line {
      margin-top: 56px;
      padding-top: 32px;
      border-top: 1px solid var(--rule);
    }
    & footer {
      border-top: 1px solid var(--rule);
      padding: 32px var(--pad);
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
      flex-wrap: wrap;
      gap: 16px;
      & .f-red {
        color: var(--red);
      }
      & a {
        color: var(--muted);
        &:hover {
          color: var(--red);
          opacity: 1;
        }
      }
    }
  }
}
