/* OHC — landing page styles */
.message-content{
    font-size: 14px !important ;
}
.grecaptcha-badge {
    left: 3px !important;
    right: auto !important;
    width: 70px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

.grecaptcha-badge:hover {
    width: 256px !important;
}

#team-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
}
#team-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 28px 24px 40px;
  z-index: 201;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  max-height: 80vh;
  overflow-y: auto;
}
#team-modal.is-open {
  transform: translateY(0);
}
#team-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
#team-modal-photo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
}
#team-modal-name {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 4px;
}
#team-modal-role {
  font-size: 13px;
  color: var(--brand-primary);
  font-weight: 600;
  margin-bottom: 6px;
}
#team-modal-creds {
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
#team-modal-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--brand-text);
}



*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--brand-bg);
    color: var(--brand-text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  img { display: block; max-width: 100%; height: auto; }
  a { text-decoration: none; color: inherit; }
  ul, ol { list-style: none; }
  button { font-family: inherit; cursor: pointer; }

  :root {
    --brand-primary: #119447;
    --brand-secondary: #0a5f54;
    --brand-accent: #64607d;
    --brand-text: #14181f;
    --brand-bg: #ffffff;
    --brand-primary-10: color-mix(in srgb, #119447 10%, transparent);
    --brand-primary-15: color-mix(in srgb, #119447 15%, transparent);
    --brand-primary-08: color-mix(in srgb, #119447 8%, white);
    --brand-dark: color-mix(in srgb, #0f172a 90%, #119447);
    --brand-paper: #faf8f5;
    --brand-cream: #f3efe7;
    --ink-soft: color-mix(in srgb, #14181f 52%, #ffffff);
    --line: color-mix(in srgb, #14181f 10%, transparent);
    --line-strong: color-mix(in srgb, #14181f 18%, transparent);

    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 10px;
    --radius-xl: 14px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
    --shadow-glow: 0 8px 40px color-mix(in srgb, var(--brand-primary) 35%, transparent);

    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

    --display: 'Plus Jakarta Sans', sans-serif;
    --sans: 'Plus Jakarta Sans', sans-serif;
  }

  /* ============================================================
     SECTIONS - OOM PADDING STANDARD
  ============================================================ */
  section { padding: 80px 64px; }
  .container { max-width: 1280px; margin: 0 auto; }
  @media (min-width: 1441px) { section { padding: 80px 100px; } }
  @media (max-width: 1024px) { section { padding: 50px 32px; } }
  @media (max-width: 720px)  { section { padding: 30px 16px; } }

  /* ============================================================
     TYPOGRAPHY
  ============================================================ */
  .eyebrow {
    position: relative;
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brand-primary);
    background: transparent;
    padding: 0 2px 11px;
  }
  .eyebrow::after {
    content: '';
    position: absolute; left: 0; right: 2px; bottom: 0; height: 7px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M2 7 C 26 1 50 12 74 6 C 92 2 108 4 118 6' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M2 7 C 26 1 50 12 74 6 C 92 2 108 4 118 6' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  }
  .eyebrow--plain { padding-bottom: 11px; }
  h1, h2, h3, h4 {
    font-family: var(--display);
    color: var(--brand-text);
    letter-spacing: -0.02em;
    line-height: 1.1;
  }
  h1 { font-size: clamp(34px, 5vw, 60px); font-weight: 800; }
  h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 700; }
  h3 { font-size: clamp(20px, 1.8vw, 24px); font-weight: 600; }
  h4 { font-size: 17px; font-weight: 600; }
  p { font-size: 17px; line-height: 1.7; color: color-mix(in srgb, var(--brand-text) 80%, white); max-width: 65ch; }
  p.lede { font-size: 19px; line-height: 1.65; color: color-mix(in srgb, var(--brand-text) 75%, white); }
  em.hi {
    font-style: normal;
    color: var(--brand-primary);
    position: relative;
    display: inline-block;
  }
  em.hi-mark {
    font-style: normal;
    background: linear-gradient(180deg, transparent 60%, color-mix(in srgb, var(--brand-secondary) 35%, transparent) 60%);
    padding: 0 4px;
  }

  /* ============================================================
     ANIMATION SYSTEM
  ============================================================ */
  [data-animate] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
  [data-animate="left"] { transform: translateX(-28px); }
  [data-animate="right"] { transform: translateX(28px); }
  [data-animate].is-visible { opacity: 1; transform: none; }
  [data-animate][data-delay="1"] { transition-delay: 0.08s; }
  [data-animate][data-delay="2"] { transition-delay: 0.16s; }
  [data-animate][data-delay="3"] { transition-delay: 0.24s; }
  [data-animate][data-delay="4"] { transition-delay: 0.32s; }
  .card-hover { transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease; }
  .card-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .count-up { display: inline-block; }
  input:focus, textarea:focus, select:focus { outline: none; border-color: var(--brand-primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-primary) 15%, transparent); }

  /* ============================================================
     STICKY BANNER + NAV
  ============================================================ */
  .sticky-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    height: 64px;
  }
  .sticky-header__inner {
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .sh-left { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
  .sh-logo img { height: 36px; max-width: 140px; object-fit: contain; }
  .sh-center {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .sh-center a {
    font-size: 14px;
    font-weight: 500;
    color: var(--brand-text);
    transition: color 0.2s;
  }
  .sh-center a:hover { color: var(--brand-primary); }
  .sh-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
  .sh-offer {
    font-size: 12px;
    font-weight: 500;
    color: var(--brand-secondary);
    letter-spacing: 0.01em;
  }
  .sh-contact {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-text);
  }
  .sh-cta {
    background: var(--brand-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    border: none;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
  }
  .sh-cta:hover { background: var(--brand-dark); transform: translateY(-1px); }

  @media (max-width: 980px) {
    .sh-center { display: none; }
    .sh-offer { display: none; }
  }
  @media (max-width: 720px) {
    .sticky-header { height: 56px; }
    .sticky-header__inner { padding: 0 14px; gap: 8px; }
    .sh-left { min-width: 0; }
    .sh-logo img { height: 26px; max-width: 96px; }
    .sh-right { gap: 8px; flex-shrink: 0; }
    .sh-contact span { display: none; }
    .sh-contact {
      width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
      align-items: center; justify-content: center;
      background: color-mix(in srgb, var(--brand-primary) 12%, #fff);
    }
    .sh-contact svg { width: 20px; height: 20px; color: var(--brand-primary); }
    .sh-cta { padding: 9px 13px; font-size: 12px; flex-shrink: 0; }
  }

  /* ============================================================
     HERO
  ============================================================ */
  .hero {
    background: var(--brand-bg);
    padding-top: clamp(60px, 8vw, 100px);
    padding-bottom: clamp(60px, 8vw, 100px);
    position: relative;
    overflow: hidden;
  }
  .hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.5;
    background:
      radial-gradient(ellipse 50% 60% at 85% 20%, color-mix(in srgb, var(--brand-primary) 8%, transparent) 0%, transparent 70%),
      radial-gradient(ellipse 40% 50% at 10% 80%, color-mix(in srgb, var(--brand-secondary) 6%, transparent) 0%, transparent 70%);
  }
  .hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(40px, 6vw, 72px);
    align-items: center;
  }
  .hero__content {}
  .hero__eyebrow { margin-bottom: 24px; }
  .hero__title { margin-bottom: 20px; }
  .hero__sub { margin-bottom: 32px; font-size: 18px; line-height: 1.65; }
  .hero__trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-bottom: 36px;
  }
  .hero__trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-text);
  }
  .hero__trust-badge::before {
    content: '';
    width: 17px; height: 17px; flex-shrink: 0;
    background: var(--brand-primary);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  }
  .hero__form-wrap { display: flex; justify-content: flex-end; }
  .hero__form {
    width: 100%;
    max-width: 460px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-lg);
    position: relative;
  }
  .hero__form-badge {
    position: absolute;
    top: -14px;
    left: 24px;
    background: var(--brand-secondary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
  }
  .hero__form-title { font-size: 22px; font-weight: 700; margin-bottom: 6px; margin-top: 6px; }
  .hero__form-sub { font-size: 13px; color: var(--ink-soft); margin-bottom: 22px; line-height: 1.55; }

  .form-group { margin-bottom: 14px; }
  .form-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 6px;
  }
  .form-input {
    width: 100%;
    padding: 13px 14px;
    border: 1.5px solid var(--line-strong);
    border-radius: var(--radius-sm);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    background: #fff;
    color: var(--brand-text);
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .form-input::placeholder { color: #b8b8b8; }
  .btn-primary {
    width: 100%;
    background: var(--brand-primary);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius-sm);
    letter-spacing: 0.02em;
    margin-top: 6px;
    min-height: 50px;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  }
  .btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
  }
  .form-footnote {
    font-size: 12px;
    color: var(--ink-soft);
    text-align: center;
    margin-top: 14px;
    line-height: 1.5;
  }

  .hero__image-wrap {
    display: none;
  }

  @media (max-width: 980px) {
    .hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .hero__form-wrap { justify-content: stretch; }
    .hero__form { max-width: 100%; }
  }

  /* ============================================================
     IMAGE PLACEHOLDER
  ============================================================ */
  .img-placeholder {
    background: linear-gradient(135deg, color-mix(in srgb, var(--brand-primary) 10%, transparent), color-mix(in srgb, var(--brand-primary) 18%, transparent));
    border: 2px dashed color-mix(in srgb, var(--brand-primary) 30%, #d1d5db);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    height: auto;
  }
  .placeholder-inner {
    max-width: 420px;
    text-align: center;
    padding: 32px;
  }
  .placeholder-label {
    display: inline-block;
    background: var(--brand-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .placeholder-prompt {
    color: color-mix(in srgb, var(--brand-primary) 70%, #555);
    font-size: 13px;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
  }

  /* ============================================================
     CTA STRIP
  ============================================================ */
  .cta-strip {
    padding: 28px 64px;
  }
  @media (max-width: 1024px) { .cta-strip { padding: 28px 32px; } }
  @media (max-width: 720px)  { .cta-strip { padding: 24px 16px; } }
  .cta-strip__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .cta-strip__text {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    max-width: none;
    line-height: 1.4;
  }
  .cta-strip__btn {
    background: var(--brand-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 26px;
    border: none;
    border-radius: var(--radius-sm);
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: background 0.25s, transform 0.2s;
    display: inline-block;
  }
  .cta-strip__btn:hover { background: var(--brand-dark); transform: translateY(-2px); }
  .cta-strip--paper { background: var(--brand-paper); }
  .cta-strip--cream { background: var(--brand-cream); }
  .cta-strip--primary {
    background: var(--brand-dark);
    color: #fff;
  }
  .cta-strip--primary .cta-strip__text { color: #fff; }
  .cta-strip--primary .cta-strip__btn {
    background: #fff;
    color: var(--brand-dark);
  }
  .cta-strip--primary .cta-strip__btn:hover {
    background: var(--brand-secondary);
    color: #fff;
  }
  @media (max-width: 720px) {
    .cta-strip__inner { flex-direction: column; align-items: flex-start; gap: 14px; }
    .cta-strip__text { font-size: 16px; }
    .cta-strip__btn { width: 100%; text-align: center; }
  }

  /* ============================================================
     PROBLEM SECTION
  ============================================================ */
  .problem { background: var(--brand-paper); }
  .problem__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(40px, 6vw, 72px);
    align-items: center;
  }
  .problem__head { margin-bottom: 40px; }
  .problem__head .eyebrow { margin-bottom: 18px; }
  .problem__head h2 { margin-bottom: 16px; }
  .problem__list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .problem__item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
  }
  .problem__item:first-child { border-top: 1px solid var(--line); }
  .problem__item-num {
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-primary);
    letter-spacing: 0.05em;
  }
  .problem__item-body {}
  .problem__item-title {
    font-size: 21px;
    font-weight: 700;
    color: var(--brand-text);
    letter-spacing: -0.01em;
    margin-bottom: 9px;
  }
  .problem__item-text {
    position: relative;
    display: inline-block;
    background: #fff;
    border-radius: 18px 18px 18px 5px;
    padding: 15px 20px;
    margin: 4px 0 22px;
    max-width: 54ch;
    font-size: 15.5px;
    line-height: 1.55;
    color: color-mix(in srgb, var(--brand-text) 75%, white);
    font-style: italic;
    box-shadow: var(--shadow-sm);
  }
  .problem__item-text::before {
    content: '';
    position: absolute; left: 14px; bottom: -11px;
    width: 15px; height: 15px; border-radius: 50%;
    background: #fff; box-shadow: var(--shadow-sm);
  }
  .problem__item-text::after {
    content: '';
    position: absolute; left: 5px; bottom: -21px;
    width: 8px; height: 8px; border-radius: 50%;
    background: #fff; box-shadow: var(--shadow-sm);
  }
  @media (max-width: 980px) {
    .problem__grid { grid-template-columns: 1fr; }
  }

  /* ============================================================
     SOLUTION SECTION - alternating editorial rows
  ============================================================ */
  .solution { background: #ffffff; }
  .solution__head {
    max-width: 1280px;
    margin: 0 auto 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
  }
  .solution__head h2 { max-width: 16ch; }
  .solution__head p { margin-left: auto; }
  .solution__rows { max-width: 1280px; margin: 0 auto; display: flex; flex-direction: column; gap: 80px; }
  .solution__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
  }
  .solution__row--reverse .solution__row-text { order: 2; }
  .solution__row--reverse .solution__row-visual { order: 1; }
  .solution__row-num {
    font-family: var(--display);
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 300;
    color: var(--brand-primary);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.04em;
  }
  .solution__row-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-secondary);
    margin-bottom: 12px;
    display: block;
  }
  .solution__row h3 {
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 700;
    margin-bottom: 16px;
  }
  .solution__row p { margin-bottom: 16px; }
  .solution__row p:last-child { margin-bottom: 0; }
  .solution__row-visual .img-placeholder { min-height: 360px; border-radius: var(--radius-lg); }
  @media (max-width: 980px) {
    .solution__head { grid-template-columns: 1fr; gap: 16px; }
    .solution__head p { margin-left: 0; }
    .solution__row { grid-template-columns: 1fr; gap: 24px; }
    .solution__row--reverse .solution__row-text { order: 0; }
    .solution__row--reverse .solution__row-visual { order: 0; }
  }

  /* ============================================================
     PROCESS - vertical timeline with left hairline
  ============================================================ */
  .process { background: var(--brand-cream); position: relative; }
  .process__head {
    max-width: 1280px;
    margin: 0 auto 60px;
    text-align: center;
  }
  .process__head .eyebrow { margin-bottom: 18px; }
  .process__head h2 { margin: 0 auto 16px; max-width: 22ch; }
  .process__head p { margin: 0 auto; }
  .process__wrap {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: clamp(20px, 4vw, 40px);
  }
  .process__wrap::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: var(--brand-primary);
    opacity: 0.4;
  }
  .process__step {
    position: relative;
    padding: 0 0 64px 48px;
  }
  .process__step:last-child { padding-bottom: 0; }
  .process__step::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 18px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--brand-primary);
    border: 2px solid var(--brand-cream);
    box-shadow: 0 0 0 4px var(--brand-primary-10);
  }
  .process__step-num {
    font-family: var(--display);
    font-size: 64px;
    font-weight: 200;
    color: var(--brand-primary);
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
    opacity: 0.85;
  }
  .process__step h3 { margin-bottom: 10px; font-size: 22px; }
  .process__step p { margin: 0; }
  @media (max-width: 720px) {
    .process__step { padding-left: 32px; padding-bottom: 44px; }
    .process__step-num { font-size: 48px; }
    .process__wrap { padding-left: 16px; }
  }

  /* ============================================================
     BENEFITS - asymmetric collage (NO box grid)
  ============================================================ */
  .benefits { background: #ffffff; }
  .benefits__head {
    max-width: 1280px;
    margin: 0 auto 56px;
  }
  .benefits__head .eyebrow { margin-bottom: 18px; }
  .benefits__head h2 { max-width: 18ch; margin-bottom: 16px; }
  .benefits__head p { max-width: 60ch; }
  .benefits__collage {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
  }
  .benefits__feature {
    background: var(--brand-dark);
    color: #fff;
    padding: 44px 38px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
    position: relative;
    overflow: hidden;
  }
  .benefits__feature::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--brand-primary) 35%, transparent);
    filter: blur(40px);
    pointer-events: none;
  }
  .benefits__feature-top { position: relative; z-index: 2; }
  .benefits__feature-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: color-mix(in srgb, #fff 70%, var(--brand-primary));
    margin-bottom: 18px;
    display: inline-block;
  }
  .benefits__feature h3 {
    color: #fff;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.2;
    margin-bottom: 18px;
    font-weight: 700;
  }
  .benefits__feature p {
    color: rgba(255,255,255,0.78);
    font-size: 16px;
    margin: 0;
    max-width: none;
  }
  .benefits__feature-stat {
    position: relative;
    z-index: 2;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: baseline;
    gap: 12px;
  }
  .benefits__feature-stat-num {
    font-family: var(--display);
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
  }
  .benefits__feature-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
    font-weight: 500;
  }
  .benefits__side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 28px;
  }
  .benefits__tile {
    background: var(--brand-paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 226px;
  }
  .benefits__tile-num {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-primary);
    letter-spacing: 0.12em;
    margin-bottom: 12px;
  }
  .benefits__tile h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .benefits__tile p {
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
  }
  .benefits__row-extra {
    max-width: 1280px;
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
  }
  .benefits__row-extra .benefits__tile { min-height: 180px; background: var(--brand-cream); }
  @media (max-width: 980px) {
    .benefits__collage { grid-template-columns: 1fr; }
    .benefits__feature { min-height: auto; padding: 36px 28px; }
    .benefits__row-extra { grid-template-columns: 1fr; }
  }

  /* ============================================================
     GALLERY - candid scrapbook collage
  ============================================================ */
  .gallery { background: var(--brand-paper); }
  .gallery__head {
    max-width: 1280px;
    margin: 0 auto 56px;
    text-align: center;
  }
  .gallery__head .eyebrow { margin-bottom: 14px; }
  .gallery__head h2 { margin: 0 auto 14px; max-width: 20ch; }
  .gallery__head p { margin: 0 auto; }
  .gallery__grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 30px;
    align-items: start;
  }
  .gallery__tile {
    position: relative;
    padding: 10px;
    transition: transform 0.4s var(--ease-out);
  }
  .gallery__grid .img-placeholder { min-height: 240px !important; }
  .gallery__tile-1 { transform: rotate(-2.5deg) translateY(8px); }
  .gallery__tile-2 { transform: rotate(1.5deg) translateY(-10px); }
  .gallery__tile-3 { transform: rotate(-1deg) translateY(12px); }
  .gallery__tile-4 { transform: rotate(2deg) translateY(-6px); }
  .gallery__tile-5 { transform: rotate(-2deg) translateY(4px); }
  .gallery__tile-6 { transform: rotate(1.2deg) translateY(-8px); }
  
  /*.gallery__tile-2{*/
  /*    max-height: 300px !important;*/
  /*}*/
  .gallery__tile:hover { transform: rotate(0deg) translateY(-8px); z-index: 5; }
  .gallery__tile--polaroid {
    background: #fff;
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  }
  .gallery__tile--polaroid .img-placeholder { min-height: 260px; border-radius: 0; }
  .gallery__caption {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    text-align: center;
    font-family: var(--display);
    font-style: italic;
    font-weight: 500;
    font-size: 13px;
    color: var(--brand-text);
    opacity: 0.75;
    letter-spacing: 0.02em;
  }
  .gallery__tile--tape {
    background: #fff;
    padding: 6px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    position: relative;
  }
  .gallery__tile--tape::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 30%;
    width: 70px;
    height: 22px;
    background: color-mix(in srgb, var(--brand-secondary) 25%, white);
    opacity: 0.85;
    transform: rotate(-4deg);
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  }
  .gallery__tile--tape .img-placeholder { min-height: 260px; border-radius: 0; }
  .gallery__tile--plain {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  }
  .gallery__tile--plain .img-placeholder { min-height: 280px; border-radius: 0; border: none; }
  @media (max-width: 980px) {
    .gallery__grid { gap: 18px 16px; }
  }
  @media (max-width: 560px) {
    .gallery__grid { gap: 12px 10px; }
    .gallery__grid .img-placeholder { min-height: 118px !important; }
    .gallery__tile { transform: none !important; }
    .gallery__caption { display: none; }
    .gallery .placeholder-prompt { display: none; }
    .gallery__tile--polaroid { padding: 6px 6px 8px; }
  }

  /* ============================================================
     SOCIAL PROOF
  ============================================================ */
  .proof { background: var(--brand-dark); color: #fff; }
  .proof__head {
    max-width: 1280px;
    margin: 0 auto 56px;
  }
  .proof__head .eyebrow {
    color: #fff;
    background: transparent;
    margin-bottom: 18px;
  }
  .proof__head h2 { color: #fff; max-width: 20ch; }
  .proof__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
  }
  @media (max-width: 1080px) { .proof__grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px)  { .proof__grid { grid-template-columns: 1fr; } }
  .proof__featured {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .proof__quote-mark {
    font-family: var(--display);
    font-size: 54px;
    line-height: 0.6;
    color: var(--brand-primary);
    opacity: 0.6;
    margin-bottom: 10px;
  }
  .proof__featured blockquote {
    font-family: var(--display);
    font-size: clamp(15px, 1.25vw, 17px);
    line-height: 1.55;
    color: #fff;
    font-weight: 400;
    margin-bottom: 20px;
    font-style: italic;
  }
  .proof__attrib {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .proof__attrib-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--brand-primary) 50%, white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
  }
  .proof__attrib-name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
  }
  .proof__attrib-role {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
  }
  .proof__side { display: flex; flex-direction: column; gap: 24px; }
  .proof__mini {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
  }
  .proof__mini-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
  }
  .proof__mini-name { margin-top: auto; }
  .proof__mini-stars span {
    color: var(--brand-secondary);
    font-size: 14px;
    letter-spacing: 1px;
  }
  .proof__mini p {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
    font-style: italic;
  }
  .proof__mini-name {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  .proof__stats {
    max-width: 1280px;
    margin: 64px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .proof__stat-num {
    font-family: var(--display);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    display: block;
  }
  .proof__stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.4;
  }
  @media (max-width: 980px) {
    .proof__stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  }

  /* ============================================================
     FAQ
  ============================================================ */
  .faq { background: #ffffff; }
  .faq__head {
    max-width: 740px;
    margin: 0 auto 48px;
    text-align: center;
  }
  .faq__head .eyebrow { margin-bottom: 16px; }
  .faq__list {
    max-width: 740px;
    margin: 0 auto;
  }
  .faq-item {
    border-bottom: 1px solid var(--line);
  }
  .faq-item:first-child { border-top: 1px solid var(--line); }
  .faq-q {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--brand-text);
    text-align: left;
    cursor: pointer;
    line-height: 1.4;
  }
  .faq-chev {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--brand-primary);
  }
  .faq-q[aria-expanded="true"] .faq-chev { transform: rotate(180deg); }
  .faq-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s var(--ease-out);
  }
  .faq-q[aria-expanded="true"] + .faq-a { max-height: 600px; }
  .faq-a-inner { padding: 0 0 24px 0; }
  .faq-a-inner p { font-size: 15.5px; line-height: 1.7; margin: 0; max-width: 65ch; }

  /* ============================================================
     FINAL CTA
  ============================================================ */
  .final {
    background: var(--brand-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .final::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--brand-primary) 35%, transparent);
    filter: blur(80px);
    pointer-events: none;
  }
  .final__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .final__content .eyebrow {
    color: #fff;
    background: transparent;
    margin-bottom: 20px;
  }
  .final__content h2 { color: #fff; margin-bottom: 20px; }
  .final__content p {
    color: rgba(255,255,255,0.78);
    font-size: 17px;
    margin-bottom: 28px;
  }
  .final__reassure {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
  }
  .final__reassure-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
  }
  .final__reassure-item::before {
    content: '';
    width: 18px; height: 18px; flex-shrink: 0;
    background: var(--brand-primary);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  }
  .final__form {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-lg);
  }
  .final__form-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--brand-text);
    margin-bottom: 6px;
  }
  .final__form-sub {
    font-size: 13px;
    color: var(--ink-soft);
    margin-bottom: 22px;
  }
  @media (max-width: 980px) {
    .final__inner { grid-template-columns: 1fr; gap: 40px; }
  }

  /* ============================================================
     FOOTER
  ============================================================ */
  .footer {
    background: #0a0a0a;
    color: rgba(255,255,255,0.7);
    padding: 56px 64px 32px;
  }
  @media (max-width: 1024px) { .footer { padding: 50px 32px 28px; } }
  @media (max-width: 720px)  { .footer { padding: 40px 16px 24px; } }
  .footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer__col h4 {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .footer__brand img {
    display: block;
    height: 34px;
    width: auto;
    max-width: 160px;
    margin-bottom: 16px;
    object-fit: contain;
    background: #fff;
    padding: 8px 12px;
    border-radius: 8px;
  }
  .footer__tagline {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    max-width: 30ch;
  }
  .footer__contact-item {
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.55;
  }
  .footer__contact-item a {
    color: inherit;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .footer__contact-item a:hover { color: #fff; }
  .footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer__links a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
  }
  .footer__links a:hover { color: #fff; }
  .footer__bottom {
    max-width: 1280px;
    margin: 24px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    flex-wrap: wrap;
  }
  @media (max-width: 720px) {
    .footer__inner { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom { flex-direction: column; align-items: flex-start; }
  }

  /* ============================================================
     MOBILE GLOBAL ADJUSTMENTS
  ============================================================ */
  @media (max-width: 768px) {
    h1 { font-size: 34px; }
    h2 { font-size: 28px; }
    p { font-size: 16px; }
    p.lede { font-size: 17px; }
    .hero__form { padding: 28px 22px; }
    .solution__row-num { font-size: 56px; }
  }
  @media (max-width: 480px) {
    h1 { font-size: 30px; line-height: 1.15; }
    h2 { font-size: 26px; }
    .hero__form-title { font-size: 19px; }
    .proof__featured { padding: 32px 24px; }
    .proof__featured blockquote { font-size: 20px; }
    .benefits__feature-stat-num { font-size: 44px; }
    .final__form { padding: 28px 22px; }
  }

  /* ============================================================
     DISCIPLINES - three-card service overview (Chiro-led)
  ============================================================ */
  .disc { background: #ffffff; }
  .disc__head {
    max-width: 1280px;
    margin: 0 auto 52px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: end;
  }
  .disc__head h2 { max-width: 18ch; }
  .disc__head h2 .hi-mark { white-space: nowrap; }
  .disc__head p { margin-left: auto; }
  .disc__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.12fr 0.94fr 0.94fr;
    gap: 26px;
    align-items: start;
  }
  .disc__card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 34px 30px 30px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    height: 100%;
  }
  .disc__card::before {
    content: '';
    position: absolute;
    top: 0; left: 30px; right: 30px;
    height: 3px;
    background: var(--brand-primary);
    opacity: 0.35;
  }
  .disc__card--lead {
    background: var(--brand-paper);
    box-shadow: var(--shadow-md);
  }
  .disc__card--lead::before { opacity: 1; height: 4px; left: 0; right: 0; }
  .disc__tier {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-primary);
    background: var(--brand-primary-10);
    padding: 5px 11px;
    border-radius: 100px;
    margin-bottom: 18px;
  }
  .disc__num {
    font-family: var(--display);
    font-size: 46px;
    font-weight: 300;
    line-height: 1;
    color: var(--brand-primary);
    letter-spacing: -0.04em;
    margin-bottom: 14px;
  }
  .disc__name { font-size: 23px; font-weight: 700; margin-bottom: 10px; }
  .disc__tagline { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 22px; }
  .disc__block { margin-bottom: 18px; }
  .disc__label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin-bottom: 7px;
    display: block;
  }
  .disc__block p { font-size: 14px; line-height: 1.62; color: var(--ink-soft); margin: 0; }
  .disc__treat {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }
  .disc__treat-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-text);
    opacity: 0.55;
    margin-bottom: 12px;
    display: block;
  }
  .disc__treat ul { display: flex; flex-direction: column; gap: 9px; }
  .disc__treat li {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 9px;
    font-size: 13.5px;
    line-height: 1.45;
    color: var(--brand-text);
    font-weight: 500;
  }
  .disc__treat li svg { width: 15px; height: 15px; color: var(--brand-primary); margin-top: 2px; }
  @media (max-width: 980px) {
    .disc__head { grid-template-columns: 1fr; gap: 16px; }
    .disc__head p { margin-left: 0; }
    .disc__grid { grid-template-columns: 1fr; gap: 20px; }
  }

  /* Triptych under the discipline cards */
  .disc__triptych {
    max-width: 1280px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: 1.12fr 0.94fr 0.94fr;
    gap: 26px;
  }
  .disc__shot { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
  .disc__shot .img-placeholder { min-height: 300px; border-radius: 0; border: none; }
  .disc__shot-img { width: 100%; height: 320px; object-fit: cover; object-position: center; display: block; }
  .disc__shot-tag {
    position: absolute;
    left: 18px; bottom: 16px;
    color: #fff;
    font-family: var(--display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 14px rgba(0,0,0,0.55);
    z-index: 3;
  }
  .disc__shot::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.55), transparent 55%);
    z-index: 2;
  }
  @media (max-width: 980px) {
    .disc__triptych { grid-template-columns: 1fr; gap: 16px; }
  }

  /* The OHC Difference - dark USP callout */
  .ohc-diff {
    max-width: 1280px;
    margin: 40px auto 0;
    background: var(--brand-dark);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 44px 48px;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 28px;
    align-items: start;
    position: relative;
    overflow: hidden;
  }
  .ohc-diff::before {
    content: '';
    position: absolute; top: -60px; right: -40px;
    width: 240px; height: 240px; border-radius: 50%;
    background: color-mix(in srgb, var(--brand-primary) 40%, transparent);
    filter: blur(60px); pointer-events: none;
  }
  .ohc-diff__icon {
    width: 64px; height: 64px; border-radius: 50%;
    border: 1.5px dashed color-mix(in srgb, var(--brand-primary) 70%, #fff);
    display: flex; align-items: center; justify-content: center;
    color: var(--brand-primary); position: relative; z-index: 2;
  }
  .ohc-diff__body { position: relative; z-index: 2; }
  .ohc-diff__eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
    text-transform: uppercase; color: color-mix(in srgb, #fff 60%, var(--brand-primary));
    margin-bottom: 14px; display: block;
  }
  .ohc-diff__body p { color: rgba(255,255,255,0.85); font-size: 17px; line-height: 1.65; margin: 0; max-width: none; }
  .ohc-diff__body p strong { color: #fff; font-weight: 700; }
  @media (max-width: 720px) {
    .ohc-diff { grid-template-columns: 1fr; padding: 32px 26px; gap: 18px; }
  }

  /* Tier-3 techniques reassurance strip */
  .techniques {
    max-width: 1280px;
    margin: 26px auto 0;
    background: var(--brand-cream);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 28px;
    align-items: center;
  }
  .techniques h3 { font-size: 19px; font-weight: 700; line-height: 1.3; }
  .techniques p { font-size: 14px; color: var(--ink-soft); margin-top: 8px; }
  .techniques__chips { display: flex; flex-wrap: wrap; gap: 9px; }
  .techniques__chip {
    font-size: 12.5px; font-weight: 600; color: var(--brand-text);
    background: #fff; border: 1px solid var(--line);
    padding: 8px 14px; border-radius: 100px;
  }
  @media (max-width: 820px) {
    .techniques { grid-template-columns: 1fr; gap: 18px; }
  }

  /* ============================================================
     CARE GUIDE - tabbed deep dive (treatments / signs / benefits)
  ============================================================ */
  .guide { background: var(--brand-paper); }
  .guide__head { max-width: 1280px; margin: 0 auto 36px; text-align: center; }
  .guide__head .eyebrow { margin-bottom: 16px; }
  .guide__head h2 { margin: 0 auto 14px; max-width: 22ch; }
  .guide__head p { margin: 0 auto; }
  .guide__tabs {
    max-width: 1280px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .guide__tab {
    font-family: var(--display);
    font-size: 15px;
    font-weight: 600;
    color: var(--ink-soft);
    background: #fff;
    border: 1px solid var(--line);
    padding: 13px 26px;
    border-radius: 100px;
    transition: all 0.25s var(--ease-out);
    display: inline-flex;
    align-items: center;
    gap: 9px;
  }
  .guide__tab small {
    font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; opacity: 0.6;
  }
  .guide__tab:hover { border-color: var(--brand-primary); color: var(--brand-text); }
  .guide__tab.is-active {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
  }
  .guide__tab.is-active small { opacity: 0.8; color: #fff; }
  .guide__panel { display: none; max-width: 1280px; margin: 0 auto; }
  .guide__panel.is-active { display: block; animation: guideFade 0.4s var(--ease-out); }
  @keyframes guideFade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
  .guide__intro {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-soft);
  }
  .guide__sub {
    font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--brand-primary);
    display: flex; align-items: center; gap: 12px;
    cursor: pointer; list-style: none; margin: 0;
    padding: 18px 0; border-bottom: 1px solid var(--line);
  }
  .guide__sub::-webkit-details-marker { display: none; }
  .guide__chev2 { width: 18px; height: 18px; margin-left: auto; flex-shrink: 0; transition: transform 0.3s ease; }
  details.guide__group[open] > .guide__sub .guide__chev2 { transform: rotate(180deg); }
  details.guide__group > .guide__signs,
  details.guide__group > .guide__treats,
  details.guide__group > .guide__bens { margin-top: 26px; }
  .guide__group { margin-bottom: 16px; border-radius: var(--radius-md); }
  .guide__group:last-child { margin-bottom: 0; }

  /* treatments cards */
  .guide__treats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .guide__treat {
    background: #fff; border-radius: var(--radius-md);
    padding: 26px 24px; box-shadow: var(--shadow-sm);
  }
  .guide__treat h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--brand-text); }
  .guide__treat p { font-size: 13.5px; line-height: 1.62; color: var(--ink-soft); margin: 0; }
  .guide__treat-list { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 7px; }
  .guide__treat-list span {
    font-size: 11.5px; font-weight: 500; color: var(--brand-text);
    background: var(--brand-cream); padding: 5px 10px; border-radius: 6px;
  }

  /* signs grid */
  .guide__signs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 40px; }
  .guide__sign {
    display: grid; grid-template-columns: 26px 1fr; gap: 14px;
    padding: 20px 0; border-bottom: 1px solid var(--line); align-items: start;
  }
  .guide__sign svg { width: 22px; height: 22px; color: var(--brand-primary); margin-top: 2px; }
  .guide__sign h4 { font-size: 15.5px; font-weight: 700; margin-bottom: 5px; color: var(--brand-text); }
  .guide__sign p { font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

  /* benefits numbered */
  .guide__bens { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .guide__ben {
    background: #fff; border-radius: var(--radius-md);
    padding: 24px 22px; box-shadow: var(--shadow-sm); position: relative;
  }
  .guide__ben-num {
    font-family: var(--display); font-size: 13px; font-weight: 700;
    color: var(--brand-primary); letter-spacing: 0.1em; margin-bottom: 10px;
  }
  .guide__ben h4 { font-size: 15.5px; font-weight: 700; margin-bottom: 8px; color: var(--brand-text); }
  .guide__ben p { font-size: 13px; line-height: 1.6; color: var(--ink-soft); margin: 0; }
  @media (max-width: 880px) {
    .guide__treats, .guide__bens { grid-template-columns: 1fr; }
    .guide__signs { grid-template-columns: 1fr; gap: 0 0; }
  }
  
  /* ── Chiropractic team grid — 4 columns ── */
.team__grid1 {
  grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 1024px) {
  .team__grid1 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 560px) {
  .team__grid1 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

  /* ============================================================
     TEAM - practitioners grouped by discipline
  ============================================================ */
.team-grid-last2 {
    grid-template-columns: repeat(2, 1fr) !important;
    width: 900px !important;
}
.team-grid-last2 {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 30px !important;
}
  .team { background: #ffffff; }
  .team__head { max-width: 1280px; margin: 0 auto 48px; }
  .team__head .eyebrow { margin-bottom: 16px; }
  .team__head h2 { max-width: 20ch; margin-bottom: 14px; }
  .team__head p { max-width: 60ch; }
  .team__group { max-width: 1280px; margin: 0 auto 48px; }
  .team__group:last-child { margin-bottom: 0; }
  .team__row {
    max-width: 1280px;
    margin: 0 auto 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 4vw, 56px);
    align-items: start;
  }
  .team__row:last-child { margin-bottom: 0; }
  .team__row .team__group { max-width: none; margin: 0; }
  @media (max-width: 760px) { .team__row { grid-template-columns: 1fr; gap: 40px; } }
  .team__group-label {
    font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--brand-primary);
    margin-bottom: 22px; display: flex; align-items: center; gap: 14px;
  }
  .team__group-label span { color: var(--ink-soft); font-weight: 600; letter-spacing: 0.04em; }
  .team__group-label::after { content: ''; flex: 1; height: 1px; background: var(--line); }
  .team__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 28px; }
  .team__card { display: flex; flex-direction: column; }
  .team__photo {
    width: 100%; aspect-ratio: 3/4; border-radius: var(--radius-lg);
    overflow: hidden; background: var(--brand-cream); margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
  }
  .team__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
  .team__name { font-size: 17px; font-weight: 700; margin-bottom: 3px; color: var(--brand-text); }
  .team__role { font-size: 13px; font-weight: 600; color: var(--brand-primary); margin-bottom: 8px; }
  .team__cred {
    font-size: 11px; font-weight: 600; letter-spacing: 0.02em;
    color: var(--ink-soft); text-transform: uppercase; margin-bottom: 10px; line-height: 1.45;
  }
  .team__bio { font-size: 13px; line-height: 1.6; color: var(--ink-soft); margin: 0; }
  @media (max-width: 560px) {
    .team__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .team__bio { display: none; }
  }

  /* ============================================================
     CONDITIONS - treated head to toe, by body region
  ============================================================ */
  .cond { background: var(--brand-cream); }
  .cond__head { max-width: 1280px; margin: 0 auto 48px; text-align: center; }
  .cond__head .eyebrow { margin-bottom: 16px; }
  .cond__head h2 { margin: 0 auto 14px; max-width: 22ch; }
  .cond__head p { margin: 0 auto; }
  .cond__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: start;
  }
  .cond__card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 24px 22px;
    box-shadow: var(--shadow-sm);
  }
  .cond__region {
    width: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--display);
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-text);
    text-align: left;
    padding: 0;
  }
  .cond__region-name { display: inline-flex; align-items: center; gap: 11px; flex: 1; }
  .cond__icon { width: 21px; height: 21px; color: var(--brand-primary); flex-shrink: 0; }
  .cond__region-count {
    font-size: 12px; font-weight: 700;
    color: var(--brand-primary);
    background: transparent; padding: 0;
  }
  .cond__chev { width: 18px; height: 18px; color: var(--ink-soft); transition: transform 0.3s ease; flex-shrink: 0; }
  .cond__region[aria-expanded="true"] .cond__chev { transform: rotate(180deg); }
  .cond__list-wrap { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
  .cond__region[aria-expanded="true"] + .cond__list-wrap { max-height: 900px; }
  .cond__list { padding-top: 16px; margin-top: 14px; border-top: 1px solid var(--line); }
  .cond__list { display: flex; flex-direction: column; gap: 9px; }
  .cond__item {
    font-size: 13px;
    line-height: 1.45;
    color: var(--brand-text);
    padding-left: 16px;
    position: relative;
  }
  .cond__item::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--brand-primary);
    opacity: 0.55;
  }
  .cond__item small { display: block; color: var(--ink-soft); font-size: 11.5px; margin-top: 1px; }
  .cond__note { max-width: 1280px; margin: 36px auto 0; text-align: center; font-size: 14px; color: var(--ink-soft); }
  @media (max-width: 1024px) { .cond__grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 760px)  { .cond__grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 460px)  { .cond__grid { grid-template-columns: 1fr; } }

  /* ============================================================
     CREDIBILITY MARQUEE - moving trust bar below hero
  ============================================================ */
  .cred-marquee {
    --marq-bg: color-mix(in srgb, var(--brand-primary) 68%, #0f172a);
    display: flex; align-items: stretch;
    background: var(--marq-bg);
    overflow: hidden;
  }
  .cred-label {
    flex-shrink: 0; z-index: 2; display: flex; align-items: center;
    background: var(--brand-primary); color: #fff;
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; white-space: nowrap; padding: 0 26px;
  }
  .cred-viewport { flex: 1; overflow: hidden; position: relative; }
  .cred-viewport::before, .cred-viewport::after {
    content: ""; position: absolute; top: 0; bottom: 0; width: 56px; z-index: 2; pointer-events: none;
  }
  .cred-viewport::before { left: 0; background: linear-gradient(90deg, var(--marq-bg), transparent); }
  .cred-viewport::after { right: 0; background: linear-gradient(270deg, var(--marq-bg), transparent); }
  .cred-track { display: flex; width: max-content; animation: credScroll 45s linear infinite; }
  .cred-marquee:hover .cred-track { animation-play-state: paused; }
  .cred-seq { display: flex; align-items: center; flex-shrink: 0; }
  .cred-item {
    display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
    padding: 16px 30px; position: relative; font-size: 14px; font-weight: 600;
    color: color-mix(in srgb, #fff 88%, transparent);
  }
  .cred-item::after {
    content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    width: 5px; height: 5px; border-radius: 50%;
    background: color-mix(in srgb, var(--brand-primary) 30%, #fff); opacity: 0.6;
  }
  .cred-item strong { color: color-mix(in srgb, var(--brand-primary) 38%, #fff); font-weight: 800; font-size: 16px; letter-spacing: -0.01em; }
  @keyframes credScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @media (max-width: 720px) {
    .cred-label { padding: 0 16px; font-size: 10px; letter-spacing: 1.5px; }
    .cred-item { padding: 14px 22px; font-size: 13px; }
  }
  @media (prefers-reduced-motion: reduce) {
    .cred-track { animation: none; }
    .cred-viewport { overflow-x: auto; }
  }

  /* ============================================================
     SECTION CTA - repeating button to the lead form
  ============================================================ */
  .sec-cta { max-width: 1280px; margin: clamp(38px, 5vw, 56px) auto 0; text-align: center; }
  .btn-book {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--brand-primary); color: #fff;
    font-size: 15px; font-weight: 700; letter-spacing: 0.01em;
    padding: 15px 34px; border-radius: var(--radius-sm);
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  }
  .btn-book svg { width: 18px; height: 18px; }
  .btn-book:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
  .sec-cta--on-dark .btn-book { background: #fff; color: var(--brand-dark); }
  .sec-cta--on-dark .btn-book:hover { background: var(--brand-primary); color: #fff; }

  /* ============================================================
     INLINE CTA BAR - contrasting strip inside a section
  ============================================================ */
  .cta-bar {
    max-width: 1280px; margin: clamp(40px, 5vw, 56px) auto 0;
    border-radius: var(--radius-lg); padding: 24px 34px;
    display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap;
  }
  .cta-bar__text { font-size: 18px; font-weight: 700; margin: 0; max-width: 44ch; line-height: 1.35; letter-spacing: -0.01em; }
  .cta-bar__btn {
    display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
    font-size: 15px; font-weight: 700; padding: 14px 28px; border-radius: var(--radius-sm);
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  }
  .cta-bar__btn svg { width: 18px; height: 18px; }
  .cta-bar--dark { background: var(--brand-dark); color: #fff; }
  .cta-bar--dark .cta-bar__text { color: #fff; }
  .cta-bar--dark .cta-bar__btn { background: var(--brand-primary); color: #fff; }
  .cta-bar--dark .cta-bar__btn:hover { background: #fff; color: var(--brand-dark); transform: translateY(-2px); }
  .cta-bar--light { background: #fff; color: var(--brand-text); box-shadow: var(--shadow-md); }
  .cta-bar--light .cta-bar__btn { background: var(--brand-primary); color: #fff; }
  .cta-bar--light .cta-bar__btn:hover { background: var(--brand-dark); transform: translateY(-2px); }
  @media (max-width: 640px) {
    .cta-bar { flex-direction: column; align-items: flex-start; gap: 16px; padding: 22px 24px; }
    .cta-bar__text { font-size: 16px; }
    .cta-bar__btn { width: 100%; justify-content: center; }
  }

  /* ── Gallery: pinned (thumbtack) frame ── */
  .gallery__tile--pin {
    background: #fff; padding: 10px; box-shadow: 0 8px 26px rgba(0,0,0,0.12); position: relative;
  }
  .gallery__tile--pin .img-placeholder { min-height: 260px; border-radius: 0; }
  .gallery__tile--pin::before {
    content: ''; position: absolute; z-index: 6; top: -9px; left: 50%; transform: translateX(-50%);
    width: 16px; height: 16px; border-radius: 50%;
    background: radial-gradient(circle at 34% 30%, color-mix(in srgb, var(--brand-primary) 50%, #fff), var(--brand-primary) 62%);
    box-shadow: 0 3px 7px rgba(0,0,0,0.35);
  }
  .gallery__tile--pin::after {
    content: ''; position: absolute; z-index: 5; top: 5px; left: 50%; transform: translateX(-50%);
    width: 3px; height: 9px; border-radius: 2px;
    background: color-mix(in srgb, var(--brand-primary) 72%, #000);
  }

  /* ── Review platform badges (Google / Facebook) ── */
  .proof__platforms {
    max-width: 1280px; margin: 0 auto 44px;
    display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
  }
  .proof__platform {
    display: flex; align-items: center; gap: 14px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-md); padding: 15px 22px;
  }
  .proof__platform-logo { width: 30px; height: 30px; flex-shrink: 0; }
  .proof__platform-rating { font-family: var(--display); font-size: 22px; font-weight: 800; color: #fff; line-height: 1; }
  .proof__platform-stars { color: #fbbc04; letter-spacing: 1.5px; font-size: 13px; display: block; margin: 3px 0; }
  .proof__platform-meta { font-size: 11.5px; color: rgba(255,255,255,0.62); }
  .proof__featured-stars { color: #fbbc04; letter-spacing: 2px; font-size: 15px; margin-bottom: 14px; }
  @media (max-width: 560px) { .proof__platform { flex: 1 1 100%; } }

  /* ============================================================
     HERO - visual enrichment
  ============================================================ */
  .hero__blob { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; }
  .hero__blob--1 { width: 420px; height: 420px; top: -120px; right: -60px; background: color-mix(in srgb, var(--brand-primary) 16%, transparent); }
  .hero__blob--2 { width: 360px; height: 360px; bottom: -160px; left: -120px; background: color-mix(in srgb, var(--brand-secondary) 16%, transparent); }
  .hero__proof { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
  .hero__avatars { display: flex; }
  .hero__avatars span {
    width: 40px; height: 40px; border-radius: 50%; border: 2px solid #fff; margin-left: -12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; color: #fff; box-shadow: var(--shadow-sm);
  }
  .hero__avatars span:first-child { margin-left: 0; }
  .hero__proof-text { font-size: 13px; color: var(--ink-soft); line-height: 1.45; }
  .hero__proof-text strong { color: var(--brand-text); font-weight: 700; }
  .hero__stars { color: #f5a623; letter-spacing: 1.5px; font-size: 13px; }
  .hero__form-wrap { position: relative; }
  .hero__form-glow {
    position: absolute; width: 300px; height: 300px; border-radius: 50%; right: -40px; top: 24px;
    background: color-mix(in srgb, var(--brand-primary) 22%, transparent); filter: blur(60px); pointer-events: none; z-index: 0;
  }
  .hero__form { position: relative; z-index: 2; }
  .hero__float-rating {
    position: absolute; top: -16px; right: 6px; z-index: 5;
    background: #fff; box-shadow: var(--shadow-md); border-radius: 100px; padding: 9px 15px;
    display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; color: var(--brand-text);
  }
  .hero__float-stat {
    position: absolute; top: -32px; right: 26px; z-index: 5;
    width: 122px; height: 136px;
    background: var(--brand-primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    filter: drop-shadow(0 14px 26px rgba(15,23,42,0.28));
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; gap: 3px; color: #fff;
  }
  .hero__float-stat::before {
    content: ''; position: absolute; inset: 3px; z-index: 0;
    background: var(--brand-dark);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  }
  .hero__float-stat-num { position: relative; z-index: 1; font-family: var(--display); font-size: 32px; font-weight: 800; line-height: 1; color: #fff; }
  .hero__float-stat-num span { color: color-mix(in srgb, var(--brand-primary) 55%, #fff); }
  .hero__float-stat-label { position: relative; z-index: 1; font-size: 10.5px; line-height: 1.3; color: rgba(255,255,255,0.82); }
  .hero__media { position: relative; max-width: 1280px; margin: clamp(44px, 5vw, 68px) auto 0; }
  .hero__media .img-placeholder { overflow: hidden; }
  .hero__media-badge {
    position: absolute; left: 20px; bottom: 18px; z-index: 3;
    background: rgba(255,255,255,0.94); color: var(--brand-text); font-size: 12px; font-weight: 700;
    padding: 9px 16px; border-radius: 100px; box-shadow: var(--shadow-md);
  }
  @media (max-width: 980px) {
    .hero__float-rating { display: none; }
    .hero__float-stat { right: 12px; top: -28px; width: 104px; height: 116px; }
  }

  /* ── Disciplines collapsible detail ── */
  .disc__toggle {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    width: 100%; margin-top: 20px; padding: 14px 0 0;
    border: none; border-top: 1px solid var(--line);
    background: transparent; cursor: pointer;
    color: var(--brand-primary); font-family: var(--display);
    font-size: 13px; font-weight: 700; letter-spacing: 0.01em; text-align: left;
  }
  .disc__chev { width: 16px; height: 16px; transition: transform 0.3s ease; flex-shrink: 0; }
  .disc__toggle[aria-expanded="true"] .disc__chev { transform: rotate(180deg); }
  .disc__detail { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease-out); }
  .disc__toggle[aria-expanded="true"] + .disc__detail { max-height: 1400px; }
  .disc__detail-inner { padding-top: 20px; }
  .disc__detail-inner .disc__treat { margin-top: 18px; }

  /* ============================================================
     PROCESS - horizontal stepper
  ============================================================ */
  .process__track {
    max-width: 1280px; margin: 0 auto; position: relative;
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
  }
  .process__track::before {
    content: ''; position: absolute; top: 31px; left: 9%; right: 9%; height: 2px; z-index: 0;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--brand-primary) 45%, transparent) 18%, color-mix(in srgb, var(--brand-primary) 45%, transparent) 82%, transparent);
  }
  .process__hstep { position: relative; z-index: 1; display: flex; flex-direction: column; }
  .process__hbadge {
    width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 22px;
    display: flex; align-items: center; justify-content: center;
    background: #fff; border: 2px solid color-mix(in srgb, var(--brand-primary) 35%, var(--line));
    font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--brand-primary);
    box-shadow: 0 4px 14px color-mix(in srgb, var(--brand-primary) 16%, transparent);
    transition: transform 0.3s var(--ease-out), background 0.3s, color 0.3s;
  }
  .process__hstep:hover .process__hbadge { background: var(--brand-primary); color: #fff; transform: translateY(-3px); }
  .process__hcard {
    background: #fff; border-radius: var(--radius-md); padding: 24px 20px;
    box-shadow: var(--shadow-sm); flex: 1; text-align: center;
    transition: box-shadow 0.3s, transform 0.3s var(--ease-out);
  }
  .process__hstep:hover .process__hcard { box-shadow: var(--shadow-md); transform: translateY(-2px); }
  .process__hstep h3 { font-size: 16px; font-weight: 700; margin-bottom: 9px; line-height: 1.3; }
  .process__hstep p { font-size: 13px; line-height: 1.55; color: var(--ink-soft); margin: 0; }
  .process__hkicker {
    display: block; text-align: center; font-size: 10px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-primary);
    opacity: 0.7; margin-bottom: 10px;
  }
  @media (max-width: 980px) {
    .process__track { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; overflow: visible; }
    .process__track::before { display: none; }
    .process__hstep { flex: 0 0 calc((100% - 32px) / 3); min-width: 0; }
  }
  @media (max-width: 480px) {
    .process__track { gap: 10px; }
    .process__hstep { flex-basis: calc((100% - 20px) / 3); }
    .process__hbadge { width: 46px; height: 46px; border-width: 3px; margin-bottom: 14px; }
    .process__hbadge svg { width: 20px; height: 20px; }
    .process__hcard { padding: 14px 10px; }
    .process__hstep h3 { font-size: 13.5px; }
    .process__hstep p { font-size: 11.5px; }
    .process__hkicker { font-size: 9px; letter-spacing: 0.12em; }
    .process__ghost { font-size: 38px; top: 2px; right: 8px; }
  }

  /* extra gallery tile rotations */
  .gallery__tile-7 { transform: rotate(1.8deg) translateY(-6px); }
  .gallery__tile-8 { transform: rotate(-1.6deg) translateY(10px); }
  .gallery__tile-9 { transform: rotate(2.2deg) translateY(-4px); }

  /* ── Process stepper - richer visuals ── */
  .process__track::before {
    background: repeating-linear-gradient(90deg, color-mix(in srgb, var(--brand-primary) 45%, transparent) 0 8px, transparent 8px 18px);
    height: 3px; top: 30px;
  }
  .process__hbadge {
    background: var(--brand-primary); color: #fff;
    border: 4px solid var(--brand-cream);
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--brand-primary) 35%, transparent), 0 8px 18px color-mix(in srgb, var(--brand-primary) 26%, transparent);
  }
  .process__hbadge svg { width: 26px; height: 26px; }
  .process__hstep:hover .process__hbadge { background: var(--brand-dark); color: #fff; transform: translateY(-3px) scale(1.04); }
  .process__hcard { position: relative; overflow: hidden; border-top: 3px solid var(--brand-primary); }
  .process__ghost {
    position: absolute; top: 4px; right: 12px; pointer-events: none;
    font-family: var(--display); font-size: 58px; font-weight: 800; line-height: 1;
    color: color-mix(in srgb, var(--brand-primary) 9%, transparent);
  }

  /* ── Proof / reviews - paper notes instead of glass boxes ── */
  .proof__featured, .proof__mini {
    position: relative;
    background: #fbf8ef;
    background-image: repeating-linear-gradient(transparent, transparent 25px, rgba(15,23,42,0.045) 26px);
    border: none;
    color: var(--brand-text);
    box-shadow: 0 16px 34px rgba(0,0,0,0.30);
  }
  .proof__featured { transform: rotate(-0.5deg); }
  .proof__grid > .proof__mini:nth-child(2) { transform: rotate(0.7deg); }
  .proof__grid > .proof__mini:nth-child(3) { transform: rotate(-0.6deg); }
  .proof__grid > .proof__mini:nth-child(4) { transform: rotate(0.6deg); }
  .proof__featured::before, .proof__mini::before {
    content: ''; position: absolute; top: -11px; left: 50%; transform: translateX(-50%) rotate(-3deg);
    width: 92px; height: 23px; z-index: 3;
    background: color-mix(in srgb, var(--brand-primary) 24%, #fff);
    opacity: 0.5; box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  }
  .proof__featured blockquote { color: var(--brand-text); }
  .proof__quote-mark { color: var(--brand-primary); opacity: 0.4; }
  .proof__attrib { border-top-color: rgba(15,23,42,0.12); }
  .proof__attrib-name { color: var(--brand-text); }
  .proof__attrib-role { color: var(--ink-soft); }
  .proof__mini p { color: var(--brand-text); }
  .proof__mini-name { color: var(--ink-soft); }
  .proof__mini-stars span, .proof__featured-stars { color: #fbbc04; }

  /* Mobile only: pair each discipline image with its own card (desktop untouched) */
  .disc__card-img { display: none; }
  @media (max-width: 720px) {
    .disc__triptych { display: none; }
    .disc__card { overflow: hidden; }
    .disc__card-img {
      display: block;
      width: 100% !important;
      height: auto;
    }
    /* show hero image in full (not cropped) on mobile */
    .hero__media .img-placeholder { height: auto !important; max-height: none !important; min-height: 0 !important; }
    .hero__media .img-placeholder img { height: auto !important; object-fit: contain !important; }
  }

/* ── Sticky-header enforcement (auto-applied) ── */
.site-header, header.site-header, .sticky-header, header.sticky-header {
  position: fixed !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  z-index: 1000 !important;
}
body { padding-top: 72px; }
@media (max-width: 720px) { body { padding-top: 56px; } }

/* ──────────────── */

.hero-image-bg .placeholder-prompt,
.hero-image-bg .placeholder-label,
.package-card-bg .placeholder-prompt,
.package-card-bg .placeholder-label,
[class$="-bg"] .img-placeholder .placeholder-prompt,
[class$="-bg"] .img-placeholder .placeholder-label {
  display: none !important;
}

/* ──────────────── */

.hero { position: relative; isolation: isolate; }
.hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('https://evkwtshawssegqoddiag.supabase.co/storage/v1/object/public/lp-attachments/bg/19ab62be-260a-4c8a-ae1d-65d7cb11332c/hero-1781676720389.jpeg') center/cover no-repeat; opacity: 0.5; }
.problem { position: relative; isolation: isolate; }
.problem::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('https://evkwtshawssegqoddiag.supabase.co/storage/v1/object/public/lp-attachments/bg/19ab62be-260a-4c8a-ae1d-65d7cb11332c/problem-1781676755970.png') center/cover no-repeat; opacity: 0.45; }
.disc { position: relative; isolation: isolate; }
.disc::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('https://evkwtshawssegqoddiag.supabase.co/storage/v1/object/public/lp-attachments/bg/19ab62be-260a-4c8a-ae1d-65d7cb11332c/disc-1781677663925.png') center/cover no-repeat; opacity: 0.45; }
.cond { position: relative; isolation: isolate; }
.cond::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('https://evkwtshawssegqoddiag.supabase.co/storage/v1/object/public/lp-attachments/bg/19ab62be-260a-4c8a-ae1d-65d7cb11332c/cond-1781678722514.png') center/cover no-repeat; opacity: 0.25; }
.proof { position: relative; isolation: isolate; }
.proof::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('images/proof-1781678978420.png') center/cover no-repeat; opacity: 0.3; }
.team { position: relative; isolation: isolate; }
.team::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('https://evkwtshawssegqoddiag.supabase.co/storage/v1/object/public/lp-attachments/bg/19ab62be-260a-4c8a-ae1d-65d7cb11332c/team-1781679007772.png') center/cover no-repeat; opacity: 0.55; }
.gallery { position: relative; isolation: isolate; }
.gallery::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('https://evkwtshawssegqoddiag.supabase.co/storage/v1/object/public/lp-attachments/bg/19ab62be-260a-4c8a-ae1d-65d7cb11332c/gallery-1781679001618.png') center/cover no-repeat; opacity: 0.35; }
.guide { position: relative; isolation: isolate; }
.guide::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('https://evkwtshawssegqoddiag.supabase.co/storage/v1/object/public/lp-attachments/bg/19ab62be-260a-4c8a-ae1d-65d7cb11332c/guide-1781679102548.jpeg') center/cover no-repeat; opacity: 0.1; }
.faq { position: relative; isolation: isolate; }
.faq::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('https://evkwtshawssegqoddiag.supabase.co/storage/v1/object/public/lp-attachments/bg/19ab62be-260a-4c8a-ae1d-65d7cb11332c/faq-1781677231042.jpeg') center/cover no-repeat; opacity: 0.2; }
.final { position: relative; isolation: isolate; }
.final::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('https://evkwtshawssegqoddiag.supabase.co/storage/v1/object/public/lp-attachments/bg/19ab62be-260a-4c8a-ae1d-65d7cb11332c/final-1781676966284.png') center/cover no-repeat; opacity: 0.45; }
.solution { position: relative; isolation: isolate; }
.solution::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('https://evkwtshawssegqoddiag.supabase.co/storage/v1/object/public/lp-attachments/bg/19ab62be-260a-4c8a-ae1d-65d7cb11332c/solution-1781678642511.jpeg') center/cover no-repeat; opacity: 0.15; }
.process { position: relative; isolation: isolate; }
.process::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: -1; background: url('https://evkwtshawssegqoddiag.supabase.co/storage/v1/object/public/lp-attachments/bg/19ab62be-260a-4c8a-ae1d-65d7cb11332c/process-1781678756600.jpeg') center/cover no-repeat; opacity: 0.55; }
