/* Lazotto top page v2. Source: top-page-rebuild-wide-preview-raised-v2.html */
:root {
      --ink: #272421;
      --muted: #6f6860;
      --paper: #fdfcf9;
      --paper-edge: #e7e3dc;
      --line: #918b83;
      --soft-blue: #dcebf2;
      --blue: #98b8c8;
      --bg: #fbfaf7;
      --white: #fffefb;
      --border: rgba(71, 63, 54, 0.14);
      --shadow: 0 15px 28px rgba(58, 50, 42, 0.13);
      --container: 1360px;
      --hero-container: 1480px;
      --side: clamp(24px, 5vw, 96px);
      --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
      --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
      --body-copy: #363330;
      --body-copy-soft: #45413d;
      --dark-copy: rgba(255, 253, 248, 0.86);
      --dark-copy-strong: rgba(255, 253, 248, 0.92);
      --body-size: 16px;
      --compact-body-size: 16px;
      --lead-size: 17px;
      --body-line: 1.85;
      --lead-line: 2.1;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      color: var(--ink);
      background: var(--bg);
      font-family: var(--sans);
      font-size: var(--body-size);
      -webkit-font-smoothing: antialiased;
    }

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

    a {
      color: inherit;
    }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 40;
      width: 100%;
      min-height: 96px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: clamp(24px, 3vw, 42px);
      padding: 14px var(--side);
      border-bottom: 1px solid rgba(71, 63, 54, 0.04);
      background: rgba(255, 253, 248, 0.1);
      box-shadow: none;
      -webkit-backdrop-filter: blur(6px);
      backdrop-filter: blur(6px);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      width: 150px;
      margin-left: 18px;
      text-decoration: none;
    }

    .brand img {
      width: 100%;
      height: auto;
    }

    .global-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(18px, 2.5vw, 38px);
      margin-left: auto;
      color: #514d48;
      font-size: 13px;
      letter-spacing: 0.06em;
    }

    .global-nav a {
      text-decoration: none;
    }

    .global-nav a {
      position: relative;
      padding: 10px 0;
      transition: color 0.2s ease, opacity 0.2s ease;
    }

    .global-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 2px;
      height: 1px;
      background: #272421;
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.24s ease;
    }

    .global-nav a:hover,
    .global-nav a:focus-visible {
      color: #272421;
      opacity: 1;
    }

    .global-nav a:hover::after,
    .global-nav a:focus-visible::after {
      transform: scaleX(1);
    }

    .header-cta,
    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(39, 36, 33, 0.18);
      border-radius: 4px;
      text-align: center;
      text-decoration: none;
      font-size: 14px;
      letter-spacing: 0;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

    .header-cta {
      min-height: 46px;
      min-width: 164px;
      padding: 0 20px;
      color: #fff;
      background: #272421;
      border-color: #272421;
      box-shadow: 0 12px 24px rgba(66, 57, 46, 0.12);
      gap: 8px;
    }

    @media (min-width: 821px) {
      body.home .site-header .global-nav a.global-nav__service-link {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: 164px !important;
        height: 46px !important;
        min-height: 46px !important;
        padding: 0 20px !important;
        border: 1px solid rgba(210, 173, 85, 0.88) !important;
        border-radius: 4px !important;
        color: #272421 !important;
        background: rgba(255, 253, 248, 0.62) !important;
        box-shadow: 0 12px 24px rgba(210, 173, 85, 0.12) !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        letter-spacing: 0 !important;
        text-decoration: none !important;
        transition: box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
      }

      body.home .site-header .global-nav a.global-nav__service-link::after {
        display: none !important;
      }
    }

    .button {
      min-width: 240px;
      min-height: 68px;
      padding: 0 40px;
      color: var(--ink);
      background: rgba(255, 253, 248, 0.92);
      border-color: rgba(39, 36, 33, 0.22);
      box-shadow: 0 16px 30px rgba(66, 57, 46, 0.1);
      font-size: 16px;
    }

    .button:hover,
    .header-cta:hover {
      transform: translateY(-2px);
    }

    .button-dark {
      color: #fff;
      background: #272421;
      border-color: #272421;
    }

    .button-light {
      color: var(--ink);
      background: rgba(255, 253, 248, 0.94);
      border-color: rgba(39, 36, 33, 0.22);
    }

    .button-dark:hover,
    .header-cta:hover {
      color: var(--ink);
      background: rgba(255, 253, 248, 0.96);
      border-color: #272421;
      box-shadow: 0 18px 34px rgba(66, 57, 46, 0.14);
    }

    @media (min-width: 821px) {
      body.home .site-header .global-nav a.global-nav__service-link:hover,
      body.home .site-header .global-nav a.global-nav__service-link:focus-visible {
        color: #17130c !important;
        background: #d2ad55 !important;
        border-color: #d2ad55 !important;
        box-shadow: 0 14px 28px rgba(210, 173, 85, 0.22) !important;
        transform: none !important;
      }
    }

    .button-light:hover {
      color: #fff;
      background: #272421;
      border-color: #272421;
      box-shadow: 0 18px 34px rgba(66, 57, 46, 0.16);
    }

    .button-service {
      color: #272421;
      background: rgba(255, 253, 248, 0.62);
      border-color: rgba(210, 173, 85, 0.88);
      box-shadow: 0 12px 24px rgba(210, 173, 85, 0.12);
    }

    .button-service:hover,
    .button-service:focus-visible {
      color: #17130c;
      background: #d2ad55;
      border-color: #d2ad55;
      box-shadow: 0 14px 28px rgba(210, 173, 85, 0.22);
      transform: translateY(-2px);
    }

    .container {
      width: min(var(--container), calc(100% - (var(--side) * 2)));
      margin: 0 auto;
    }

    .top-page {
      overflow: hidden;
    }

    .hero {
      position: relative;
      min-height: min(86vh, 820px);
      overflow: hidden;
      padding: clamp(88px, 8vh, 112px) var(--side) clamp(38px, 5vw, 68px);
      display: grid;
      place-items: center;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(247, 245, 239, 0.18), rgba(247, 245, 239, 0.18)),
        url("../images/hero-bg-clean.optimized.webp") center top / 100% auto no-repeat,
        radial-gradient(circle at 74% 50%, rgba(220, 236, 244, 0.58), transparent 33%),
        radial-gradient(circle at 12% 26%, rgba(255, 255, 255, 0.82), transparent 30%),
        linear-gradient(90deg, rgba(247, 245, 239, 0.18), rgba(247, 245, 239, 0.88) 54%, rgba(247, 245, 239, 0.42));
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      width: min(1360px, 100%);
      display: grid;
      grid-template-columns: minmax(360px, 0.88fr) minmax(560px, 1.12fr);
      gap: clamp(32px, 4.2vw, 72px);
      align-items: center;
    }

    .hero-copy {
      padding-top: clamp(16px, 3vw, 36px);
    }

    .eyebrow,
    .section-number {
      margin: 0 0 18px;
      color: var(--muted);
      font-family: var(--serif);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      margin: 0;
      font-family: var(--serif);
      font-size: clamp(38px, 4vw, 66px);
      font-weight: 500;
      line-height: 1.18;
      letter-spacing: 0;
    }

    h1 span,
    .section-heading h2 span,
    .philosophy-copy h2 span {
      display: block;
    }

    h1 span {
      white-space: nowrap;
    }

    .lead {
      margin: 22px 0 0;
      color: #514d48;
      font-size: clamp(15px, 1.14vw, 18px);
      line-height: 1.95;
    }

    .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 30px;
    }

    .diagram {
      position: relative;
      container-type: inline-size;
      width: min(650px, 100%);
      aspect-ratio: 0.78;
      margin-left: auto;
      isolation: isolate;
      filter: drop-shadow(0 20px 44px rgba(62, 54, 46, 0.08));
      transition: transform 0.42s ease, filter 0.42s ease;
    }

    .diagram:hover {
      transform: none;
      filter: drop-shadow(0 20px 44px rgba(62, 54, 46, 0.08));
    }

    .diagram-lines,
    .diagram-connectors {
      position: absolute;
      inset: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
      overflow: visible;
      pointer-events: none;
    }

    .line-path {
      --target-opacity: 0.66;
      fill: none;
      stroke: var(--line);
      stroke-width: 1.35;
      stroke-linecap: round;
      stroke-linejoin: round;
      opacity: 0.66;
      vector-effect: non-scaling-stroke;
    }

    .diagram .line-path {
      opacity: 0;
      stroke-dasharray: 5 13;
      animation:
        line-in 0.95s ease forwards,
        diagram-line-travel 5.6s ease-in-out 2.2s infinite;
    }

    .diagram-lines .line-path:nth-of-type(1) { animation-delay: 0.46s; }
    .diagram-lines .line-path:nth-of-type(2) { animation-delay: 0.56s; }
    .diagram-lines .line-path:nth-of-type(3) { animation-delay: 0.66s; }
    .diagram-lines .line-path:nth-of-type(4) { animation-delay: 0.76s; }
    .diagram-lines .line-path:nth-of-type(5) { animation-delay: 0.86s; }
    .diagram-lines .line-path:nth-of-type(6) { animation-delay: 0.96s; }
    .diagram-lines .line-path:nth-of-type(7),
    .diagram-lines .line-path:nth-of-type(8),
    .diagram-lines .line-path:nth-of-type(9) { animation-delay: 1.92s; }
    .diagram-connectors .line-path { animation-delay: 0.64s; }

    .line-path.soft {
      --target-opacity: 0.46;
    }

    .paper-note {
      position: absolute;
      z-index: 2;
      display: grid;
      place-items: center;
      width: 30%;
      min-height: 76px;
      padding: 15px 18px 17px;
      color: #36322d;
      background: transparent;
      border: 0;
      font-family: var(--serif);
      font-size: clamp(14px, 1.18vw, 19px);
      line-height: 1.35;
      text-align: center;
      text-wrap: balance;
      opacity: 0;
      transform: translateY(-8px) rotate(var(--note-rotate, 0deg));
      animation: note-in 0.9s cubic-bezier(0.2, 0.82, 0.2, 1) forwards;
    }

    .paper-note::before,
    .paper-note::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 3px 9px 4px 8px;
      clip-path: polygon(0% 13%, 7% 8%, 15% 10%, 24% 6%, 37% 9%, 50% 6%, 63% 10%, 75% 7%, 88% 9%, 100% 6%, 98% 91%, 88% 95%, 77% 93%, 66% 97%, 55% 94%, 44% 98%, 32% 94%, 21% 97%, 10% 94%, 1% 97%);
    }

    .paper-note::before {
      z-index: 0;
      background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.82), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(248, 245, 237, 0.96) 54%, rgba(241, 236, 226, 0.94)),
        var(--paper);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.86),
        inset 0 -1px 0 rgba(212, 203, 188, 0.46);
      filter: drop-shadow(var(--shadow));
    }

    .paper-note::after {
      inset: 4px 6px;
      z-index: 1;
      opacity: 0.16;
      background:
        linear-gradient(90deg, rgba(180, 168, 148, 0.16), transparent 8%, transparent 92%, rgba(180, 168, 148, 0.12)),
        repeating-linear-gradient(100deg, rgba(120, 110, 94, 0.035) 0 1px, transparent 1px 7px),
        repeating-linear-gradient(8deg, rgba(120, 110, 94, 0.026) 0 1px, transparent 1px 8px);
      mix-blend-mode: multiply;
    }

    .paper-note span {
      position: relative;
      z-index: 1;
    }

    .note-care span {
      white-space: nowrap;
    }

    .note-care {
      --note-rotate: -3deg;
      --note-float-delay: 0s;
      top: 7%;
      left: 19%;
      width: 30%;
      animation-delay: 0.06s;
    }

    .note-future {
      --note-rotate: 2deg;
      --note-float-delay: 0.4s;
      top: 8%;
      right: 14%;
      width: 30%;
      animation-delay: 0.14s;
    }

    .note-gap {
      --note-rotate: 2deg;
      --note-float-delay: 0.8s;
      top: 24%;
      left: 1%;
      animation-delay: 0.24s;
    }

    .note-want {
      --note-rotate: -5deg;
      --note-float-delay: 1.2s;
      top: 27%;
      right: 1%;
      animation-delay: 0.34s;
    }

    .note-strength {
      --note-rotate: -1deg;
      --note-float-delay: 1.6s;
      top: 44%;
      left: 2%;
      animation-delay: 0.44s;
    }

    .note-voice {
      --note-rotate: 1deg;
      --note-float-delay: 2s;
      top: 45%;
      right: 2%;
      animation-delay: 0.54s;
    }

    .axis-core {
      position: absolute;
      z-index: 4;
      left: 50%;
      top: 51%;
      display: grid;
      place-items: center;
      width: 30%;
      aspect-ratio: 1;
      transform: translate(-50%, -50%);
      border: 1px solid rgba(219, 215, 207, 0.92);
      border-radius: 50%;
      background:
        radial-gradient(circle at 38% 24%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72) 52%, rgba(246, 242, 233, 0.95)),
        var(--paper);
      box-shadow:
        0 20px 36px rgba(66, 57, 46, 0.14),
        0 0 0 30px rgba(255, 253, 248, 0.46),
        0 0 44px rgba(255, 253, 248, 0.72);
      font-family: var(--serif);
      font-size: clamp(18px, 1.85vw, 27px);
      line-height: 1.45;
      text-align: center;
      opacity: 0;
      overflow: visible;
      isolation: isolate;
      animation: core-in 0.9s cubic-bezier(0.2, 0.82, 0.2, 1) 1.34s forwards;
    }

    .axis-core::before,
    .axis-core::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }

    .axis-core::before {
      inset: -22%;
      z-index: -1;
      border: 1px solid rgba(122, 154, 168, 0.26);
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.66),
        0 0 34px rgba(255, 255, 255, 0.76);
      animation: core-signal-ring 3.8s ease-in-out 2.2s infinite;
    }

    .axis-core::after {
      inset: -46%;
      z-index: -2;
      background:
        radial-gradient(circle, rgba(255, 255, 255, 0.74) 0 22%, rgba(244, 239, 226, 0.3) 42%, transparent 68%);
      filter: blur(10px);
      animation: core-signal-glow 4.6s ease-in-out 2.4s infinite;
    }

    .output {
      position: absolute;
      z-index: 4;
      bottom: 3%;
      display: grid;
      justify-items: center;
      gap: 8px;
      width: 21%;
      color: #2f2b27;
      font-family: var(--serif);
      font-size: clamp(16px, 1.65vw, 25px);
      font-weight: 600;
      line-height: 1.1;
      text-align: center;
      opacity: 0;
      transform: translateX(var(--output-x, 0)) translateY(10px);
      animation:
        output-in 0.82s cubic-bezier(0.2, 0.82, 0.2, 1) forwards,
        output-focus-step 8.5s ease-in-out var(--focus-delay, 3s) infinite;
    }

    .output::before {
      content: "";
      position: absolute;
      top: -12px;
      left: 50%;
      z-index: -1;
      width: clamp(108px, 15vw, 176px);
      height: clamp(72px, 10vw, 114px);
      transform: translateX(-50%) scale(0.92);
      border-radius: 50%;
      background:
        radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.98), rgba(255, 253, 248, 0.86) 26%, rgba(255, 253, 248, 0.42) 58%, transparent 82%),
        linear-gradient(115deg, rgba(255, 253, 248, 0), rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0));
      opacity: 0;
      filter: blur(9px);
      animation: output-glow 8.5s ease-in-out var(--focus-delay, 3s) infinite;
      pointer-events: none;
    }

    .output small {
      display: block;
      margin-top: 5px;
      color: #5f5951;
      font-family: var(--sans);
      font-size: clamp(8px, 0.82vw, 10px);
      font-weight: 600;
      line-height: 1.45;
    }

    .output-recruit {
      --output-x: -50%;
      --focus-delay: 3s;
      left: 18%;
      animation-delay: 2.08s;
    }

    .output-pr {
      --output-x: -50%;
      --focus-delay: 3.45s;
      left: 50%;
      animation-delay: 2.18s;
    }

    .output-org {
      --output-x: 50%;
      --focus-delay: 3.9s;
      right: 18%;
      color: #1f1b17;
      font-weight: 700;
      animation-delay: 2.28s;
    }

    .output-org small {
      color: #3f382f;
      font-weight: 700;
    }

    .output-recruit span,
    .output-recruit small,
    .output-pr span,
    .output-pr small,
    .output-org span,
    .output-org small {
      padding: 0 6px;
      border-radius: 999px;
      background: rgba(255, 253, 248, 0.34);
      box-shadow: 0 0 26px 10px rgba(255, 253, 248, 0.48);
      box-decoration-break: clone;
      -webkit-box-decoration-break: clone;
    }

    .output-icon {
      display: grid;
      place-items: center;
      width: clamp(72px, 9vw, 102px);
      aspect-ratio: 1;
      border: 1.5px solid rgba(91, 84, 76, 0.78);
      border-radius: 50%;
      background: rgba(255, 253, 248, 0.72);
      box-shadow:
        0 14px 26px rgba(66, 57, 46, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
    }

    .output-icon svg {
      width: 54%;
      height: 54%;
      stroke: #4f4942;
      stroke-width: 1.8;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .output-org .output-icon {
      border-color: rgba(91, 84, 76, 0.66);
      background: rgba(255, 253, 248, 0.6);
      box-shadow:
        0 12px 22px rgba(66, 57, 46, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
    }

    .output-org .output-icon svg {
      stroke: rgba(79, 73, 66, 0.84);
    }

    .section {
      position: relative;
      padding: clamp(88px, 10vw, 138px) 0;
    }

    .section-band {
      background: rgba(255, 255, 255, 0.58);
    }

    #problem {
      padding-top: clamp(92px, 7vw, 132px);
    }

    @media (min-width: 721px) and (max-height: 999px),
    (max-width: 720px) {
      #problem {
        padding-top: clamp(48px, 4vw, 56px);
      }
    }

    .section-muted {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(248, 247, 243, 0.76)),
        rgba(244, 243, 239, 0.58);
    }

    .section-heading {
      max-width: 460px;
    }

    .section-heading h2,
    .service-heading h2,
    .case-heading h2,
    .top-column-heading h2,
    .flow-heading h2,
    .faq-heading h2,
    .contact-copy h2 {
      margin: 0;
      font-family: var(--serif);
      font-size: clamp(34px, 4vw, 54px);
      font-weight: 500;
      line-height: 1.32;
      letter-spacing: 0;
    }

    .support-copy,
    .section-lead {
      margin: 22px 0 0;
      color: var(--body-copy);
      font-size: var(--lead-size);
      line-height: var(--lead-line);
    }

    .two-column {
      display: grid;
      grid-template-columns: minmax(320px, 0.78fr) minmax(540px, 1.22fr);
      gap: clamp(48px, 6vw, 110px);
      align-items: start;
    }

    .problem-list {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .problem-item,
    .service-card,
    .case-card,
    .flow-list li {
      border: 1px solid var(--border);
      border-radius: 8px;
      background: rgba(255, 253, 248, 0.74);
      box-shadow: 0 18px 36px rgba(66, 57, 46, 0.07);
    }

    .problem-item {
      min-height: 316px;
      padding: 30px 26px 28px;
    }

    .problem-diagram {
      width: min(132px, 78%);
      height: auto;
      margin: 0 auto 20px;
      overflow: visible;
    }

    .problem-diagram path,
    .problem-diagram circle {
      fill: none;
      stroke: #807971;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .problem-diagram circle.dot {
      fill: #807971;
      stroke: none;
    }

    .problem-diagram .faint {
      opacity: 0.42;
    }

    .problem-list.is-visible .problem-diagram path {
      animation: problem-line-breathe 5.4s ease-in-out infinite;
    }

    .problem-list.is-visible .problem-diagram .dot {
      transform-box: fill-box;
      transform-origin: center;
      animation: problem-dot-signal 4.8s ease-in-out infinite;
    }

    .problem-list.is-visible .problem-item:nth-child(1) .problem-diagram .dot:nth-of-type(2),
    .problem-list.is-visible .problem-item:nth-child(2) .problem-diagram .dot:nth-of-type(2),
    .problem-list.is-visible .problem-item:nth-child(3) .problem-diagram .dot:nth-of-type(2) {
      animation-delay: 0.34s;
    }

    .problem-list.is-visible .problem-item:nth-child(2) .problem-diagram path {
      animation-name: problem-shift-line;
    }

    .problem-list.is-visible .problem-item:nth-child(3) .problem-diagram .faint {
      animation: problem-miss-fade 3.8s ease-in-out infinite;
    }

    .problem-item h3,
    .service-card h3,
    .case-card h3,
    .flow-list h3 {
      margin: 0 0 12px;
      font-family: var(--serif);
      font-size: clamp(22px, 2.1vw, 30px);
      font-weight: 500;
      line-height: 1.35;
    }

    .problem-item h3 {
      margin-bottom: 10px;
    }

    .problem-item p,
    .service-card p,
    .case-card p,
    .flow-list p,
    .faq-answer {
      margin: 0;
      color: var(--body-copy-soft);
      font-size: var(--compact-body-size);
      line-height: var(--body-line);
    }

    .philosophy-section {
      position: relative;
      min-height: clamp(600px, 72vw, 760px);
      display: grid;
      align-items: center;
      padding: clamp(90px, 11vw, 150px) 0;
      overflow: hidden;
      background: #211f1c;
      color: #fffdf8;
    }

    .philosophy-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(33, 31, 28, 0.9), rgba(33, 31, 28, 0.58) 43%, rgba(33, 31, 28, 0.16)),
        url("../images/top-philosophy-visual-v2.optimized.webp") center right / cover no-repeat;
      transform: scale(1.01);
    }

    .philosophy-copy {
      position: relative;
      z-index: 1;
      width: min(600px, calc(100% - (var(--side) * 2)));
      margin-left: max(var(--side), calc((100vw - var(--container)) / 2));
    }

    .philosophy-copy .section-number {
      color: rgba(255, 253, 248, 0.9);
      text-shadow: 0 1px 18px rgba(0, 0, 0, 0.26);
    }

    .philosophy-copy h2 {
      margin: 0;
      font-family: var(--serif);
      font-size: clamp(34px, 4vw, 56px);
      font-weight: 500;
      line-height: 1.35;
    }

    .philosophy-copy p:not(.section-number) {
      margin: 26px 0 0;
      color: var(--dark-copy);
      font-size: var(--lead-size);
      line-height: var(--lead-line);
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      margin-top: 34px;
      min-height: 60px;
      min-width: 260px;
      padding: 0 40px;
      border: 1px solid rgba(255, 253, 248, 0.7);
      border-radius: 4px;
      color: inherit;
      font-size: 16px;
      text-decoration: none;
      background: rgba(255, 253, 248, 0.08);
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
      transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }

    .philosophy-copy .text-link:hover {
      transform: translateY(-2px);
      color: #272421;
      border-color: rgba(255, 253, 248, 0.96);
      background: rgba(255, 253, 248, 0.96);
      box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
    }

    .service-heading,
    .case-heading,
    .top-column-heading,
    .flow-heading,
    .faq-heading {
      display: grid;
      grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1fr);
      gap: clamp(32px, 5vw, 78px);
      align-items: end;
      margin-bottom: 34px;
    }

    .service-heading .section-lead,
    .case-heading .section-lead,
    .top-column-heading .section-lead,
    .flow-heading .section-lead,
    .faq-heading .section-lead {
      margin: 0 0 8px;
    }

    .case-heading .section-lead {
      margin-left: clamp(64px, 6vw, 112px);
    }

    @media (min-width: 981px) {
      .service-heading .section-lead,
      .case-heading .section-lead,
      .top-column-heading .section-lead,
      .flow-heading .section-lead {
        text-align: right;
      }
    }

    .top-column-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: clamp(20px, 3vw, 36px);
      margin-top: 0;
    }

    .top-column-card {
      min-width: 0;
      background: #fff;
      box-shadow: 0 14px 38px rgba(45, 38, 27, 0.08);
      transition: transform 0.24s ease, box-shadow 0.24s ease;
    }

    .top-column-card:hover,
    .top-column-card:focus-within {
      transform: translateY(-5px);
      box-shadow: 0 20px 44px rgba(45, 38, 27, 0.13);
    }

    .top-column-card > a {
      display: flex;
      height: 100%;
      color: inherit;
      text-decoration: none;
      flex-direction: column;
    }

    .top-column-image {
      display: block;
      overflow: hidden;
      aspect-ratio: 16 / 9;
      background: #ded6c7;
    }

    .top-column-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.35s ease;
    }

    .top-column-card:hover .top-column-image img {
      transform: scale(1.035);
    }

    .top-column-body {
      display: flex;
      padding: 26px 25px 28px;
      flex: 1;
      flex-direction: column;
    }

    .top-column-meta {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      color: #8a7e6d;
      font-size: 11px;
      letter-spacing: 0.08em;
    }

    .top-column-body h3 {
      margin: 20px 0 28px;
      font-family: var(--serif);
      font-size: clamp(20px, 2vw, 25px);
      font-weight: 500;
      line-height: 1.65;
    }

    .top-column-body .card-action {
      margin-top: auto;
    }

    .case-heading .section-lead,
    .flow-heading .section-lead {
      transform: translateY(22px);
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .case-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 22px;
    }

    .service-card,
    .case-card {
      overflow: hidden;
    }

    .service-card-origin {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: minmax(300px, 0.92fr) minmax(440px, 1.08fr);
      align-items: stretch;
    }

    .service-card img,
    .case-card img {
      width: 100%;
      height: 218px;
      object-fit: cover;
      border-bottom: 1px solid rgba(71, 63, 54, 0.11);
    }

    .service-card-origin img {
      height: 100%;
      min-height: 300px;
      border-right: 1px solid rgba(71, 63, 54, 0.11);
      border-bottom: 0;
    }

    .service-card-body,
    .case-card-body {
      padding: 24px 22px 26px;
    }

    .service-card-origin .service-card-body {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 34px 38px;
    }

    .service-card-origin h3 {
      font-size: clamp(28px, 2.7vw, 38px);
    }

    .service-label {
      display: inline-flex;
      align-self: flex-start;
      margin-bottom: 14px;
      padding: 5px 11px;
      border: 1px solid rgba(71, 63, 54, 0.16);
      border-radius: 999px;
      color: #706960;
      background: rgba(255, 255, 255, 0.62);
      font-size: 11px;
      line-height: 1.2;
      letter-spacing: 0.06em;
    }

    .center-button {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 36px;
    }

    .flow-list {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 18px;
      padding: 0;
      margin: 0;
      list-style: none;
      counter-reset: flow;
    }

    .flow-list li {
      position: relative;
      min-height: 230px;
      padding: 28px 20px 24px;
      counter-increment: flow;
      overflow: hidden;
    }

    .flow-list li::after {
      content: "";
      position: absolute;
      left: 20px;
      right: 20px;
      bottom: 0;
      height: 2px;
      background: linear-gradient(90deg, rgba(122, 154, 168, 0), rgba(122, 154, 168, 0.62), rgba(122, 154, 168, 0));
      opacity: 0;
      transform: translateX(-60%);
      pointer-events: none;
    }

    .flow-list li::before {
      content: "0" counter(flow);
      display: block;
      margin-bottom: 20px;
      color: var(--blue);
      font-family: var(--serif);
      font-size: 30px;
      line-height: 1;
    }

    .flow-icon {
      display: grid;
      place-items: center;
      width: 54px;
      aspect-ratio: 1;
      margin-bottom: 18px;
      border: 1px solid rgba(112, 107, 99, 0.36);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.55);
    }

    .flow-icon svg {
      width: 30px;
      height: 30px;
      stroke: #68635c;
      stroke-width: 1.7;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .flow-list.is-visible .flow-icon {
      animation: flow-icon-breathe 4.8s ease-in-out infinite;
    }

    .flow-list.is-visible .flow-icon svg {
      animation: flow-icon-stroke 4.8s ease-in-out infinite;
    }

    .flow-list.is-visible li::after {
      animation: flow-step-line 4.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
    }

    .flow-list.is-visible li:nth-child(2)::after,
    .flow-list.is-visible li:nth-child(2) .flow-icon,
    .flow-list.is-visible li:nth-child(2) .flow-icon svg {
      animation-delay: 0.28s;
    }

    .flow-list.is-visible li:nth-child(3)::after,
    .flow-list.is-visible li:nth-child(3) .flow-icon,
    .flow-list.is-visible li:nth-child(3) .flow-icon svg {
      animation-delay: 0.56s;
    }

    .flow-list.is-visible li:nth-child(4)::after,
    .flow-list.is-visible li:nth-child(4) .flow-icon,
    .flow-list.is-visible li:nth-child(4) .flow-icon svg {
      animation-delay: 0.84s;
    }

    .flow-list.is-visible li:nth-child(5)::after,
    .flow-list.is-visible li:nth-child(5) .flow-icon,
    .flow-list.is-visible li:nth-child(5) .flow-icon svg {
      animation-delay: 1.12s;
    }

    .faq-wrap {
      width: min(var(--container), calc(100% - (var(--side) * 2)));
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(260px, 0.72fr) minmax(620px, 1.28fr);
      column-gap: clamp(48px, 6vw, 110px);
      row-gap: 0;
      align-items: start;
    }

    .faq-heading {
      width: 100%;
      display: block;
      margin: 0;
    }

    .faq-list {
      display: grid;
      gap: 0;
      grid-column: 2;
      width: min(860px, 100%);
      margin-top: 34px;
      margin-bottom: 15px;
      justify-self: end;
      border-top: 1px solid rgba(71, 63, 54, 0.16);
    }

    .faq-wrap .center-button {
      grid-column: 1 / -1;
      width: auto;
      justify-self: center;
      margin-top: 16px;
    }

    .faq-wrap .text-link {
      min-height: 68px;
      min-width: 260px;
      margin-top: 0;
      padding: 0 40px;
      border: 1px solid rgba(39, 36, 33, 0.22);
      border-radius: 4px;
      color: var(--ink);
      background: rgba(255, 253, 248, 0.94);
      box-shadow: 0 16px 30px rgba(66, 57, 46, 0.1);
      font-size: 16px;
    }

    .faq-wrap .text-link:hover {
      transform: translateY(-2px);
      color: #fff;
      border-color: #272421;
      background: #272421;
      box-shadow: 0 18px 34px rgba(66, 57, 46, 0.16);
    }

    .faq-item {
      width: 100%;
      min-height: 54px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 17px 4px;
      border: 0;
      border-bottom: 1px solid rgba(71, 63, 54, 0.16);
      border-radius: 0;
      color: var(--ink);
      background: transparent;
      font: inherit;
      text-align: left;
      cursor: pointer;
      transition: color 0.2s ease, border-color 0.2s ease;
    }

    .faq-item span {
      font-family: var(--serif);
      font-size: clamp(15px, 1.35vw, 18px);
      line-height: 1.5;
      color: #4f4943;
    }

    .faq-item b {
      flex: 0 0 auto;
      position: relative;
      width: 18px;
      height: 18px;
      font-size: 0;
      font-weight: 400;
      color: #6f6860;
    }

    .faq-item b::before,
    .faq-item b::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 2px;
      right: 2px;
      height: 1px;
      background: #6f6860;
      transform-origin: center;
      transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s ease;
    }

    .faq-item b::before {
      transform: translateY(-50%);
    }

    .faq-item b::after {
      transform: translateY(-50%) rotate(90deg);
    }

    .faq-answer {
      display: block;
      max-height: 0;
      max-width: 720px;
      margin: 0;
      overflow: hidden;
      padding: 0 32px 0 28px;
      color: var(--body-copy-soft);
      font-size: var(--compact-body-size);
      line-height: var(--body-line);
      opacity: 0;
      text-align: left;
      transition: max-height 0.3s ease, opacity 0.22s ease, padding 0.3s ease;
    }

    .faq-pair.is-open .faq-answer {
      max-height: 260px;
      padding: 18px 32px 30px 28px;
      opacity: 1;
    }

    .faq-pair.is-open .faq-item {
      border-bottom-color: rgba(71, 63, 54, 0.24);
    }

    .faq-pair.is-open .faq-item span {
      color: #272421;
    }

    .faq-pair.is-open .faq-item b::before {
      transform: translateY(-50%) rotate(45deg);
      background: #272421;
    }

    .faq-pair.is-open .faq-item b::after {
      transform: translateY(-50%) rotate(-45deg);
      background: #272421;
    }

    .contact-section {
      position: relative;
      min-height: 620px;
      display: grid;
      align-items: center;
      overflow: hidden;
      padding: clamp(96px, 12vw, 156px) 0;
      color: #fffdf8;
      background: #171513;
    }

    .contact-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(23, 21, 19, 0.84), rgba(23, 21, 19, 0.5), rgba(23, 21, 19, 0.2)),
        url("../images/contact-bg.optimized.webp") center / cover no-repeat;
      filter: saturate(0.98) contrast(1.02);
    }

    .contact-copy {
      position: relative;
      z-index: 1;
      width: min(620px, 100%);
    }

    .contact-copy .section-number {
      color: rgba(255, 253, 248, 0.68);
    }

    .contact-lead,
    .contact-free-note {
      margin: 24px 0 0;
      color: var(--dark-copy);
      font-size: var(--lead-size);
      line-height: var(--lead-line);
    }

    .contact-free-note {
      margin-top: 18px;
      color: var(--dark-copy-strong);
      font-weight: 700;
    }

    .button-invert {
      width: min(360px, 100%);
      min-width: 0;
      min-height: 68px;
      margin-top: 32px;
      padding: 0 40px;
      color: var(--ink);
      background: rgba(255, 253, 248, 0.92);
      border-color: rgba(255, 253, 248, 0.92);
      box-shadow: 0 16px 30px rgba(66, 57, 46, 0.1);
      font-family: var(--sans);
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0;
      text-align: center;
      white-space: nowrap;
    }

    .button-invert:hover {
      color: #fff;
      background: #272421;
      border-color: rgba(255, 253, 248, 0.92);
      box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
    }







    .reveal {
      opacity: 0;
      transform: translate3d(0, 34px, 0) scale(0.985);
      filter: blur(10px);
      transition:
        opacity 1s ease,
        transform 1s cubic-bezier(0.18, 0.86, 0.22, 1),
        filter 0.9s ease;
      will-change: opacity, transform, filter;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
      animation: none;
    }

    .section-heading.reveal.is-visible,
    .service-heading.reveal.is-visible,
    .case-heading.reveal.is-visible,
    .flow-heading.reveal.is-visible,
    .faq-heading.reveal.is-visible,
    .contact-copy.reveal.is-visible,
    .philosophy-copy.reveal.is-visible {
      animation: none;
    }

    .problem-list.reveal,
    .service-grid.reveal,
    .case-grid.reveal,
    .flow-list.reveal,
    .faq-list.reveal {
      opacity: 1;
      transform: none;
      filter: none;
      transition: none;
    }

    .problem-list.reveal > *,
    .service-grid.reveal > *,
    .case-grid.reveal > *,
    .flow-list.reveal > *,
    .faq-list.reveal > * {
      opacity: 0;
      transform: translate3d(0, 30px, 0) scale(0.985);
      filter: blur(8px);
      transition:
        opacity 0.9s ease,
        transform 0.95s cubic-bezier(0.18, 0.86, 0.22, 1),
        filter 0.85s ease;
      will-change: opacity, transform, filter;
    }

    .problem-list.reveal.is-visible > *,
    .service-grid.reveal.is-visible > *,
    .case-grid.reveal.is-visible > *,
    .flow-list.reveal.is-visible > *,
    .faq-list.reveal.is-visible > * {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
      filter: blur(0);
      animation: none;
    }

    .problem-list.reveal > *:nth-child(2),
    .service-grid.reveal > *:nth-child(2),
    .case-grid.reveal > *:nth-child(2),
    .flow-list.reveal > *:nth-child(2),
    .faq-list.reveal > *:nth-child(2) {
      transition-delay: 0.08s;
      --loop-delay: 0.12s;
    }

    .problem-list.reveal > *:nth-child(3),
    .service-grid.reveal > *:nth-child(3),
    .case-grid.reveal > *:nth-child(3),
    .flow-list.reveal > *:nth-child(3),
    .faq-list.reveal > *:nth-child(3) {
      transition-delay: 0.16s;
      --loop-delay: 0.24s;
    }

    .service-grid.reveal > *:nth-child(4),
    .case-grid.reveal > *:nth-child(4),
    .flow-list.reveal > *:nth-child(4),
    .faq-list.reveal > *:nth-child(4) {
      transition-delay: 0.24s;
      --loop-delay: 0.36s;
    }

    .flow-list.reveal > *:nth-child(5) {
      transition-delay: 0.32s;
      --loop-delay: 0.48s;
    }

    @keyframes note-in {
      from {
        opacity: 0;
        transform: translateY(-8px) rotate(var(--note-rotate, 0deg));
        filter: blur(3px);
      }
      to {
        opacity: 1;
        transform: translateY(0) rotate(var(--note-rotate, 0deg));
        filter: blur(0);
      }
    }

    @keyframes note-float {
      0%,
      100% {
        transform: translateY(0) rotate(var(--note-rotate, 0deg));
      }
      50% {
        transform: translateY(-3px) rotate(var(--note-rotate, 0deg));
      }
    }

    @keyframes core-in {
      from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.96);
      }
      to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
      }
    }

    @keyframes line-in {
      from {
        opacity: 0;
        filter: blur(2px);
      }
      to {
        opacity: var(--target-opacity, 0.66);
        filter: blur(0);
      }
    }

    @keyframes diagram-line-travel {
      0%,
      100% {
        stroke-dashoffset: 0;
        filter: drop-shadow(0 0 0 rgba(122, 154, 168, 0));
      }
      50% {
        stroke-dashoffset: -24;
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.72));
      }
    }

    @keyframes core-breathe {
      0%,
      100% {
        box-shadow:
          0 20px 36px rgba(66, 57, 46, 0.14),
          0 0 0 28px rgba(255, 253, 248, 0.38),
          0 0 38px rgba(255, 253, 248, 0.64);
      }
      50% {
        box-shadow:
          0 22px 39px rgba(66, 57, 46, 0.13),
          0 0 0 36px rgba(255, 253, 248, 0.58),
          0 0 58px rgba(255, 253, 248, 0.88);
      }
    }

    @keyframes core-signal-ring {
      0%,
      100% {
        opacity: 0.18;
        transform: scale(0.92);
      }
      44% {
        opacity: 0.84;
        transform: scale(1.12);
      }
      70% {
        opacity: 0.22;
        transform: scale(1.22);
      }
    }

    @keyframes core-signal-glow {
      0%,
      100% {
        opacity: 0.26;
        transform: scale(0.96);
      }
      48% {
        opacity: 0.82;
        transform: scale(1.08);
      }
    }

    @keyframes output-in {
      from {
        opacity: 0;
        transform: translateX(var(--output-x, 0)) translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateX(var(--output-x, 0)) translateY(0);
      }
    }

    @keyframes output-glow {
      0%,
      38%,
      100% {
        opacity: 0;
        transform: translateX(-50%) translateY(4px) scale(0.84);
      }
      10%,
      25% {
        opacity: 0.78;
        transform: translateX(-50%) translateY(0) scale(1.14);
      }
    }

    @keyframes output-focus-step {
      0%,
      38%,
      100% {
        filter: brightness(0.96) saturate(0.9);
      }
      10%,
      25% {
        filter: brightness(1.08) saturate(1);
      }
    }

    @keyframes problem-line-breathe {
      0%,
      100% {
        stroke: #807971;
        filter: drop-shadow(0 0 0 rgba(122, 154, 168, 0));
      }
      48% {
        stroke: #6f8d98;
        filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.84));
      }
    }

    @keyframes problem-dot-signal {
      0%,
      100% {
        opacity: 0.62;
        transform: scale(0.88);
      }
      45% {
        opacity: 1;
        transform: scale(1.22);
      }
    }

    @keyframes problem-shift-line {
      0%,
      100% {
        stroke-dasharray: 1 0;
        stroke-dashoffset: 0;
        filter: drop-shadow(0 0 0 rgba(122, 154, 168, 0));
      }
      50% {
        stroke-dasharray: 8 7;
        stroke-dashoffset: -22;
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.7));
      }
    }

    @keyframes problem-miss-fade {
      0%,
      100% {
        opacity: 0.28;
      }
      48% {
        opacity: 0.72;
      }
    }

    @keyframes flow-icon-breathe {
      0%,
      100% {
        border-color: rgba(112, 107, 99, 0.36);
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
      }
      44% {
        border-color: rgba(122, 154, 168, 0.42);
        box-shadow: 0 0 22px rgba(255, 255, 255, 0.8);
      }
    }

    @keyframes flow-icon-stroke {
      0%,
      100% {
        stroke: #68635c;
      }
      44% {
        stroke: #6f8d98;
      }
    }

    @keyframes flow-step-line {
      0%,
      100% {
        opacity: 0;
        transform: translateX(-60%);
      }
      28%,
      52% {
        opacity: 1;
      }
      72% {
        opacity: 0;
        transform: translateX(60%);
      }
    }

    @media (max-width: 1100px) {
      .global-nav {
        display: none;
      }

      .service-grid,
      .case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .flow-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 980px) {
      .hero {
        padding-top: 116px;
      }

      .hero-inner,
      .two-column,
      .faq-wrap,
      .service-heading,
      .case-heading,
      .top-column-heading,
      .flow-heading,
      .faq-heading {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .case-heading .section-lead {
        margin-left: 0;
      }

      .faq-wrap {
        row-gap: 0;
      }

      .top-column-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .case-heading .section-lead,
      .flow-heading .section-lead {
        transform: none;
      }

      .service-card-origin {
        grid-template-columns: 1fr;
      }

      .service-card-origin img {
        height: 240px;
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid rgba(71, 63, 54, 0.11);
      }

      .faq-list,
      .faq-wrap .center-button {
        grid-column: auto;
        width: 100%;
        justify-self: stretch;
      }

      .hero-copy {
        max-width: 640px;
      }

      .diagram {
        margin: 0 auto;
        width: min(620px, 96vw);
      }

      .problem-list {
        grid-template-columns: 1fr;
      }

      .why-scene {
        min-height: 420px;
      }

      .philosophy-section::before {
        background:
          linear-gradient(90deg, rgba(33, 31, 28, 0.92), rgba(33, 31, 28, 0.7)),
          url("../images/top-philosophy-visual-v2.optimized.webp") center / cover no-repeat;
      }
    }

    @media (max-width: 720px) {
      :root {
        --side: 22px;
        --body-size: 16px;
        --compact-body-size: 16px;
        --lead-size: 17px;
        --body-line: 1.85;
        --lead-line: 2;
      }

      .site-header {
        top: 0;
        width: 100%;
        min-height: 54px;
        gap: 12px;
        padding: 8px 12px;
      }

      .brand {
        width: 96px;
      }

      .header-cta {
        min-width: 116px;
        min-height: 38px;
        padding-inline: 10px;
        font-size: 12px;
        white-space: nowrap;
      }

      .hero {
        min-height: auto;
        padding-top: 58px;
        padding-bottom: 18px;
      }

      .hero-copy {
        padding-top: 0;
      }

      .hero-copy .eyebrow {
        display: none;
      }

      h1 {
        font-size: clamp(19px, 6.2vw, 27px);
        line-height: 1.12;
      }

      .lead {
        margin-top: 9px;
        font-size: 11px;
        line-height: 1.62;
      }

      .lead br,
      .support-copy br,
      .section-lead br,
      .philosophy-copy p br,
      .contact-lead br {
        display: none;
      }

      .actions {
        gap: 8px;
        margin-top: 12px;
        flex-direction: row;
      }

      .button {
        flex: 1 1 0;
        min-width: 0;
        min-height: 38px;
        padding: 10px 10px;
        font-size: 11.5px;
        width: auto;
      }

      .diagram {
        width: min(340px, 54%);
        aspect-ratio: 0.72;
        margin-top: -14px;
      }

      .paper-note {
        min-height: 42px;
        padding: 7px 8px 9px;
        font-size: clamp(9px, 2.7vw, 13px);
      }

      .axis-core {
        width: 29%;
        box-shadow:
          0 14px 26px rgba(66, 57, 46, 0.12),
          0 0 0 16px rgba(220, 236, 244, 0.5);
        font-size: clamp(12px, 3.6vw, 18px);
      }

      .output {
        bottom: 0;
        gap: 5px;
        width: 23%;
        font-size: clamp(11px, 3.1vw, 17px);
      }

      .output-icon {
        width: clamp(42px, 12vw, 62px);
      }

      .output small {
        margin-top: 3px;
        font-size: 7px;
      }

      .section {
        padding: 76px 0;
      }

      .section-heading h2,
      .service-heading h2,
      .case-heading h2,
      .top-column-heading h2,
      .flow-heading h2,
      .faq-heading h2,
      .contact-copy h2 {
        font-size: clamp(31px, 9vw, 44px);
      }

      .top-column-grid {
        grid-template-columns: 1fr;
      }

      .service-grid,
      .case-grid,
      .flow-list {
        grid-template-columns: 1fr;
      }

      .service-card img,
      .case-card img {
        height: 210px;
      }

      .philosophy-section,
      .contact-section {
        min-height: auto;
      }

      .philosophy-copy {
        margin-inline: var(--side);
      }



    }

    .hero {
      min-height: 960px;
      overflow: visible;
      padding-top: 0;
      padding-bottom: 0;
      place-items: center;
    }

    .hero-inner {
      align-items: center;
      transform: translateY(78px);
    }

    .hero-copy {
      position: relative;
      z-index: 3;
      padding-top: 0;
    }

    .hero-copy .eyebrow {
      display: none;
    }

    h1 {
      font-size: clamp(52px, 4.8vw, 76px);
      line-height: 1.12;
    }

    .lead {
      margin-top: 22px;
      font-size: clamp(17px, 1.3vw, 21px);
      line-height: 1.9;
    }

    .actions {
      margin-top: 32px;
    }

    .diagram {
      width: min(820px, 54vw);
      z-index: 1;
      margin: 0 0 0 auto;
      transform: translateY(-220px);
    }

    @media (max-width: 720px) {
      .hero {
        min-height: auto;
        padding-top: max(255px, calc(env(safe-area-inset-top, 0px) + 255px));
        padding-bottom: 30px;
        place-items: start center;
      }

      .hero-inner {
        align-items: start;
        transform: none;
      }

      h1 {
        font-size: clamp(38px, 12vw, 72px);
      }

      .lead {
        margin-top: 18px;
        font-size: clamp(15.5px, 1.3vw, 20px);
        line-height: 1.82;
      }

      .actions {
        margin-top: 18px;
      }

      .diagram {
        width: min(440px, 84%);
        margin-top: -230px;
        margin-bottom: -135px;
        transform: none;
        opacity: 0.72;
      }
    }

    @media (min-width: 721px) {
      .hero {
        min-height: clamp(980px, 104svh, 1160px);
        overflow: visible;
        padding-top: 0;
        padding-bottom: 0;
        place-items: start center;
      }

      .hero-inner {
        position: relative;
        min-height: clamp(940px, calc(104svh - 40px), 1120px);
        align-items: start;
        transform: none;
      }

      .hero-copy {
        max-width: 580px;
        margin-top: clamp(215px, 22svh, 265px);
      }

      h1 {
        font-size: clamp(56px, 4.8vw, 78px);
        line-height: 1.12;
      }

      .lead {
        margin-top: 24px;
        font-size: clamp(18px, 1.35vw, 22px);
        line-height: 1.9;
      }

      .actions {
        margin-top: 34px;
      }

      .hero .button {
        min-width: 252px;
        min-height: 70px;
        padding: 0 42px;
        font-size: 17px;
        box-shadow: 0 18px 34px rgba(66, 57, 46, 0.13);
      }

      .diagram {
        position: absolute;
        top: clamp(40px, 5.2svh, 56px);
        right: 0;
        width: min(635px, 42vw, calc((100svh - 192px) * 0.78));
        margin: 0;
        transform: none;
      }
    }

    @media (min-width: 721px) and (max-height: 999px) {
      .hero {
        min-height: clamp(820px, 90svh, 1000px);
      }

      .hero-inner {
        min-height: clamp(780px, calc(90svh - 40px), 960px);
      }

      .hero-copy {
        margin-top: clamp(190px, 20svh, 235px);
      }
    }

    @media (min-width: 721px) and (max-width: 1728px) and (max-height: 999px) {
      .top-page .hero {
        overflow: hidden;
      }

      .top-page .diagram {
        top: clamp(34px, 4.4svh, 48px);
        width: min(600px, 41vw, calc((100svh - 214px) * 0.78));
      }

      .top-page .output {
        bottom: 12%;
        gap: 6px;
        font-size: clamp(14px, 1.35vw, 21px);
      }

      .top-page .output-icon {
        width: clamp(62px, 7vw, 92px);
      }

      body.home .top-page .hero-scroll-cue {
        top: calc(min(100svh, 900px) - 246px) !important;
        bottom: auto !important;
      }
    }

    @media (min-width: 1513px) and (min-height: 760px) {
      .hero {
        min-height: clamp(1120px, 116svh, 1280px);
      }

      .hero-inner {
        min-height: clamp(1080px, calc(116svh - 40px), 1240px);
      }

      .hero-copy {
        margin-top: clamp(230px, 24svh, 292px);
      }
    }

    @media (min-width: 1280px) and (max-width: 1512px) and (min-height: 700px) and (max-height: 999px) {
      .top-page .hero-inner {
        grid-template-columns: 1fr;
      }

      .top-page .hero-copy {
        max-width: 720px;
      }

      .top-page .diagram {
        display: none;
      }

      body.home .top-page .hero-scroll-cue {
        top: calc(min(100svh, 900px) - 168px) !important;
      }
    }

    @media (min-width: 721px) and (max-width: 1728px) and (max-height: 999px) {
      .top-page .hero {
        min-height: clamp(820px, 100svh, 1000px);
      }

      .top-page .hero-inner {
        min-height: clamp(780px, calc(100svh - 40px), 960px);
      }

      .top-page .hero-copy {
        margin-top: clamp(190px, 25.5svh, 230px);
      }

      .top-page .diagram {
        top: clamp(42px, 6svh, 56px);
        width: min(520px, 41vw, calc((100svh - 128px) * 0.78));
      }

      .top-page .paper-note {
        min-height: clamp(58px, 14cqw, 76px);
        padding: clamp(10px, 2.7cqw, 15px) clamp(12px, 3.2cqw, 18px) clamp(12px, 3.4cqw, 17px);
        font-size: clamp(12px, 3.35cqw, 17px);
        line-height: 1.34;
      }

      .top-page .axis-core {
        font-size: clamp(15px, 4.6cqw, 24px);
      }

      .top-page .output {
        bottom: 8%;
        font-size: clamp(13px, 3.7cqw, 21px);
      }

      .top-page .output-icon {
        width: clamp(56px, 15cqw, 88px);
      }

      .top-page .output small {
        font-size: clamp(7px, 1.65cqw, 9.5px);
      }

      body.home .top-page .hero-scroll-cue {
        top: calc(min(100svh, 900px) - 168px) !important;
        bottom: auto !important;
      }
    }

    @media (min-width: 1180px) and (max-width: 1600px) and (max-height: 1050px) {
      .top-page .hero {
        overflow: hidden;
        min-height: clamp(820px, 100svh, 1000px);
      }

      .top-page .hero-inner {
        min-height: clamp(780px, calc(100svh - 40px), 960px);
      }

      .top-page .hero-copy {
        margin-top: clamp(190px, 24svh, 230px);
        max-width: 560px;
      }

      .top-page .diagram {
        isolation: isolate;
        top: clamp(56px, 7svh, 84px);
        right: clamp(130px, 13vw, 220px);
        width: min(440px, 34vw, calc((100svh - 110px) * 0.78));
        filter: drop-shadow(0 22px 44px rgba(44, 38, 32, 0.08));
      }

      .top-page .paper-note {
        min-height: clamp(58px, 14cqw, 74px);
        padding: clamp(10px, 2.6cqw, 14px) clamp(12px, 3.1cqw, 17px) clamp(12px, 3.2cqw, 16px);
        font-size: clamp(12px, 3.25cqw, 16px);
        line-height: 1.34;
      }

      .top-page .axis-core {
        font-size: clamp(15px, 4.4cqw, 22px);
      }

      .top-page .output {
        bottom: 9%;
        font-size: clamp(13px, 3.55cqw, 19px);
      }

      .top-page .output-icon {
        width: clamp(54px, 14.2cqw, 82px);
      }

      .top-page .output small {
        font-size: clamp(7px, 1.6cqw, 9px);
      }
    }

    @media (max-width: 720px) {
      .top-page .hero {
        min-height: auto;
        padding-top: max(168px, calc(env(safe-area-inset-top, 0px) + 168px));
        padding-bottom: 64px;
        overflow: hidden;
      }

      .top-page .hero-inner {
        min-height: 760px;
        width: 100%;
      }

      .top-page .hero-copy {
        width: min(100%, calc(100vw - (var(--side) * 2)));
        max-width: calc(100vw - (var(--side) * 2));
        margin-top: 124px;
      }

      .top-page h1 {
        width: 100%;
        max-width: 100%;
        font-size: clamp(38px, 10.6vw, 48px);
        line-height: 1.16;
        overflow-wrap: keep-all;
      }

      .top-page .hero .lead {
        width: 100%;
        max-width: 100%;
        margin-top: 16px;
        font-size: clamp(12px, 3.3vw, 14px);
        line-height: 1.75;
        overflow-wrap: anywhere;
      }

      .top-page .actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
        max-width: 280px;
        margin-top: 18px;
      }

      .top-page .hero .button {
        min-width: 0;
        min-height: 48px;
        width: 100%;
        padding: 0 10px;
        font-size: 12px;
        white-space: nowrap;
      }

      .top-page .diagram {
        top: 42px;
        right: -18px;
        width: min(370px, 94vw);
        opacity: 0.62;
      }
    }

    @media (max-width: 720px) {
      .top-page .hero {
        padding-bottom: 46px;
      }

      .top-page .hero-inner {
        min-height: 700px;
      }

      .top-page .hero-copy {
        position: relative;
        z-index: 6;
        margin-top: 104px;
      }

      .top-page h1 {
        font-size: clamp(36px, 10vw, 45px);
        line-height: 1.18;
      }

      .top-page .diagram {
        position: absolute;
        top: 340px;
        left: 50%;
        right: auto;
        z-index: 2;
        width: min(300px, 76vw);
        margin: 0;
        opacity: 0.54;
        transform: translateX(-50%);
      }

      .top-page .hero-scroll-cue {
        display: none;
      }

      .top-page .output {
        bottom: 24%;
        gap: 2px;
        width: 22%;
        font-size: clamp(10px, 2.8vw, 13px);
        opacity: 1;
        animation: none;
        transform: translateX(var(--output-x, 0));
      }

      .top-page .axis-core {
        top: 42%;
        width: 24%;
        font-size: clamp(10px, 2.8vw, 13px);
      }

      .top-page .output::before {
        display: none;
      }

      .top-page .output-icon {
        width: clamp(34px, 9.5vw, 44px);
      }

      .top-page .output small {
        margin-top: 2px;
        font-size: 6.5px;
        line-height: 1.25;
      }

      .problem-list,
      .service-grid,
      .case-grid {
        gap: 18px;
      }

      .top-page .reveal,
      .top-page .problem-list.reveal > *,
      .top-page .service-grid.reveal > *,
      .top-page .case-grid.reveal > *,
      .top-page .flow-list.reveal > *,
      .top-page .faq-list.reveal > * {
        opacity: 1;
        transform: none;
        filter: none;
      }

      .problem-item,
      .service-card,
      .case-card {
        border-radius: 8px;
      }

      .problem-item {
        min-height: 260px;
        padding: 30px 28px 34px;
      }

      .problem-diagram {
        min-height: 112px;
        transform: scale(0.92);
        transform-origin: center;
      }

      .problem-item h3 {
        margin-top: 18px;
        font-size: clamp(25px, 7.2vw, 32px);
        line-height: 1.32;
      }

      .problem-item p,
      .service-card p,
      .case-card p {
        line-height: 1.85;
      }

      .service-card-body,
      .case-card-body {
        padding: 30px 24px 32px;
      }

      .service-card h3,
      .case-card h3 {
        font-size: clamp(25px, 7vw, 34px);
        line-height: 1.35;
      }

      .faq-item {
        min-height: 66px;
        padding: 18px 58px 18px 20px;
      }

      .faq-item span {
        font-size: 15px;
        line-height: 1.65;
      }

      .contact-section {
        min-height: 560px;
        padding: 78px 0 86px;
      }
    }

    @media (max-width: 380px) {
      .top-page h1 {
        font-size: clamp(34px, 9.8vw, 42px);
      }

      .top-page .diagram {
        top: 292px;
        width: min(238px, 66vw);
      }

      .top-page .hero .lead {
        font-size: 12px;
        line-height: 1.72;
      }

      .problem-item {
        min-height: 238px;
        padding: 28px 24px 32px;
      }

      .service-card-body,
      .case-card-body {
        padding-inline: 22px;
      }
    }

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

      .diagram .line-path,
      .paper-note,
      .axis-core,
      .axis-core::before,
      .axis-core::after,
      .output,
      .output::before,
      .problem-list.is-visible .problem-diagram path,
      .problem-list.is-visible .problem-diagram .dot,
      .problem-list.is-visible .problem-item:nth-child(3) .problem-diagram .faint,
      .flow-list.is-visible .flow-icon,
      .flow-list.is-visible .flow-icon svg,
      .flow-list.is-visible li::after,
      .reveal,
      .problem-list.reveal > *,
      .service-grid.reveal > *,
      .case-grid.reveal > *,
      .flow-list.reveal > *,
      .faq-list.reveal > * {
        animation: none !important;
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
      }
    }

    /* Local FV final candidate: editorial photo material + sequential handwriting.
       This replaces the old top FV diagram in markup while preserving lower-page CSS. */
    .top-page .hero {
      position: relative;
      min-height: min(100svh, 900px);
      overflow: hidden;
      padding: clamp(112px, 12svh, 148px) var(--side) clamp(64px, 8svh, 96px);
      display: grid;
      place-items: center;
      background:
        linear-gradient(112deg, rgba(251, 250, 247, 0.96) 0%, rgba(247, 245, 239, 0.9) 44%, rgba(232, 232, 226, 0.86) 100%),
        radial-gradient(circle at 79% 26%, rgba(255, 255, 255, 0.72), transparent 31%);
      isolation: isolate;
    }

    .top-page .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      background: transparent;
      pointer-events: none;
    }

    .top-page .hero::after {
      content: "";
      position: absolute;
      inset: auto -10% -24% 30%;
      z-index: 0;
      height: 42%;
      background: radial-gradient(ellipse at center, rgba(45, 40, 35, 0.18), transparent 68%);
      filter: blur(34px);
      pointer-events: none;
    }

    .top-page .hero-inner {
      position: relative;
      z-index: 3;
      width: min(var(--hero-container), 100%);
      min-height: 0;
      display: block;
      align-items: center;
      transform: none;
    }

    .top-page .hero-copy {
      position: relative;
      z-index: 4;
      max-width: 610px;
      margin-top: 0;
      padding-top: 0;
      transform: translateY(-60px);
    }

    .top-page .hero-copy .eyebrow {
      display: block;
    }

    .top-page h1 {
      margin: 0;
      font-family: var(--serif);
      font-size: clamp(44px, 4.45vw, 72px);
      font-weight: 500;
      line-height: 1.2;
      letter-spacing: 0;
    }

    .top-page h1 span {
      display: block;
      white-space: nowrap;
      opacity: 0;
      transform: translateY(10px);
      animation: hero-copy-in 0.62s ease-out forwards;
    }

    .top-page h1 span:nth-child(2) {
      animation-delay: 0.13s;
    }

    .top-page .hero .lead {
      margin: 24px 0 0;
      color: #514d48;
      font-size: clamp(16px, 1.18vw, 19px);
      line-height: 1.95;
      opacity: 0;
      transform: translateY(10px);
      animation: hero-copy-in 0.66s ease-out 0.34s forwards;
    }

    .top-page .hero .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 32px;
      opacity: 0;
      transform: translateY(10px);
      animation: hero-copy-in 0.66s ease-out 0.52s forwards;
    }

    .top-page .hero .button {
      min-width: min(226px, 100%);
      min-height: 68px;
      padding-inline: 32px;
      font-size: 16px;
    }

    .hero-atelier {
      position: absolute;
      inset: 0;
      z-index: 1;
      width: auto;
      height: auto;
      margin: 0;
      isolation: isolate;
      opacity: 1;
      transform: translate(8px, -5px) rotate(0.6deg);
      animation: editorial-settle 1.08s cubic-bezier(0.2, 0.82, 0.2, 1) 0.38s forwards;
      -webkit-mask-image:
        linear-gradient(90deg, rgba(0, 0, 0, 0.82), #000);
      mask-image:
        linear-gradient(90deg, rgba(0, 0, 0, 0.82), #000);
    }

    .hero-atelier::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 3;
      background:
        linear-gradient(90deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.9) 33%, rgba(251, 250, 247, 0.44) 58%, rgba(251, 250, 247, 0.12) 100%),
        radial-gradient(ellipse at 24% 52%, rgba(251, 250, 247, 0.72), transparent 42%),
        linear-gradient(90deg, rgba(80, 72, 62, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(80, 72, 62, 0.034) 1px, transparent 1px);
      background-size: auto, auto, 96px 96px, 96px 96px;
      pointer-events: none;
    }

    .fv-ambient {
      position: absolute;
      inset: -4%;
      z-index: 3;
      pointer-events: none;
      opacity: 0;
      translate: var(--pointer-x, 0px) var(--pointer-y, 0px);
      will-change: opacity, translate, transform;
    }

    .fv-ambient-light {
      background:
        radial-gradient(ellipse at 66% 34%, rgba(255, 255, 255, 0.5), transparent 30%),
        linear-gradient(118deg, transparent 34%, rgba(255, 255, 255, 0.44) 50%, rgba(244, 237, 220, 0.18) 60%, transparent 74%);
      mix-blend-mode: normal;
      filter: blur(0.4px);
      opacity: 0.18;
      animation: none;
    }

    .fv-ambient-shadow {
      inset: -6%;
      background:
        radial-gradient(ellipse at 68% 52%, rgba(30, 27, 23, 0.25), transparent 34%),
        linear-gradient(106deg, transparent 42%, rgba(30, 27, 23, 0.2) 58%, transparent 78%);
      mix-blend-mode: multiply;
      filter: blur(2.6px);
      opacity: 0.1;
      animation: none;
    }

    .fv-ambient-glass {
      inset: 0;
      z-index: 4;
      background:
        linear-gradient(103deg, transparent 42%, rgba(255, 255, 255, 0.36) 56%, rgba(255, 255, 255, 0.12) 66%, transparent 82%),
        linear-gradient(103deg, transparent 55%, rgba(130, 158, 156, 0.2) 68%, transparent 84%);
      clip-path: polygon(72% 13%, 100% 10%, 100% 77%, 76% 81%);
      mix-blend-mode: screen;
      opacity: 0.1;
      animation: none;
    }

    .editorial-visual {
      position: absolute;
      inset: 0;
      z-index: 1;
      margin: 0;
      overflow: hidden;
      border-radius: 0;
      box-shadow: none;
      translate: var(--pointer-x, 0px) var(--pointer-y, 0px);
      transition: translate 0.5s ease-out;
    }

    .editorial-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      background:
        linear-gradient(90deg, rgba(251, 250, 247, 0.54) 0%, rgba(251, 250, 247, 0.28) 34%, rgba(251, 250, 247, 0.02) 58%, transparent 100%),
        linear-gradient(180deg, rgba(251, 250, 247, 0.08) 0%, transparent 30%, transparent 78%, rgba(251, 250, 247, 0.08) 100%);
      pointer-events: none;
    }

    .editorial-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      filter: saturate(1) contrast(1.14) brightness(0.94);
      transform: scale(1.015);
    }

    .handwriting-board,
    .handwriting-pass,
    .handwriting-line-loop {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .handwriting-board {
      z-index: 5;
      inset: auto clamp(-12px, 2.2vw, 44px) auto auto;
      top: clamp(108px, 14svh, 164px);
      width: min(58vw, 860px);
      aspect-ratio: 1.5;
      transform: translate(1.5%, -1%) rotate(-0.2deg);
    }

    .handwriting-board::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url("../images/top-fv-handwriting-words-v7.png");
      background-size: 100% 100%;
      background-position: center;
      mix-blend-mode: multiply;
      opacity: 0;
      pointer-events: none;
    }

    .handwriting-pass {
      z-index: 1;
      --ink-contrast: 1.75;
      --ink-brightness: 0.48;
      --ink-sepia: 0.12;
      --ink-opacity: 0.68;
      background-image: url("../images/top-fv-handwriting-words-v7.png");
      background-size: 100% 100%;
      background-position: center;
      mix-blend-mode: normal;
      opacity: 0;
      filter: contrast(var(--ink-contrast)) brightness(var(--ink-brightness)) sepia(var(--ink-sepia));
      clip-path: inset(var(--clip-top) calc(100% - var(--clip-left)) var(--clip-bottom) var(--clip-left));
      animation:
        handwriting-window 0.72s cubic-bezier(0.58, 0.02, 0.2, 1) var(--write-delay) forwards,
        ink-raster-settle 1.25s ease-out calc(var(--write-delay) + 0.64s) forwards;
    }

    .handwriting-line-loop {
      z-index: 2;
      --line-opacity: 0.64;
      --loop-delay: 5.2s;
      background-image: url("../images/top-fv-handwriting-lines-v7.png");
      background-size: 100% 100%;
      background-position: center;
      mix-blend-mode: multiply;
      opacity: 0;
      filter: contrast(1.55) brightness(0.55) sepia(0.14);
      clip-path: inset(var(--line-top) var(--line-right-start) var(--line-bottom) var(--line-left));
      animation: handwriting-line-redraw 5.2s cubic-bezier(0.42, 0, 0.2, 1) var(--loop-delay) infinite;
    }

    .handwriting-line-origin {
      --line-top: 14%;
      --line-right: 39%;
      --line-right-start: 66%;
      --line-bottom: 77%;
      --line-left: 34%;
      --loop-delay: 5.2s;
    }

    .handwriting-line-care {
      --line-top: 41%;
      --line-right: 38%;
      --line-right-start: 59%;
      --line-bottom: 45%;
      --line-left: 40%;
      --loop-delay: 5.42s;
    }

    .handwriting-line-reason {
      --line-top: 61%;
      --line-right: 16%;
      --line-right-start: 31%;
      --line-bottom: 22%;
      --line-left: 69%;
      --loop-delay: 5.64s;
    }

    .handwriting-line-society {
      --line-top: 88%;
      --line-right: 2%;
      --line-right-start: 38%;
      --line-bottom: 2%;
      --line-left: 62%;
      --loop-delay: 5.86s;
    }

    .handwriting-origin {
      --clip-top: 5%;
      --clip-right: 52%;
      --clip-bottom: 68%;
      --clip-left: 3%;
      --write-delay: 1.28s;
      --ink-contrast: 2;
      --ink-brightness: 0.38;
      --ink-sepia: 0.08;
      --ink-opacity: 0.78;
    }

    .handwriting-future {
      --clip-top: 6%;
      --clip-right: 1%;
      --clip-bottom: 58%;
      --clip-left: 56%;
      --write-delay: 1.88s;
    }

    .handwriting-care {
      --clip-top: 30%;
      --clip-right: 48%;
      --clip-bottom: 30%;
      --clip-left: 2%;
      --write-delay: 2.46s;
      --ink-contrast: 2.65;
      --ink-brightness: 0.24;
      --ink-sepia: 0.28;
      --ink-opacity: 0.78;
    }

    .handwriting-reason {
      --clip-top: 34%;
      --clip-right: 1%;
      --clip-bottom: 29%;
      --clip-left: 55%;
      --write-delay: 3.04s;
    }

    .handwriting-society {
      --clip-top: 66%;
      --clip-right: 0%;
      --clip-bottom: 1%;
      --clip-left: 53%;
      --write-delay: 3.66s;
    }

    @keyframes hero-copy-in {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes editorial-settle {
      to {
        opacity: 1;
        transform: translate(0, 0) rotate(0deg);
      }
    }

    @keyframes handwriting-window {
      0% {
        opacity: 0;
        clip-path: inset(var(--clip-top) calc(100% - var(--clip-left)) var(--clip-bottom) var(--clip-left));
        filter: contrast(var(--ink-contrast)) brightness(var(--ink-brightness)) sepia(var(--ink-sepia)) blur(0.35px);
      }
      18% {
        opacity: 0.58;
      }
      100% {
        opacity: 0.82;
        clip-path: inset(var(--clip-top) var(--clip-right) var(--clip-bottom) var(--clip-left));
        filter: contrast(var(--ink-contrast)) brightness(var(--ink-brightness)) sepia(var(--ink-sepia)) blur(0);
      }
    }

    @keyframes ink-raster-settle {
      to {
        opacity: var(--ink-opacity);
      }
    }

    @keyframes fv-light-drift {
      0% {
        opacity: 0.1;
        transform: translate3d(-42px, 16px, 0) scale(1);
      }
      50% {
        opacity: 0.5;
      }
      100% {
        opacity: 0.16;
        transform: translate3d(46px, -20px, 0) scale(1.018);
      }
    }

    @keyframes fv-shadow-breathe {
      0% {
        opacity: 0.08;
        transform: translate3d(28px, -16px, 0) rotate(-0.42deg);
      }
      48% {
        opacity: 0.34;
      }
      100% {
        opacity: 0.1;
        transform: translate3d(-30px, 20px, 0) rotate(0.48deg);
      }
    }

    @keyframes fv-glass-glide {
      0% {
        opacity: 0.08;
        transform: translate3d(-44px, 5px, 0);
      }
      54% {
        opacity: 0.38;
      }
      100% {
        opacity: 0.1;
        transform: translate3d(48px, -12px, 0);
      }
    }

    @keyframes fv-photo-drift {
      0% {
        transform: scale(1.025) translate3d(-12px, 5px, 0);
        filter: saturate(1) contrast(1.14) brightness(0.92);
      }
      50% {
        transform: scale(1.032) translate3d(4px, -3px, 0);
        filter: saturate(1.02) contrast(1.2) brightness(1.03);
      }
      100% {
        transform: scale(1.025) translate3d(14px, -7px, 0);
        filter: saturate(1) contrast(1.15) brightness(0.94);
      }
    }

    @keyframes handwriting-line-redraw {
      0% {
        opacity: 0;
        clip-path: inset(var(--line-top) var(--line-right-start) var(--line-bottom) var(--line-left));
      }
      10% {
        opacity: 0.24;
      }
      38% {
        opacity: var(--line-opacity);
        clip-path: inset(var(--line-top) var(--line-right) var(--line-bottom) var(--line-left));
      }
      72% {
        opacity: var(--line-opacity);
        clip-path: inset(var(--line-top) var(--line-right) var(--line-bottom) var(--line-left));
      }
      88% {
        opacity: 0;
        clip-path: inset(var(--line-top) var(--line-right) var(--line-bottom) var(--line-left));
      }
      100% {
        opacity: 0;
        clip-path: inset(var(--line-top) var(--line-right) var(--line-bottom) var(--line-left));
      }
    }

    @media (max-width: 1180px) {
      .top-page .hero-inner {
        display: block;
      }

      .top-page .hero-copy {
        max-width: 720px;
      }

      .hero-atelier {
        position: absolute;
        inset: 0;
        width: auto;
        height: auto;
        margin: 0;
      }
    }

    @media (max-width: 720px) {
      .top-page .hero {
        min-height: auto;
        padding-top: max(92px, calc(env(safe-area-inset-top, 0px) + 92px));
        padding-bottom: 56px;
        place-items: start center;
      }

      .top-page .hero-inner {
        min-height: 0;
        width: 100%;
        gap: 28px;
      }

      .top-page .hero-copy {
        width: min(100%, calc(100vw - (var(--side) * 2)));
        max-width: calc(100vw - (var(--side) * 2));
        margin-top: 0;
        transform: translateY(-24px);
      }

      .top-page .hero-copy .eyebrow {
        display: none;
      }

      .top-page h1 {
        width: 100%;
        max-width: 100%;
        font-size: clamp(32px, 9.6vw, 44px);
        line-height: 1.22;
        overflow-wrap: keep-all;
      }

      .top-page .hero .lead {
        width: 100%;
        max-width: 100%;
        margin-top: 16px;
        font-size: clamp(12.5px, 3.45vw, 14px);
        line-height: 1.82;
        overflow-wrap: anywhere;
      }

      .top-page .hero .lead br {
        display: none;
      }

      .top-page .hero .actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
        max-width: 286px;
        margin-top: 18px;
      }

      .top-page .hero .button {
        min-width: 0;
        min-height: 48px;
        width: 100%;
        padding: 0 10px;
        font-size: 12px;
        white-space: nowrap;
      }

      .hero-atelier {
        position: absolute;
        inset: 0;
        width: auto;
        height: auto;
        opacity: 0.92;
        animation: editorial-settle-mobile 1.08s cubic-bezier(0.2, 0.82, 0.2, 1) 0.38s forwards;
        -webkit-mask-image:
          linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, #000 100%);
        mask-image:
          linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, #000 100%);
      }

      .editorial-visual img {
        object-position: 58% 50%;
      }

      .handwriting-board,
      .handwriting-pass {
        transform: translate(0, 0) rotate(0deg);
      }

      .fv-ambient {
        translate: 0 0;
      }

      .handwriting-board {
        top: 142px;
        right: -84px;
        width: 480px;
        max-width: 96vw;
        opacity: 0.98;
      }

      .handwriting-origin {
        --clip-top: 5%;
        --clip-right: 58%;
        --clip-bottom: 68%;
        --clip-left: 3%;
      }

      .handwriting-future {
        --clip-top: 6%;
        --clip-right: 0%;
        --clip-bottom: 58%;
        --clip-left: 54%;
      }

      .handwriting-society {
        --clip-top: 64%;
        --clip-right: 0%;
        --clip-bottom: 0%;
        --clip-left: 46%;
        --write-delay: 2.56s;
      }

      .top-page .hero-scroll-cue {
        display: none;
      }
    }

    @keyframes editorial-settle-mobile {
      to {
        opacity: 0.92;
        transform: translate(0, 0) rotate(0deg);
      }
    }

    @media (max-width: 380px) {
      .top-page h1 {
        font-size: clamp(30px, 9.1vw, 38px);
      }

      .top-page .hero .lead {
        font-size: 12px;
        line-height: 1.76;
      }

      .hero-atelier {
        width: auto;
      }

      .handwriting-board {
        top: 134px;
        right: -96px;
        width: 430px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .top-page h1 span,
      .top-page .hero .lead,
      .top-page .hero .actions,
      .hero-atelier,
      .fv-ambient,
      .editorial-visual img,
      .handwriting-pass,
      .handwriting-line-loop {
        animation: none !important;
        transform: none;
        filter: none;
        transition: none;
      }

      .hero-atelier {
        opacity: 1;
      }

      @media (max-width: 720px) {
        .hero-atelier {
          opacity: 0.92;
        }
      }

      .top-page h1 span,
      .top-page .hero .lead,
      .top-page .hero .actions,
      .fv-ambient,
      .handwriting-pass {
        opacity: 1;
      }

      .handwriting-line-loop {
        opacity: 0.42;
        clip-path: inset(var(--line-top) var(--line-right) var(--line-bottom) var(--line-left));
      }

      .handwriting-pass {
        clip-path: inset(var(--clip-top) var(--clip-right) var(--clip-bottom) var(--clip-left));
      }

      .fv-ambient-light {
        opacity: 0.36;
      }

      .fv-ambient-shadow {
        opacity: 0.18;
      }

      .fv-ambient-glass {
        opacity: 0.14;
      }
    }

    html.fv-motion-off .fv-ambient,
    html.fv-motion-off .editorial-visual img,
    html.fv-motion-off .handwriting-line-loop {
      animation: none !important;
      transform: none !important;
      translate: 0 0 !important;
    }

    html.fv-motion-off .editorial-visual img {
      transform: scale(1.015) !important;
      filter: saturate(1) contrast(1.14) brightness(0.94) !important;
    }

    html.fv-motion-off .handwriting-line-loop {
      opacity: 0.42;
      clip-path: inset(var(--line-top) var(--line-right) var(--line-bottom) var(--line-left));
    }

    html.fv-motion-off .fv-ambient-light {
      opacity: 0.36;
    }

    html.fv-motion-off .fv-ambient-shadow {
      opacity: 0.18;
    }

    html.fv-motion-off .fv-ambient-glass {
      opacity: 0.14;
    }

    body.home .top-page .hero-scroll-cue {
      position: absolute;
      left: 50%;
      right: auto;
      top: auto !important;
      bottom: clamp(-30px, -2svh, -16px) !important;
      z-index: 10;
      display: inline-grid !important;
      grid-template-columns: 1fr;
      justify-items: center;
      gap: 12px;
      width: 76px;
      min-width: 64px;
      min-height: 136px;
      padding: 8px 12px 0;
      border: 0;
      border-radius: 999px;
      background: transparent;
      color: rgba(37, 34, 31, 0.76);
      font: inherit;
      letter-spacing: normal;
      pointer-events: auto;
      cursor: pointer;
      text-shadow: none;
      transform: translateX(-50%);
      transition:
        color 0.28s ease,
        opacity 0.28s ease;
      -webkit-appearance: none;
      appearance: none;
    }

    body.home .top-page .hero-scroll-cue::before {
      display: none;
    }

    body.home .top-page .hero-scroll-cue span {
      writing-mode: horizontal-tb;
      color: currentColor;
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 600;
      line-height: 1;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      opacity: 0.96;
      transform: translateY(8px);
      transition: opacity 0.28s ease;
    }

    body.home .top-page .hero-scroll-cue i {
      position: relative;
      display: block;
      width: 1px;
      height: 78px;
      overflow: visible;
      background: linear-gradient(
        180deg,
        rgba(37, 34, 31, 0.14),
        rgba(37, 34, 31, 0.58) 18%,
        rgba(37, 34, 31, 0.58) 82%,
        rgba(37, 34, 31, 0.14)
      );
    }

    body.home .top-page .hero-scroll-cue i::before {
      content: "";
      position: absolute;
      top: -1px;
      left: 50%;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(107, 93, 72, 0.74);
      box-shadow:
        0 0 0 1px rgba(255, 254, 251, 0.46),
        0 4px 12px rgba(37, 34, 31, 0.12);
      transform: translate(-50%, 0);
      animation: fv-scroll-dot-flow 3.2s linear infinite;
    }

    body.home .top-page .hero-scroll-cue i::after {
      display: none;
    }

    body.home .top-page .hero-scroll-cue:hover,
    body.home .top-page .hero-scroll-cue:focus-visible {
      color: rgba(37, 34, 31, 0.84);
    }

    body.home .top-page .hero-scroll-cue:hover span,
    body.home .top-page .hero-scroll-cue:focus-visible span {
      opacity: 0.96;
    }

    body.home .top-page .hero-scroll-cue:hover i,
    body.home .top-page .hero-scroll-cue:focus-visible i {
      background: linear-gradient(
        180deg,
        rgba(37, 34, 31, 0.16),
        rgba(37, 34, 31, 0.6) 18%,
        rgba(37, 34, 31, 0.6) 82%,
        rgba(37, 34, 31, 0.16)
      );
    }

    body.home .top-page .hero-scroll-cue:focus-visible {
      outline: 1px solid rgba(37, 34, 31, 0.42);
      outline-offset: 4px;
    }

    @keyframes fv-scroll-dot-flow {
      0% {
        opacity: 0;
        transform: translate(-50%, 0);
      }

      12% {
        opacity: 0.72;
      }

      76% {
        opacity: 0.72;
      }

      88%,
      100% {
        opacity: 0;
        transform: translate(-50%, 71px);
      }
    }

    @media (max-width: 720px) {
      body.home .top-page .hero-scroll-cue {
        left: 50%;
        bottom: max(-18px, calc(env(safe-area-inset-bottom) - 18px)) !important;
        width: 70px;
        min-width: 58px;
        min-height: 104px;
        padding: 7px 12px 0;
        transform: translateX(-50%);
      }

      body.home .top-page .hero-scroll-cue span {
        font-size: 9px;
        letter-spacing: 0.28em;
        transform: translateY(6px);
      }

      body.home .top-page .hero-scroll-cue i {
        height: 58px;
      }

      body.home .top-page .hero-scroll-cue i::before {
        animation-name: fv-scroll-dot-flow-mobile;
      }
    }

    @keyframes fv-scroll-dot-flow-mobile {
      0% {
        opacity: 0;
        transform: translate(-50%, 0);
      }

      12% {
        opacity: 0.72;
      }

      76% {
        opacity: 0.72;
      }

      88%,
      100% {
        opacity: 0;
        transform: translate(-50%, 52px);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      body.home .top-page .hero-scroll-cue,
      body.home .top-page .hero-scroll-cue span,
      body.home .top-page .hero-scroll-cue i {
        transition: none;
      }

      body.home .top-page .hero-scroll-cue i::before {
        top: 50%;
        opacity: 0.62;
        animation: none !important;
        transform: translate(-50%, -50%);
      }
    }

/* 2026-09-04 TOP refresh: 01 PROBLEM / 02 WHY only */

body.home .problem-section {
  min-height: 720px;
  padding: clamp(92px, 8.8vw, 142px) 0 clamp(58px, 6.6vw, 96px);
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.92) 0%, rgba(251, 250, 247, 0.76) 43%, rgba(251, 250, 247, 0.34) 63%, rgba(251, 250, 247, 0.06) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(251, 250, 247, 0.12) 70%, rgba(251, 250, 247, 0.58)),
    #fbfaf7;
  overflow: hidden;
  scroll-margin-top: 82px;
}

