/* AI/CL — immersive one-pager */

:root {
  --ink: #12181c;
  --ink-soft: #3a4650;
  --foam: #f4f7f8;
  --mist: #e4ecef;
  --tide: #2a7a86;
  --tide-deep: #164e58;
  --copper: #c45c38;
  --line: rgba(18, 24, 28, 0.12);
  --line-light: rgba(244, 247, 248, 0.18);

  --font-display: "Syne", sans-serif;
  --font-brand: "Outfit", "Zen Kaku Gothic New", sans-serif;
  --font-serif: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  --font-body: "Zen Kaku Gothic New", "Hiragino Sans", sans-serif;

  --content: min(1100px, calc(100% - 2.5rem));
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
  --dur: 1.05s;
}

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

html {
  scroll-behavior: auto;
  background: var(--ink);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink);
  background: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }

.u-sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.u-br { display: none; }
@media (min-width: 720px) { .u-br { display: inline; } }

/* Atmosphere */
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  z-index: 90;
  background: linear-gradient(90deg, var(--tide), var(--copper));
  transform-origin: left;
}

/* Header + creative MENU drawer */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  color: var(--foam);
  background: transparent;
  transition: color 0.4s var(--ease), background 0.4s var(--ease), backdrop-filter 0.4s;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(244, 247, 248, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.site-header.is-menu-open {
  color: var(--foam);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header__inner {
  width: 100%;
  height: 100%;
  padding-inline: clamp(1rem, 3vw, 1.75rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.7rem;
  min-width: 0;
  text-align: left;
  line-height: 1;
}

.site-brand__mark {
  font-family: var(--font-brand);
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 1.35rem;
  flex-shrink: 0;
  line-height: 1;
}

.site-brand__name {
  font-family: var(--font-brand);
  font-weight: 500;
  font-size: clamp(0.62rem, 1.2vw, 0.78rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.78;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1;
}

@media (max-width: 560px) {
  .site-brand__name { display: none; }
}

.menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  padding: 0.4rem 0;
  margin-left: auto;
}

.menu-trigger__label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
}

.menu-trigger__icon {
  width: 1.6rem;
  height: 0.9rem;
  display: grid;
  align-content: space-between;
}

.menu-trigger__icon i {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.45s var(--ease), width 0.45s var(--ease);
}

.menu-trigger__icon i:first-child { width: 100%; }
.menu-trigger__icon i:last-child { width: 65%; margin-left: auto; }

.menu-trigger[aria-expanded="true"] .menu-trigger__icon i:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.menu-trigger[aria-expanded="true"] .menu-trigger__icon i:last-child {
  width: 100%;
  transform: translateY(-3.5px) rotate(-45deg);
}

.menu-drawer {
  position: fixed;
  inset: 0;
  z-index: 55;
  pointer-events: none;
  visibility: hidden;
}

.menu-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.menu-drawer__veil {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 16, 0.55);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.menu-drawer.is-open .menu-drawer__veil { opacity: 1; }

.menu-drawer__panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(100%, 520px);
  max-height: 100%;
  background:
    radial-gradient(90% 60% at 100% 0%, rgba(42, 122, 134, 0.28), transparent 55%),
    linear-gradient(165deg, #152025 0%, #0d1215 55%, #16262b 100%);
  color: var(--foam);
  padding: clamp(5rem, 12vw, 6.5rem) clamp(1.5rem, 4vw, 2.5rem) max(clamp(1.5rem, 4vw, 2.5rem), env(safe-area-inset-bottom, 0px));
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 2rem;
  overflow: hidden;
  transform: translateX(104%);
  transition: transform 0.65s var(--ease);
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.menu-drawer.is-open .menu-drawer__panel { transform: translateX(0); }

.menu-drawer__nav {
  display: grid;
  align-content: start;
  align-self: stretch;
  gap: 0.15rem;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

@media (min-height: 780px) {
  .menu-drawer__nav {
    align-content: center;
  }
}

.menu-drawer__nav a {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(244, 247, 248, 0.12);
  transform: translateX(24px);
  opacity: 0;
  transition: transform 0.55s var(--ease), opacity 0.55s var(--ease), color 0.3s;
}

.menu-drawer.is-open .menu-drawer__nav a {
  transform: none;
  opacity: 1;
}

.menu-drawer.is-open .menu-drawer__nav a:nth-child(1) { transition-delay: 0.08s; }
.menu-drawer.is-open .menu-drawer__nav a:nth-child(2) { transition-delay: 0.14s; }
.menu-drawer.is-open .menu-drawer__nav a:nth-child(3) { transition-delay: 0.2s; }
.menu-drawer.is-open .menu-drawer__nav a:nth-child(4) { transition-delay: 0.26s; }
.menu-drawer.is-open .menu-drawer__nav a:nth-child(5) { transition-delay: 0.32s; }
.menu-drawer.is-open .menu-drawer__nav a:nth-child(6) { transition-delay: 0.38s; }
.menu-drawer.is-open .menu-drawer__nav a:nth-child(7) { transition-delay: 0.44s; }

.menu-drawer__nav a span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(244, 247, 248, 0.45);
}

.menu-drawer__nav a em {
  font-style: normal;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.9rem);
  letter-spacing: 0.08em;
}

.menu-drawer__nav a:hover { color: #8fd0d8; }

.menu-drawer__foot {
  display: grid;
  gap: 1rem;
}

.menu-drawer__foot p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0;
}

/* Fixed CTA — below drawer (z-index 55) when menu is open */
.fixed-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.8rem 1.2rem;
  background: var(--ink);
  color: var(--foam);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  border-radius: 2px;
  box-shadow: 0 10px 30px rgba(18, 24, 28, 0.2);
  opacity: 1;
  visibility: visible;
  transition:
    transform 0.35s var(--ease),
    background 0.3s,
    opacity 0.45s var(--ease),
    visibility 0.45s var(--ease);
}

.fixed-cta:hover { background: var(--tide-deep); }

.fixed-cta.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.menu-drawer.is-open ~ .fixed-cta,
.site-header.is-menu-open ~ .fixed-cta {
  z-index: 40;
  pointer-events: none;
}

@media (min-width: 900px) {
  .fixed-cta {
    right: 1.5rem;
    bottom: auto;
    top: 50%;
    writing-mode: vertical-rl;
    min-height: auto;
    padding: 1.4rem 0.85rem;
  }
}

/* Back to top */
.to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  background: var(--foam);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(18, 24, 28, 0.12);
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.4s var(--ease),
    visibility 0.4s var(--ease),
    transform 0.4s var(--ease),
    background 0.3s,
    color 0.3s;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.to-top:hover {
  background: var(--ink);
  color: var(--foam);
}

.menu-drawer.is-open ~ .to-top,
.site-header.is-menu-open ~ .to-top {
  z-index: 40;
  pointer-events: none;
}

@media (max-width: 899px) {
  .to-top {
    right: auto;
    left: 1rem;
  }
}

@media (min-width: 900px) {
  .to-top {
    right: 1.5rem;
    bottom: 1.5rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.15rem;
  padding: 0.85rem 1.5rem;
  border-radius: 2px;
  border: 0;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s;
}

.btn:hover { transform: translateY(-2px); }
.btn__arrow { transition: transform 0.3s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--solid { background: var(--ink); color: var(--foam); }
.btn--solid:hover { background: var(--tide-deep); }
.btn--on-dark { background: var(--foam); color: var(--ink); }
.btn--on-dark:hover { background: #fff; }

/* Reveal system */
[data-reveal],
[data-split] .char {
  opacity: 0;
}

[data-reveal="up"] {
  transform: translateY(40px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

[data-reveal="fade"] {
  transition: opacity var(--dur) var(--ease);
}

[data-reveal="clip"] {
  /* Keep layout box visible to IntersectionObserver; animate clip only after .is-in */
  transition: opacity 0.01s linear;
}

[data-reveal="clip"].is-in {
  animation: reveal-clip 1.2s var(--ease) forwards;
}

@keyframes reveal-clip {
  from { clip-path: inset(0 100% 0 0); opacity: 1; }
  to { clip-path: inset(0 0 0 0); opacity: 1; }
}

[data-reveal="brand"] {
  transform: translateY(24px);
  letter-spacing: 0.4em;
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease), letter-spacing 1.2s var(--ease);
}

[data-reveal].is-in,
[data-reveal="brand"].is-in {
  opacity: 1;
  transform: none;
  letter-spacing: 0.08em;
}

.hero__brand[data-reveal="brand"] {
  letter-spacing: 0.28em;
}
.hero__brand[data-reveal="brand"].is-in {
  letter-spacing: 0.08em;
}

[data-reveal-delay="1"].is-in { transition-delay: 0.12s; }
[data-reveal-delay="2"].is-in { transition-delay: 0.24s; }

[data-split] .char {
  display: inline-block;
  transform: translateY(1.1em) rotate(4deg);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-split].is-in .char {
  opacity: 1;
  transform: none;
}

/* Sections shared */
.section {
  position: relative;
  padding: clamp(5rem, 12vw, 9rem) 0;
  overflow: hidden;
}

.intro,
.what,
.product,
.consult,
.about,
.faq,
.contact {
  background:
    radial-gradient(90% 60% at 0% 0%, rgba(42, 122, 134, 0.1), transparent 50%),
    linear-gradient(180deg, #e8eef1 0%, var(--foam) 40%, #eef3f5 100%);
}

.section__inner {
  width: var(--content);
  margin-inline: auto;
}

.section__label {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--tide-deep);
}

.section__label--light { color: rgba(244, 247, 248, 0.65); }

.section__title {
  margin: 0 0 2rem;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 4.2vw, 2.9rem);
  line-height: 1.4;
}

.section__title span { display: block; }
.section__title--light { color: var(--foam); }

/* Motifs */
.motif {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.motif--connect {
  top: 2.5rem;
  right: max(1.25rem, calc((100% - 1100px) / 2));
  width: min(280px, 40vw);
}

.motif--cross {
  inset: 12% 8% auto auto;
  width: 120px;
  height: 120px;
}

.motif--cross span {
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  background: rgba(244, 247, 248, 0.45);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s var(--ease);
}

.motif--cross span:last-child {
  inset: 0 auto 0 50%;
  width: 1px;
  height: auto;
  transform: scaleY(0);
  transform-origin: top;
}

.philosophy.is-motif-in .motif--cross span:first-child,
.philosophy.is-motif-in .motif--cross span:last-child {
  transform: none;
}

.motif--bridge {
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(420px, 80vw);
}

.motif-path {
  stroke: var(--tide);
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 1.6s var(--ease);
}

.motif-dot {
  fill: var(--tide);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}

.motif-label {
  fill: var(--ink-soft);
  font-size: 8px;
  letter-spacing: 0.12em;
  font-family: var(--font-display);
}

.intro.is-motif-in .motif-path {
  stroke-dashoffset: 0;
}

.intro.is-motif-in .motif-dot {
  opacity: 1;
  transition-delay: 0.9s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  color: var(--foam);
  overflow: hidden;
  background: var(--ink);
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #12181c;
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slides picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  transform-origin: center center;
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity, filter, clip-path;
}

.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  /* Start at scale(1) — same as morph-in end, so no post-switch jump */
  animation: hero-ken 18s var(--ease-soft) forwards;
}

.hero__slide.is-leaving {
  visibility: visible;
  z-index: 3;
  animation: hero-morph-out 1.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__slide.is-entering {
  visibility: visible;
  z-index: 4;
  animation: hero-morph-in 1.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes hero-ken {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

@keyframes hero-morph-out {
  0% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0) saturate(1) brightness(1);
    clip-path: inset(0% 0% 0% 0%);
  }
  35% {
    filter: blur(10px) saturate(1.45) brightness(1.15);
  }
  100% {
    opacity: 0;
    transform: scale(1.28) rotate(-1.2deg);
    filter: blur(22px) saturate(1.6) brightness(1.35);
    clip-path: inset(18% 14% 18% 14% round 40%);
  }
}

@keyframes hero-morph-in {
  0% {
    opacity: 0;
    transform: scale(1.4);
    filter: blur(28px) saturate(1.5) brightness(1.55);
    clip-path: circle(0% at 48% 42%);
  }
  40% {
    opacity: 1;
    filter: blur(12px) saturate(1.25) brightness(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0) saturate(1) brightness(1);
    clip-path: circle(160% at 48% 42%);
  }
}

.hero__morph-flash {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(55% 50% at 48% 42%, rgba(255, 255, 255, 0.55), rgba(126, 200, 209, 0.28) 38%, transparent 72%),
    linear-gradient(120deg, rgba(196, 92, 56, 0.18), transparent 50%);
  mix-blend-mode: screen;
}

.hero__morph-flash.is-on {
  animation: hero-flash 1.35s var(--ease) forwards;
}

@keyframes hero-flash {
  0% { opacity: 0; transform: scale(0.85); }
  28% { opacity: 0.95; transform: scale(1.05); }
  100% { opacity: 0; transform: scale(1.25); }
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  /* Light wash overall + a bit deeper at bottom-left */
  background:
    radial-gradient(70% 78% at 12% 88%, rgba(8, 12, 16, 0.52) 0%, rgba(8, 12, 16, 0.22) 38%, transparent 68%),
    linear-gradient(180deg, rgba(8, 12, 16, 0.18) 0%, rgba(8, 12, 16, 0.14) 45%, rgba(8, 12, 16, 0.28) 100%),
    linear-gradient(90deg, rgba(8, 12, 16, 0.22) 0%, rgba(8, 12, 16, 0.1) 42%, rgba(8, 12, 16, 0.08) 100%);
}

.hero__glow {
  position: absolute;
  inset: auto 0 0;
  z-index: 6;
  height: 28%;
  pointer-events: none;
  background: radial-gradient(55% 70% at 28% 100%, rgba(42, 122, 134, 0.18), transparent 72%);
  animation: glow-pulse 7s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide.is-active {
    animation: none;
    transform: none;
  }
  .hero__slide.is-leaving,
  .hero__slide.is-entering,
  .hero__morph-flash.is-on {
    animation: none !important;
  }
}

@keyframes glow-pulse {
  from { opacity: 0.45; }
  to { opacity: 1; }
}

.hero__content {
  position: relative;
  z-index: 10;
  width: var(--content);
  margin: 0 auto;
  padding: calc(var(--header-h) + 1rem) 0 clamp(9.5rem, 18vh, 13rem);
}

.hero__brand {
  margin: 0 0 0.35rem;
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: clamp(3.6rem, 12vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.85),
    0 2px 28px rgba(0, 0, 0, 0.55);
}

.hero__org {
  margin: 0 0 1.1rem;
  font-family: var(--font-brand);
  font-weight: 500;
  font-size: clamp(0.78rem, 1.5vw, 0.95rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 247, 248, 0.78);
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.8),
    0 1px 16px rgba(0, 0, 0, 0.6);
}

.hero__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.8vw, 2.5rem);
  line-height: 1.45;
  overflow: hidden;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.9),
    0 2px 24px rgba(0, 0, 0, 0.65);
}

.hero__copy {
  max-width: 36rem;
  display: grid;
  gap: 1rem;
  font-weight: 700;
  color: rgba(244, 247, 248, 0.92);
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.9),
    0 1px 18px rgba(0, 0, 0, 0.65);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  z-index: 10;
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(244, 247, 248, 0.75);
}

