  /* Nav light mode for dark hero */
  .nav {
    color: var(--paper);
  }

  .nav .logo {
    color: var(--paper);
  }

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

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

  .nav-links a.active {
    color: var(--accent);
  }

  .nav-cta {
    color: var(--paper);
    border-color: rgba(245, 242, 236, 0.3);
  }

  .nav-cta:hover {
    background: var(--paper);
    color: var(--ink);
  }

  .nav.floating {
    background: rgba(245, 242, 236, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--line);
    box-shadow: 0 10px 40px rgba(35, 31, 32, 0.12),
      0 4px 12px rgba(35, 31, 32, 0.06),
      0 2px 4px rgba(35, 31, 32, 0.04);
  }

  .nav.floating .logo {
    color: var(--ink);
  }

  .nav.floating .nav-links a {
    color: var(--ink);
    opacity: 0.65;
  }

  .nav.floating .nav-links a:hover {
    opacity: 1;
    color: var(--ink);
  }

  .nav.floating .nav-links a.active {
    color: var(--accent);
    opacity: 1;
  }

  .nav.floating .nav-cta {
    color: var(--ink);
    border-color: var(--sage);
  }

  .page-hero {
    position: relative;
    padding: 200px var(--pad-x) 100px;
    color: var(--paper);
    border-bottom: 1px solid var(--ink);
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
  }

  .page-hero .ph-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(180deg, rgba(26, 31, 27, 0.55) 0%, rgba(26, 31, 27, 0.35) 40%, rgba(26, 31, 27, 0.85) 100%),
      url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=2400&q=80');
    background-size: cover;
    background-position: center;
    z-index: 0;
  }

  .page-hero .ph-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(to right, rgba(245, 242, 236, 0.05) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(245, 242, 236, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 25%, transparent 75%);
    pointer-events: none;
    z-index: 1;
  }

  .page-hero .ph-corner-meta {
    position: absolute;
    top: 110px;
    right: var(--pad-x);
    z-index: 2;
    display: flex;
    gap: 24px;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.75;
  }

  .page-hero .ph-corner-meta .pill {
    padding: 6px 12px;
    border: 1px solid rgba(245, 242, 236, 0.25);
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 31, 27, 0.4);
    backdrop-filter: blur(10px);
  }

  .page-hero .ph-corner-meta .pill .led {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2.4s ease-in-out infinite;
  }

  .ph-inner {
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .breadcrumbs {
    display: flex;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 32px;
  }

  .ph-title {
    font-family: var(--font-sans);
    font-size: clamp(36px, 5vw, 76px);
    line-height: 0.96;
    letter-spacing: -0.035em;
    font-weight: 500;
    max-width: 24ch;
  }

  .ph-title .stroke {
    color: var(--paper);
    opacity: 0.55;
    font-weight: 400;
  }

  .ph-title .accent {
    color: var(--accent);
    font-weight: 500;
  }

  .page-hero .ph-foot {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(245, 242, 236, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .page-hero .ph-foot-meta {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.7;
  }

  /* Story / two-col */
  .story {
    background: var(--paper);
    padding: clamp(80px, 12vw, 160px) var(--pad-x) clamp(64px, 8vw, 110px);
    overflow: hidden;
  }

  .story-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    /* Text column is sized to the body copy (~60ch) so there's no dead space to its
       right; the extra width goes to the image column instead. */
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: start;
    overflow: hidden;
  }

  .story-inner .left-reveal img {
    border-radius: 25px;
    height: clamp(260px, 22vw, 320px);
    width: 100%;
    margin-top: 20px;
    object-fit: cover;
  }

  @media (max-width: 900px) {
    .story-inner {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  }

  .story h2 {
    font-family: var(--font-sans);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    font-weight: 400;
    margin-bottom: 32px;
  }

  .story p {
    font-size: 15px;
    line-height: 1.55;
    max-width: 60ch;
    margin-bottom: 24px;
  }

  .story p strong {
    color: var(--accent);
    font-weight: 500;
  }

  /* Mission/Vision split (no images) */
  .mv {
    background: var(--paper);
    padding: 0 var(--pad-x) clamp(80px, 12vw, 160px);
    overflow: hidden;
  }

  .mv-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
  }

  @media (max-width: 900px) {
    .mv-inner {
      grid-template-columns: 1fr;
    }
  }

  .mv-cell {
    padding: 60px 40px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    transition: background 0.5s var(--ease-out-expo);
  }

  .mv-cell:last-child {
    border-right: none;
  }

  .mv-cell:hover {
    background: var(--ink);
    color: var(--paper);
  }

  .mv-cell:hover .mv-eye {
    color: var(--accent);
  }

  .mv-eye {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 24px;
    transition: color 0.3s;
  }

  .mv-cell h3 {
    font-family: var(--font-sans);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    font-weight: 400;
    margin-bottom: 24px;
  }

  .mv-cell p {
    font-size: 16px;
    line-height: 1.55;
    max-width: 40ch;
    opacity: 0.85;
  }

  .mv-cell .num {
    position: absolute;
    top: 32px;
    right: 40px;
    font-family: var(--font-sans);
    font-size: 64px;
    font-weight: 400;
    color: var(--sage-deep);
    opacity: 0.5;
    transition: color 0.4s;
    font-weight: 500;
  }

  .mv-cell:hover .num {
    color: var(--accent);
  }

  /* Big stat band */
  .band {
    background: transparent;
    color: var(--ink);
    padding: clamp(60px, 9vw, 120px) var(--pad-x);
    overflow: hidden;
    position: relative;
    color: #fff;
  }

  .band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(-45deg, #fc5c7d, #f44d68, #ec1c3a, #f44d68, #fc5c7d);
    background-size: 400% 400%;
    animation: bandGradientShift 15s ease infinite;
    z-index: 0;
  }

  @keyframes bandGradientShift {
    0% {
      background-position: 0% 50%;
    }

    50% {
      background-position: 100% 50%;
    }

    100% {
      background-position: 0% 50%;
    }
  }

  .band-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    border-top: 1px solid var(--paper);
    padding-top: 60px;
    position: relative;
    z-index: 1;
  }

  @media (max-width: 800px) {
    .band-inner {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  }

  .band-stat .num {
    font-family: var(--font-sans);
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.04em;
  }

  .band-stat .num .suffix {
    font-size: 0.5em;
    font-weight: 500;
  }

  .band-stat .label {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 8px;
    max-width: 24ch;
  }

  .band-eye {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .band-h {
    font-family: var(--font-sans);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    font-weight: 400;
    max-width: 16ch;
  }

  /* Timeline — horizontal scroll narrative */
  .timeline {
    background: var(--paper);
    padding: clamp(80px, 12vw, 160px) 0 0;
    position: relative;
    /* NOTE: no `overflow: hidden` here — it would make this element the scroll
       container for the sticky .tl-sticky child and break the horizontal-scroll pin.
       The horizontal track is clipped by .tl-sticky's own overflow:hidden instead. */
  }

  .tl-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
  }

  .tl-scroller {
    position: relative;
    height: 400vh;
    margin-top: 60px;
  }

  .tl-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    background: var(--paper);
  }

  .tl-track {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    will-change: transform;
    align-items: stretch;
    transition: transform 0.06s linear;
  }

  .tl-panel {
    flex: 0 0 100vw;
    height: 100%;
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    padding: 0 var(--pad-x);
    align-items: center;
    overflow: hidden;
  }

  @media (max-width: 900px) {
    .tl-scroller {
      height: auto;
    }

    .tl-sticky {
      position: static;
      height: auto;
    }

    .tl-track {
      position: static;
      flex-direction: column;
      height: auto;
      transform: none !important;
    }

    .tl-panel {
      flex: 0 0 auto;
      grid-template-columns: 1fr;
      padding: 60px var(--pad-x);
      height: auto;
      gap: 32px;
    }
  }

  .tl-panel-text {
    padding: 60px 60px 60px 0;
    max-width: 540px;
    position: relative;
    z-index: 2;
  }

  @media (max-width: 900px) {
    .tl-panel-text {
      padding: 0;
    }
  }

  .tl-panel-eye {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    opacity: 0.55;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .tl-panel-eye .line {
    width: 36px;
    height: 1px;
    background: var(--ink);
    opacity: 0.4;
    display: inline-block;
  }

  .tl-panel-year {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: clamp(120px, 18vw, 260px);
    line-height: 0.85;
    letter-spacing: -0.045em;
    color: var(--ink);
    margin-bottom: 24px;
    position: relative;
  }

  .tl-panel-year .badge {
    position: absolute;
    top: 18px;
    right: -12px;
    transform: translateX(100%);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: var(--ink);
    color: var(--paper);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 400;
    white-space: nowrap;
  }

  @media (max-width: 900px) {
    .tl-panel-year {
      font-size: clamp(96px, 24vw, 180px);
    }

    .tl-panel-year .badge {
      display: none;
    }
  }

  .tl-panel-h {
    font-family: var(--font-sans);
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 500;
    margin-bottom: 16px;
    max-width: 22ch;
  }

  .tl-panel-h em {
    color: var(--sage-deep);
    font-style: italic;
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
  }

  .tl-panel-p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.78;
    max-width: 44ch;
    margin-bottom: 28px;
  }

  .tl-panel-stats {
    display: flex;
    gap: 32px;
    border-top: 1px solid var(--line);
    padding-top: 20px;
  }

  .tl-panel-stat .n {
    font-family: var(--font-sans);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: -0.02em;
  }

  .tl-panel-stat .l {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-top: 2px;
  }

  .tl-panel-visual {
    position: relative;
    height: 76%;
    border-radius: 8px;
    overflow: hidden;
    background-color: #3a3637;
    background-size: cover;
    background-position: center;
    z-index: 1;
  }

  @media (max-width: 900px) {
    .tl-panel-visual {
      aspect-ratio: 4/3;
      height: auto;
    }
  }

  .tl-panel-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 31, 27, 0) 50%, rgba(26, 31, 27, 0.55) 100%);
  }

  .tl-panel-visual .pic-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(to right, rgba(245, 242, 236, 0.06) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(245, 242, 236, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at 30% 70%, black 25%, transparent 80%);
    pointer-events: none;
    z-index: 2;
  }

  .tl-panel-visual .pic-stamp {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--paper);
    padding: 6px 12px;
    border: 1px solid rgba(245, 242, 236, 0.3);
    background: rgba(26, 31, 27, 0.45);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .tl-panel-visual .pic-stamp .led {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2.4s ease-in-out infinite;
  }

  .tl-panel-visual .pic-cap {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 3;
    color: var(--paper);
    font-family: var(--font-sans);
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.95;
  }

  .tl-panel-visual .pic-cap strong {
    font-weight: 500;
  }

  .tl-panel.p1 .tl-panel-visual {
    background-image: url('https://images.unsplash.com/photo-1586528116493-a029325540fa?auto=format&fit=crop&w=1800&q=80');
  }

  .tl-panel.p2 .tl-panel-visual {
    background-image: url('https://images.unsplash.com/photo-1604719312566-8912e9227c6a?auto=format&fit=crop&w=1800&q=80');
  }

  .tl-panel.p3 .tl-panel-visual {
    background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1800&q=80');
  }

  .tl-panel.p4 .tl-panel-visual {
    background-image: url('https://images.unsplash.com/photo-1581093588401-fbb62a02f120?auto=format&fit=crop&w=1800&q=80');
  }

  .tl-progress {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 5;
    align-items: center;
  }

  @media (max-width: 900px) {
    .tl-progress {
      display: none;
    }
  }

  .tl-progress .pdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ink);
    opacity: 0.2;
    transition: opacity 0.4s, transform 0.4s, background 0.4s, width 0.4s;
  }

  .tl-progress .pdot.active {
    opacity: 1;
    background: var(--accent);
    width: 28px;
    border-radius: 999px;
  }

  .tl-progress .plabel {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.55;
    margin-left: 4px;
  }

  .tl-hint {
    position: absolute;
    top: 40px;
    right: var(--pad-x);
    z-index: 5;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.5;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .tl-hint .arr {
    width: 24px;
    height: 1px;
    background: currentColor;
    position: relative;
  }

  .tl-hint .arr::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-right: 1px solid currentColor;
    border-top: 1px solid currentColor;
    transform: rotate(45deg);
  }

  @media (max-width: 900px) {
    .tl-hint {
      display: none;
    }
  }

  .tl-bg-year {
    position: absolute;
    bottom: -80px;
    right: -60px;
    z-index: 0;
    font-family: var(--font-sans);
    font-size: clamp(220px, 28vw, 460px);
    font-weight: 400;
    line-height: 0.8;
    letter-spacing: -0.05em;
    color: var(--sage-deep);
    opacity: 0.07;
    pointer-events: none;
    user-select: none;
  }

  @media (max-width: 900px) {
    .tl-bg-year {
      display: none;
    }
  }

  /* Values pinned */
  .values {
    background: var(--ink);
    color: var(--paper);
    padding: clamp(80px, 12vw, 160px) var(--pad-x);
  }

  .v-head {
    max-width: var(--max-w);
    margin: 0 auto 60px;
  }

  .v-head h2 {
    font-family: var(--font-sans);
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    font-weight: 400;
    max-width: 16ch;
  }

  .v-head h2 em {
    color: var(--accent);
    /* color: var(--sage-deep); */
    font-weight: 400;
  }

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

  @media (max-width: 900px) {
    .v-grid {
      grid-template-columns: 1fr;
    }
  }

  .v-card {
    background: rgba(244, 241, 234, 0.04);
    border: 1px solid rgba(244, 241, 234, 0.15);
    border-radius: 8px;
    padding: 32px;
    transition: all 0.4s var(--ease-out-expo);
  }

  .v-card:hover {
    background: var(--accent);
    /* background: var(--accent-soft); */
    /* color: var(--ink); */
    border-color: var(--accent);
    transform: translateY(-6px);
  }

  .v-card .num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    opacity: 0.6;
  }

  .v-card h3 {
    font-family: var(--font-sans);
    font-size: clamp(28px, 3vw, 36px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    font-weight: 400;
    margin: 24px 0 12px;
  }

  .v-card p {
    font-size: 14px;
    line-height: 1.55;
    opacity: 0.85;
  }

  /* Julphar relationship band */
  .julphar {
    background: var(--paper);
    padding: clamp(80px, 10vw, 140px) var(--pad-x);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .j-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    /* align-items: center; */
  }

  @media (max-width: 900px) {
    .j-inner {
      grid-template-columns: 1fr;
    }
  }

  .j-vis {
    aspect-ratio: 1;
    background: var(--ink);
    color: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    position: sticky;
    top: 100px;
  }

  .j-vis .lg {
    font-family: var(--font-sans);
    font-size: clamp(80px, 10vw, 140px);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1;
  }

  .j-vis::before {
    content: '☼';
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 28px;
    opacity: 0.5;
  }

  .j-vis .label {
    position: absolute;
    bottom: 24px;
    right: 24px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--paper);
    opacity: 0.5;
  }

  .j-content h3 {
    font-family: var(--font-sans);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    font-weight: 400;
    margin-bottom: 24px;
  }

  .j-content p {
    font-size: 17px;
    line-height: 1.55;
    max-width: 56ch;
    opacity: 0.85;
    margin-bottom: 16px;
  }

  .j-content p strong {
    color: var(--accent);
    font-weight: 500;
  }

  .j-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    max-width: 56ch;
  }

  .j-list li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    line-height: 1.4;
  }

  .j-list li:first-child {
    border-top: 1px solid var(--line);
  }

  .j-list .j-tick {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--sage-deep);
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .j-list strong {
    font-weight: 500;
  }

  /* 5-col values override */
  .v-grid-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  @media (max-width: 1200px) {
    .v-grid-5 {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .v-grid-5 {
      grid-template-columns: 1fr;
    }
  }

  /* SERVICES (What we do) */
  .services {
    position: relative;
    background: var(--ink);
    color: var(--paper);
    padding: clamp(80px, 12vw, 160px) var(--pad-x);
    border-top: 1px solid var(--line);
    overflow: hidden;
    isolation: isolate;
  }

  .services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1587854692152-cbe660dbde88?auto=format&fit=crop&w=2400&q=80');
    background-size: cover;
    background-position: center;
    z-index: -2;
    opacity: 0.5;
    filter: grayscale(0.15);
  }

  .services::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 31, 27, 0.86) 0%, rgba(26, 31, 27, 0.78) 50%, rgba(26, 31, 27, 0.92) 100%);
    z-index: -1;
  }

  .sv-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .services .tag {
    background: rgba(244, 241, 234, 0.06);
    color: var(--paper);
    border-color: rgba(244, 241, 234, 0.2);
  }

  .services .section-title {
    color: var(--paper);
  }

  .services .section-title em {
    color: var(--sage-deep);
  }

  .sv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(244, 241, 234, 0.12);
    border: 1px solid rgba(244, 241, 234, 0.15);
  }

  @media (max-width: 1000px) {
    .sv-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .sv-grid {
      grid-template-columns: 1fr;
    }
  }

  .sv-card {
    background: rgba(26, 31, 27, 0.78);
    color: var(--paper);
    padding: 36px 32px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    transition: background 0.4s var(--ease-out-expo), color 0.4s;
    backdrop-filter: blur(8px);
  }

  .sv-card:hover {
    background: var(--accent);
    background: var(--accent);
    /* color: var(--ink); */
  }

  .sv-num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    opacity: 0.6;
  }

  .sv-card:hover .sv-num {
    opacity: 1;
  }

  .sv-card h3 {
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: -0.018em;
    margin: 28px 0 14px;
  }

  .sv-card p {
    font-size: 14px;
    line-height: 1.55;
    opacity: 0.82;
    margin-top: auto;
  }

  .sv-card:hover p {
    opacity: 0.92;
  }

  /* FACILITY */
  .facility {
    position: relative;
    background: transparent;
    padding: clamp(80px, 12vw, 160px) var(--pad-x);
    border-top: 1px solid var(--line);
    overflow: hidden;
    isolation: isolate;
  }

  /* Animated aurora layer */
  .facility::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(-45deg, #fdd4dc, #f9a8b8, #fef0f2, #f9a8b8, #fdd4dc);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
  }

  /* Subtle grain over the aurora to keep it medical/pharmaceutical, not playful */
  .facility::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
      linear-gradient(to right, rgba(35, 31, 32, 0.05) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(35, 31, 32, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(180deg, black 0%, transparent 90%);
    pointer-events: none;
  }

  @keyframes gradientShift {
    0% {
      background-position: 0% 50%;
    }

    50% {
      background-position: 100% 50%;
    }

    100% {
      background-position: 0% 50%;
    }
  }

  .fc-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(48px, 6vw, 96px);
    align-items: start;
  }

  @media (max-width: 1000px) {
    .fc-inner {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  }

  .fc-title {
    font-family: var(--font-sans);
    font-size: clamp(34px, 4.6vw, 60px);
    line-height: 1.0;
    letter-spacing: -0.025em;
    font-weight: 500;
    margin-top: 22px;
  }

  .fc-title em {
    font-style: normal;
    color: var(--sage-deep);
    font-weight: 500;
  }

  .fc-desc {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.6;
    max-width: 52ch;
    opacity: 0.85;
  }

  .fc-desc strong {
    font-weight: 500;
  }

  .fc-meta {
    margin-top: 36px;
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }

  .fc-meta .fc-mn {
    font-family: var(--font-sans);
    font-size: clamp(28px, 3.4vw, 44px);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1;
  }

  .fc-meta .fc-mn span {
    font-size: 0.55em;
    color: var(--sage-deep);
    margin-left: 2px;
  }

  .fc-meta .fc-ml {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-top: 6px;
  }

  .fc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
  }

  .fc-list li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 16px;
    padding: 22px 28px;
    border-bottom: 1px solid var(--line);
    align-items: start;
    transition: all 0.3s var(--ease-out-expo);
    cursor: pointer;
  }

  .fc-list li:last-child {
    border-bottom: none;
  }

  .fc-list li:hover {
    background: var(--accent-soft);
    padding-left: 36px;
    transform: translateX(4px);
  }

  .fc-list .fc-tick {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid var(--ink);
    color: var(--sage-deep);
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all 0.3s var(--ease-out-expo);
  }

  .fc-list li:hover .fc-tick {
    background: transparent;
    color: var(--paper);
    border-color: var(--paper);
    transform: scale(1.1);
  }

  .fc-list strong {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    display: block;
    transition: color 0.3s;
  }

  .fc-list em {
    font-style: normal;
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.5;
    display: block;
    margin-top: 3px;
    transition: opacity 0.3s;
  }

  .fc-list li:hover strong {
    color: var(--paper);
  }

  .fc-list li:hover em {
    opacity: 0.85;
    color: var(--paper);
  }

  /* CERTIFICATIONS */
  .certs {
    background: var(--paper);
    padding: clamp(80px, 12vw, 160px) var(--pad-x);
    border-top: 1px solid var(--line);
  }

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

  .ct-head {
    margin-bottom: 56px;
    max-width: 800px;
  }

  .ct-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }

  @media (max-width: 1100px) {
    .ct-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .ct-grid {
      grid-template-columns: 1fr;
    }
  }

  .ct-cell {
    background: var(--paper);
    padding: 32px 24px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    transition: background 0.4s var(--ease-out-expo);
    position: relative;
  }

  /* .ct-cell::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(90deg, var(--accent), var(--accent)) no-repeat;
    background-size: 20% 2px;
    background-position: 0% 0%;
    animation: ct-border-travel 4s linear infinite;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 1;
  } */

  .ct-cell:hover::before {
    opacity: 1;
  }

  .ct-cell>* {
    position: relative;
    z-index: 2;
  }

  @keyframes ct-border-travel {
    0% {
      background-position: 0% 0%;
      background-size: 20% 2px;
    }

    24.9% {
      background-position: 100% 0%;
      background-size: 20% 2px;
    }

    25% {
      background-position: 100% 0%;
      background-size: 2px 20%;
    }

    49.9% {
      background-position: 100% 100%;
      background-size: 2px 20%;
    }

    50% {
      background-position: 100% 100%;
      background-size: 20% 2px;
    }

    74.9% {
      background-position: 0% 100%;
      background-size: 20% 2px;
    }

    75% {
      background-position: 0% 100%;
      background-size: 2px 20%;
    }

    99.9% {
      background-position: 0% 0%;
      background-size: 2px 20%;
    }

    100% {
      background-position: 0% 0%;
      background-size: 20% 2px;
    }
  }

  .ct-cell:hover {
    background-color: var(--ink);
  }

  .ct-cell .ct-num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    opacity: 0.5;
    transition: color 0.3s, opacity 0.3s;
  }

  .ct-cell:hover .ct-num {
    color: var(--paper);
    opacity: 0.9;
  }

  .ct-title {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.012em;
    line-height: 1.25;
    margin: 26px 0 10px;
    color: var(--sage);
    transition: color 0.3s;
  }

  .ct-cell:hover .ct-title {
    color: var(--paper);
  }

  .ct-id {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.55;
    margin-top: auto;
    transition: color 0.3s, opacity 0.3s;
  }

  .ct-cell:hover .ct-id {
    color: var(--paper);
    opacity: 0.8;
  }

  /* COMMITMENT */
  .commit {
    background: var(--ink);
    color: var(--paper);
    padding: clamp(80px, 12vw, 160px) var(--pad-x);
  }

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

  .cm-head {
    margin-bottom: 60px;
  }

  .cm-title {
    font-family: var(--font-sans);
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    font-weight: 500;
    margin-top: 20px;
  }

  .cm-title em {
    font-style: normal;
    color: var(--sage-deep);
    font-weight: 500;
  }

  .cm-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(244, 241, 234, 0.12);
    border: 1px solid rgba(244, 241, 234, 0.12);
  }

  @media (max-width: 1100px) {
    .cm-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .cm-grid {
      grid-template-columns: 1fr;
    }
  }

  .cm-card {
    background: var(--ink);
    padding: 32px 28px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    transition: background 0.3s;
  }

  .cm-card:hover {
    /* background: rgba(143, 163, 145, 0.08); */
    background-color: var(--sage);
  }

  .cm-num {
    font-family: var(--font-sans);
    font-size: clamp(40px, 4vw, 56px);
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--sage-deep);
    line-height: 1;
  }

  .cm-card:hover .cm-num {
    color: var(--paper);
  }

  .cm-card h3 {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.25;
    margin: 28px 0 12px;
  }

  .cm-card p {
    font-size: 13.5px;
    line-height: 1.55;
    opacity: 0.78;
    margin-top: auto;
  }

  /* PARTNER FINAL */
  .partner-final {
    background: var(--paper);
    padding: clamp(80px, 12vw, 160px) var(--pad-x);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .pf-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(48px, 6vw, 96px);
    align-items: end;
  }

  @media (max-width: 1000px) {
    .pf-inner {
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: start;
    }
  }

  .pf-title {
    font-family: var(--font-sans);
    font-size: clamp(40px, 5.4vw, 80px);
    line-height: 1.0;
    letter-spacing: -0.03em;
    font-weight: 500;
    margin-top: 20px;
  }

  .pf-title em {
    font-style: normal;
    color: var(--sage-deep);
    font-weight: 500;
  }

  .pf-desc {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.6;
    max-width: 56ch;
    opacity: 0.78;
  }

  .pf-r {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .pf-eye {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 6px;
  }

  .pf-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 26px;
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.012em;
    transition: transform 0.3s var(--ease-out-expo), background 0.2s, border-color 0.2s;
  }

  .pf-btn span {
    font-family: var(--font-mono);
    font-weight: 400;
    transition: transform 0.3s;
  }

  .pf-btn:hover {
    transform: translateY(-2px);
  }

  .pf-btn:hover span {
    transform: translate(2px, -2px);
  }

  .pf-btn-primary {
    background: var(--sage);
    color: var(--paper);
  }

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

  .pf-btn-ghost {
    background: var(--paper);
    border: 1px solid var(--sage);
    color: var(--ink);
  }

  .pf-btn-ghost:hover {
    border-color: var(--sage);
    background: var(--sage);
    color: var(--paper);
  }