body.home .problem-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.84) 0%, rgba(251, 250, 247, 0.61) 42%, rgba(251, 250, 247, 0.14) 63%, rgba(37, 34, 31, 0.12) 100%),
    linear-gradient(180deg, rgba(251, 250, 247, 0) 0%, rgba(251, 250, 247, 0) 48%, rgba(251, 250, 247, 0.42) 68%, rgba(251, 250, 247, 0.9) 84%, rgba(251, 250, 247, 1) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0) 58%, rgba(251, 250, 247, 0.19)),
    url("../images/top-problem-bg-v2.webp") center 100% / cover no-repeat;
  filter: saturate(0.95) contrast(1.08) brightness(0.96);
  opacity: 1;
}

body.home .problem-heading {
  text-shadow: 0 1px 18px rgba(251, 250, 247, 0.86);
}

body.home .problem-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, 0.55fr) minmax(320px, 0.45fr);
  column-gap: clamp(36px, 7vw, 118px);
  row-gap: clamp(26px, 3.4vw, 48px);
  min-height: 560px;
  align-items: center;
}

body.home .problem-section .section-number,
body.home .why-section .section-number {
  margin-bottom: 62px;
  color: rgba(39, 36, 33, 0.74);
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
}

body.home .problem-heading h2 {
  font-size: clamp(42px, 4.25vw, 62px);
  line-height: 1.48;
  letter-spacing: 0.04em;
}