.hero__scroll i {
  width: 1px;
  height: 2.2rem;
  background: linear-gradient(180deg, rgba(244,247,248,0.8), transparent);
  animation: scroll-line 1.8s var(--ease) infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* Intro */
.intro__layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.intro__content {
  min-width: 0;
}

.intro__title {
  margin: 0 0 2.5rem;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.85rem, 3.8vw, 2.8rem);
  line-height: 1.4;
}

.intro__title span { display: block; }

.intro__body {
  max-width: 38rem;
  display: grid;
  gap: 1.4rem;
  color: var(--ink-soft);
}

.intro__punch {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

.intro__closing {
  margin: 0;
}

.intro__media {
  position: relative;
  width: min(100%, 400px);
  margin-inline: auto;
  aspect-ratio: 1609 / 2048;
  overflow: visible;
  background: transparent;
}

.intro__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
}

@media (min-width: 900px) {
  .intro__layout {
    /* Title width (2 lines, no wrap) locks the text column; PNG takes the rest */
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
  }

  .intro__content {
    display: grid;
    grid-template-columns: max-content;
    min-width: 0;
  }

  .intro__title span {
    white-space: nowrap;
  }

  /* Body wraps within the title-defined column width */
  .intro__body {
    max-width: 0;
    min-width: 100%;
  }

  .intro__media {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    aspect-ratio: 1609 / 2048;
    min-height: 0;
    height: auto;
    justify-self: stretch;
  }

  .intro .motif--connect {
    opacity: 0.28;
  }
}

