    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --cream: #F5F2EC;
      --cream2: #EDE8DF;
      --cream3: #DDD6C8;
      --slate: #2C3E50;
      --slate2: #3D5166;
      --slate3: #5A7088;
      --gold: #B8965A;
      --gold2: #C8A96E;
      --gold3: #D9C090;
      --charcoal: #1E2B38;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--cream);
      color: var(--slate);
      font-weight: 300;
      font-size: 15px;
      line-height: 1.8;
    }

    h1, h2, h3, h4 {
      font-family: 'Cormorant Garamond', serif;
    }

    /* ── NAV ── */
    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 3rem;
      background: var(--cream);
      border-bottom: 1px solid var(--cream3);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
    }

    .logo-img {
      width: 54px;
      height: 54px;
      flex-shrink: 0;
    }

    .logo-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 400;
      letter-spacing: 0.12em;
      color: var(--slate);
      text-transform: uppercase;
      line-height: 1.1;
    }

    .logo-sub {
      font-family: 'Jost', sans-serif;
      font-size: 9.5px;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: 3px;
    }

    .nav-links {
      display: flex;
      gap: 2.25rem;
      list-style: none;
    }

    .nav-links a {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--slate3);
      text-decoration: none;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--slate); }

    .nav-cta {
      font-family: 'Jost', sans-serif;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--cream);
      background: var(--slate);
      border: none;
      padding: 10px 22px;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s;
    }

    .nav-cta:hover { background: var(--slate2); }

    /* ── HERO ── */
    .hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 520px;
    }

    .hero-left {
      background: var(--charcoal);
      padding: 6rem 4rem 6rem 3rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .eyebrow {
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold3);
      margin-bottom: 2rem;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .eyebrow::before {
      content: '';
      display: inline-block;
      width: 24px;
      height: 1px;
      background: var(--gold3);
    }

    .hero-left h1 {
      font-size: 54px;
      font-weight: 300;
      line-height: 1.08;
      color: var(--cream);
      margin-bottom: 1.75rem;
    }

    .hero-left h1 em {
      font-style: italic;
      color: var(--gold2);
    }

    .hero-kicker {
      display: block;
      font-family: 'Jost', sans-serif;
      font-style: normal;
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.02em;
      color: #96A8B8;
      margin-bottom: 0.75rem;
    }

    .hero-left p {
      font-size: 14px;
      font-weight: 300;
      color: #96A8B8;
      line-height: 1.9;
      margin-bottom: 2.5rem;
      max-width: 400px;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-primary {
      font-family: 'Jost', sans-serif;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--charcoal);
      background: var(--gold2);
      border: none;
      padding: 13px 28px;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s;
    }

    .btn-primary:hover { background: var(--gold3); }

    .btn-ghost {
      font-family: 'Jost', sans-serif;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--cream);
      background: transparent;
      border: 1px solid rgba(200, 169, 110, 0.4);
      padding: 13px 28px;
      cursor: pointer;
      text-decoration: none;
      transition: border-color 0.2s;
    }

    .btn-ghost:hover { border-color: rgba(200, 169, 110, 0.7); }

    .hero-right {
      background: var(--cream2);
      padding: 4rem 3rem 4rem 4rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .service-row {
      display: flex;
      align-items: flex-start;
      gap: 1.25rem;
      padding: 1.5rem 0;
      border-bottom: 1px solid var(--cream3);
    }

    .service-row:first-child { border-top: 1px solid var(--cream3); }

    .snum {
      font-family: 'Cormorant Garamond', serif;
      font-size: 13px;
      font-weight: 300;
      color: var(--gold);
      padding-top: 3px;
      min-width: 22px;
    }

    .service-row h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 400;
      color: var(--slate);
      margin-bottom: 3px;
    }

    .service-row p {
      font-size: 12px;
      font-weight: 300;
      color: var(--slate3);
      letter-spacing: 0.04em;
    }

    /* ── SHARED ── */
    section { padding: 5rem 3rem; }
    .inner { max-width: 1080px; margin: 0 auto; }

    .section-eyebrow {
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.75rem;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 42px;
      font-weight: 300;
      line-height: 1.15;
      color: var(--slate);
    }

    .section-title em { font-style: italic; }

    /* ── TESTING ── */
    .testing { background: var(--cream); }

    .section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 3.5rem;
      gap: 2rem;
    }

    .section-note {
      font-size: 12px;
      font-weight: 300;
      color: var(--slate3);
      letter-spacing: 0.05em;
      line-height: 1.8;
      max-width: 280px;
      text-align: right;
    }

    .test-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--cream3);
    }

    .test-card {
      background: var(--cream);
      padding: 2.75rem 2.25rem;
    }

    .tc-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 52px;
      font-weight: 300;
      color: var(--cream3);
      line-height: 1;
      margin-bottom: 1.5rem;
    }

    .test-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 400;
      color: var(--slate);
      margin-bottom: 0.75rem;
    }

    .test-card p {
      font-size: 13px;
      font-weight: 300;
      color: var(--slate3);
      line-height: 1.8;
    }

    .avail-bar {
      display: flex;
      background: var(--slate);
      margin-top: 4rem;
    }

    .ab-item {
      flex: 1;
      padding: 1.75rem 2.25rem;
      border-right: 1px solid rgba(255, 255, 255, 0.07);
    }

    .ab-item:last-child { border-right: none; }

    .ab-label {
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold2);
      margin-bottom: 0.5rem;
    }

    .ab-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 19px;
      font-weight: 300;
      color: var(--cream);
    }

    /* ── THERAPY ── */
    .therapy { background: var(--cream2); }

    .therapy-inner {
      max-width: 1080px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }

    .therapy-left p {
      font-size: 14px;
      font-weight: 300;
      color: var(--slate3);
      line-height: 1.9;
      margin-bottom: 1rem;
    }

    .therapy-list {
      list-style: none;
      margin-top: 1.5rem;
    }

    .therapy-list li {
      font-size: 13px;
      font-weight: 300;
      color: var(--slate3);
      padding: 0.7rem 0;
      border-bottom: 1px solid var(--cream3);
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .therapy-list li::before {
      content: '';
      width: 16px;
      height: 1px;
      background: var(--gold2);
      flex-shrink: 0;
    }

    .expect-card {
      background: var(--cream);
      padding: 2.75rem;
    }

    .expect-card h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 400;
      color: var(--slate);
      margin-bottom: 2rem;
    }

    .tl-row {
      display: flex;
      gap: 1.25rem;
      padding: 1.25rem 0;
      border-bottom: 1px solid var(--cream3);
    }

    .tl-row:last-child { border-bottom: none; }

    .tl-n {
      font-family: 'Cormorant Garamond', serif;
      font-size: 30px;
      font-weight: 300;
      color: var(--gold2);
      line-height: 1;
      min-width: 28px;
    }

    .tl-row p {
      font-size: 14px;
      font-weight: 400;
      color: var(--slate);
      margin-bottom: 3px;
    }

    .tl-row span {
      font-size: 12px;
      font-weight: 300;
      color: var(--slate3);
    }

    /* ── COURSES ── */
    .courses { background: var(--cream); }

    .course-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--cream3);
      margin-top: 3.5rem;
    }

    .course-card {
      background: var(--cream);
      padding: 3rem 2.75rem;
    }

    .cc-tag {
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--slate3);
      margin-bottom: 1.25rem;
    }

    .course-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 400;
      line-height: 1.2;
      color: var(--slate);
      margin-bottom: 1rem;
    }

    .course-card p {
      font-size: 13px;
      font-weight: 300;
      color: var(--slate3);
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    .cc-link {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .cc-link::after { content: '→'; font-size: 14px; }

    /* ── ABOUT ── */
    .about { background: var(--charcoal); }

    .about-inner {
      max-width: 1080px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 5rem;
      align-items: start;
    }

    .about-portrait {
      width: 220px;
      height: 290px;
      flex-shrink: 0;
      background: #253545;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      justify-content: center;
    }

    .about-text .section-eyebrow { color: var(--gold2); }
    .about-text .section-title { color: var(--cream); }

    .about-creds {
      font-size: 12px;
      font-weight: 300;
      letter-spacing: 0.1em;
      color: var(--gold2);
      margin-top: 0.5rem;
      margin-bottom: 2.5rem;
    }

    .about-text p {
      font-size: 14px;
      font-weight: 300;
      color: #96A8B8;
      line-height: 1.9;
      margin-bottom: 1rem;
    }

    .chips {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 2rem;
    }

    .chip {
      font-size: 11px;
      font-weight: 300;
      letter-spacing: 0.06em;
      color: var(--gold2);
      border: 1px solid rgba(200, 169, 110, 0.3);
      padding: 5px 14px;
    }

    /* ── CONTACT ── */
    .contact { background: var(--cream2); }

    .contact-inner {
      max-width: 1080px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }

    .contact-left p {
      font-size: 14px;
      font-weight: 300;
      color: var(--slate3);
      line-height: 1.9;
      margin-bottom: 2.5rem;
    }

    .c-info { display: flex; flex-direction: column; gap: 1rem; }

    .c-row {
      display: flex;
      gap: 12px;
      font-size: 13px;
      font-weight: 300;
      color: var(--slate3);
      align-items: flex-start;
    }

    .c-dash {
      width: 16px;
      height: 1px;
      background: var(--gold2);
      flex-shrink: 0;
      margin-top: 10px;
    }

    .cform {
      background: var(--cream);
      padding: 2.75rem;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .cform h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 400;
      color: var(--slate);
      margin-bottom: 2rem;
    }

    .frow { display: flex; }
    .frow input:first-child { border-right: 1px solid var(--cream3); }
    .frow input { flex: 1; min-width: 0; }

    .cform input,
    .cform textarea,
    .cform select {
      width: 100%;
      font-family: 'Jost', sans-serif;
      font-size: 13px;
      font-weight: 300;
      padding: 13px 14px;
      background: var(--cream);
      border: none;
      border-bottom: 1px solid var(--cream3);
      color: var(--slate);
      outline: none;
      transition: border-bottom-color 0.2s;
      -webkit-appearance: none;
    }

    .cform input:focus,
    .cform textarea:focus,
    .cform select:focus {
      border-bottom-color: var(--gold);
    }

    .cform textarea {
      min-height: 100px;
      resize: vertical;
    }

    .cform .submit {
      font-family: 'Jost', sans-serif;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      background: var(--slate);
      color: var(--cream);
      border: none;
      padding: 16px;
      cursor: pointer;
      margin-top: 1.75rem;
      width: 100%;
      transition: background 0.2s;
    }

    .cform .submit:hover { background: var(--slate2); }

    /* ── FOOTER ── */
    footer {
      padding: 2.25rem 3rem;
      background: var(--charcoal);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    footer p {
      font-size: 11px;
      font-weight: 300;
      letter-spacing: 0.06em;
      color: #4A6070;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 860px) {
      .hero { grid-template-columns: 1fr; }
      .hero-left { padding: 4rem 1.75rem; }
      .hero-left h1 { font-size: 40px; }
      .therapy-inner,
      .about-inner,
      .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
      .about-portrait { width: 100%; height: 220px; }
      .test-grid { grid-template-columns: 1fr; }
      .course-grid { grid-template-columns: 1fr; }
      nav { padding: 0.75rem 1.5rem; }
      .nav-toggle { display: flex; }
      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--cream);
        border-bottom: 1px solid var(--cream3);
        padding: 0.5rem 1.5rem 1rem;
      }
      .nav-links.open { display: flex; }
      .nav-links li { width: 100%; }
      .nav-links a { display: block; padding: 0.75rem 0; border-bottom: 1px solid var(--cream3); }
      .nav-links li:last-child a { border-bottom: none; }
      section { padding: 3.5rem 1.5rem; }
      footer { flex-direction: column; align-items: flex-start; padding: 2rem 1.5rem; }
      .section-header { flex-direction: column; align-items: flex-start; }
      .section-note { text-align: left; }
      .avail-bar { flex-direction: column; }
      .ab-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 32px;
      height: 32px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
    }

    .nav-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--slate);
    }