body.home .why-heading h2 {
  font-size: clamp(32px, 2.75vw, 40px);
  line-height: 1.62;
  letter-spacing: 0.04em;
}

body.home .problem-heading h2 span,
body.home .why-heading h2 span {
  white-space: nowrap;
}

body.home .problem-heading .support-copy {
  max-width: 620px;
  margin-top: 30px;
  color: var(--body-copy);
  font-size: var(--body-size);
  line-height: var(--body-line);
  letter-spacing: 0.05em;
}

body.home .problem-photo-copy {
  position: absolute;
  z-index: 2;
  top: calc(40.5% - 93px);
  left: auto;
  right: 137px;
  margin: 0;
  color: rgba(255, 253, 248, 0.88);
  font-family: var(--serif);
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.85;
  letter-spacing: 0.12em;
  text-shadow:
    0 2px 18px rgba(31, 29, 25, 0.28),
    0 10px 30px rgba(31, 29, 25, 0.2);
}

body.home .problem-photo-copy span {
  display: block;
}

body.home .problem-panes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(18px, 2.4vw, 34px);
}

body.home .problem-pane {
  padding: 0 28px;
  border-left: 1px solid rgba(39, 36, 33, 0.34);
  background: transparent;
  box-shadow: none;
}

body.home .problem-pane h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(24px, 1.82vw, 32px);
  font-weight: 600;
  line-height: 1.35;
}