/* Philosophy */
.philosophy {
  color: var(--foam);
  overflow: hidden;
}

.philosophy__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #12181c;
}

.philosophy__bg picture,
.philosophy__bg img {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
}

.philosophy__bg img {
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.82) saturate(0.95);
}

.philosophy__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(18,24,28,0.22), rgba(18,24,28,0.42));
}

.philosophy__inner { position: relative; z-index: 1; }

.philosophy__title {
  margin: 0 0 2rem;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 6vw, 4rem);
  overflow: hidden;
}

.philosophy__text {
  max-width: 42rem;
  display: grid;
  gap: 1.6rem;
  color: rgba(244, 247, 248, 0.9);
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.9vw, 1.15rem);
  line-height: 2;
}

.philosophy__text p {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.philosophy__lines {
  color: var(--foam);
}

.philosophy__end {
  margin-top: 0.5rem;
  color: var(--foam);
}

/* What we do */
.what__lead {
  max-width: 38rem;
  display: grid;
  gap: 1.2rem;
  color: var(--ink-soft);
  margin-bottom: 3rem;
}

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

.service {
  display: grid;
  gap: 0.85rem;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  border-top: 1px solid var(--line);
}

.service:last-child { border-bottom: 1px solid var(--line); }

.service__no {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--tide);
  position: relative;
  display: inline-block;
  width: fit-content;
}

