    :root {
      color-scheme: light;
      --bg: #f6f4ee;
      --bg-soft: rgba(255, 255, 255, 0.54);
      --bg-strong: rgba(255, 255, 255, 0.8);
      --ink: #2f3433;
      --ink-soft: #5a625f;
      --charcoal: #242a2b;
      --navy: #314250;
      --line: rgba(49, 66, 80, 0.14);
      --line-strong: rgba(49, 66, 80, 0.24);
      --shell: min(1180px, calc(100% - 32px));
      --font-sans: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
      --font-serif: "Shippori Mincho", "Yu Mincho", serif;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-width: 320px;
      color: var(--ink);
      background: var(--bg);
      font-family: var(--font-sans);
      line-height: 1.84;
      letter-spacing: 0.01em;
      overflow-x: hidden;
    }

    body::before {
      position: fixed;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(82, 96, 90, 0.018) 1px, transparent 1px),
        linear-gradient(180deg, rgba(82, 96, 90, 0.014) 1px, transparent 1px);
      background-size: 36px 36px;
      mask: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55) 14%, rgba(0, 0, 0, 0.55) 88%, transparent);
      content: "";
      pointer-events: none;
      z-index: -1;
      opacity: 0.75;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    h1,
    h2,
    h3,
    p,
    ul,
    li,
    dl,
    dt,
    dd {
      margin: 0;
    }

    ul {
      padding: 0;
      list-style: none;
    }

    .shell {
      width: var(--shell);
      margin: 0 auto;
    }

    .page {
      padding: 0 0 88px;
    }

    .hero {
      position: relative;
      min-height: min(72vh, 720px);
      padding: clamp(48px, 7vw, 92px) 0 60px;
      overflow: hidden;
      background:
        linear-gradient(
          90deg,
          rgba(246, 244, 238, 0.98) 0%,
          rgba(246, 244, 238, 0.94) 38%,
          rgba(246, 244, 238, 0.72) 60%,
          rgba(246, 244, 238, 0.28) 100%
        ),
        url("../images/lab-session.jpg");
      background-size: cover;
      background-position: center right;
      background-repeat: no-repeat;
      isolation: isolate;
    }

    .hero::before {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(49, 66, 80, 0.03) 1px, transparent 1px),
        linear-gradient(180deg, rgba(49, 66, 80, 0.024) 1px, transparent 1px),
        radial-gradient(circle at 78% 38%, rgba(255, 255, 255, 0.3), transparent 34%);
      background-size: 48px 48px, 48px 48px, auto;
      content: "";
      z-index: 0;
      pointer-events: none;
    }

    .hero .shell {
      position: relative;
      z-index: 1;
    }

    .hero__grid {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.82fr);
      gap: clamp(36px, 5vw, 72px);
      align-items: end;
    }

    .hero__content {
      max-width: 640px;
    }

    .hero__eyebrow,
    .section-label,
    .panel-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #3b4a45;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .hero__eyebrow::before,
    .section-label::before,
    .panel-label::before {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #c7b07c;
      content: "";
    }

    .hero__eyebrow {
      margin-bottom: 22px;
    }

    h1,
    h2,
    h3 {
      color: var(--charcoal);
      font-family: var(--font-serif);
      letter-spacing: 0.02em;
    }

    .hero h1 {
      max-width: none;
      font-size: clamp(3rem, 5.6vw, 4.9rem);
      line-height: 1.04;
      white-space: nowrap;
    }

    .hero__lead {
      margin-top: 22px;
      max-width: 22ch;
      color: var(--navy);
      font-size: clamp(1.24rem, 2.3vw, 1.62rem);
      line-height: 1.8;
      text-wrap: balance;
    }

    .hero__note {
      max-width: none;
      margin-top: 20px;
      color: var(--ink-soft);
      font-size: 0.98rem;
      line-height: 1.9;
      white-space: normal;
    }

    .button-row {
      display: flex;
      gap: 0;
      margin-top: 30px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 26px;
      border: 1px solid var(--navy);
      border-radius: 4px;
      color: var(--navy);
      font-size: 0.96rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, opacity 180ms ease;
    }

    .button:hover,
    .button:focus-visible {
      opacity: 0.86;
      outline: none;
    }

    .button--primary {
      background: var(--navy);
      border-color: var(--navy);
      color: #ffffff;
    }

    .hero__aside {
      justify-self: end;
      width: min(100%, 400px);
    }

    .hero__panel {
      padding: 24px 24px 20px;
      border: 1px solid rgba(49, 66, 80, 0.16);
      background: rgba(255, 255, 255, 0.52);
      backdrop-filter: blur(10px);
    }

    .hero__panel-label {
      margin-bottom: 18px;
    }

    .hero__panel-list {
      display: grid;
      gap: 0;
    }

    .hero__panel-list li {
      display: grid;
      gap: 4px;
      padding: 16px 0;
      border-top: 1px solid rgba(49, 66, 80, 0.12);
    }

    .hero__panel-list li:first-child {
      border-top-color: rgba(49, 66, 80, 0.18);
    }

    .hero__panel-list strong {
      color: var(--charcoal);
      font-family: var(--font-serif);
      font-size: 1.06rem;
      font-weight: 600;
      line-height: 1.5;
    }

    .hero__panel-list span {
      color: rgba(49, 66, 80, 0.58);
      font-size: 0.74rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .policy-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
      gap: clamp(22px, 3vw, 34px);
      margin-top: clamp(36px, 5vw, 58px);
    }

    .policy-panel {
      padding: clamp(26px, 3vw, 34px);
      border: 1px solid var(--line);
      border-radius: 4px;
      background: rgba(255, 255, 255, 0.48);
      backdrop-filter: blur(8px);
    }

    .policy-panel--stack {
      display: grid;
      gap: 24px;
    }

    .policy-panel h2 {
      margin-top: 14px;
      font-size: clamp(1.9rem, 3vw, 2.6rem);
      line-height: 1.2;
    }

    .policy-panel p {
      color: var(--ink-soft);
      font-size: 0.97rem;
      line-height: 1.9;
    }

    .policy-summary {
      display: grid;
      gap: 18px;
    }

    .policy-record {
      display: grid;
      gap: 0;
      margin-top: 8px;
    }

    .policy-record div,
    .policy-section {
      padding: 16px 0;
      border-top: 1px solid rgba(49, 66, 80, 0.12);
    }

    .policy-record div:first-child,
    .policy-section:first-child {
      border-top-color: rgba(49, 66, 80, 0.18);
    }

    .policy-record dt,
    .policy-section__title {
      color: rgba(49, 66, 80, 0.6);
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .policy-record dd {
      margin-top: 8px;
      color: var(--charcoal);
      font-family: var(--font-serif);
      font-size: 1.02rem;
      line-height: 1.6;
      letter-spacing: 0.04em;
    }

    .policy-list {
      margin-top: 10px;
      display: grid;
      gap: 10px;
    }

    .policy-list li {
      position: relative;
      padding-left: 18px;
      color: var(--ink-soft);
      font-size: 0.95rem;
      line-height: 1.86;
    }

    .policy-list li::before {
      position: absolute;
      top: 0.82em;
      left: 0;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(49, 66, 80, 0.38);
      content: "";
      transform: translateY(-50%);
    }

    .contact-panel {
      margin-top: clamp(22px, 3vw, 34px);
    }

    .policy-minimal {
      margin-top: clamp(22px, 3vw, 34px);
    }

    .company-info-minimal {
      margin-top: 40px;
      color: rgba(49,66,80,0.58);
      font-size: 0.9rem;
      line-height: 2.1;
    }

    .company-info-minimal p {
      margin: 0;
    }

    .page-footer {
      width: var(--shell);
      margin: 46px auto 0;
      padding-top: 22px;
      border-top: 1px solid rgba(51, 68, 83, 0.12);
      color: var(--ink-soft);
      font-size: 0.86rem;
      line-height: 1.78;
    }

    @media (max-width: 1100px) {
      .hero__grid,
      .policy-layout {
        grid-template-columns: 1fr;
      }

      .hero__aside {
        justify-self: stretch;
        width: 100%;
      }
    }

    @media (max-width: 760px) {
      .page {
        padding-top: 0;
      }

      .hero {
        min-height: auto;
        padding: 32px 0 40px;
        background-position: 72% center;
      }

      .hero h1 {
        font-size: clamp(2.4rem, 10vw, 4rem);
        white-space: nowrap;
      }

      .hero__lead,
      .hero__note {
        max-width: none;
      }

      .policy-panel {
        padding: 24px 20px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      .button {
        transition: none;
      }
    }