body.home .problem-pane p {
  margin: 0;
  color: var(--body-copy);
  font-size: var(--body-size);
  line-height: 1.68;
  letter-spacing: 0.04em;
}

body.home .why-section {
  min-height: clamp(660px, 54vw, 790px);
  padding: clamp(74px, 7.2vw, 104px) 0 clamp(60px, 6.2vw, 88px);
  color: rgba(255, 253, 248, 0.9);
  background:
    radial-gradient(ellipse at 76% 40%, rgba(255, 253, 248, 0.12), transparent 35%),
    linear-gradient(112deg, #0b2a25 0%, #213936 43%, #727872 72%, #d5d4ce 100%);
  overflow: hidden;
  scroll-margin-top: 82px;
}

body.home .why-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 29, 25, 0.92), rgba(13, 38, 35, 0.76) 38%, rgba(255, 253, 248, 0.12) 74%, rgba(255, 253, 248, 0.22)),
    linear-gradient(180deg, rgba(4, 22, 19, 0.1), rgba(4, 22, 19, 0.2) 56%, rgba(4, 22, 19, 0.36)),
    url("../images/top-why-bg-v3.webp") center center / cover no-repeat;
  filter: saturate(0.86) contrast(1.08) brightness(0.95);
  opacity: 1;
}