.service.is-in .service__no::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--tide);
  transform: scaleX(0);
  transform-origin: left;
  animation: draw-line 0.9s var(--ease) forwards;
}

@keyframes draw-line {
  to { transform: scaleX(1); }
}

.service__main {
  display: grid;
  gap: 1.5rem;
}

.service__head {
  display: grid;
  gap: 0.35rem;
  align-content: start;
}

.service__en {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}

.service__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
}

.service__body {
  display: grid;
  gap: 1rem;
  color: var(--ink-soft);
  align-content: start;
}

.service__themes-label {
  display: inline-block;
  width: fit-content;
  margin: 0.5rem 0 0;
  padding: 0.18em 0.5em;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.4;
  color: #fff;
  background: var(--ink);
}

.theme-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.75rem;
}

.theme-cloud li {
  font-size: 0.88rem;
  padding-bottom: 0.1rem;
  border-bottom: 1px solid rgba(42, 122, 134, 0.35);
  color: var(--tide-deep);
}

@media (min-width: 900px) {
  .service__main {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
  }
}

/* Consultation */
.consult-list {
  display: grid;
  gap: 0;
  margin: 2rem 0 3rem;
}

.consult-list li {
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.5;
  position: relative;
  padding-left: 1.4rem;
}

@media (min-width: 760px) {
  .consult-list li { white-space: nowrap; }
}


