  /* ── Font faces ── */
  @font-face {
    font-family: 'MPLUS Rounded 1c';
    src: url('../../fonts/MPLUSRounded1c-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Moderat Rounded';
    src: url('../../fonts/Moderat/Moderat-Rounded-Regular.woff2') format('woff2'),
         url('../../fonts/Moderat/Moderat-Rounded-Regular.woff') format('woff');
    font-weight: 400;
    font-display: swap;
  }
  @font-face {
    font-family: 'Moderat Rounded';
    src: url('../../fonts/Moderat/Moderat-Rounded-Medium.woff2') format('woff2'),
         url('../../fonts/Moderat/Moderat-Rounded-Medium.woff') format('woff');
    font-weight: 500;
    font-display: swap;
  }
  @font-face {
    font-family: 'ABC Otto';
    src: url('../../fonts/Otto/ABCOtto-Regular.woff2') format('woff2'),
         url('../../fonts/Otto/ABCOtto-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

  /* ── Design Tokens ── */
  :root {
    --stone: #EDE6E0;
    --pebble: #D4D4C9;
    --terracotta: #211101;
    --umber: #3F2003;
    --ykb: #4f6c7d;
    --white: #FFFFFF;

    --font-headline: 'ABC Otto', Georgia, serif;
    --font-body: 'Moderat Rounded', sans-serif;

    /* Type scale */
    --text-display: clamp(65px, 12.5vw, 165px);
    --text-h1: clamp(30px, 3.75vw, 50px);
    --text-h2: clamp(45px, 6.25vw, 70px);
    --text-h3: clamp(25px, 2.25vw, 32px);
    --text-h4: clamp(21px, 1.75vw, 28px);
    --text-body: clamp(15px, 1.1vw, 18px);
    --text-body-sm: clamp(12px, 0.85vw, 14px);
    --text-eyebrow: clamp(12px, 0.85vw, 14px);
    --text-caption: 11px;
  }

  /* ── Reset & Base ── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--umber);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .wireframe-label { display: none; }
  .annotation { display: none; }
  section { padding-left: 100px; padding-right: 100px; padding-top: 50px; padding-bottom: 50px; }

  /* ── Announcement Bar ── */
  .announcement-bar {
    background: var(--ykb);
    text-align: center;
    padding: 11px 0;
    font-family: var(--font-headline);
    font-size: var(--text-eyebrow);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .announcement-bar a {
    color: var(--white);
    font-weight: 500;
    margin-left: 8px;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  /* ── Section shell ── */
  section {
    position: relative;
    border-bottom: none;
  }

  /* ── Hero ── */
  .hero {
    height: 200vh;
    position: relative;
    padding: 0;
  }
  .hero-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background: var(--umber);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
  }
  .hero-bg-label {
    display: none;
  }
  .hero-dark-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    z-index: 1;
    pointer-events: none;
  }

  /* ── logo — centered ── */
  .hero-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    will-change: opacity, filter;
    display: flex;
    justify-content: center;
  }
  .hero-logo svg {
    width: 100%;
    height: auto;
  }

  /* ── Hero copy + CTA ── */
  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 0;
    will-change: opacity, transform;
    pointer-events: none;
    text-align: center;
    max-width: 560px;
    width: 90%;
  }
  .hero-content.is-visible { pointer-events: auto; }
  .hero .eyebrow {
    font-family: var(--font-headline);
    font-size: var(--text-eyebrow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--stone);
    margin-bottom: 16px;
  }
  .hero h1 {
    font-family: var(--font-headline);
    font-size: clamp(22px, 2.8vw, 38px);
    font-weight: 400;
    color: var(--stone);
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .hero-sub {
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--stone);
    margin-bottom: 32px;
  }
  .cta-btn {
    display: inline-block;
    align-self: flex-start;
    padding: 14px 40px;
    border: none;
    font-family: var(--font-headline);
    font-size: var(--text-eyebrow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    cursor: pointer;
    background: var(--ykb);
    border-radius: 28px;
    transition: background 0.3s;
  }
  .cta-btn:hover {
    background: #3b515e;
  }

  /* ── Reasons to Believe ── */
  .reasons {
    position: relative;
    border-bottom: none;
    background: linear-gradient(to bottom, var(--terracotta), var(--umber));
  }
  .reasons-inner {
    display: flex;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
  }
  .reasons-left {
    width: 20vw;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 80px 28px 40px 0;
    border-right: 1px solid var(--umber);
    display: flex;
    flex-direction: column;
  }
  .reasons-left h4 {
    font-family: var(--font-headline);
    font-size: var(--text-h3);
    font-weight: 400;
    color: var(--stone);
    margin-bottom: 24px;
    line-height: 1.1;
  }
  .reasons-right {
    flex: 1;
    min-width: 0;
  }
  .reason-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
    border-bottom: 1px solid var(--umber);
    min-height: 100vh;
  }
  .reason-block:last-child { border-bottom: none; }
  .reason-text {
    position: sticky;
    top: 0;
    padding: 80px 48px;
    align-self: start;
  }
  .reason-text h3 {
    font-family: var(--font-headline);
    font-size: var(--text-h4);
    font-weight: 500;
    color: var(--stone);
    margin-bottom: 24px;
    line-height: 1.4;
  }
  .reason-text p {
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--stone);
    line-height: 1.6;
    margin-bottom: 14px;
  }
  .reason-text p:last-child { margin-bottom: 0; }
  .reason-img-wrap {
    padding: 80px 0 80px 48px;
  }
  .reason-img {
    aspect-ratio: 3 / 4;
    width: 100%;
    background: var(--stone);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: transparent;
    overflow: hidden;
    border-radius: 8px;
  }
  .reason-img img,
  .reason-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @media (max-width: 768px) {
    .reasons-inner { flex-direction: column; }
    .reasons-left {
      width: 100%; height: auto; position: relative;
      padding: 32px 0; border-right: none; border-bottom: 1px solid var(--umber);
    }
    .reason-block {
      grid-template-columns: 1fr;
      min-height: auto;
      padding: 0;
    }
    .reason-text {
      position: relative;
      top: auto;
      padding: 40px 0;
    }
    .reason-img-wrap { padding: 0 0 40px; }
    .reason-img { aspect-ratio: 4 / 3; }
  }

  /* ── Patients — Expanding cards ── */
  .patients {
    padding: 80px 40px 120px;
    background: var(--pebble);
  }
  .patients .hero-statement {
    font-family: var(--font-headline);
    font-size: var(--text-h2);
    font-weight: 400;
    color: var(--umber);
    text-align: left;
    margin-bottom: 48px;
    line-height: 1.15;
    letter-spacing: -0.5px;
  }
  .patients-grid {
    display: flex;
    border: 1px solid var(--umber);
    cursor: default;
  }
  .patients-grid::-webkit-scrollbar { display: none; }
  .patient-card {
    flex: 1 1 0;
    min-width: 0;
    height: 500px;
    border-right: 1px solid var(--umber);
    display: flex;
    flex-direction: column;
    padding: 24px 22px;
    transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: var(--pebble);
  }
  .patient-card:last-child { border-right: none; }
  .pc-title {
    font-family: var(--font-headline);
    font-size: clamp(18px, 1.3vw, 22px);;
    font-weight: 500;
    color: var(--umber);
    line-height: 1.3;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .pc-middle {
    flex: 1;
    display: flex;
    gap: 24px;
    align-items: stretch;
    padding: 28px 0 20px;
    opacity: 0;
    transition: opacity 0.3s ease 0.18s;
    overflow: hidden;
  }
  .pc-detail {
    flex: 1;
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--umber);
    line-height: 1.6;
    min-width: 0;
  }
  .pc-detail ul { list-style: none; padding: 0; margin: 0; }
  .pc-detail li {
    padding: 5px 0;
    border-bottom: 1px solid var(--umber);
    font-size: var(--text-body-sm);
    color: var(--umber);
    font-family: var(--font-body);
  }
  .pc-detail li:last-child { border-bottom: none; }
  .pc-img {
    width: 50%;
    flex-shrink: 0;
    background: var(--pebble);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    color: transparent;
    overflow: hidden;
    border-radius: 8px;
  }
  .pc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .pc-status {
    flex-shrink: 0;
    font-family: var(--font-headline);
    font-size: var(--text-eyebrow);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ykb);
    font-weight: 500;
  }
  .patient-card:hover { flex: 3; }
  .patient-card:hover .pc-middle { opacity: 1; }

  @media (max-width: 900px) {
    .patients-grid {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x mandatory;
      cursor: grab;
    }
    .patients-grid.is-dragging { cursor: grabbing; scroll-snap-type: none; }
    .patient-card {
      flex: none;
      min-width: 280px;
      scroll-snap-align: start;
    }
    .pc-middle { opacity: 1; }
    .pc-img { width: 120px; }
  }

  /* ── Breaker2 ── */
  .breaker2 {
    background: var(--umber);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 100px;
  }
  .breaker2-inner {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    height: 80vh;
  }
  .breaker2-container {
    position: relative;
    padding: 48px;
    border-radius: 12px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
  }
  .breaker2-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    z-index: 0;
  }
  .breaker2-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3em;
    font-family: var(--font-headline);
    font-size: var(--text-h2);
    font-weight: 400;
    line-height: 1.2;
    color: var(--stone);
  }
  .breaker2-rotator-wrap {
    display: grid;
    overflow: hidden;
    height: 1.2em;
  }
  .breaker2-rotator-wrap span {
    grid-area: 1 / 1;
    white-space: nowrap;
    color: var(--stone);
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .breaker2-rotator-wrap span.active {
    opacity: 1;
    transform: translateY(0);
  }
  .breaker2-rotator-wrap span.leaving {
    opacity: 0;
    transform: translateY(-60px);
  }
  .breaker2-with {
    white-space: nowrap;
    flex-shrink: 0;
  }
  @media (max-width: 768px) {
    .breaker2 { height: auto; padding: 60px 24px; }
    .breaker2-inner { height: auto; }
    .breaker2-container { padding: 32px 24px; height: 60vh; }
    .breaker2-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.15em;
      font-size: var(--text-h3);
    }
    .breaker2-rotator-wrap span { white-space: normal; }
  }

  /* ── Our Method ── */
  .method {
    position: relative;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 120px 0 80px;
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
  }
  .method-bg-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }
  .method-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
  }
  .method-center-inner {
    position: relative;
    z-index: 1;
    padding: 0 52px 64px;
    max-width: 1440px;
    width: 100%;
  }
  .method-icon {
    width: 52px;
    height: auto;
    margin-bottom: 28px;
    opacity: 0.45;
  }
  .method-center-inner h2 {
    font-family: var(--font-headline);
    font-size: var(--text-h1);
    font-weight: 400;
    color: var(--umber);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }
  .method-center-inner p {
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--umber);
    max-width: 520px;
    line-height: 1.6;
    margin: 0 auto 16px;
  }
  .method-cta {
    display: inline-block;
    padding: 14px 44px;
    background: var(--ykb);
    font-family: var(--font-headline);
    font-size: var(--text-eyebrow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    cursor: pointer;
    border: none;
    border-radius: 28px;
    transition: background 0.3s;
  }
  .method-cta:hover { background: #3b515e; }

  /* ── Method Carousel ── */
  .method-carousel-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    cursor: grab;
    padding-bottom: 0;
  }
  .method-carousel-wrap.is-dragging { cursor: grabbing; }
  .method-carousel-track {
    display: flex;
    gap: 12px;
    padding: 0 48px;
    will-change: transform;
    user-select: none;
    -webkit-user-select: none;
  }
  .method-card {
    flex: 0 0 calc((100vw - 96px - 5 * 12px) / 6);
    height: clamp(260px, 28vw, 400px);
    border-radius: 8px;
    background: var(--umber);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .method-card-img {
    flex: 1 1 0;
    min-height: 0;
    overflow: hidden;
  }
  .method-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
  }
  .method-card-label {
    flex: 0 0 auto;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: var(--text-body-sm);
    color: var(--stone);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
  }

  @media (max-width: 768px) {
    .method { padding: 100px 0; }
    .method-center-inner { padding: 0 24px 48px; }
    .method-card { flex: 0 0 50vw; height: calc(50vw * 4 / 3); }
  }

  /* ── Menu ── */
  .menu-section {
    background: var(--umber);
  }
  .menu-inner {
    display: flex;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
  }
  .menu-left {
    width: 20vw;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 80px 28px 40px 0;
    display: flex;
    flex-direction: column;
  }
  .menu-left h2 {
    font-family: var(--font-headline);
    font-size: var(--text-h3);
    font-weight: 400;
    color: var(--stone);
    margin-bottom: 24px;
    line-height: 1.1;
  }
  .menu-left p {
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--stone);
    line-height: 1.6;
    margin-bottom: 14px;
  }
  .menu-left p:last-of-type { margin-bottom: 32px; }
  .menu-left-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
  }
  .menu-left-card {
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: var(--text-body-sm);
    color: var(--stone);
    line-height: 1.4;
  }
  .menu-right {
    flex: 1;
    min-width: 0;
    padding: 80px 0px 80px 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .menu-container {
    border-radius: 12px;
    padding: 48px;
    color: var(--stone);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .menu-container h3 {
    font-family: var(--font-headline);
    font-size: var(--text-h3);
    font-weight: 400;
    color: var(--stone);
    margin-bottom: 12px;
    line-height: 1.2;
  }
  .menu-container p {
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--stone);
    line-height: 1.6;
    max-width: 640px;
    opacity: 0.9;
  }

  @media (max-width: 768px) {
    .menu-inner { flex-direction: column; }
    .menu-left {
      width: 100%; height: auto; position: relative;
      padding: 48px 0 32px; border-right: none; ;
    }
    .menu-left-cards { margin-top: 24px; }
    .menu-right { padding: 32px 0; gap: 24px; }
    .menu-container { padding: 32px 24px; min-height: 320px; }
  }

  /* ── Services ── */
  .services { display: flex; min-height: 100vh; }
  .services-left {
    width: 40%;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
    background: var(--umber);
  }
  .services-left .svc-logo {
    width: clamp(200px, 22vw, 320px);
    height: auto;
    margin-bottom: 12px;
  }
  .services-left h2 {
    font-family: var(--font-headline);
    font-size: clamp(56px, 6vw, 72px);
    font-weight: 400;
    color: var(--ykb);
    margin-bottom: 16px;
  }
  .services-left p {
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--stone);
    line-height: 1.8;
  }
  .services-right { width: 60%; padding: 80px 0; position: relative; background: var(--umber); }
  .service-category-label {
    font-family: var(--font-headline);
    font-size: clamp(32px, 2.6vw, 42px);
    font-weight: 500;
    color: var(--ykb);
    margin-bottom: 16px;
    padding: 0 40px;
  }
  .service-category-sub {
    display: none;
  }
  .service-divider {
    margin: 20px 0;
    border: none;
    border-top: none;
  }
  .service-group { margin-bottom: 0; padding: 0 40px; }
  .service-list { list-style: none; padding: 0; }
  .service-list li {
    position: relative;
    padding: 14px 0;
    border-bottom: 1px solid var(--stone);
    font-family: var(--font-headline);
    font-size: clamp(12px, 1.35vw, 18px);
    font-weight: 400;
    color: var(--stone);
    cursor: default;
    transition: opacity 0.35s ease, color 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .service-list li:first-child {
    border-top: 1px solid var(--stone);
  }
  .service-list li::before { display: none; }
  .service-list li .svc-sub {
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--stone);
    letter-spacing: 0;
    margin-left: 20px;
    white-space: nowrap;
    transition: opacity 0.35s ease;
  }
  .service-list li[data-aos] {
    overflow: visible !important;
  }
  .service-list li.aos-animate {
    transform: none !important;
  }
  .service-list li .svc-hover-img {
    border-radius: 4px;
    position: fixed;
    width: clamp(220px, 22vw, 340px);
    height: clamp(160px, 16vw, 240px);
    background: var(--stone);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    color: transparent;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 9999;
    transform: translate(-50%, -50%);
    overflow: hidden;
  }
  .svc-hover-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .service-list:hover li { opacity: 0.25; }
  .service-list li:hover { opacity: 1 !important; color: var(--white); }
  .service-list li:hover .svc-hover-img { opacity: 1; }

  @media (max-width: 768px) {
    .services { flex-direction: column; }
    .services-left { width: 100%; height: auto; position: relative; padding: 40px 24px; border-right: none; border-bottom: 1px solid rgba(63,32,3,0.06); }
    .services-right { width: 100%; padding: 24px 0; }
    .service-list li { font-size: 14px; padding: 12px 0; }
    .service-list li .svc-hover-img { display: none; }
    .service-category-label, .service-category-sub { padding: 0 24px; }
  }

  /* ── About Us (Veil Obscura-style) ── */
  .about {
    position: relative;
    padding: 0;
    padding-left: 0;
    padding-right: 0;
    max-width: none;
    background: linear-gradient(to bottom, var(--umber), var(--terracotta));
    min-height: auto;
  }
  .about-headline {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 8vw;
    z-index: 1;
  }
  .about-headline h2 {
    font-family: var(--font-headline);
    font-size: clamp(35px, 5.6vw, 70px);
    font-weight: 400;
    color: var(--stone);
    line-height: 1.25;
    letter-spacing: -0.5px;
    max-width: 900px;
    will-change: filter, opacity;
  }
  .about-scroll {
    position: relative;
    z-index: 2;
  }
  .about-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 64px;
    text-align: left;
    padding: 10vh 8vw;
    background: transparent;
    max-width: 1440px;
    margin: 0 auto;
  }
  .about-card .about-img {
    flex: 0 0 50%;
    aspect-ratio: 3 / 4;
    background: var(--pebble);
    font-size: 0;
    color: transparent;
    overflow: hidden;
    border-radius: 8px;
  }
  .about-card .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .about-card-text {
    flex: 1;
    min-width: 0;
  }
  .about-card h3 {
    font-family: var(--font-headline);
    font-size: var(--text-h3);
    font-weight: 500;
    color: var(--stone);
    margin-bottom: 12px;
  }
  .about-card p {
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--stone);
    line-height: 1.6;
    max-width: 520px;
  }

  @media (max-width: 768px) {
    .about { min-height: auto; }
    .about-headline h2 { font-size: 28px; }
    .about-card { flex-direction: column; padding: 8vh 24px; gap: 32px; text-align: center; }
    .about-card .about-img { flex: none; width: 80vw; }
  }

  /* ── Testimonials ── */
  .testimonials {
    display: none;
    padding: 200px 0 200px;
    background: var(--white);
    overflow: hidden;
  }
  .testimonials-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 40px;
    margin-bottom: 48px;
    gap: 24px;
  }
  .testimonials-header h2 {
    font-family: var(--font-headline);
    font-size: var(--text-eyebrow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--umber);
    margin-bottom: 10px;
  }
  .testimonials-header .subtitle {
    font-family: var(--font-headline);
    font-size: clamp(35px, 4.4vw, 55px);
    font-weight: 400;
    color: var(--umber);
    line-height: 1.2;
    margin: 0;
  }
  .testimonial-nav {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    padding-top: 8px;
  }
  .testimonial-nav button {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
    font-size: 36px;
    color: var(--umber);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
  }
  .testimonial-nav button:hover { background: var(--stone); }
  .testimonial-track-wrapper {
    margin-left: 40px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
  }
  .testimonial-track-wrapper::-webkit-scrollbar { display: none; }
  .testimonial-track-wrapper.is-dragging { cursor: grabbing; }
  .testimonial-track {
    display: flex;
    gap: 20px;
    padding-right: 40px;
    width: max-content;
  }
  .testimonial-card {
    flex: 0 0 clamp(340px, 38vw, 540px);
    background: var(--stone);
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: clamp(360px, 42vw, 520px);
    border: none;
    border-top: 7px solid var(--ykb);
    scroll-snap-align: start;
    border-radius: 5px;
  }
  .testimonial-card p {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.3vw, 19px);
    color: var(--umber);
    line-height: 1.6;
    font-weight: 400;
    flex: 1;
    margin: 0;
  }
  .testimonial-card .attribution {
    font-family: var(--font-headline);
    font-size: var(--text-body);
    color: var(--umber);
    margin-top: 40px;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 500;
  }
  @media (max-width: 768px) {
    .testimonial-card { flex: 0 0 85vw; min-height: 320px; }
    .testimonials-header { flex-direction: column; align-items: flex-start; padding: 0 24px; }
    .testimonial-track-wrapper { margin-left: 24px; }
    .testimonial-track { padding-right: 24px; }
  }

  /* ── Founding Member ── */
  @keyframes foundingFade {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .founding-container,
  .founding-portrait,
  .founding-content { opacity: 0; }

  .founding.is-visible .founding-container {
    animation: foundingFade 0.7s cubic-bezier(0.22,1,0.36,1) 0s forwards;
  }
  .founding.is-visible .founding-portrait {
    animation: foundingFade 0.75s cubic-bezier(0.22,1,0.36,1) 0.35s forwards;
  }
  .founding.is-visible .founding-content {
    animation: foundingFade 0.75s cubic-bezier(0.22,1,0.36,1) 0.65s forwards;
  }

  .founding {
    padding: 80px 100px;
    background: var(--terracotta);
  }
  .founding-container {
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    padding: 48px;
    display: flex;
    align-items: stretch;
    gap: 48px;
    max-height: 80vh;
    overflow: hidden;
    max-width: 1440px;
    margin: 0 auto;
  }
  .founding-portrait {
    flex: 0 0 50%;
    border-radius: 8px;
    overflow: hidden;
  }
  .founding-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .founding-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 24px;
  }
  .founding h2 {
    font-family: var(--font-headline);
    font-size: var(--text-eyebrow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--stone);
    margin-bottom: 16px;
  }
  .founding .headline {
    font-family: var(--font-headline);
    font-size: var(--text-h3);
    font-weight: 400;
    color: var(--stone);
    margin-bottom: 24px;
    line-height: 1.25;
  }
  .founding-body {
    max-width: 520px;
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--stone);
    line-height: 1.6;
    margin-bottom: 48px;
  }
  .email-form {
    max-width: 420px;
    width: 100%;
    display: flex;
    gap: 0;
  }
  .email-form input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid rgba(237, 230, 224, 0.2);
    background: rgba(237, 230, 224, 0.06);
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--stone);
    outline: none;
    border-radius: 28px 0 0 28px;
  }
  .email-form input::placeholder { color: var(--pebble); }
  .email-form button {
    padding: 14px 28px;
    border: none;
    background: var(--ykb);
    font-family: var(--font-headline);
    font-size: var(--text-eyebrow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    cursor: pointer;
    border-radius: 0 28px 28px 0;
    transition: background 0.3s;
  }
  .email-form button:hover { background: #3b515e; }

  @media (max-width: 768px) {
    section { padding-left: 24px; padding-right: 24px; padding-top: 40px; padding-bottom: 40px; }
    .hero, .about { padding: 0; }
    .founding { padding: 48px 24px; }
    .founding-container { flex-direction: column; max-height: none; gap: 32px; padding: 32px 24px; }
    .founding-portrait { flex: none; aspect-ratio: 4 / 3; }
    .founding-content { padding-right: 0; }
  }

  /* ── Callout (Scroll Interactive — Vergence-style unblur) ── */
  .callout {
    position: relative;
    height: 300vh;
  }
  .callout-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--umber);
  }
  .callout-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .callout-bg img,
  .callout-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.4s ease;
  }
  .callout-sticky::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(63, 32, 3, 0.6) 100%);
    pointer-events: none;
    z-index: 1;
  }
  .callout-img-note { display: none; }
  .callout-stack {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }
  .callout-headline {
    text-align: center;
    will-change: opacity, filter;
    opacity: 0.08;
    filter: blur(12px);
  }
  .callout-small {
    font-family: var(--font-headline);
    font-size: var(--text-eyebrow);
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 10px;
  }
  .callout-large {
    font-family: var(--font-headline);
    font-size: var(--text-display);
    font-weight: 400;
    letter-spacing: -3px;
    color: var(--ykb);
    line-height: 0.92;
  }
  .callout-wf-label,
  .callout-wf-badge { display: none; }

  /* ── Footer ── */
  footer {
    padding: 48px 40px;
    text-align: center;
    font-family: var(--font-headline);
    font-size: var(--text-eyebrow);
    font-weight: 500;
    color: var(--umber);
    border-top: 1px solid var(--pebble);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--white);
    overflow-wrap: break-word;
    word-break: break-word;
  }
  footer p { margin: 0; }
  footer p + p { margin-top: 10px; }
  footer a { color: inherit; text-decoration: none; }
  footer a:hover { text-decoration: underline; }
  @media (max-width: 768px) {
    footer { padding: 36px 24px; }
  }

  /* ── Scroll fade-in ── */
  .scroll-fade {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .scroll-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── Annotation badges ── */
  .annotation { display: none; }

  /* ── Who We Are + Breaker1 (combined) ── */
  .who-we-are {
    background: var(--umber);
    padding: 80px 100px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .who-we-are-inner {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
  }
  .who-we-are-container {
    background-size: cover;
    background-position: center;
    padding: 48px;
    border-radius: 12px;
    display: flex;
    align-items: stretch;
    gap: 48px;
    max-height: 80vh;
    overflow: hidden;
  }
  .who-we-are-text {
    width: 50%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .who-we-are-text .cta-btn,
  .who-we-are-text a.cta-btn,
  .who-we-are-text button.cta-btn {
    margin-top: 28px;
  }
  .who-we-are h2 {
    font-family: var(--font-headline);
    font-size: var(--text-h3);
    font-weight: 500;
    color: var(--stone);
    margin-bottom: 24px;
    line-height: 1.25;
  }
  .who-we-are p {
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--stone);
    line-height: 1.7;
  }
  /* Right half: image with overlaid animated text */
  .who-we-are-right {
    width: 50%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-right: 48px;
  }
  .who-we-are-img {
    flex: 1;
    min-height: 0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
  }
  .who-we-are-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  /* ── Who We Are: Stac morph animation (scoped to .wwa-stage) ── */
  .wwa-stage {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
  }
  .wwa-stage .scene {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
  }
  .wwa-stage .word {
    position: relative;
    font-family: 'Domine', serif;
    font-size: clamp(36px, 4.4vw, 72px);
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
    color: #EDE6E0;
    font-weight: 400;
    display: inline-flex;
    align-items: baseline;
    opacity: 0;
    transition: opacity 900ms cubic-bezier(.4,0,.2,1);
  }
  .wwa-stage .glyph {
    display: inline-block;
    overflow: hidden;
    white-space: pre;
    vertical-align: baseline;
    max-width: 1.2ch;
    opacity: 1;
    transition: max-width 1100ms cubic-bezier(.7,0,.2,1),
                opacity 600ms cubic-bezier(.4,0,.2,1);
  }
  .wwa-stage .macron {
    position: absolute;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 0.62em;
    height: 0.07em;
    background: #EDE6E0;
    border-radius: 0.04em;
    opacity: 0;
    pointer-events: none;
    transition: transform 900ms cubic-bezier(.7,0,.2,1),
                opacity 500ms cubic-bezier(.4,0,.2,1);
  }
  .wwa-stage[data-phase="1"] .word,
  .wwa-stage[data-phase="2"] .word,
  .wwa-stage[data-phase="3"] .word { opacity: 1; }
  .wwa-stage[data-phase="4"] .word { opacity: 0; }

  .wwa-stage .g-S, .wwa-stage .g-t1,
  .wwa-stage .g-a, .wwa-stage .g-c  { max-width: 1.2ch; opacity: 1; }

  .wwa-stage[data-phase="1"] .g-k     { max-width: 1.2ch; opacity: 1; }
  .wwa-stage[data-phase="1"] .g-space,
  .wwa-stage[data-phase="1"] .g-w,
  .wwa-stage[data-phase="1"] .g-i,
  .wwa-stage[data-phase="1"] .g-t2,
  .wwa-stage[data-phase="1"] .g-h    { max-width: 0ch; opacity: 0; }
  .wwa-stage[data-phase="1"] .macron { transform: translateX(-50%) scaleX(0); opacity: 0; }

  .wwa-stage[data-phase="2"] .g-k    { max-width: 0ch; opacity: 0; }
  .wwa-stage[data-phase="2"] .g-space{ max-width: 0.4ch; opacity: 1; }
  .wwa-stage[data-phase="2"] .g-w    { max-width: 1.4ch; opacity: 1; }
  .wwa-stage[data-phase="2"] .g-i    { max-width: 0.7ch; opacity: 1; }
  .wwa-stage[data-phase="2"] .g-t2   { max-width: 0.8ch; opacity: 1; }
  .wwa-stage[data-phase="2"] .g-h    { max-width: 1.1ch; opacity: 1; }
  .wwa-stage[data-phase="2"] .macron { transform: translateX(-50%) scaleX(0); opacity: 0; }

  .wwa-stage[data-phase="3"] .g-k,
  .wwa-stage[data-phase="3"] .g-space,
  .wwa-stage[data-phase="3"] .g-w,
  .wwa-stage[data-phase="3"] .g-i,
  .wwa-stage[data-phase="3"] .g-t2,
  .wwa-stage[data-phase="3"] .g-h   { max-width: 0ch; opacity: 0; }
  .wwa-stage[data-phase="3"] .macron {
    transform: translateX(-50%) scaleX(1); opacity: 1;
    transition: transform 850ms cubic-bezier(.2,.7,.2,1) 200ms,
                opacity 400ms cubic-bezier(.4,0,.2,1) 200ms;
  }

  .wwa-stage[data-phase="4"] .g-k,
  .wwa-stage[data-phase="4"] .g-space,
  .wwa-stage[data-phase="4"] .g-w,
  .wwa-stage[data-phase="4"] .g-i,
  .wwa-stage[data-phase="4"] .g-t2,
  .wwa-stage[data-phase="4"] .g-h   { max-width: 0ch; opacity: 0; }
  .wwa-stage[data-phase="4"] .macron { transform: translateX(-50%) scaleX(1); opacity: 1; }

  .wwa-stage[data-phase="0"] .word   { opacity: 0; transition: none; }
  .wwa-stage[data-phase="0"] .glyph  { transition: none; }
  .wwa-stage[data-phase="0"] .macron { transition: none; transform: translateX(-50%) scaleX(0); opacity: 0; }
  .wwa-stage[data-phase="0"] .g-k    { max-width: 1.2ch; opacity: 1; }
  .wwa-stage[data-phase="0"] .g-space,
  .wwa-stage[data-phase="0"] .g-w,
  .wwa-stage[data-phase="0"] .g-i,
  .wwa-stage[data-phase="0"] .g-t2,
  .wwa-stage[data-phase="0"] .g-h   { max-width: 0ch; opacity: 0; }
  @media (max-width: 768px) {
    .who-we-are { padding: 48px 24px; padding-left: 24px; padding-right: 24px; }
    .who-we-are-container { padding: 32px 24px; flex-direction: column; gap: 32px; max-height: none; }
    .who-we-are-text, .who-we-are-right { width: 100%; }
    .who-we-are-right { padding-right: 0; }
    .who-we-are-img { aspect-ratio: 4 / 3; flex: none; }
  }

  /* ── Breaker1 (lives inside .who-we-are) ── */
  .breaker1-inner {
    max-width: 1440px;
	border-radius: 12px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .breaker1-container {
    position: relative;
    padding: 48px;
    border-radius: 12px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
  }
  .breaker1-container h2 {
    font-family: var(--font-headline);
    font-size: var(--text-h2);
    font-weight: 400;
    color: var(--stone);
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 24px rgba(63,32,3,0.35);
  }
  @media (max-width: 768px) {
    .breaker1-container { padding: 32px 24px; min-height: 60vh; }
  }

  /* ── Sign-up Popup ── */
  .popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--terracotta);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
  .popup-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }
  .popup {
    background: var(--stone);
    color: var(--stone);
    border-radius: 8px;
    padding: 40px 40px 32px;
    max-width: 660px;
    width: 92%;
    position: relative;
    transform: translateY(16px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  }
  .popup-overlay.is-open .popup {
    transform: translateY(0) scale(1);
  }
  .popup, .popup * { color: var(--umber); }
  .popup iframe {
    display: block;
    width: 100%;
    border: 0;
  }
  .popup-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
  }
  .popup-close:hover { color: var(--umber); }
  .popup h3 {
    font-family: var(--font-headline);
    font-size: clamp(28px, 2.5vw, 35px);
    font-weight: 500;
    margin-bottom: 8px;
  }
  .popup .popup-sub {
    font-family: var(--font-body);
    font-size: var(--text-body);
    margin-bottom: 32px;
  }
  .popup label {
    display: block;
    font-family: var(--font-headline);
    font-size: var(--text-eyebrow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
  }
  .popup input[type="text"],
  .popup input[type="email"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--umber);
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--umber);
    margin-bottom: 20px;
    outline: none;
    background: var(--white);
    border-radius: 4px;
    transition: border-color 0.2s;
  }
  .popup input:focus { border-color: var(--ykb); }
  .popup .checkbox-group { margin-bottom: 28px; }
  .popup .checkbox-group span {
    display: block;
    font-family: var(--font-headline);
    font-size: var(--text-eyebrow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }
  .popup .checkbox-row {
    display: flex;
    gap: 24px;
  }
  .popup .checkbox-row label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: var(--text-body);
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
  }
  .popup .checkbox-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--ykb);
    cursor: pointer;
  }
  .popup .popup-submit {
    width: 100%;
    padding: 14px;
    background: var(--ykb);
    color: var(--stone);
    border: 1px solid var(--ykb);
    font-family: var(--font-headline);
    font-size: var(--text-eyebrow);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 28px;
    transition: background 0.3s;
  }
  .popup .popup-submit:hover { background: #3b515e; }