body.home .why-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(42px, 5.8vw, 92px);
  align-items: center;
}

body.home .why-section .section-number {
  color: rgba(255, 253, 248, 0.78);
}

@media (min-width: 721px) {
  body.home .why-heading {
    position: relative;
    top: -15px;
  }
}

body.home .why-heading h2 {
  color: rgba(255, 253, 248, 0.94);
  font-size: clamp(32px, 2.8vw, 42px);
  line-height: 1.62;
  letter-spacing: 0.035em;
  text-shadow: 0 16px 46px rgba(2, 22, 19, 0.24);
}

body.home .why-heading .support-copy {
  max-width: 640px;
  text-wrap: balance;
  margin-top: clamp(34px, 3.6vw, 48px);
  color: var(--dark-copy-strong);
  font-size: var(--body-size);
  line-height: var(--body-line);
  letter-spacing: 0.06em;
}

body.home .why-scene {
  position: relative;
  width: min(700px, 100%);
  min-height: clamp(510px, 39vw, 600px);
  margin-left: auto;
  transform: translate(16px, -46px);
  perspective: 1080px;
  perspective-origin: 62% 48%;
  overflow: visible;
  isolation: isolate;
}

body.home .why-scene::before {
  content: "";
  position: absolute;
  inset: 4% -2% -4% 8%;
  z-index: 0;
  background:
    radial-gradient(ellipse at 58% 42%, rgba(255, 253, 248, 0.22), transparent 42%),
    radial-gradient(ellipse at 66% 66%, rgba(182, 190, 179, 0.16), transparent 40%),
    linear-gradient(132deg, rgba(255, 253, 248, 0.08), transparent 64%);
  filter: blur(12px);
  opacity: 0.82;
}