.consult-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  margin-top: -0.22rem;
  border-radius: 50%;
  background: var(--tide);
  transform: scale(0);
  transition: transform 0.5s var(--ease);
}

.consult-list li.is-in::before { transform: scale(1); }

.consult-list li:last-child { border-bottom: 1px solid var(--line); }

.consult .section__title {
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
}

.consult__message {
  max-width: 34rem;
  display: grid;
  gap: 1rem;
  color: var(--ink-soft);
}

/* Product */
.product-list {
  display: grid;
  gap: 0;
  margin-top: 2.5rem;
}

.product-card {
  display: grid;
  gap: 1.25rem;
  padding: clamp(2rem, 5vw, 3rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: min(100%, 520px);
  background: #d7e0e4;
}

.product-card__media picture,
.product-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
}

.product-card__media img {
  object-fit: cover;
  object-position: center;
}

.product-card__en {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--tide);
}

.product-card__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
}

.product-card__body {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.product-card__text {
  margin: 0;
  color: var(--ink-soft);
  max-width: 34rem;
}

.product-card__meta {
  margin: 0.25rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.9;
  max-width: 34rem;
}

.product-card__link {
  color: var(--tide-deep);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  transition: opacity 0.25s ease;
}

.product-card__link:hover {
  opacity: 0.65;
}

@media (min-width: 900px) {
  .product-card {
    grid-template-columns: minmax(240px, 0.9fr) 1.1fr;
    gap: 3rem;
    align-items: center;
  }
}

/* Why */
.why-grid {
  display: grid;
  gap: 2rem;
  margin: 2rem 0 2.5rem;
}

.why-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 1.25rem;
  isolation: isolate;
}

