: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: rgba(39, 36, 33, 0.76);
      --body-copy-soft: rgba(39, 36, 33, 0.72);
      --dark-copy: rgba(255, 253, 248, 0.86);
      --dark-copy-strong: rgba(255, 253, 248, 0.92);
      --body-size: 16px;
      --compact-body-size: 15px;
      --lead-size: 17px;
      --body-line: 2.05;
      --lead-line: 2.1;
      color: var(--ink);
      background: var(--bg);
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      min-width: 320px;
      min-height: 100vh;
      color: var(--ink);
      background: var(--bg);
      font-family: var(--sans);
      font-size: var(--body-size);
      -webkit-font-smoothing: antialiased;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .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,
    .footer-nav a {
      color: inherit;
      text-decoration: none;
    }

    .global-nav a {
      position: relative;
      padding: 10px 0;
    }

    .global-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 2px;
      height: 1px;
      background: var(--ink);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.24s ease;
    }

    .global-nav a:hover::after,
    .global-nav a:focus-visible::after {
      transform: scaleX(1);
    }

    .site-header.is-over-dark {
      border-bottom-color: rgba(255, 253, 248, 0.16);
      background: rgba(22, 20, 18, 0.34);
      -webkit-backdrop-filter: blur(14px);
      backdrop-filter: blur(14px);
    }

    .site-header.is-over-dark .global-nav,
    .site-header.is-over-dark .global-nav a,
    .site-header.is-over-dark .global-nav a:hover,
    .site-header.is-over-dark .global-nav a:focus-visible,
    .site-header.is-over-dark .global-nav a[aria-current="page"] {
      color: rgba(255, 253, 248, 0.94);
      text-shadow:
        0 1px 12px rgba(0, 0, 0, 0.68),
        0 0 1px rgba(0, 0, 0, 0.7);
    }

    .site-header.is-over-dark .global-nav a::after {
      background: rgba(255, 253, 248, 0.9);
    }

    .site-header.is-over-dark .global-nav a.global-nav__service-link {
      color: #fffdf8;
      border-color: rgba(255, 253, 248, 0.7);
      background: rgba(255, 253, 248, 0.12);
      box-shadow: none;
    }

    .site-header.is-over-dark .header-cta {
      color: #272421;
      border-color: rgba(255, 253, 248, 0.88);
      background: rgba(255, 253, 248, 0.92);
      box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
    }

    .page-hero {
      min-height: 780px;
      position: relative;
      display: block;
      align-items: start;
      padding: 168px var(--side) 108px;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(247, 246, 242, 0.9) 0%, rgba(247, 246, 242, 0.7) 38%, rgba(247, 246, 242, 0.08) 100%),
        url("../images/philosophy-hero-memory-street.png") center right / cover no-repeat;
    }

    .page-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(247, 246, 242, 0.02), rgba(247, 246, 242, 0.72));
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      width: min(var(--container), 100%);
      margin: 0 auto;
      padding-top: 28px;
    }

    .breadcrumb {
      position: relative;
      z-index: 1;
      width: min(var(--container), 100%);
      margin: 0 auto 52px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: rgba(39, 36, 33, 0.56);
      font-family: var(--serif);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
    }

    .breadcrumb a {
      color: inherit;
      text-decoration: none;
    }

    .eyebrow,
    .section-number {
      margin: 0 0 20px;
      color: rgba(39, 36, 33, 0.5);
      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 {
      max-width: 760px;
      margin-bottom: 28px;
      font-family: var(--serif);
      font-size: clamp(50px, 6vw, 86px);
      font-weight: 500;
      line-height: 1.08;
      letter-spacing: 0;
    }

    .hero-lead-main {
      display: block;
      max-width: 760px;
      margin: 0 0 18px;
      color: var(--ink);
      font-family: var(--serif);
      font-size: clamp(26px, 2.65vw, 38px);
      font-weight: 500;
      line-height: 1.5;
      letter-spacing: 0;
    }

    .hero-lead {
      max-width: 720px;
      color: var(--body-copy);
      font-size: var(--lead-size);
      line-height: var(--lead-line);
      letter-spacing: 0;
    }

    .no-break {
      white-space: nowrap;
    }

    .section {
      padding: clamp(88px, 10vw, 138px) 0;
      background: var(--bg);
    }

    .section-muted {
      background: #f4f3ef;
    }

    .container {
      width: min(var(--container), calc(100% - (var(--side) * 2)));
      margin: 0 auto;
    }

    .two-column {
      display: grid;
      grid-template-columns: minmax(320px, 0.86fr) minmax(500px, 1.14fr);
      gap: clamp(54px, 7vw, 110px);
      align-items: start;
    }

    .mission-layout {
      display: block;
    }

    .mission-section h2 span {
      display: block;
    }

    .section h2 {
      margin-bottom: 26px;
      font-family: var(--serif);
      font-size: clamp(38px, 4.2vw, 62px);
      font-weight: 500;
      line-height: 1.18;
      letter-spacing: 0;
    }

    .copy {
      color: var(--body-copy);
      font-size: var(--body-size);
      line-height: var(--body-line);
    }

    .copy p {
      margin-bottom: 22px;
    }

    .mission-section .mission-copy {
      max-width: 860px;
      margin-top: clamp(28px, 3.2vw, 48px);
      padding-top: 0;
    }

    .dark-story {
      position: relative;
      min-height: 860px;
      display: grid;
      align-items: center;
      padding: 156px var(--side);
      color: #fffdf8;
      background:
        linear-gradient(90deg, rgba(22, 20, 18, 0.86), rgba(22, 20, 18, 0.55), rgba(22, 20, 18, 0.2)),
        url("../images/philosophy-origin-local-memory-v2.png") center / cover no-repeat;
      overflow: hidden;
    }

    .dark-story::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.34));
      pointer-events: none;
    }

    .dark-story .container {
      position: relative;
      z-index: 1;
      width: min(var(--container), 100%);
    }

    .dark-story .two-column {
      grid-template-columns: minmax(540px, 0.98fr) minmax(500px, 1.02fr);
    }

    .dark-story h2 {
      max-width: 720px;
      margin-bottom: 0;
      color: #fffdf8;
      font-family: var(--serif);
      font-size: clamp(38px, 4.2vw, 62px);
      font-weight: 500;
      line-height: 1.18;
      letter-spacing: 0;
    }

    .dark-story h2 span {
      display: block;
      white-space: nowrap;
    }

    .dark-story .section-number {
      color: rgba(255, 253, 248, 0.74);
    }

    .dark-story .copy {
      color: var(--dark-copy);
      padding-top: clamp(188px, 14vw, 240px);
    }

    .dark-story .copy .origin-quote {
      margin: 4px 0 30px;
      color: #fffdf8;
      font-family: var(--serif);
      font-size: clamp(19px, 2.1vw, 31px);
      font-weight: 500;
      line-height: 1.55;
      letter-spacing: 0;
    }

    .stance-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
      margin-top: 0;
    }

    .stance-section .stance-intro {
      grid-template-columns: minmax(600px, 0.98fr) minmax(500px, 1.02fr);
      gap: clamp(70px, 6.4vw, 96px);
    }

    .stance-section h2 span {
      display: block;
      white-space: nowrap;
    }

    .stance-section .stance-copy {
      position: relative;
      top: clamp(44px, 3.8vw, 58px);
      padding-left: clamp(24px, 3.8vw, 56px);
    }

    .stance-sequence {
      position: relative;
      margin-top: 86px;
    }

    .stance-link {
      position: absolute;
      top: 84px;
      z-index: 3;
      display: block;
      width: clamp(78px, 7vw, 110px);
      height: 22px;
      background: linear-gradient(90deg, rgba(39, 36, 33, 0), rgba(39, 36, 33, 0.16), rgba(39, 36, 33, 0));
      opacity: 0;
      transform: scaleX(0);
      transform-origin: left center;
      filter: blur(0.2px);
      pointer-events: none;
    }

    .stance-link::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, rgba(39, 36, 33, 0), rgba(39, 36, 33, 0.4), rgba(39, 36, 33, 0));
      transform: translateY(-50%);
    }

    .stance-link::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 2px;
      width: 30px;
      height: 18px;
      background: radial-gradient(circle, rgba(255, 253, 248, 0.92) 0%, rgba(255, 253, 248, 0.56) 32%, rgba(255, 253, 248, 0) 72%);
      transform: translate(50%, -50%);
    }

    .stance-link-1 {
      left: calc(33.333% - 54px);
    }

    .stance-link-2 {
      left: calc(66.666% - 54px);
    }

    .stance-card {
      position: relative;
      min-height: 258px;
      padding: 40px 34px 36px;
      border: 1px solid rgba(39, 36, 33, 0.16);
      background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.93), rgba(249, 247, 240, 0.82));
      box-shadow: 0 22px 46px rgba(39, 36, 33, 0.06);
      overflow: hidden;
      opacity: 0.68;
      filter: brightness(0.94) saturate(0.82);
      transition: border-color 0.45s ease, background 0.45s ease, box-shadow 0.45s ease, opacity 0.45s ease, filter 0.45s ease;
    }

    .stance-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 34px;
      right: 34px;
      height: 1px;
      background: rgba(39, 36, 33, 0.26);
    }

    .stance-card::after {
      content: "";
      position: absolute;
      inset: -30px;
      background:
        radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.92), rgba(255, 253, 248, 0.42) 28%, rgba(255, 253, 248, 0) 56%),
        linear-gradient(115deg, rgba(255, 253, 248, 0) 0%, rgba(255, 253, 248, 0.7) 44%, rgba(255, 253, 248, 0) 68%);
      opacity: 0;
      pointer-events: none;
      z-index: 0;
    }

    .stance-card .index {
      position: relative;
      z-index: 1;
      display: block;
      margin-bottom: 64px;
      color: rgba(39, 36, 33, 0.46);
      font-family: "Helvetica Neue", Arial, sans-serif;
      font-size: 13px;
      letter-spacing: 0.18em;
    }

    .stance-card h3 {
      position: relative;
      z-index: 1;
      margin-bottom: 14px;
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 500;
      line-height: 1.45;
    }

    .stance-card p {
      position: relative;
      z-index: 1;
      color: var(--body-copy-soft);
      font-family: var(--sans);
      font-size: var(--compact-body-size);
      line-height: var(--body-line);
    }

    .stance-section.is-active .stance-card:nth-child(1) {
      animation: stanceCardStep 5.4s ease-in-out 0s infinite both;
    }

    .stance-section.is-active .stance-card:nth-child(1)::after {
      animation: stanceGlowStep 5.4s ease-in-out 0s infinite both;
    }

    .stance-section.is-active .stance-card:nth-child(2) {
      animation: stanceCardStep 5.4s ease-in-out 0.9s infinite both;
    }

    .stance-section.is-active .stance-card:nth-child(2)::after {
      animation: stanceGlowStep 5.4s ease-in-out 0.9s infinite both;
    }

    .stance-section.is-active .stance-card:nth-child(3) {
      animation: stanceCardStep 5.4s ease-in-out 1.8s infinite both;
    }

    .stance-section.is-active .stance-card:nth-child(3)::after {
      animation: stanceGlowStep 5.4s ease-in-out 1.8s infinite both;
    }

    .stance-section.is-active .stance-link-1 {
      animation: stanceLinkStep 5.4s ease-in-out 0.55s infinite both;
    }

    .stance-section.is-active .stance-link-2 {
      animation: stanceLinkStep 5.4s ease-in-out 1.45s infinite both;
    }

    @keyframes stanceCardStep {
      0%,
      38%,
      100% {
        border-color: rgba(39, 36, 33, 0.16);
        background: linear-gradient(180deg, rgba(238, 235, 226, 0.8), rgba(229, 225, 215, 0.64));
        box-shadow: 0 18px 36px rgba(39, 36, 33, 0.05);
        opacity: 0.6;
        filter: brightness(0.9) saturate(0.76);
      }

      10%,
      25% {
        border-color: rgba(39, 36, 33, 0.34);
        background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 253, 248, 0.96));
        box-shadow:
          0 34px 78px rgba(39, 36, 33, 0.18),
          0 0 42px rgba(255, 253, 248, 0.9);
        opacity: 1;
        filter: brightness(1.08) saturate(1);
      }
    }

    @keyframes stanceGlowStep {
      0%,
      38%,
      100% {
        opacity: 0;
        transform: translateX(-12px);
      }

      10%,
      25% {
        opacity: 0.78;
        transform: translateX(0);
      }
    }

    @keyframes stanceLinkStep {
      0%,
      8% {
        opacity: 0;
        transform: scaleX(0);
      }

      18%,
      52% {
        opacity: 1;
        transform: scaleX(1);
      }

      74%,
      100% {
        opacity: 0;
        transform: scaleX(1);
      }
    }

    .axis-panel {
      display: grid;
      grid-template-columns: minmax(320px, 0.92fr) minmax(460px, 1.08fr);
      gap: 42px;
      align-items: center;
      border: 1px solid var(--line);
      background: rgba(255, 253, 248, 0.74);
    }

    .axis-panel img {
      width: 100%;
      height: 430px;
      object-fit: cover;
      filter: grayscale(0.15) contrast(0.92);
    }

    .axis-panel .copy {
      padding: 42px 48px 42px 0;
    }

    .service-connection-panel {
      grid-template-columns: minmax(420px, 0.92fr) minmax(520px, 1.08fr);
      gap: clamp(70px, 7vw, 112px);
      align-items: center;
      border: 0;
      background: transparent;
      box-shadow: none;
      overflow: visible;
    }

    .service-connection-panel img {
      height: clamp(420px, 34vw, 500px);
      border: 1px solid rgba(39, 36, 33, 0.12);
      box-shadow: 0 24px 58px rgba(39, 36, 33, 0.07);
      filter: grayscale(0.18) contrast(0.9) brightness(0.97);
    }

    .service-connection-copy {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(38px, 4vw, 64px) 0 !important;
    }

    .service-connection-copy::before {
      content: "";
      position: absolute;
      top: clamp(38px, 4vw, 64px);
      bottom: clamp(38px, 4vw, 64px);
      left: clamp(-54px, -4vw, -28px);
      width: 1px;
      background: rgba(39, 36, 33, 0.11);
    }

    .service-connection-copy h2 {
      margin-bottom: 30px;
      color: var(--ink);
      font-size: clamp(38px, 3.7vw, 56px);
    }

    .service-connection-copy h2 span {
      display: block;
      white-space: nowrap;
    }

    .service-connection-copy p {
      max-width: 620px;
    }

    .service-connection-button {
      min-width: 300px;
      min-height: 64px;
      margin-top: 28px;
      font-size: 15px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 58px;
      min-width: 260px;
      margin-top: 18px;
      padding: 0 34px;
      border: 1px solid var(--ink);
      border-radius: 4px;
      color: #fff;
      background: var(--ink);
      font-family: "Helvetica Neue", Arial, sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-decoration: none;
      transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
    }

    .button:hover {
      color: var(--ink);
      background: #fffdf8;
      transform: translateY(-2px);
    }

    .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.jpg") center / cover no-repeat;
      filter: saturate(0.98) contrast(1.02);
    }

    .contact-copy {
      position: relative;
      z-index: 1;
      width: min(var(--container), calc(100% - (var(--side) * 2)));
      margin: 0 auto;
    }

    .contact-copy h2 {
      max-width: 720px;
      margin: 0;
      color: #fffdf8;
      font-family: var(--serif);
      font-size: clamp(34px, 4vw, 54px);
      font-weight: 500;
      line-height: 1.32;
      letter-spacing: 0;
    }

    .contact-copy .section-number {
      color: rgba(255, 253, 248, 0.68);
    }

    .contact-lead,
    .contact-free-note {
      max-width: 720px;
      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-height: 68px;
      min-width: 0;
      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: var(--ink);
      border-color: rgba(255, 253, 248, 0.92);
      box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
    }

    .site-footer {
      padding: 54px var(--side) 38px;
      color: #f7f2e8;
      background: #272421;
    }

    .footer-inner {
      width: min(var(--container), 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto;
      grid-template-rows: auto auto;
      gap: 30px 46px;
      align-items: start;
    }

    .footer-brand img {
      width: 150px;
      height: auto;
      filter: grayscale(1) invert(1) brightness(1.28) contrast(0.88);
    }

    .footer-brand p,
    .copyright {
      margin: 18px 0 0;
      color: rgba(247, 242, 232, 0.68);
      font-family: "Helvetica Neue", Arial, sans-serif;
      font-size: 13px;
      line-height: 1.8;
    }

    .footer-nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 16px 24px;
      max-width: 560px;
      color: rgba(247, 242, 232, 0.78);
      font-family: "Helvetica Neue", Arial, sans-serif;
      font-size: 12px;
      letter-spacing: 0.08em;
    }

    .copyright {
      grid-column: 2;
      justify-self: end;
      align-self: end;
      margin-top: 0;
      text-align: right;
    }

    .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: translate3d(0, 0, 0) scale(1);
      filter: blur(0);
    }

    @media (max-width: 980px) {
      .global-nav {
        display: none;
      }

      .site-header {
        min-height: 76px;
      }

      .brand {
        margin-left: 0;
      }

      .page-hero {
        min-height: 680px;
        padding-top: 168px;
      }

      .hero-lead-main {
        font-size: 24px;
      }

      .hero-lead {
        max-width: min(350px, 100%);
      }

      .two-column,
      .axis-panel {
        grid-template-columns: 1fr;
      }

      .dark-story .two-column,
      .stance-section .stance-intro {
        grid-template-columns: 1fr;
      }

      .dark-story h2 span,
      .stance-section h2 span {
        white-space: normal;
      }

      .mission-section .mission-copy {
        margin-top: 24px;
        padding-top: 0;
      }

      .dark-story .copy {
        padding-top: 24px;
      }

      .axis-panel .copy {
        padding: 0 30px 36px;
      }

      .service-connection-copy::before {
        display: none;
      }

      .service-connection-panel img {
        height: 320px;
      }

      .stance-grid {
        grid-template-columns: 1fr;
      }

      .stance-sequence {
        margin-top: 42px;
      }

      .stance-link {
        display: none;
      }

      .stance-section .stance-copy {
        top: 0;
        padding-left: 0;
      }

      .footer-inner {
        grid-template-columns: 1fr;
      }

      .footer-nav {
        justify-content: flex-start;
      }

      .copyright {
        grid-column: auto;
        justify-self: start;
        text-align: left;
      }
    }

    @media (max-width: 720px) {
      .site-header {
        min-height: 54px;
        gap: 12px;
        padding: 8px 12px;
      }

      .brand {
        width: 96px;
      }

      .page-hero {
        min-height: 620px;
        padding-top: 100px;
        padding-bottom: 58px;
      }

      .hero-lead-main {
        margin-top: 24px;
        font-size: clamp(22px, 6.2vw, 28px);
        line-height: 1.58;
      }

      .hero-lead {
        max-width: min(320px, calc(100vw - 44px));
        line-height: 1.95;
      }

      .section {
        padding-top: 76px;
        padding-bottom: 76px;
      }

      .dark-story .copy,
      .axis-panel .copy {
        padding-inline: 22px;
      }

      .mission-section .mission-copy {
        margin-top: 18px;
      }

      .service-connection-panel img {
        height: 280px;
      }
    }

    @media (max-width: 380px) {
      .page-hero {
        min-height: 590px;
      }

      .hero-lead-main {
        font-size: clamp(21px, 6vw, 26px);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      .reveal {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
      }
    }

    body.philosophy-page .site-header.is-over-dark {
      border-bottom-color: rgba(255, 253, 248, 0.16) !important;
      background: rgba(22, 20, 18, 0.34) !important;
      box-shadow: none !important;
      -webkit-backdrop-filter: blur(14px) !important;
      backdrop-filter: blur(14px) !important;
      transition: none !important;
    }

    body.philosophy-page .site-header.is-over-dark .global-nav,
    body.philosophy-page .site-header.is-over-dark .global-nav a,
    body.philosophy-page .site-header.is-over-dark .global-nav a:hover,
    body.philosophy-page .site-header.is-over-dark .global-nav a:focus-visible,
    body.philosophy-page .site-header.is-over-dark .global-nav a[aria-current="page"] {
      color: rgba(255, 253, 248, 0.94) !important;
      text-shadow:
        0 1px 12px rgba(0, 0, 0, 0.68),
        0 0 1px rgba(0, 0, 0, 0.7) !important;
      transition: none !important;
    }

    body.philosophy-page .site-header.is-over-dark .global-nav a::after {
      background: rgba(255, 253, 248, 0.9) !important;
    }

    body.philosophy-page .site-header.is-over-dark .global-nav a.global-nav__service-link {
      color: #fffdf8 !important;
      border-color: rgba(255, 253, 248, 0.7) !important;
      background: rgba(255, 253, 248, 0.12) !important;
      box-shadow: none !important;
      transition: none !important;
    }

    body.philosophy-page .site-header.is-over-dark .header-cta {
      color: #272421 !important;
      border-color: rgba(255, 253, 248, 0.88) !important;
      background: rgba(255, 253, 248, 0.92) !important;
      box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16) !important;
      transition: none !important;
    }