body.home .why-stage {
  position: absolute;
  inset: 8% 4% 6%;
  z-index: 1;
  transform-style: preserve-3d;
  transform: rotateX(6deg) rotateY(-12deg);
}

body.home .why-stage::before {
  content: "";
  position: absolute;
  left: 53%;
  top: 51%;
  z-index: 2;
  width: clamp(250px, 23vw, 360px);
  height: clamp(155px, 14vw, 220px);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(255, 253, 244, 0.42) 0%, rgba(255, 253, 244, 0.22) 35%, rgba(255, 253, 244, 0) 72%);
  filter: blur(14px);
  transform: translate3d(-50%, -50%, -120px) rotate(-12deg);
  pointer-events: none;
}

body.home .why-ring {
  position: absolute;
  left: 50%;
  top: 51%;
  z-index: 1;
  width: clamp(470px, 39vw, 610px);
  height: clamp(285px, 24vw, 370px);
  border: 1px solid rgba(255, 253, 248, 0.66);
  border-left-color: rgba(255, 253, 248, 0.28);
  border-bottom-color: rgba(255, 253, 248, 0.38);
  border-radius: 50%;
  transform: translate3d(-50%, -50%, -145px) rotate(-16deg);
  opacity: 0;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 253, 248, 0.08),
    0 0 28px rgba(255, 253, 248, 0.04);
}