.why-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}

.why-card:hover .why-card__media img { transform: scale(1.05); }

.why-card__label,
.partner__role {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--tide);
}

.why-card__title,
.why-bridge__title {
  margin: 0.4rem 0 1rem;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
}

.why-card p,
.why-bridge p { color: var(--ink-soft); }

.why-bridge {
  padding: clamp(2rem, 5vw, 3rem);
  background:
    linear-gradient(135deg, rgba(42, 122, 134, 0.12), transparent 55%),
    linear-gradient(180deg, #dfe8ec, #f2f6f7);
  border: 1px solid var(--line);
  display: grid;
  gap: 1.1rem;
  margin-bottom: 0;
}

.why-bridge__end {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--ink) !important;
}

.why {
  overflow: clip;
}

.why .section__inner {
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .why-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

/* Approach */
.approach {
  background:
    linear-gradient(180deg, rgba(18, 24, 28, 0.98), rgba(18, 24, 28, 0.94)),
    var(--ink);
  color: var(--foam);
}

.steps-wrap {
  position: relative;
  margin-top: 3rem;
}

.approach-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 0;
  background: rgba(244, 247, 248, 0.12);
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.approach-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #7ec8d1, var(--copper));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.4s var(--ease);
}

.approach.is-motif-in .approach-line::after {
  transform: scaleY(1);
}

.steps {
  position: relative;
  margin-top: 0;
  display: grid;
  gap: 0;
  counter-reset: none;
  border-top: 1px solid var(--line-light);
}

.step {
  position: relative;
  z-index: 1;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: 1.5rem minmax(9.5rem, 12rem) 1fr;
  column-gap: 1.25rem;
  row-gap: 0.65rem;
  align-items: start;
}

.step__dot {
  width: 0.85rem;
  height: 0.85rem;
  margin-top: 0.35rem;
  border-radius: 50%;
  border: 1.5px solid rgba(244, 247, 248, 0.55);
  background: #12181c;
  box-shadow: 0 0 0 4px rgba(18, 24, 28, 0.95);
}

.step__head {
  display: contents;
}

.step__no {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: rgba(244, 247, 248, 0.55);
  line-height: 1.35;
  padding-top: 0.3rem;
}

.step__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.35;
}

.step__text {
  grid-column: 3;
  margin: 0;
  color: rgba(244, 247, 248, 0.7);
}