body.home .why-ring::before {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid transparent;
  border-top-color: rgba(255, 253, 248, 0.46);
  border-right-color: rgba(255, 253, 248, 0.34);
  border-radius: 50%;
  transform: rotate(34deg);
  opacity: 0.78;
}

body.home .why-axis {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  background: rgba(255, 255, 255, 0.18);
  pointer-events: none;
  opacity: 0;
}

body.home .why-axis--vertical {
  width: 1px;
  height: 42%;
  transform: translate3d(-50%, -50%, -150px);
}

body.home .why-axis--horizontal {
  width: 50%;
  height: 1px;
  transform: translate3d(-50%, -50%, -150px);
}

body.home .why-connectors {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

body.home .why-connectors--mobile {
  display: none;
}

body.home .why-connector {
  --why-connector-delay: 0s;
  fill: none;
  stroke: rgba(255, 253, 242, 0.84);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-dasharray: 1 1;
  stroke-dashoffset: 1;
  vector-effect: non-scaling-stroke;
  opacity: 0;
  filter:
    drop-shadow(0 0 5px rgba(255, 253, 248, 0.3))
    drop-shadow(0 1px 2px rgba(1, 28, 23, 0.26));
}

body.home .why-connector--recruit {
  --why-connector-delay: 0.18s;
}

body.home .why-connector--pr {
  --why-connector-delay: 0.36s;
}

body.home .why-connector--internal {
  --why-connector-delay: 0.54s;
}

body.home .why-scene.is-visible .why-connector {
  animation: why-connector-loop 4.8s linear infinite;
  animation-delay: calc(0.5s + var(--why-connector-delay));
}

body.home .why-sheet {
  --why-gloss-angle: 108deg;
  --why-gloss-start: 18%;
  --why-gloss-soft-start: 34%;
  --why-gloss-peak: 48%;
  --why-gloss-soft-end: 58%;
  --why-gloss-end: 74%;
  --why-gloss-soft-alpha: 0.16;
  --why-gloss-peak-alpha: 0.7;
  --why-gloss-tail-alpha: 0.18;
  --why-gloss-opacity: 0.88;
  --why-shadow-main-alpha: 0.16;
  --why-shadow-near-alpha: 0.11;
  --why-edge-left: auto;
  --why-edge-right: -14px;
  --why-edge-origin: left;
  --why-edge-rotate: 90deg;
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--why-sheet-w, clamp(218px, 18.8vw, 282px));
  height: var(--why-sheet-h, clamp(124px, 11.4vw, 164px));
  transform-style: preserve-3d;
  transform-origin: center;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-top-color: rgba(255, 255, 255, 0.98);
  border-left-color: rgba(255, 255, 255, 0.9);
  border-right-color: rgba(202, 209, 203, 0.62);
  border-bottom-color: rgba(152, 162, 155, 0.48);
  border-radius: 6px;
  background:
    linear-gradient(128deg, rgba(255, 255, 255, 0.9) 0%, rgba(249, 250, 247, 0.72) 28%, rgba(231, 235, 230, 0.5) 64%, rgba(199, 207, 200, 0.38) 100%),
    linear-gradient(18deg, rgba(255, 255, 255, 0.3), rgba(33, 45, 42, 0.08));
  -webkit-backdrop-filter: blur(9px) saturate(0.96);
  backdrop-filter: blur(9px) saturate(0.96);
  color: rgba(20, 25, 23, 0.84);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, var(--why-shadow-main-alpha)),
    0 10px 24px rgba(20, 29, 25, var(--why-shadow-near-alpha)),
    0 2px 5px rgba(20, 29, 25, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 1px 0 0 rgba(255, 255, 255, 0.48),
    inset 0 -1px 0 rgba(92, 105, 97, 0.2);
  opacity: 0;
  will-change: transform, opacity;
  container-type: inline-size;
}

body.home .why-sheet::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      var(--why-gloss-angle),
      transparent var(--why-gloss-start),
      rgba(255, 255, 255, var(--why-gloss-soft-alpha)) var(--why-gloss-soft-start),
      rgba(255, 255, 255, var(--why-gloss-peak-alpha)) var(--why-gloss-peak),
      rgba(255, 255, 255, var(--why-gloss-tail-alpha)) var(--why-gloss-soft-end),
      transparent var(--why-gloss-end)
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 42%, rgba(81, 94, 86, 0.05));
  opacity: var(--why-gloss-opacity);
  pointer-events: none;
}

body.home .why-sheet::after {
  content: "";
  position: absolute;
  top: 5px;
  right: var(--why-edge-right);
  left: var(--why-edge-left);
  width: 14px;
  height: calc(100% - 5px);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(145, 155, 148, 0.32));
  box-shadow: 5px 10px 18px rgba(10, 18, 15, 0.1);
  transform-origin: var(--why-edge-origin);
  transform: rotateY(var(--why-edge-rotate));
  pointer-events: none;
}

body.home .why-sheet-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 26px 30px;
  z-index: 1;
  transform: translateZ(18px);
  text-align: center;
}

body.home .why-sheet-title {
  display: block;
  font-family: var(--serif);
  font-size: clamp(17.5px, 1.42vw, 22px);
  font-size: clamp(16px, 8.3cqw, 27px);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0.035em;
  color: rgba(0, 2, 2, 1);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3),
    0 0 1px rgba(0, 2, 2, 0.2);
}

body.home .why-sheet-sub {
  display: block;
  margin-top: 7px;
  color: rgba(0, 5, 4, 0.96);
  font-size: 12.5px;
  font-size: clamp(10px, 5.4cqw, 16px);
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.24);
}

body.home .why-sheet--ceo {
  --why-gloss-angle: 104deg;
  --why-gloss-start: 10%;
  --why-gloss-soft-start: 28%;
  --why-gloss-peak: 48%;
  --why-gloss-soft-end: 68%;
  --why-gloss-end: 88%;
  --why-gloss-soft-alpha: 0.12;
  --why-gloss-peak-alpha: 0.5;
  --why-gloss-tail-alpha: 0.14;
  --why-gloss-opacity: 0.78;
  --why-shadow-main-alpha: 0.14;
  --why-shadow-near-alpha: 0.09;
  --why-sheet-w: clamp(264px, 21.8vw, 330px);
  --why-sheet-h: clamp(140px, 13vw, 190px);
  --why-base-x: -128%;
  --why-base-y: -154%;
  --why-base-z: -82px;
  --why-rotate-z: -6.5deg;
  --why-rotate-y: 21deg;
  --why-rotate-x: -6deg;
  --why-from-x: -150%;
  --why-from-y: -172%;
  --why-from-z: -120px;
  --why-from-rotate-z: -5.2deg;
  --why-px: calc(var(--why-parallax-x, 0px) * 0.34);
  --why-py: calc(var(--why-parallax-y, 0px) * 0.34);
  filter: blur(0.12px);
  opacity: 0;
}

body.home .why-sheet--ceo .why-sheet-title {
  color: #000;
  font-weight: 900;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.38),
    0 0 1px rgba(0, 0, 0, 0.34);
}

body.home .why-sheet--ceo .why-sheet-sub {
  color: rgba(0, 0, 0, 0.98);
  font-weight: 900;
}

body.home .why-sheet--recruit {
  --why-edge-left: -14px;
  --why-edge-right: auto;
  --why-edge-origin: right;
  --why-edge-rotate: -90deg;
  --why-gloss-angle: 92deg;
  --why-gloss-start: 30%;
  --why-gloss-soft-start: 42%;
  --why-gloss-peak: 49%;
  --why-gloss-soft-end: 56%;
  --why-gloss-end: 68%;
  --why-gloss-soft-alpha: 0.08;
  --why-gloss-peak-alpha: 0.38;
  --why-gloss-tail-alpha: 0.08;
  --why-gloss-opacity: 0.64;
  --why-shadow-main-alpha: 0.12;
  --why-shadow-near-alpha: 0.08;
  --why-sheet-w: clamp(218px, 18.4vw, 272px);
  --why-sheet-h: clamp(120px, 10.8vw, 156px);
  --why-base-x: -145%;
  --why-base-y: 14%;
  --why-base-z: -58px;
  --why-rotate-z: 4.2deg;
  --why-rotate-y: -20deg;
  --why-rotate-x: 5deg;
  --why-from-x: -167%;
  --why-from-y: 32%;
  --why-from-z: -96px;
  --why-from-rotate-z: 4.1deg;
  --why-px: calc(var(--why-parallax-x, 0px) * 0.62);
  --why-py: calc(var(--why-parallax-y, 0px) * 0.62);
  filter: blur(0.06px);
  opacity: 0;
}

body.home .why-sheet--pr {
  --why-edge-left: -14px;
  --why-edge-right: auto;
  --why-edge-origin: right;
  --why-edge-rotate: -90deg;
  --why-gloss-angle: 126deg;
  --why-gloss-start: 6%;
  --why-gloss-soft-start: 26%;
  --why-gloss-peak: 42%;
  --why-gloss-soft-end: 52%;
  --why-gloss-end: 68%;
  --why-gloss-soft-alpha: 0.18;
  --why-gloss-peak-alpha: 0.78;
  --why-gloss-tail-alpha: 0.2;
  --why-gloss-opacity: 0.92;
  --why-shadow-main-alpha: 0.15;
  --why-shadow-near-alpha: 0.1;
  --why-sheet-w: clamp(188px, 15.2vw, 226px);
  --why-sheet-h: clamp(98px, 8.8vw, 126px);
  --why-base-x: 70%;
  --why-base-y: -132%;
  --why-base-z: 98px;
  --why-rotate-z: -4.8deg;
  --why-rotate-y: -24deg;
  --why-rotate-x: -5deg;
  --why-from-x: 46%;
  --why-from-y: -114%;
  --why-from-z: 54px;
  --why-from-rotate-z: -4deg;
  --why-px: calc(var(--why-parallax-x, 0px) * 0.84);
  --why-py: calc(var(--why-parallax-y, 0px) * 0.84);
  filter: none;
  opacity: 0;
}

body.home .why-sheet--internal {
  --why-gloss-angle: 116deg;
  --why-gloss-start: 10%;
  --why-gloss-soft-start: 28%;
  --why-gloss-peak: 50%;
  --why-gloss-soft-end: 68%;
  --why-gloss-end: 86%;
  --why-gloss-soft-alpha: 0.14;
  --why-gloss-peak-alpha: 0.56;
  --why-gloss-tail-alpha: 0.13;
  --why-gloss-opacity: 0.8;
  --why-shadow-main-alpha: 0.2;
  --why-shadow-near-alpha: 0.14;
  --why-sheet-w: clamp(220px, 18vw, 270px);
  --why-sheet-h: clamp(116px, 10.4vw, 148px);
  --why-base-x: 8%;
  --why-base-y: 96%;
  --why-base-z: 165px;
  --why-rotate-z: 5.5deg;
  --why-rotate-y: 22deg;
  --why-rotate-x: 6deg;
  --why-from-x: 20%;
  --why-from-y: 118%;
  --why-from-z: 112px;
  --why-from-rotate-z: 4.3deg;
  --why-px: var(--why-parallax-x, 0px);
  --why-py: var(--why-parallax-y, 0px);
  filter: none;
  opacity: 0;
}