.step.is-active .step__no { color: #7ec8d1; }
.step.is-active .step__title { color: #fff; }
.step.is-active .step__dot {
  border-color: #7ec8d1;
  background: #7ec8d1;
}

@media (max-width: 899px) {
  .step {
    grid-template-columns: 1.5rem 1fr;
  }
  .step__no {
    grid-column: 2;
  }
  .step__title {
    grid-column: 2;
  }
  .step__text {
    grid-column: 2;
  }

  .approach-line {
    left: 0.35rem;
  }
}

/* About */
.about__title {
  margin: 0 0 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.04em;
}

.about {
  background:
    radial-gradient(90% 60% at 0% 0%, rgba(42, 122, 134, 0.1), transparent 50%),
    linear-gradient(180deg, #e8eef1 0%, var(--foam) 40%, #eef3f5 100%);
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.about__body {
  max-width: 38rem;
  display: grid;
  gap: 1.25rem;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
}

.partners {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

.partner {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
  min-height: 100%;
}

.partner:last-child { border-bottom: 1px solid var(--line); }

.partner__logo {
  position: relative;
  width: 100%;
  max-width: none;
  aspect-ratio: 16 / 9;
  margin: 0.35rem 0 0.5rem;
  overflow: hidden;
  background: transparent;
  border: 0;
  outline: none;
  box-shadow: none;
  flex-shrink: 0;
}

.partner__logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  border: 0;
  outline: none;
  box-shadow: none;
}

.partner__name {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 2rem;
  min-height: 2.4rem;
}

.partner > p:not([class]) {
  color: var(--ink-soft);
  flex: 1 1 auto;
  margin: 0;
}

.partner__link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  min-height: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  border-bottom: 1px solid currentColor;
  width: fit-content;
  padding-bottom: 0.15rem;
  transition: color 0.3s, transform 0.3s var(--ease);
}

.partner__link:hover {
  color: var(--tide-deep);
  transform: translateX(4px);
}

@media (min-width: 900px) {
  .partners { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .partner,
  .partner:last-child,
  .about .partner:last-child {
    border-bottom: 1px solid var(--line);
    padding-bottom: 2rem;
    margin-bottom: 0;
  }
}

/* Final CTA */
.final-cta {
  color: var(--foam);
  overflow: hidden;
  min-height: 90svh;
  display: grid;
  align-items: center;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
}

.final-cta__bg img {
  width: 100%;
  height: 120%;
  object-fit: cover;
}

.final-cta__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18,24,28,0.55), rgba(18,24,28,0.85)),
    radial-gradient(50% 60% at 50% 80%, rgba(42,122,134,0.35), transparent 70%);
}

.final-cta__inner { position: relative; z-index: 1; }

.final-cta__title {
  margin: 0 0 2rem;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 4.5vw, 3.1rem);
  line-height: 1.4;
}

.final-cta__title span { display: block; }

.final-cta__body {
  max-width: 34rem;
  display: grid;
  gap: 1rem;
  color: rgba(244, 247, 248, 0.86);
  margin-bottom: 2rem;
}

.final-cta__phrase {
  margin: 0 0 2rem;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  overflow: hidden;
}

.final-cta__note {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: rgba(244, 247, 248, 0.7);
}

/* FAQ */
.faq-list {
  margin-top: 2rem;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.35rem 0;
  padding-left: 1em;
  transform: translateY(0.2em);
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  line-height: 1.5;
  transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--tide);
  transition: transform 0.35s var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] summary { color: var(--tide-deep); }

.faq-item__body {
  overflow: hidden;
  padding: 0 0 1.4rem 1em;
  color: var(--ink-soft);
  max-width: 40rem;
  animation: faq-open 0.45s var(--ease);
}

@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* Contact */
.contact__grid {
  display: grid;
  gap: 3rem;
}

.contact__topics {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.65rem;
  color: var(--ink-soft);
}

.contact__topics li {
  padding-left: 1rem;
  position: relative;
}

.contact__topics li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.75em;
  width: 0.35rem; height: 0.35rem;
  background: var(--tide);
}

.contact-form {
  display: grid;
  gap: 1.1rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
}

.contact-form label span {
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  padding: 0.9rem 1rem;
  border-radius: 2px;
  transition: border-color 0.3s, background 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--tide);
  background: #fff;
}

.contact-form__status {
  font-size: 0.92rem;
  color: var(--tide-deep);
}

.contact-form__status.is-error {
  color: var(--copper);
}

.contact-form__status.is-ok {
  color: var(--tide-deep);
}

.contact-form button[type="submit"][disabled] {
  opacity: 0.55;
  cursor: wait;
  transform: none;
}

@media (min-width: 900px) {
  .contact__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: start;
  }
}

/* Footer */
.site-footer {
  padding: 2.75rem 0 1.75rem;
  border-top: 1px solid var(--line);
  background: #dfe7eb;
}

.site-footer__inner {
  width: var(--content);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  column-gap: clamp(1.5rem, 4vw, 3rem);
  row-gap: 1rem;
}

.site-footer__brand-block {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 28rem;
}

.site-footer__brand {
  margin: 0 0 0.35rem;
  font-family: var(--font-brand);
  font-weight: 600;
  letter-spacing: 0.12em;
}

.site-footer__partners {
  margin-top: 0.65rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.site-footer__phrase {
  margin-top: 0.65rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  margin-left: auto;
}

.site-footer__copy {
  flex: 1 1 100%;
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: rgba(18, 24, 28, 0.5);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.video-modal[hidden] {
  display: none !important;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 28, 0.72);
  cursor: pointer;
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.video-modal__close {
  position: absolute;
  top: 0.55rem;
  right: 0.6rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(18, 24, 28, 0.55);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.video-modal__close:hover {
  opacity: 0.7;
  transform: scale(1.06);
}

.video-modal__frame {
  position: relative;
  aspect-ratio: 9 / 16;
  background: #000;
}

.video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.privacy {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(18, 24, 28, 0.55);
  place-items: center;
  padding: 1.5rem;
}

.privacy[hidden] { display: none !important; }
.privacy:not([hidden]) { display: grid; }

.privacy__inner {
  position: relative;
  width: min(560px, 100%);
  background: var(--foam);
  padding: 2.25rem 2rem 2rem;
  display: grid;
  gap: 1rem;
  border-radius: 16px;
}

.privacy__close {
  position: absolute;
  top: 0.85rem;
  right: 0.9rem;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.privacy__close:hover {
  opacity: 0.55;
  transform: scale(1.06);
}

.privacy__inner h2 {
  margin: 0;
  padding-right: 2rem;
}

.privacy__inner p {
  margin: 0;
  line-height: 1.9;
  color: var(--ink-soft);
}

.privacy__inner a {
  color: var(--tide-deep);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}


.about .partner:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

@media (min-width: 900px) {
  .about .partner:last-child {
    border-bottom: 1px solid var(--line);
    padding-bottom: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal],
  [data-split] .char {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
}


/* Image placeholders */
.ph {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: inherit;
  background:
    linear-gradient(135deg, rgba(42, 122, 134, 0.18), rgba(18, 24, 28, 0.08) 55%),
    repeating-linear-gradient(-45deg, rgba(18,24,28,0.04) 0 8px, transparent 8px 16px),
    #d7e0e4;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ph::after {
  content: attr(data-label);
  opacity: 0.7;
}

.hero__media .ph,
.philosophy__bg .ph,
.final-cta__bg .ph,
.why-card__media .ph,
.partner__logo .ph,
.product-card__media .ph,
.intro__media .ph {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.hero__media {
  background: #12181c;
}

.hero__media .ph {
  background:
    linear-gradient(135deg, rgba(42, 122, 134, 0.22), rgba(18, 24, 28, 0.2) 55%),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.03) 0 8px, transparent 8px 16px),
    #182226;
  color: rgba(244, 247, 248, 0.45);
}

.philosophy__bg,
.final-cta__bg {
  background: #12181c;
}

.why-card__media {
  background: #d7e0e4;
}


.about {
  margin-bottom: 0;
}

.final-cta {
  margin-top: 0;
  background: #12181c;
}

.about .partners {
  margin-bottom: 0;
}

.partner:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

@media (min-width: 900px) {
  .partner:last-child,
  .about .partner:last-child {
    margin-bottom: 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--line);
  }
}