body.home .why-scene-center {
  position: absolute;
  left: 64%;
  top: 55%;
  z-index: 5;
  width: 340px;
  margin: 0;
  transform:
    translate3d(-50%, -50%, 56px)
    rotateY(-22deg)
    rotateX(1.5deg);
  transform-origin: left center;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(21px, 1.55vw, 24px);
  font-weight: 700;
  line-height: 1.68;
  letter-spacing: 0.04em;
  color: rgba(0, 2, 2, 0.98);
  text-shadow:
    -22px 8px 22px rgba(0, 2, 2, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.54),
    0 0 18px rgba(255, 255, 255, 0.34),
    0 10px 28px rgba(255, 255, 255, 0.28);
  pointer-events: none;
  opacity: 0;
  transform-style: preserve-3d;
  isolation: isolate;
}

body.home .why-scene-center::before,
body.home .why-scene-center::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: 78%;
  height: 72%;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(0, 2, 2, 0.22), rgba(0, 2, 2, 0.08) 42%, rgba(0, 2, 2, 0));
  transform-origin: left center;
  pointer-events: none;
}

body.home .why-scene-center::before {
  transform:
    translate3d(-72%, -46%, -34px)
    rotateY(56deg)
    skewY(-5deg)
    scaleX(0.72);
  opacity: 0.36;
  filter: blur(12px);
}

body.home .why-scene-center::after {
  transform:
    translate3d(-84%, -38%, -58px)
    rotateY(68deg)
    skewY(-7deg)
    scaleX(0.5);
  opacity: 0.18;
  filter: blur(18px);
}

body.home .why-scene.is-visible .why-axis,
body.home .why-scene.is-visible .why-ring {
  animation: why-axis-in 0.9s ease forwards;
}

body.home .why-scene.is-visible .why-sheet {
  animation: why-sheet-in 1s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

body.home .why-scene.is-visible .why-sheet--ceo {
  animation-delay: 0.04s;
}

body.home .why-scene.is-visible .why-sheet--recruit {
  animation-delay: 0.14s;
}

body.home .why-scene.is-visible .why-sheet--pr {
  animation-delay: 0.24s;
}

body.home .why-scene.is-visible .why-sheet--internal {
  animation-delay: 0.34s;
}

body.home .why-scene.is-visible .why-scene-center {
  animation: why-scene-center-in 0.62s ease forwards;
  animation-delay: 0.96s;
}

@keyframes why-axis-in {
  to {
    opacity: 1;
  }
}

@keyframes why-connector-loop {
  0%,
  4% {
    opacity: 0;
    stroke-dashoffset: 1;
  }

  7% {
    opacity: 0.3;
  }

  20%,
  50% {
    opacity: 0.82;
    stroke-dashoffset: 0;
  }

  62%,
  100% {
    opacity: 0;
    stroke-dashoffset: -1;
  }
}

@keyframes why-sheet-in {
  0% {
    opacity: 0;
    transform:
      translate3d(calc(var(--why-from-x) + var(--why-px)), calc(var(--why-from-y) + var(--why-py)), var(--why-from-z))
      rotateZ(var(--why-from-rotate-z))
      rotateY(var(--why-rotate-y))
      rotateX(var(--why-rotate-x, 0deg));
  }

  100% {
    opacity: var(--why-final-opacity, 0.9);
    transform:
      translate3d(calc(var(--why-base-x) + var(--why-px)), calc(var(--why-base-y) + var(--why-py)), var(--why-base-z))
      rotateZ(var(--why-rotate-z))
      rotateY(var(--why-rotate-y))
      rotateX(var(--why-rotate-x, 0deg));
  }
}

@keyframes why-scene-center-in {
  to {
    opacity: 1;
  }
}

body.home .why-sheet--ceo {
  --why-final-opacity: 0.86;
}

body.home .why-sheet--recruit {
  --why-final-opacity: 0.9;
}

body.home .why-sheet--pr {
  --why-final-opacity: 0.94;
}

body.home .why-sheet--internal {
  --why-final-opacity: 0.96;
}

@media (max-width: 1180px) {
  body.home .problem-layout,
  body.home .why-layout {
    grid-template-columns: 1fr;
  }

  body.home .problem-photo-copy {
    position: absolute;
    top: 52%;
    left: auto;
    right: clamp(36px, 8vw, 78px);
  }

  body.home .why-scene {
    width: min(680px, 100%);
    min-height: 500px;
    margin: 0 auto 0;
    transform: none;
  }

  body.home .why-heading h2 span {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  body.home .problem-section,
  body.home .why-section {
    min-height: 0;
    padding: 82px 0 74px;
  }

  body.home .problem-visual {
    width: 100%;
    background:
      linear-gradient(180deg, rgba(251, 250, 247, 0.9), rgba(251, 250, 247, 0.68) 38%, rgba(251, 250, 247, 0.62) 64%, rgba(251, 250, 247, 0.98) 100%),
      url("../images/top-problem-bg-v2.webp") 62% 100% / cover no-repeat;
    filter: saturate(0.95) contrast(1.06) brightness(0.97);
    opacity: 1;
  }

  body.home .problem-section .section-number,
  body.home .why-section .section-number {
    margin-bottom: 34px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  body.home .problem-heading h2,
  body.home .why-heading h2 {
    font-size: clamp(31px, 8.5vw, 42px);
    line-height: 1.48;
  }

  body.home .why-heading h2 {
    font-size: clamp(26px, 7.6vw, 34px);
    line-height: 1.58;
    letter-spacing: 0.02em;
  }

  body.home .problem-heading .support-copy,
  body.home .why-heading .support-copy {
    font-size: var(--body-size);
    line-height: var(--body-line);
  }

  body.home .problem-photo-copy {
    top: 56%;
    left: auto;
    right: 20px;
    z-index: 0;
    color: rgba(255, 253, 248, 0.66);
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.1em;
    text-shadow:
      0 2px 14px rgba(31, 29, 25, 0.24),
      0 8px 24px rgba(31, 29, 25, 0.2);
  }

  body.home .problem-panes {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  body.home .problem-pane {
    padding: 0 0 0 20px;
  }

  body.home .problem-pane h3 {
    font-size: 21px;
  }

  body.home .problem-pane p {
    font-size: var(--body-size);
    line-height: 1.65;
  }

  body.home .why-bg {
    opacity: 1;
    background:
      linear-gradient(180deg, rgba(7, 31, 27, 0.94) 0%, rgba(9, 35, 31, 0.82) 46%, rgba(24, 40, 37, 0.64) 100%),
      url("../images/top-why-bg-v3.webp") 58% center / cover no-repeat;
  }

  body.home .why-section {
    padding-bottom: 82px;
  }

  body.home .why-scene {
    width: 100%;
    min-height: 340px;
    margin-top: 10px;
    padding: 0 2px;
    perspective: 980px;
  }

  body.home .why-stage {
    inset: 7% 0 4%;
    transform: rotateX(4deg) rotateY(-7deg);
  }

  body.home .why-scene::before {
    inset: 12% -10% 0 12%;
    opacity: 0.48;
  }

  body.home .why-axis--vertical {
    height: 42%;
  }

  body.home .why-axis--horizontal {
    width: 50%;
  }

  body.home .why-ring {
    left: 50%;
    top: 52%;
    width: min(92vw, 360px);
    height: min(58vw, 220px);
    border-color: rgba(255, 253, 248, 0.58);
    border-left-color: rgba(255, 253, 248, 0.24);
    border-bottom-color: rgba(255, 253, 248, 0.34);
  }

  body.home .why-scene-center {
    display: none;
  }

  body.home .why-connectors--desktop {
    display: none;
  }

  body.home .why-connectors--mobile {
    display: block;
  }

  body.home .why-sheet {
    width: var(--why-sheet-w, clamp(170px, 58vw, 244px));
    height: var(--why-sheet-h, clamp(92px, 28vw, 118px));
    border-color: rgba(255, 255, 255, 0.46);
  }

  body.home .why-sheet-inner {
    padding: 18px 20px;
  }

  body.home .why-sheet-title {
    font-size: 15px;
    font-weight: 900;
  }

  body.home .why-sheet-sub {
    font-size: 12px;
    font-weight: 800;
  }

  body.home .why-sheet--ceo {
    --why-sheet-w: clamp(184px, 58vw, 224px);
    --why-sheet-h: clamp(94px, 28vw, 118px);
    --why-base-x: -80%;
    --why-base-y: -108%;
    --why-base-z: -68px;
    --why-rotate-z: -3deg;
    --why-edge-left: -14px;
    --why-edge-right: auto;
    --why-edge-origin: right;
    --why-edge-rotate: -90deg;
    --why-rotate-y: -9deg;
    --why-rotate-x: -2deg;
    --why-from-x: -96%;
    --why-from-y: -124%;
    --why-from-z: -94px;
  }

  body.home .why-sheet--recruit {
    --why-sheet-w: clamp(176px, 56vw, 218px);
    --why-sheet-h: clamp(94px, 27vw, 114px);
    --why-base-x: -78%;
    --why-base-y: -8%;
    --why-base-z: -26px;
    --why-rotate-z: 2.2deg;
    --why-rotate-y: -8deg;
    --why-rotate-x: 2deg;
    --why-from-x: -92%;
    --why-from-y: 8%;
    --why-from-z: -54px;
  }

  body.home .why-sheet--pr {
    --why-sheet-w: clamp(170px, 54vw, 208px);
    --why-sheet-h: clamp(88px, 25vw, 106px);
    --why-base-x: -26%;
    --why-base-y: -64%;
    --why-base-z: 46px;
    --why-rotate-z: -2deg;
    --why-edge-left: auto;
    --why-edge-right: -14px;
    --why-edge-origin: left;
    --why-edge-rotate: 90deg;
    --why-rotate-y: 9deg;
    --why-rotate-x: -2deg;
    --why-from-x: -12%;
    --why-from-y: -82%;
    --why-from-z: 18px;
  }

  body.home .why-sheet--internal {
    --why-sheet-w: clamp(186px, 58vw, 226px);
    --why-sheet-h: clamp(96px, 28vw, 116px);
    --why-base-x: -30%;
    --why-base-y: 70%;
    --why-base-z: 72px;
    --why-rotate-z: 2.4deg;
    --why-rotate-y: 9deg;
    --why-rotate-x: 2.5deg;
    --why-from-x: -16%;
    --why-from-y: 90%;
    --why-from-z: 38px;
  }
}

@media (max-width: 380px) {
  body.home .problem-heading h2,
  body.home .why-heading h2 {
    font-size: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home .why-scene.is-visible .why-axis,
  body.home .why-scene.is-visible .why-ring,
  body.home .why-scene.is-visible .why-sheet,
  body.home .why-scene.is-visible .why-scene-center {
    animation: none !important;
    transition: none !important;
  }

  body.home .why-axis,
  body.home .why-ring,
  body.home .why-sheet,
  body.home .why-scene-center {
    opacity: 1 !important;
  }

  body.home .why-sheet {
    transform:
      translate3d(calc(var(--why-base-x) + var(--why-px)), calc(var(--why-base-y) + var(--why-py)), var(--why-base-z))
      rotateZ(var(--why-rotate-z))
      rotateY(var(--why-rotate-y))
      rotateX(var(--why-rotate-x, 0deg)) !important;
  }

  body.home .why-scene.is-visible .why-connector {
    animation: none !important;
    opacity: 0.3;
    stroke-dashoffset: 0;
  }
}

@media (max-width: 720px) and (prefers-reduced-motion: reduce) {
  body.home .why-scene-center {
    display: none !important;
  }
}

/* 2026-09-04: match live Lazotto FV left copy position and type scale. */
@media (min-width: 721px) {
  .top-page .hero-copy {
    transform: none;
  }

  .top-page h1 {
    font-size: clamp(44px, 4.8vw, 72px);
    line-height: 1.12;
  }

  .top-page .hero .lead {
    font-size: clamp(18px, 1.35vw, 19.44px);
    line-height: 1.9;
  }

  .top-page .hero .actions {
    margin-top: 34px;
  }

  .top-page .hero .button {
    min-height: 70px;
  }
}

@media (min-width: 721px) and (max-width: 1179px) {
  .top-page .hero {
    min-height: clamp(820px, 100svh, 1000px);
  }

  .top-page .hero-inner {
    min-height: clamp(780px, calc(100svh - 40px), 960px);
  }

  .top-page .hero-copy {
    margin-top: clamp(72px, calc(152px - 8svh), 76px);
    max-width: 720px;
  }
}

@media (max-width: 820px) {
  .top-page .hero-copy {
    transform: none !important;
  }
}

/* Smaller photographic sources on handheld screens. */
@media(max-width:720px){
.philosophy-section::before{
      background:
        linear-gradient(90deg, rgba(33, 31, 28, 0.9), rgba(33, 31, 28, 0.58) 43%, rgba(33, 31, 28, 0.16)),
        url("../images/top-philosophy-visual-v2.mobile.webp") center right / cover no-repeat;}
.contact-section::before{
      background:
        linear-gradient(90deg, rgba(23, 21, 19, 0.84), rgba(23, 21, 19, 0.5), rgba(23, 21, 19, 0.2)),
        url("../images/contact-bg.mobile.webp") center / cover no-repeat;}
.philosophy-section::before{
        background:
          linear-gradient(90deg, rgba(33, 31, 28, 0.92), rgba(33, 31, 28, 0.7)),
          url("../images/top-philosophy-visual-v2.mobile.webp") center / cover no-repeat;}
}


/* Homepage CASE: monochrome at rest, colour on interaction. */
.home #case .case-card img {
  filter: grayscale(1);
  transition: filter 400ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .home #case .case-card:hover img { filter: grayscale(0); }
}
.home #case .case-card:focus-within img { filter: grayscale(0); }
@media (prefers-reduced-motion: reduce) {
  .home #case .case-card img { transition: none; }
}

/* Homepage COLUMN: match the monochrome CASE thumbnails. */
.home #column .top-column-image img {
  filter: grayscale(1);
  transition: transform 350ms ease, filter 400ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .home #column .top-column-card:hover .top-column-image img { filter: grayscale(0); }
}
.home #column .top-column-card:focus-within .top-column-image img { filter: grayscale(0); }
@media (prefers-reduced-motion: reduce) {
  .home #column .top-column-image img { transition: none; }
}