@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('../assets/dm-sans-regular.ttf') format('truetype');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 550 700;
  font-display: swap;
  src: url('../assets/dm-sans-semibold.ttf') format('truetype');
}
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('../assets/newsreader-regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Newsreader';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url('../assets/newsreader-italic.ttf') format('truetype');
}

:root {
  --dark: #071a38;
  --ink: #09264b;
  --blue: #008fe8;
  --sky: #46bdf2;
  --fuchsia: #d9155d;
  --green: #1b9a43;
  --bg-main: #f4f7fb;
  --bg-alt: #eaf1f8;
  --bg-trans: #e2ecf6;
  --bg-soft-green: #eff8f1;
  --bg-soft-green-deep: #e3f3e7;
  --cream: #ffffff;
  --paper: #f4f7fb;
  --muted: #526579;
  --line: rgba(9, 38, 75, 0.14);
  --serif: 'Newsreader', Georgia, serif;
  --sans: 'DM Sans', Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--bg-main);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  color: inherit;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(44px, 5.15vw, 78px);
}
h3 {
  font-size: 34px;
}
em {
  font-weight: 400;
  color: #0a5fb8;
}
p {
  line-height: 1.7;
}
::selection {
  background: #bae6fd;
  color: var(--dark);
}
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 6px;
}
.wrap {
  width: min(1300px, calc(100% - 112px));
  margin-inline: auto;
}
.section-pad {
  padding-block: 120px;
}
.eyebrow {
  font: 550 12px/1.7 var(--sans);
  letter-spacing: 0.16em;
}
.section-index {
  margin-bottom: 38px;
}
.micro {
  font-size: 13px;
  color: var(--muted);
}
.split-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 55px;
}
.split-heading > p {
  color: var(--muted);
  max-width: 325px;
  padding-bottom: 6px;
}
.split-heading.compact h2 {
  font-size: clamp(40px, 4.5vw, 64px);
}
.text-link {
  display: inline-flex;
  gap: 32px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-block: 10px;
  transition: gap 0.3s;
}
.text-link:hover {
  gap: 44px;
}
.text-link span {
  font-size: 23px;
  font-weight: 400;
}
.button {
  min-height: 55px;
  padding: 15px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 550;
  transition:
    transform 0.3s,
    background 0.3s,
    box-shadow 0.3s;
  color: var(--cream);
  white-space: nowrap;
}
.button span {
  font-size: 23px;
  line-height: 1;
}
.button:hover {
  transform: translateY(-4px);
  box-shadow: 0 9px 30px rgba(7, 26, 56, 0.18);
}
.button.blue {
  background: var(--blue);
}
.button.blue:hover {
  background: #007bc7;
}
.hero-actions .button.blue {
  background: var(--fuchsia);
}
.hero-actions .button.blue:hover {
  background: #b9144e;
  box-shadow: 0 9px 30px rgba(217, 21, 93, 0.3);
}
.button.green {
  background: var(--green);
}
.button.green:hover {
  background: #158037;
}
.green-dot,
.blue-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 9px;
  background: var(--green);
}
.blue-dot {
  background: var(--blue);
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  padding: 14px 20px;
  z-index: 1000;
  background: var(--cream);
  transform: translateY(-200%);
}
.skip-link:focus {
  transform: none;
}
.reading-progress {
  height: 2px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--blue);
  z-index: 150;
}
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 28px 56px;
  color: var(--dark);
  border-bottom: 1px solid var(--line);
  transition:
    background 0.3s,
    padding 0.3s,
    color 0.3s;
}
.site-header.scrolled {
  position: fixed;
  background: rgba(244, 247, 251, 0.96);
  backdrop-filter: blur(16px);
  color: var(--ink);
  padding-block: 13px;
  border-color: var(--line);
  animation: header-in 0.35s var(--ease);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img {
  width: 43px;
  height: 43px;
}
.brand > span {
  font: 500 37px/0.95 var(--serif);
  letter-spacing: -0.06em;
}
.brand small {
  display: block;
  font: 500 8px/1.7 var(--sans);
  letter-spacing: 0.2em;
  margin-top: 6px;
}
.desktop-nav {
  display: flex;
  gap: 34px;
  margin-inline: auto;
  font-size: 14px;
}
.desktop-nav a {
  position: relative;
}
.desktop-nav a:after {
  content: '';
  position: absolute;
  height: 1px;
  background: currentColor;
  left: 0;
  right: 100%;
  bottom: -5px;
  transition: right 0.3s;
}
.desktop-nav a:hover:after {
  right: 0;
}
.header-contact {
  padding: 10px 19px;
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 14px;
  color: var(--ink);
  transition:
    background 0.3s,
    border-color 0.3s,
    color 0.3s;
}
.site-header:not(.scrolled) .header-contact {
  background: rgba(27, 154, 67, 0.12);
  border-color: rgba(27, 154, 67, 0.35);
  backdrop-filter: blur(10px);
  color: var(--ink);
}
.site-header:not(.scrolled) .header-contact:hover,
.scrolled .header-contact:hover {
  background: var(--green);
  border-color: var(--green);
  color: #ffffff;
}
.scrolled .header-contact {
  border-color: var(--line);
}
.header-contact span {
  margin-left: 24px;
  font-size: 20px;
}
.brand,
.desktop-nav a,
.header-contact {
  animation: top-in 0.7s var(--ease) both;
}
.desktop-nav a:nth-child(1) {
  animation-delay: 0.06s;
}
.desktop-nav a:nth-child(2) {
  animation-delay: 0.12s;
}
.desktop-nav a:nth-child(3) {
  animation-delay: 0.18s;
}
.header-contact {
  animation-delay: 0.24s;
}
.menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}
.hero {
  min-height: 790px;
  height: 100svh;
  max-height: 1100px;
  background: var(--bg-main);
  color: var(--dark);
  position: relative;
  overflow: hidden;
}
.hero-art {
  position: absolute;
  inset: 0;
  transform-origin: 70% 50%;
  will-change: transform;
}
.hero-art img {
  position: absolute;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 66% 30%;
  right: 0;
  top: 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 36%, #000 100%);
  opacity: 0.93;
}
.hero-art:after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg-main) 2%, rgba(244, 247, 251, 0.92) 34%, transparent 76%),
    linear-gradient(0deg, var(--bg-main) 0%, transparent 24%);
}
.hero-glow {
  position: absolute;
  left: 72%;
  top: 51%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(70, 189, 242, 0.14);
  filter: blur(24px);
  animation: breathe 5s ease-in-out infinite;
}
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Cpath fill='%23fff' filter='url(%23n)' opacity='.7' d='M0 0h180v180H0z'/%3E%3C/svg%3E");
}

/* Hero: formas orgánicas animadas de fondo (fondo claro, pedido del cliente sept. 2026) */
.hero-blobs {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  filter: blur(1.5px);
  will-change: transform, border-radius;
}
@keyframes hero-blob-a {
  0%,
  100% {
    border-radius: 42% 58% 68% 32% / 45% 42% 58% 55%;
    transform: scale(1) translate(0, 0);
  }
  35% {
    border-radius: 63% 37% 42% 58% / 55% 60% 40% 45%;
    transform: scale(1.14) translate(20px, -16px);
  }
  70% {
    border-radius: 38% 62% 55% 45% / 65% 35% 65% 35%;
    transform: scale(0.88) translate(-17px, 17px);
  }
}
@keyframes hero-blob-b {
  0%,
  100% {
    border-radius: 55% 45% 40% 60% / 40% 55% 45% 60%;
    transform: scale(1) translate(0, 0);
  }
  40% {
    border-radius: 40% 60% 62% 38% / 60% 40% 60% 40%;
    transform: scale(1.13) translate(-18px, 14px);
  }
  75% {
    border-radius: 62% 38% 45% 55% / 45% 62% 38% 55%;
    transform: scale(0.87) translate(14px, -14px);
  }
}
.hero-blob-a {
  width: 400px;
  height: 365px;
  top: -110px;
  left: -120px;
  background: var(--sky);
  opacity: 0.4;
  animation: hero-blob-a 13s ease-in-out infinite;
  animation-delay: -3s;
}
.reduced-motion .hero-blob {
  animation: none !important;
}
@media (max-width: 600px) {
  .hero-blob-a {
    width: 220px;
    height: 200px;
  }
}

/* Burbujas de fondo reutilizadas en el resto de secciones, mismo criterio del hero:
   se deforman solas y se mueven bastante (pedido del cliente, sept. 2026: quería más
   movimiento y colores más vividos, porque los tonos pastel casi no se notaban contra
   el fondo claro). Van detrás de todo el contenido de cada sección (z-index: -1 dentro
   de su propio contexto de apilamiento, por eso cada sección tiene position: relative;
   z-index: 0;). Cada sección tiene 3 burbujas: dos asomando desde una esquina, con
   colores de marca bien saturados (sky/blue/green/fuchsia) a opacidad moderada para
   que se noten sin volverse un bloque sólido, y una tercera "flotante" en una posición
   intermedia que puede caer sobre texto -- esa va más difuminada (blur mayor, opacidad
   menor) para disimularla, tal como pidió el cliente. */
.section-blobs {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.section-blob {
  position: absolute;
  filter: blur(1.5px);
  will-change: transform, border-radius;
}
.reduced-motion .section-blob {
  animation: none !important;
}
@keyframes blob-morph-c {
  0%,
  100% {
    border-radius: 48% 52% 60% 40% / 55% 48% 52% 45%;
    transform: scale(1) translate(0, 0) rotate(0deg);
  }
  30% {
    border-radius: 60% 40% 45% 55% / 42% 58% 42% 58%;
    transform: scale(1.18) translate(22px, 20px) rotate(8deg);
  }
  62% {
    border-radius: 40% 60% 58% 42% / 60% 45% 55% 40%;
    transform: scale(0.85) translate(-20px, -10px) rotate(-6deg);
  }
  85% {
    border-radius: 55% 45% 50% 50% / 45% 55% 42% 58%;
    transform: scale(1.08) translate(10px, -22px) rotate(4deg);
  }
}
@keyframes blob-morph-d {
  0%,
  100% {
    border-radius: 50% 50% 45% 55% / 50% 45% 55% 50%;
    transform: scale(1) translate(0, 0) rotate(0deg);
  }
  28% {
    border-radius: 40% 60% 55% 45% / 60% 50% 50% 40%;
    transform: scale(1.16) translate(-22px, 16px) rotate(-7deg);
  }
  58% {
    border-radius: 58% 42% 50% 50% / 45% 55% 45% 55%;
    transform: scale(0.86) translate(16px, -20px) rotate(6deg);
  }
  82% {
    border-radius: 45% 55% 60% 40% / 55% 40% 60% 45%;
    transform: scale(1.1) translate(-14px, -10px) rotate(-4deg);
  }
}

.about-blob-a {
  width: 150px;
  height: 90px;
  top: 14px;
  right: 18px;
  background: var(--blue);
  opacity: 0.4;
  animation: hero-blob-a 15s ease-in-out infinite;
  animation-delay: -4s;
}
.about-blob-b {
  width: 100px;
  height: 55px;
  bottom: 8px;
  left: 18px;
  background: var(--green);
  opacity: 0.4;
  animation: hero-blob-b 17s ease-in-out infinite;
  animation-delay: -11s;
}
.about-blob-c {
  width: 90px;
  height: 50px;
  bottom: 8px;
  right: 18px;
  background: var(--fuchsia);
  opacity: 0.2;
  filter: blur(4px);
  animation: blob-morph-c 12s ease-in-out infinite;
  animation-delay: -6s;
}

.services-blob-a {
  width: 140px;
  height: 80px;
  top: 14px;
  left: 18px;
  background: var(--green);
  opacity: 0.42;
  animation: hero-blob-b 15s ease-in-out infinite;
  animation-delay: -6s;
}
.services-blob-b {
  width: 140px;
  height: 85px;
  top: 14px;
  right: 18px;
  background: var(--fuchsia);
  opacity: 0.28;
  animation: hero-blob-a 12s ease-in-out infinite;
  animation-delay: -2s;
}
.services-blob-c {
  width: 130px;
  height: 80px;
  bottom: 14px;
  left: 18px;
  background: var(--sky);
  opacity: 0.22;
  filter: blur(4px);
  animation: blob-morph-d 14s ease-in-out infinite;
  animation-delay: -13s;
}

.process-blob-a {
  width: 140px;
  height: 85px;
  top: 14px;
  right: 18px;
  background: var(--sky);
  opacity: 0.42;
  animation: hero-blob-a 16s ease-in-out infinite;
  animation-delay: -8s;
}
.process-blob-b {
  width: 120px;
  height: 65px;
  bottom: 10px;
  left: 18px;
  background: var(--blue);
  opacity: 0.4;
  animation: hero-blob-b 11s ease-in-out infinite;
  animation-delay: -5s;
}
.process-blob-c {
  width: 120px;
  height: 65px;
  top: 14px;
  left: 18px;
  background: var(--fuchsia);
  opacity: 0.2;
  filter: blur(4px);
  animation: blob-morph-c 10s ease-in-out infinite;
  animation-delay: -2s;
}

.difference-blob-a {
  width: 130px;
  height: 75px;
  top: 14px;
  left: 18px;
  background: rgba(255, 255, 255, 0.5);
  animation: hero-blob-a 14s ease-in-out infinite;
  animation-delay: -9s;
}
.difference-blob-b {
  width: 140px;
  height: 80px;
  bottom: 14px;
  right: 18px;
  background: var(--green);
  opacity: 0.4;
  animation: hero-blob-b 18s ease-in-out infinite;
  animation-delay: -1s;
}
.difference-blob-c {
  width: 190px;
  height: 175px;
  top: 34%;
  right: 12%;
  background: rgba(255, 255, 255, 0.6);
  filter: blur(4px);
  animation: blob-morph-d 13s ease-in-out infinite;
  animation-delay: -10s;
}

.purpose-blob-a {
  width: 120px;
  height: 65px;
  top: 14px;
  left: 18px;
  background: var(--fuchsia);
  opacity: 0.3;
  animation: hero-blob-b 13s ease-in-out infinite;
  animation-delay: -7s;
}
.purpose-blob-b {
  width: 140px;
  height: 80px;
  bottom: 14px;
  right: 18px;
  background: var(--sky);
  opacity: 0.42;
  animation: hero-blob-a 16s ease-in-out infinite;
  animation-delay: -3s;
}
.purpose-blob-c {
  width: 130px;
  height: 75px;
  top: 14px;
  right: 18px;
  background: var(--blue);
  opacity: 0.22;
  filter: blur(4px);
  animation: blob-morph-c 15s ease-in-out infinite;
  animation-delay: -15s;
}

.office-blob-a {
  width: 130px;
  height: 75px;
  top: 14px;
  left: 18px;
  background: var(--blue);
  opacity: 0.4;
  animation: hero-blob-a 15s ease-in-out infinite;
  animation-delay: -10s;
}
.office-blob-b {
  width: 100px;
  height: 50px;
  bottom: 8px;
  right: 160px;
  background: var(--green);
  opacity: 0.4;
  animation: hero-blob-b 11s ease-in-out infinite;
  animation-delay: -6s;
}
.office-blob-c {
  width: 110px;
  height: 60px;
  bottom: 8px;
  right: 18px;
  background: var(--sky);
  opacity: 0.22;
  filter: blur(4px);
  animation: blob-morph-d 11s ease-in-out infinite;
  animation-delay: -4s;
}

.contact-blob-a {
  width: 140px;
  height: 80px;
  bottom: 14px;
  left: 18px;
  background: var(--green);
  opacity: 0.4;
  animation: hero-blob-a 17s ease-in-out infinite;
  animation-delay: -12s;
}
.contact-blob-b {
  width: 140px;
  height: 85px;
  top: 14px;
  left: 4%;
  background: var(--sky);
  opacity: 0.4;
  animation: hero-blob-b 14s ease-in-out infinite;
  animation-delay: -4s;
}
.contact-blob-c {
  width: 120px;
  height: 70px;
  bottom: 14px;
  right: 18px;
  background: var(--fuchsia);
  opacity: 0.18;
  filter: blur(4px);
  animation: blob-morph-c 16s ease-in-out infinite;
  animation-delay: -9s;
}

@media (max-width: 800px) {
  .about-blob-a,
  .services-blob-b,
  .process-blob-a,
  .purpose-blob-c,
  .office-blob-c {
    width: 100px;
    height: 50px;
    top: 8px;
    right: 10px;
  }
  .services-blob-a,
  .process-blob-c,
  .difference-blob-a,
  .purpose-blob-a,
  .office-blob-a {
    width: 95px;
    height: 46px;
    top: 8px;
    left: 10px;
  }
  .about-blob-b,
  .services-blob-c,
  .process-blob-b {
    width: 85px;
    height: 42px;
    bottom: 6px;
    left: 10px;
  }
  .about-blob-c,
  .difference-blob-b,
  .purpose-blob-b {
    width: 85px;
    height: 42px;
    bottom: 6px;
    right: 10px;
  }
  .office-blob-b {
    width: 85px;
    height: 42px;
    bottom: 6px;
    right: 120px;
  }
  .contact-blob-b {
    width: 100px;
    height: 50px;
    top: 8px;
  }
}

@media (max-width: 600px) {
  .about-blob-a,
  .services-blob-b,
  .process-blob-a,
  .office-blob-c,
  .purpose-blob-c {
    width: 110px;
    height: 68px;
    top: 10px;
    right: 10px;
  }
  .services-blob-a,
  .process-blob-c,
  .difference-blob-a,
  .purpose-blob-a,
  .office-blob-a {
    width: 110px;
    height: 68px;
    top: 10px;
    left: 10px;
  }
  .about-blob-b,
  .process-blob-b,
  .services-blob-c,
  .contact-blob-a {
    width: 110px;
    height: 68px;
    bottom: 10px;
    left: 10px;
  }
  .about-blob-c,
  .difference-blob-b,
  .purpose-blob-b,
  .contact-blob-c {
    width: 110px;
    height: 68px;
    bottom: 10px;
    right: 10px;
  }
  .office-blob-b {
    width: 80px;
    height: 40px;
    bottom: 6px;
    right: 110px;
  }
  .contact-blob-b {
    width: 110px;
    height: 68px;
    top: 10px;
  }
  .difference-blob-c {
    display: none;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: clamp(165px, 22vh, 250px);
  padding-bottom: 150px;
}
.hero .eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 30px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  margin-bottom: 18px;
  border: 1px solid var(--fuchsia);
  border-radius: 999px;
  font: 600 12px/1 var(--sans);
  letter-spacing: 0.1em;
  color: #f5a9c6;
}
.status-dot {
  display: inline-block;
  background: var(--green);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  margin-right: 11px;
  box-shadow: 0 0 0 4px rgba(27, 154, 67, 0.22);
}
.hero h1 {
  font-size: clamp(78px, 7.6vw, 116px);
  line-height: 0.96;
  max-width: 700px;
  letter-spacing: -0.055em;
}
.hero-line {
  animation: side-in 1.1s var(--ease) both;
}
.hero-line:nth-child(2) {
  animation-delay: 0.14s;
}
.hero-line:nth-child(3) {
  animation-delay: 0.28s;
}
.hero-line:nth-child(4) {
  animation-delay: 0.42s;
}
.hero-line:nth-child(5) {
  animation-delay: 0.56s;
}
.hero-line:nth-child(6) {
  animation-delay: 0.7s;
}
.hero h1 em {
  color: var(--fuchsia);
  background-image: linear-gradient(
    180deg,
    var(--fuchsia) 0%,
    var(--fuchsia) 38%,
    #ffe6f2 50%,
    var(--fuchsia) 62%,
    var(--fuchsia) 100%
  );
  background-size: 100% 320%;
  background-position: 0 0%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: nayumi-shine 6s ease-in-out infinite;
}
.hero-description {
  margin-top: 29px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 13px;
  margin-top: 29px;
}
.hero-enter {
  animation: side-in 1.1s 0.82s var(--ease) both;
}
.hero-bottom {
  animation: side-in 1.1s 0.95s var(--ease) both;
}
.hero-note {
  position: absolute;
  z-index: 3;
  right: 5.5%;
  bottom: 145px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 19px 25px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(7, 26, 56, 0.12);
  border-radius: 4px;
  font-size: 13px;
  color: var(--dark);
}
.hero-note small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-top: 3px;
}
.connection-icon {
  font-size: 38px;
  font-weight: 400;
  color: var(--fuchsia);
  line-height: 1;
}
.hero-bottom {
  position: absolute;
  bottom: 34px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.scroll-cue {
  display: flex;
  align-items: center;
  gap: 12px;
}
.scroll-line {
  width: 1px;
  height: 25px;
  background: var(--fuchsia);
  position: relative;
  overflow: hidden;
}
.scroll-line:after {
  content: '';
  height: 11px;
  width: 1px;
  background: var(--cream);
  position: absolute;
  top: -11px;
  animation: scroll-line 2s infinite;
}
.coordinate {
  margin-left: 30px;
  color: #7e9ebf;
}
.services {
  position: relative;
  z-index: 4;
  background: var(--bg-main);
  border-radius: 20px 20px 0 0;
  margin-top: -18px;
  padding-bottom: 100px;
}
.service-jumps {
  display: flex;
  gap: 30px;
  margin-top: 38px;
  border-bottom: 1px solid var(--line);
}
.service-jumps a {
  padding: 14px 0;
  font-size: 14px;
  border-bottom: 2px solid transparent;
}
.service-jumps a.active {
  border-color: var(--blue);
}
.service-jumps span {
  font-size: 10px;
  vertical-align: super;
  margin-left: 10px;
  color: var(--muted);
}
.home-story {
  padding-top: 60px;
  scroll-margin-top: 40px;
}
.chapter-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 25px;
}
.home-stack {
  padding-bottom: 35px;
}
.home-card {
  height: 580px;
  position: sticky;
  top: calc(93px + var(--card) * 10px);
  isolation: isolate;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 32px;
  box-shadow: 0 -9px 38px rgba(9, 38, 75, 0.06);
  background: var(--card-bg);
  border: 1px solid rgba(9, 38, 75, 0.12);
}
.home-card > img {
  position: absolute;
  right: 0;
  top: 0;
  width: 76%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  mask-image: linear-gradient(90deg, transparent, #000 25%);
}
.home-card > img.left-object {
  right: -17%;
  width: 83%;
  object-position: 73% 18%;
  mask-image: linear-gradient(90deg, transparent, #000 15%);
}
.home-card:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, var(--card-bg) 3%, var(--card-bg) 22%, transparent 60%);
  pointer-events: none;
}
.card-copy {
  position: relative;
  z-index: 1;
  padding: 45px 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 57%;
}
.card-number {
  font-size: 11px;
  letter-spacing: 0.15em;
}
.card-copy h3 {
  font-size: clamp(42px, 4.8vw, 72px);
  margin-top: auto;
  margin-bottom: 22px;
}
.card-copy .service-name {
  font-size: 15px;
  font-weight: 650;
  color: var(--ink);
  margin-bottom: 7px;
}
.card-copy > p:not(.service-name) {
  font-size: 15px;
  max-width: 265px;
  color: var(--muted);
}
.card-copy .text-link {
  margin-top: 20px;
  font-size: 13px;
}
.card-stamp {
  position: absolute;
  right: 25px;
  bottom: 25px;
  z-index: 1;
  writing-mode: vertical-rl;
  letter-spacing: 0.16em;
  font-size: 9px;
  color: var(--muted);
}
.business {
  padding-top: 100px;
  scroll-margin-top: 15px;
}
.business .compact {
  margin-bottom: 45px;
}
.business-gallery {
  display: flex;
  gap: 12px;
  height: 500px;
  perspective: 1400px;
}
.business-panel {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  border-radius: 7px;
  overflow: hidden;
  background: var(--bg-trans);
  transition:
    flex-grow 0.8s var(--ease),
    transform 0.8s var(--ease);
  isolation: isolate;
}
.business-panel.is-active {
  flex-grow: 3.5;
}
.business-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% 38%;
  transition:
    filter 0.7s,
    transform 1.2s var(--ease);
  filter: saturate(0.55);
}
.business-panel.is-active > img {
  filter: saturate(1);
  transform: scale(1.04);
}
.business-panel:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    0deg,
    var(--bg-trans) 0%,
    rgba(226, 236, 246, 0.94) 14%,
    transparent 55%
  );
}
.panel-trigger {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  text-align: left;
}
.panel-trigger:focus-visible {
  outline-offset: -6px;
}
.panel-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 11px;
  letter-spacing: 0.13em;
}
.panel-title {
  position: absolute;
  left: 22px;
  bottom: 34px;
  font-family: var(--serif);
  font-size: 31px;
  letter-spacing: -0.03em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transition: bottom 0.6s;
}
.is-active .panel-title {
  writing-mode: horizontal-tb;
  transform: none;
  bottom: 130px;
  font-size: 38px;
  left: 27px;
}
.panel-plus {
  position: absolute;
  right: 18px;
  bottom: 22px;
  border-radius: 50%;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(9, 38, 75, 0.25);
  font-size: 20px;
}
.is-active .panel-plus {
  top: 17px;
  bottom: auto;
}
.panel-detail {
  position: absolute;
  z-index: 2;
  left: 27px;
  right: 20px;
  bottom: 25px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition:
    opacity 0.3s,
    transform 0.5s;
}
.is-active .panel-detail {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-delay: 0.2s;
}
.panel-detail p {
  font-size: 14px;
  line-height: 1.5;
}
.panel-detail .text-link {
  font-size: 12px;
  margin-top: 8px;
  gap: 14px;
}
.gallery-hint {
  text-align: right;
  font-size: 9px;
  letter-spacing: 0.17em;
  margin-top: 20px;
  color: var(--muted);
}
.gallery-hint span {
  font-size: 23px;
  margin-left: 15px;
}
.about {
  position: relative;
  z-index: 0;
  border-top: 1px solid var(--line);
  background: var(--bg-main);
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 70px;
  align-items: center;
}
.about-copy h2 {
  font-size: clamp(43px, 4.7vw, 67px);
  margin-bottom: 28px;
}
.about-copy > p {
  color: var(--muted);
  max-width: 550px;
  margin-bottom: 16px;
}
.about-copy .text-link {
  margin-top: 10px;
}
.about-symbol {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-symbol > img {
  width: 100px;
  height: 100px;
  z-index: 1;
}
.orbit {
  position: absolute;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  border: 1px solid rgba(70, 189, 242, 0.35);
}
.orbit-one {
  transform: translate(-12%, -9%);
}
.orbit-two {
  transform: translate(12%, -9%);
}
.orbit-three {
  transform: translateY(12%);
}
.orbit-one:after {
  content: '';
  width: 8px;
  height: 8px;
  position: absolute;
  left: 10%;
  top: 15%;
  border-radius: 50%;
  background: var(--sky);
}
.about-symbol > span {
  position: absolute;
  bottom: -10px;
  font-size: 9px;
  letter-spacing: 0.18em;
}
.beliefs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 90px;
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.beliefs > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--serif);
  font-size: 31px;
}
.beliefs i {
  font: 11px var(--sans);
  color: var(--muted);
}
.process {
  position: relative;
  z-index: 0;
  background: var(--bg-main);
}
.process .split-heading {
  margin-bottom: 65px;
}
.process-line {
  height: 1px;
  background: var(--line);
  position: relative;
  width: calc(100% - 16%);
  margin-left: 17px;
}
.process-line > span {
  position: absolute;
  inset: 0;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.8s var(--ease);
}
.process.is-visible .process-line > span {
  transform: scaleX(1);
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.step-num {
  width: 35px;
  height: 35px;
  border: 1px solid var(--blue);
  background: var(--cream);
  border-radius: 50%;
  font-size: 10px;
  display: grid;
  place-items: center;
  margin-top: -18px;
  position: relative;
}
.steps h3 {
  font-family: var(--sans);
  letter-spacing: -0.02em;
  font-size: 17px;
  font-weight: 550;
  line-height: 1.35;
  margin: 30px 0 13px;
}
.steps p {
  font-size: 14px;
  color: var(--muted);
}
.steps li:nth-child(2) {
  transition-delay: 0.12s;
}
.steps li:nth-child(3) {
  transition-delay: 0.24s;
}
.steps li:nth-child(4) {
  transition-delay: 0.36s;
}
.steps li:nth-child(5) {
  transition-delay: 0.48s;
}
.difference {
  position: relative;
  z-index: 0;
  background: #cfe6f8;
  overflow: hidden;
}
.difference-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.difference-intro {
  max-width: 370px;
  color: var(--muted);
  margin-top: 30px;
}
.depth-controls {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
}
.round-button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(9, 38, 75, 0.27);
  border-radius: 50%;
  background: transparent;
  transition:
    background 0.3s,
    color 0.3s;
}
.round-button:hover {
  background: var(--ink);
  color: var(--cream);
}
.depth-controls > span {
  font-size: 11px;
  letter-spacing: 0.12em;
}
.value-deck {
  position: relative;
  min-height: 460px;
  perspective: 1200px;
  margin: 15px 25px 20px 0;
  touch-action: pan-y;
}
.value-card {
  position: absolute;
  inset: 0;
  padding: 40px;
  background: var(--cream);
  border: 1px solid rgba(9, 38, 75, 0.1);
  border-radius: 9px;
  box-shadow: 0 18px 45px rgba(7, 26, 56, 0.08);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.9s var(--ease),
    opacity 0.7s,
    background 0.7s;
  transform-origin: center bottom;
}
.value-card.current {
  transform: translate(0, 0) rotate(-3deg);
  z-index: 3;
  opacity: 1;
}
.value-card.next {
  transform: translate(20px, -4px) rotate(4deg) scale(0.96);
  z-index: 2;
  background: #e2ecf6;
}
.value-card.back {
  transform: translate(39px, -8px) rotate(10deg) scale(0.92);
  z-index: 1;
  background: #d7e4f1;
}
.value-card:not(.current) > * {
  opacity: 0;
}
.value-icon {
  font-size: 55px;
  position: absolute;
  top: 30px;
  right: 35px;
  line-height: 1;
  color: var(--blue);
}
.value-card h3 {
  font-size: 46px;
  margin-top: 75px;
  margin-bottom: 24px;
}
.value-card > p {
  font-size: 15px;
  color: var(--muted);
  max-width: 330px;
}
.value-bottom {
  border-top: 1px solid var(--line);
  padding-top: 19px;
  margin-top: auto;
  font-size: 8px;
  letter-spacing: 0.12em;
}
.purpose {
  position: relative;
  z-index: 0;
  background: var(--bg-main);
  padding-bottom: 70px;
}
.mission {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 50px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line);
}
.timeline-marker {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  letter-spacing: 0.15em;
  white-space: nowrap;
  height: 25px;
}
.timeline-marker i {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  position: relative;
}
.mission .timeline-marker i:after {
  content: '';
  position: absolute;
  width: 1px;
  height: 170px;
  background: var(--line);
  top: 20px;
  left: 3px;
}
.mission h2 {
  font-size: clamp(39px, 4.5vw, 64px);
}
details {
  max-width: 600px;
  margin-top: 25px;
  font-size: 15px;
  color: var(--muted);
}
summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  color: var(--ink);
  font-size: 14px;
}
summary::-webkit-details-marker {
  display: none;
}
summary > span {
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.3s;
}
details[open] summary > span {
  transform: rotate(45deg);
}
details p {
  padding-top: 16px;
  font-size: 15px;
}
.vision {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: center;
  padding-top: 80px;
}
.vision-copy h2 {
  font-size: clamp(42px, 4.5vw, 65px);
  margin-top: 28px;
}
.vision-copy > p {
  max-width: 370px;
  color: var(--muted);
  margin-top: 25px;
}
.vision-image {
  position: relative;
  overflow: hidden;
  border-radius: 50% 50% 5px 5px;
  background: var(--dark);
  aspect-ratio: 1/1.15;
}
.vision-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  transition: transform 1.5s var(--ease);
}
.vision-image:hover > img {
  transform: scale(1.035);
}
.vision-image:after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(0deg, rgba(7, 26, 56, 0.74), transparent 25%);
}
.vision-image figcaption {
  position: absolute;
  z-index: 1;
  left: 30px;
  right: 30px;
  bottom: 28px;
  color: var(--cream);
  font-size: 8px;
  letter-spacing: 0.13em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vision-image figcaption span {
  font-size: 25px;
}
.office {
  position: relative;
  z-index: 0;
  padding-top: 90px;
  background: var(--bg-main);
}
.office-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
  align-items: center;
  max-width: 1130px;
}
.office-photo-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  width: 100%;
}
.office-photo {
  position: relative;
  width: 100%;
  max-width: 350px;
  margin-inline: auto;
  transform: rotate(-3deg);
  border: 10px solid #ffffff;
  box-shadow: 0 18px 36px rgba(7, 26, 56, 0.12);
}
.office-photo-secondary {
  transform: rotate(2.5deg);
  max-width: 420px;
}
.office-photo > img {
  width: 100%;
  aspect-ratio: 0.75;
  object-fit: cover;
  object-position: 50% 25%;
  filter: brightness(1.02) contrast(1.02);
  height: auto;
}
.office-photo-secondary > img {
  aspect-ratio: 1.05;
  object-position: 32% 42%;
}
.office-photo figcaption {
  padding: 19px 10px 11px;
  background: #ffffff;
  font-size: 8px;
  letter-spacing: 0.12em;
}
.office-photo figcaption i {
  width: 6px;
  height: 6px;
}
.office-copy h2 {
  font-size: clamp(42px, 4.7vw, 65px);
  margin-bottom: 27px;
}
.office-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
}
.office-copy address {
  font-style: normal;
  margin-top: 27px;
  font-size: 15px;
  font-weight: 550;
}
.office-copy address span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 4px;
}
.office-copy .text-link {
  margin-top: 14px;
}
.office-hours {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 24px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.contact {
  position: relative;
  z-index: 0;
  background: var(--bg-main);
  color: var(--dark);
  overflow: hidden;
  padding-block: 100px;
}
.contact-image {
  position: absolute;
  right: -8%;
  top: 0;
  width: 80%;
  height: 75%;
  object-fit: cover;
  object-position: 65% 20%;
  opacity: 0.52;
}
.contact-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg-main), transparent 80%),
    linear-gradient(0deg, var(--bg-main) 0%, rgba(244, 247, 251, 0.9) 20%, transparent 65%);
}
.contact-content {
  position: relative;
  z-index: 1;
}
.contact h2 {
  font-size: clamp(60px, 7.8vw, 112px);
  margin-top: 30px;
  color: var(--dark);
}
.contact h2 em {
  color: #ff5d93;
}
.contact-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  max-width: 1030px;
  margin-top: 65px;
}
.contact-paths > article {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 30px;
  scroll-margin-top: 110px;
}
.contact-paths .eyebrow {
  font-size: 10px;
  color: #b5cce5;
}
.contact-paths h3 {
  font-size: 32px;
  margin-top: 20px;
  margin-bottom: 15px;
  letter-spacing: -0.025em;
}
.contact-paths p {
  font-size: 15px;
  color: #c2d5ea;
  margin-bottom: 25px;
}
.contact-phone {
  font-size: 13px;
  display: inline-block;
  margin-left: 20px;
  color: #b5cce5;
}
.footer {
  padding: 55px 0 25px;
  background: var(--bg-main);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 44px;
}
.footer-top > p {
  font-size: 13px;
  color: var(--muted);
  margin-right: auto;
  margin-left: 80px;
}
.back-top {
  display: flex;
  gap: 25px;
  align-items: center;
  font-size: 12px;
}
.back-top span {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  background: var(--cream);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 23px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  color: var(--muted);
}
.js-motion .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.9s var(--ease),
    transform 1s var(--ease);
}
.js-motion .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes line-in {
  from {
    opacity: 0;
    transform: translateY(35px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}
@keyframes breathe {
  50% {
    opacity: 0.5;
    transform: scale(1.6);
  }
}
@keyframes scroll-line {
  to {
    transform: translateY(36px);
  }
}
@keyframes header-in {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: none;
  }
}
@keyframes top-in {
  from {
    opacity: 0;
    transform: translateY(-22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes side-in {
  from {
    opacity: 0;
    transform: translateX(46px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}
@keyframes nayumi-shine {
  0%,
  78% {
    background-position: 0 0%;
  }
  88% {
    background-position: 0 100%;
  }
  100% {
    background-position: 0 100%;
  }
}
@media (min-width: 1650px) {
  .hero-art img {
    right: 0;
    width: 100%;
  }
  .hero-content {
    padding-top: 220px;
  }
  .hero-note {
    right: calc((100vw - 1300px) / 2);
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 72px);
  }
  .site-header {
    padding-inline: 36px;
  }
  .desktop-nav {
    gap: 20px;
  }
  .hero h1 {
    font-size: 90px;
  }
  .hero-note {
    right: 36px;
    bottom: 115px;
  }
  .hero .eyebrow {
    max-width: 390px;
  }
  .hero-art img {
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    bottom: auto;
    object-fit: cover;
    object-position: 78% 35%;
  }
  .hero-art:after {
    background:
      linear-gradient(
        90deg,
        var(--bg-main) 0%,
        rgba(244, 247, 251, 0.9) 48%,
        rgba(244, 247, 251, 0.15) 84%
      ),
      linear-gradient(0deg, var(--bg-main) 0%, transparent 30%);
  }
  .home-card {
    height: 540px;
  }
  .card-copy {
    padding: 35px;
    width: 62%;
  }
  .card-copy h3 {
    font-size: 58px;
  }
  .business-gallery {
    height: 440px;
  }
  .panel-title {
    font-size: 26px;
  }
  .is-active .panel-title {
    font-size: 32px;
    bottom: 140px;
  }
  .panel-detail p {
    font-size: 13px;
  }
  .about-layout {
    gap: 45px;
  }
  .difference-layout {
    gap: 60px;
  }
  .value-card {
    padding: 30px;
  }
  .value-card h3 {
    font-size: 39px;
  }
  .vision {
    gap: 40px;
  }
  .office-layout {
    gap: 65px;
  }
  .contact-phone {
    display: block;
    margin: 13px 0 0;
  }
  .footer-top > p {
    margin-left: 30px;
  }
  .contact-paths {
    gap: 40px;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .section-pad {
    padding-block: 80px;
  }
  .site-header {
    padding: 20px 24px;
  }
  .desktop-nav {
    display: none;
  }
  .header-contact {
    margin-left: auto;
  }
  .hero {
    height: 880px;
    min-height: 0;
    max-height: none;
  }
  .hero-content {
    padding-top: 170px;
  }
  .hero h1 {
    font-size: 84px;
  }
  .hero-art img {
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    bottom: auto;
    object-fit: cover;
    object-position: 80% 35%;
    opacity: 0.63;
  }
  .hero-art:after {
    background:
      linear-gradient(
        90deg,
        var(--bg-main) 0%,
        rgba(244, 247, 251, 0.9) 52%,
        rgba(244, 247, 251, 0.16) 88%
      ),
      linear-gradient(0deg, var(--bg-main) 0%, transparent 34%);
  }
  .hero-note {
    bottom: 105px;
    right: 24px;
  }
  .hero-bottom {
    bottom: 28px;
  }
  .hero .eyebrow {
    max-width: 100%;
    font-size: 10px;
  }
  .hero h1 {
    max-width: 600px;
  }
  .split-heading {
    gap: 25px;
    align-items: flex-start;
  }
  .split-heading > p {
    max-width: 230px;
    font-size: 14px;
  }
  .chapter-label .micro {
    display: none;
  }
  .home-card {
    height: 510px;
  }
  .card-copy {
    width: 66%;
    padding: 30px;
  }
  .card-copy h3 {
    font-size: 52px;
  }
  .card-copy > p:not(.service-name) {
    max-width: 230px;
  }
  .home-card > img {
    right: -15%;
    width: 90%;
  }
  .business {
    padding-top: 65px;
  }
  .business-gallery {
    gap: 7px;
  }
  .is-active .panel-title {
    font-size: 28px;
    left: 19px;
  }
  .panel-detail {
    left: 19px;
    right: 15px;
  }
  .panel-detail .text-link {
    font-size: 11px;
    gap: 7px;
  }
  .about-layout {
    grid-template-columns: 0.65fr 1fr;
    gap: 30px;
  }
  .about-copy h2 {
    font-size: 43px;
  }
  .about-copy > p {
    font-size: 14px;
  }
  .about-symbol > img {
    width: 75px;
  }
  .beliefs {
    margin-top: 60px;
  }
  .steps {
    gap: 16px;
  }
  .steps h3 {
    font-size: 14px;
  }
  .steps p {
    font-size: 13px;
  }
  .difference-layout {
    gap: 40px;
    grid-template-columns: 0.9fr 1.1fr;
  }
  .difference h2 {
    font-size: 48px;
  }
  .value-deck {
    min-height: 450px;
    margin-right: 15px;
  }
  .value-card {
    padding: 25px;
  }
  .value-card h3 {
    font-size: 34px;
  }
  .value-card > p {
    font-size: 14px;
  }
  .value-icon {
    right: 25px;
    top: 25px;
  }
  .value-bottom {
    font-size: 7px;
  }
  .mission {
    grid-template-columns: 0.5fr 2fr;
    gap: 25px;
  }
  .mission h2 {
    font-size: 43px;
  }
  .vision {
    gap: 30px;
  }
  .vision-copy h2 {
    font-size: 44px;
  }
  .vision-image {
    aspect-ratio: 1/1.5;
  }
  .vision-image figcaption {
    left: 20px;
    right: 20px;
    font-size: 7px;
  }
  .office-layout {
    gap: 45px;
  }
  .office-copy h2 {
    font-size: 45px;
  }
  .office-photo {
    border-width: 7px;
  }
  .footer-top > p {
    margin-left: 0;
  }
  .contact-image {
    width: 90%;
    right: 0;
    object-position: 78% 22%;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 85px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .section-pad {
    padding-block: 65px;
  }
  h2 {
    font-size: 43px;
  }
  .section-index {
    font-size: 9px;
    margin-bottom: 26px;
    letter-spacing: 0.14em;
  }
  .eyebrow {
    font-size: 10px;
  }
  .site-header {
    padding: 17px 20px;
    gap: 14px;
  }
  .site-header.scrolled {
    padding-block: 11px;
  }
  .brand > span {
    font-size: 31px;
  }
  .brand small {
    font-size: 6.5px;
  }
  .brand img {
    width: 36px;
    height: 36px;
  }
  .header-contact {
    display: none;
  }
  .menu-toggle {
    display: flex;
    margin-left: auto;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    padding: 12px;
  }
  .scrolled .menu-toggle {
    border-color: var(--line);
  }
  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 0.3s;
  }
  .menu-toggle[aria-expanded='true'] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded='true'] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .mobile-menu:not([hidden]) {
    display: flex;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100dvh - 80px);
    background: var(--bg-main);
    color: var(--ink);
    padding: 40px 25px;
    flex-direction: column;
    gap: 20px;
  }
  .mobile-menu a {
    display: flex;
    justify-content: space-between;
    font: 36px var(--serif);
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
  }
  .mobile-menu a span {
    font: 12px var(--sans);
  }
  .menu-open .site-header {
    position: fixed;
    background: var(--bg-main);
    color: var(--ink);
  }
  .hero {
    height: 850px;
    min-height: 100svh;
  }
  .hero-content {
    padding-top: 130px;
    padding-bottom: 0;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 0.13em;
    margin-bottom: 26px;
    max-width: 280px;
    line-height: 1.8;
  }
  .status-dot {
    margin-right: 7px;
    width: 5px;
    height: 5px;
  }
  .hero h1 {
    font-size: clamp(62px, 15.8vw, 94px);
    line-height: 0.98;
  }
  .hero-description {
    font-size: 14px;
    margin-top: 24px;
    max-width: 300px;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }
  .hero-actions .button {
    font-size: 12px;
    padding: 13px 17px;
    gap: 18px;
    min-height: 50px;
    flex: 1;
    max-width: 190px;
  }
  .hero-art img {
    width: 100%;
    height: 460px;
    right: 0;
    top: 0;
    bottom: auto;
    opacity: 0.86;
    object-fit: cover;
    object-position: 52% 28%;
    mask-image: none;
  }
  .hero-art:after {
    background:
      linear-gradient(
        90deg,
        var(--bg-main) 0%,
        rgba(244, 247, 251, 0.88) 42%,
        rgba(244, 247, 251, 0.28) 72%,
        transparent 100%
      ),
      linear-gradient(
        0deg,
        var(--bg-main) 0%,
        rgba(244, 247, 251, 0.2) 42%,
        rgba(244, 247, 251, 0.1) 100%
      );
  }
  .hero-glow {
    display: none;
  }
  .hero-note {
    bottom: 98px;
    right: 20px;
    left: auto;
    padding: 11px 16px;
    gap: 11px;
    font-size: 10px;
    max-width: 255px;
  }
  .hero-note small {
    font-size: 8px;
  }
  .connection-icon {
    font-size: 27px;
  }
  .hero-bottom {
    padding-top: 18px;
    font-size: 8px;
    bottom: 30px;
  }
  .hero-bottom .coordinate {
    display: none;
  }
  .services {
    border-radius: 13px 13px 0 0;
    margin-top: -13px;
  }
  .split-heading {
    display: block;
  }
  .split-heading > p {
    margin-top: 25px;
    font-size: 14px;
    max-width: 300px;
  }
  .service-jumps {
    gap: 30px;
    margin-top: 25px;
  }
  .service-jumps a {
    font-size: 13px;
  }
  .home-story {
    padding-top: 36px;
  }
  .chapter-label {
    padding-bottom: 19px;
  }
  .chapter-label .eyebrow {
    font-size: 9px;
    letter-spacing: 0.1em;
  }
  .home-stack {
    padding-bottom: 0;
  }
  .home-card {
    height: 640px;
    top: 90px;
    position: relative;
    margin-bottom: 22px;
    box-shadow: none;
  }
  .home-card > img {
    width: 115%;
    height: 65%;
    right: -5%;
    top: auto;
    bottom: 0;
    object-fit: cover;
    object-position: 60% 60%;
    mask-image: linear-gradient(0deg, #000 72%, transparent 100%);
  }
  .home-card > img.left-object {
    right: -13%;
    width: 115%;
    height: 65%;
    object-position: 73% 18%;
    mask-image: linear-gradient(0deg, #000 72%, transparent 100%);
  }
  .home-card:after {
    background: linear-gradient(180deg, var(--card-bg) 0%, var(--card-bg) 33%, transparent 56%);
  }
  .card-copy {
    width: 100%;
    padding: 26px;
    justify-content: flex-start;
  }
  .card-copy .card-number {
    font-size: 9px;
  }
  .card-copy h3 {
    font-size: 47px;
    line-height: 1.02;
    margin-top: 21px;
    margin-bottom: 13px;
  }
  .card-copy .service-name {
    font-size: 13px;
    margin-bottom: 4px;
  }
  .card-copy > p:not(.service-name) {
    font-size: 13px;
    line-height: 1.5;
    max-width: 235px;
  }
  .card-copy .text-link {
    font-size: 11px;
    margin-top: 8px;
    padding-block: 7px;
    gap: 18px;
  }
  .card-stamp {
    font-size: 7px;
    right: 16px;
    bottom: 18px;
  }
  .business {
    padding-top: 65px;
  }
  .business .compact {
    margin-bottom: 28px;
  }
  .split-heading.compact h2 {
    font-size: 42px;
  }
  .business-gallery {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .business-panel {
    flex: none !important;
    height: 78px;
    transition: height 0.65s var(--ease);
  }
  .business-panel.is-active {
    height: 420px;
  }
  .business-panel > img {
    object-position: center 54%;
    opacity: 0.65;
  }
  .business-panel.is-active > img {
    opacity: 1;
    object-position: center 30%;
  }
  .business-panel:after {
    background: linear-gradient(
      0deg,
      var(--bg-trans) 0%,
      rgba(226, 236, 246, 0.93) 16%,
      transparent 65%
    );
  }
  .panel-number {
    top: 30px;
    left: 20px;
    font-size: 10px;
  }
  .panel-title {
    font-size: 27px;
    writing-mode: horizontal-tb;
    transform: none;
    left: 58px;
    bottom: 23px;
  }
  .is-active .panel-title {
    left: 24px;
    bottom: 130px;
    font-size: 36px;
  }
  .panel-plus {
    bottom: 24px;
    right: 18px;
    width: 29px;
    height: 29px;
  }
  .panel-detail {
    left: 24px;
    bottom: 24px;
  }
  .panel-detail p {
    font-size: 14px;
  }
  .panel-detail .text-link {
    font-size: 12px;
  }
  .gallery-hint {
    font-size: 8px;
  }
  .about-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .about-copy {
    order: -1;
  }
  .about-copy h2 {
    font-size: 44px;
  }
  .about-copy > p {
    font-size: 15px;
  }
  .about-symbol {
    width: 230px;
    margin-top: 5px;
    margin-bottom: 20px;
  }
  .about-symbol > img {
    width: 85px;
  }
  .beliefs {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 20px;
    padding-top: 20px;
  }
  .beliefs > span {
    font-size: 22px;
  }
  .process .split-heading {
    margin-bottom: 40px;
  }
  .process-line {
    display: none;
  }
  .steps {
    display: block;
    border-left: 1px solid rgba(0, 143, 232, 0.35);
    margin-left: 17px;
  }
  .steps li {
    padding: 0 0 33px 33px;
    position: relative;
  }
  .steps li:last-child {
    padding-bottom: 0;
  }
  .step-num {
    position: absolute;
    left: -18px;
    top: 0;
    margin: 0;
  }
  .steps h3 {
    font-size: 18px;
    margin: 0 0 8px;
    padding-top: 5px;
  }
  .steps p {
    font-size: 14px;
    max-width: 260px;
  }
  .difference-layout {
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: stretch;
  }
  .difference h2 {
    font-size: 49px;
  }
  .difference-intro {
    font-size: 15px;
    margin-top: 22px;
  }
  .depth-controls {
    margin-top: 25px;
  }
  .value-deck {
    min-height: 420px;
    margin: 12px 28px 20px 5px;
  }
  .value-card {
    padding: 30px;
  }
  .value-card h3 {
    font-size: 40px;
    margin-top: 60px;
    margin-bottom: 22px;
  }
  .value-card > p {
    font-size: 14px;
  }
  .value-bottom {
    font-size: 7px;
    line-height: 1.7;
  }
  .mission {
    grid-template-columns: 1fr;
    gap: 21px;
    padding-bottom: 40px;
  }
  .mission .timeline-marker i:after {
    display: none;
  }
  .mission h2 {
    font-size: 42px;
  }
  .timeline-marker {
    font-size: 9px;
  }
  .mission details {
    margin-top: 20px;
  }
  .vision {
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding-top: 45px;
  }
  .vision-copy h2 {
    font-size: 45px;
    margin-top: 23px;
  }
  .vision-copy > p {
    font-size: 15px;
  }
  .vision-image {
    width: 100%;
    aspect-ratio: 1/1.15;
    max-width: 440px;
  }
  .vision-image figcaption {
    font-size: 7px;
  }
  .office-layout {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }
  .office-copy {
    order: -1;
  }
  .office-copy h2 {
    font-size: 48px;
  }
  .office-photo-stack {
    padding: 0;
  }
  .office-photo {
    width: 75%;
    margin: 10px auto 15px;
  }
  .office-photo-secondary {
    transform: rotate(2deg);
  }
  .office-photo figcaption {
    font-size: 7px;
  }
  .contact {
    padding-block: 70px;
  }
  .contact-image {
    width: 100%;
    right: 0;
    height: 45%;
    opacity: 0.4;
    object-position: 80% 25%;
  }
  .contact-shade {
    background:
      linear-gradient(0deg, var(--bg-main) 40%, transparent 100%),
      linear-gradient(90deg, rgba(244, 247, 251, 0.7), transparent);
  }
  .contact .eyebrow {
    font-size: 9px;
  }
  .contact h2 {
    font-size: 58px;
    margin-top: 25px;
  }
  .contact-paths {
    grid-template-columns: 1fr;
    gap: 37px;
    margin-top: 45px;
  }
  .contact-paths > article {
    padding-top: 25px;
  }
  .contact-paths h3 {
    font-size: 29px;
    margin-top: 15px;
  }
  .contact-paths p {
    font-size: 14px;
    margin-bottom: 22px;
  }
  .contact-paths .button {
    font-size: 13px;
  }
  .contact-phone {
    display: inline-block;
    margin: 0 0 0 17px;
    font-size: 12px;
  }
  .footer {
    padding-top: 40px;
    padding-bottom: 82px;
  }
  .footer-top {
    flex-wrap: wrap;
    padding-bottom: 30px;
    gap: 25px;
  }
  .footer-top > p {
    font-size: 11px;
    max-width: 140px;
    margin-left: auto;
    margin-right: 0;
  }
  .back-top {
    width: 100%;
    justify-content: space-between;
  }
  .footer-bottom {
    flex-wrap: wrap;
    font-size: 9px;
    gap: 10px;
  }
  .footer-bottom > span:first-child {
    width: 100%;
  }
}
@media (max-width: 370px) {
  .hero h1 {
    font-size: 59px;
  }
  .hero-actions .button {
    padding-inline: 12px;
    gap: 12px;
  }
  .contact-phone {
    display: block;
    margin: 12px 0 0;
  }
  .panel-title {
    font-size: 23px;
  }
  .value-card h3 {
    font-size: 35px;
  }
  .card-copy h3 {
    font-size: 43px;
  }
}
@media (max-width: 600px) {
  .home-card {
    top: auto;
  }
}
html.reduced-motion {
  scroll-behavior: auto;
}
.reduced-motion *,
.reduced-motion *:before,
.reduced-motion *:after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}
.reduced-motion .reveal {
  opacity: 1 !important;
  transform: none !important;
}
.reduced-motion .hero-art {
  transform: none !important;
  opacity: 1 !important;
}
.reduced-motion .home-card {
  position: relative;
  top: auto;
}
.reduced-motion .hero-line,
.reduced-motion .hero-enter,
.reduced-motion .hero-bottom {
  opacity: 1;
  filter: none;
  transform: none;
}
.reduced-motion .brand,
.reduced-motion .desktop-nav a,
.reduced-motion .header-contact {
  opacity: 1;
  transform: none;
}
.reduced-motion .hero h1 em {
  background-position: 0 0% !important;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .home-card {
    position: relative;
    top: auto;
  }
  .hero-art {
    transform: none !important;
  }
}
/* Scroll Stack: a pinned scene with depth, rather than adjacent sticky cards. */
.home-stack:not(.scroll-stack) .home-card {
  position: relative;
  top: auto;
}
.home-stack.scroll-stack {
  position: relative;
  height: var(--stack-height);
  padding: 0;
}
.scroll-stack .stack-stage {
  position: sticky;
  top: 96px;
  height: calc(var(--stack-card-height) + 128px);
  isolation: isolate;
  clip-path: inset(-8px -40px 0 -40px);
}
.scroll-stack .home-card {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  height: var(--stack-card-height);
  margin: 0;
  border-radius: 18px;
  z-index: calc(var(--card) + 1);
  transform-origin: 50% 0;
  will-change: transform, filter, opacity;
  box-shadow:
    0 18px 35px -22px rgba(9, 38, 75, 0.2),
    0 2px 8px rgba(9, 38, 75, 0.06);
  backface-visibility: hidden;
}
.scroll-stack .card-copy {
  padding: 32px 44px;
}
.scroll-stack .card-copy h3 {
  font-size: clamp(44px, 4.6vw, 68px);
  margin-bottom: 16px;
}
.scroll-stack .card-copy .text-link {
  margin-top: 14px;
  padding-block: 8px;
}
.stack-controls:not([hidden]) {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 35px;
  min-height: 56px;
  background: var(--bg-main);
  box-shadow: 0 -9px 16px var(--bg-main);
}
.stack-status {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 285px;
}
.stack-counter {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.stack-name {
  font-size: 14px;
}
.stack-track {
  display: flex;
  gap: 8px;
  flex: 1;
  max-width: 420px;
  margin-left: auto;
}
.stack-track button {
  border: 0;
  background: none;
  min-height: 44px;
  flex: 1;
  padding: 18px 0;
}
.stack-track button > span {
  display: block;
  position: relative;
  height: 3px;
  overflow: hidden;
  border-radius: 3px;
  background: #dce5ee;
}
.stack-track button > span:after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--fuchsia);
  transform: scaleX(var(--stop-progress, 0));
  transform-origin: left;
}
.stack-track button:hover > span {
  background: #b9d1e8;
}
.stack-arrows {
  display: flex;
  gap: 8px;
}
.stack-arrows button:disabled {
  opacity: 0.3;
  cursor: default;
  background: transparent;
  color: var(--ink);
}
.brand > span {
  font-size: 29px;
  letter-spacing: 0.035em;
}
.brand small {
  letter-spacing: 0.18em;
  font-size: 8px;
}
@media (max-width: 800px) {
  .stack-status {
    min-width: 245px;
    gap: 12px;
  }
  .stack-controls:not([hidden]) {
    gap: 18px;
  }
  .scroll-stack .card-copy {
    padding-inline: 30px;
  }
  .scroll-stack .card-copy h3 {
    font-size: 48px;
  }
  .stack-arrows .round-button {
    width: 42px;
    height: 42px;
  }
}
@media (max-width: 600px) {
  .brand > span {
    font-size: 25px;
    letter-spacing: 0.025em;
  }
  .brand small {
    font-size: 7px;
  }
}
/* Readable labels across every viewport; compact brand lettering is part of the mark. */
.eyebrow,
.hero .eyebrow,
.section-index,
.chapter-label .eyebrow,
.contact .eyebrow,
.contact-paths .eyebrow {
  font-size: 12px;
}
.hero-bottom,
.hero-note small,
.coordinate,
.micro,
.card-number,
.panel-number,
.card-stamp,
.gallery-hint,
.value-bottom,
.timeline-marker,
.vision-image figcaption,
.office-photo figcaption,
.footer-bottom,
.about-symbol > span,
.beliefs i,
.depth-controls > span,
.service-jumps span {
  font-size: 12px;
}
.hero-note,
.button,
.hero-actions .button,
.contact-paths .button,
.service-jumps a,
.card-copy .text-link,
.panel-detail .text-link,
.panel-detail p,
.office-hours,
.contact-phone,
.footer-top > p,
.back-top,
.steps p {
  font-size: 14px;
}
.card-stamp {
  font-size: 10px;
}
.value-bottom {
  line-height: 1.5;
}
.vision-image figcaption {
  line-height: 1.5;
}
.office-photo figcaption {
  line-height: 1.6;
}
.card-copy .text-link {
  gap: 16px;
}
.panel-detail .text-link {
  line-height: 1.4;
  gap: 12px;
}
.contact-paths {
  align-items: start;
}
@media (max-width: 1100px) {
  .business-panel.is-active {
    flex-grow: 4.2;
  }
  .is-active .panel-title {
    bottom: 155px;
  }
}
@media (max-width: 600px) {
  .hero .eyebrow {
    font-size: 11px;
    max-width: 330px;
    margin-bottom: 23px;
  }
  .hero-content {
    padding-top: 125px;
  }
  .hero-bottom {
    font-size: 10px;
  }
  .hero-actions .button {
    padding-inline: 13px;
    gap: 12px;
    font-size: 13px;
  }
  .hero-note small {
    font-size: 11px;
  }
  .hero-note {
    font-size: 12px;
  }
  .eyebrow,
  .section-index,
  .chapter-label .eyebrow,
  .contact .eyebrow,
  .contact-paths .eyebrow {
    font-size: 11px;
    letter-spacing: 0.11em;
  }
  .card-copy .text-link {
    font-size: 13px;
  }
  .panel-detail .text-link {
    font-size: 14px;
  }
  .gallery-hint,
  .value-bottom,
  .vision-image figcaption,
  .office-photo figcaption {
    font-size: 10px;
  }
  .footer-bottom {
    font-size: 12px;
  }
  .footer-top > p {
    font-size: 12px;
  }
  .is-active .panel-title {
    bottom: 137px;
  }
  .contact-phone {
    display: block;
    margin: 14px 0 0;
  }
  .steps h3 {
    font-size: 18px;
  }
  .card-stamp {
    font-size: 9px;
  }
}

/* Content-first opening: identity and actions are never hidden behind an entrance animation. */
/* Flexible text keeps labels and actions usable at narrow widths and larger text sizes. */
h1,
h2,
h3,
p,
a,
label,
summary {
  overflow-wrap: anywhere;
}
.button {
  white-space: normal;
}
.beliefs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.beliefs > span {
  min-width: 0;
  flex-wrap: wrap;
  gap: 6px;
  overflow-wrap: anywhere;
}
@media (max-width: 600px) {
  .beliefs {
    grid-template-columns: 1fr;
  }
  .beliefs > span {
    overflow-wrap: normal;
  }
}
.text-link {
  max-width: 100%;
}
.text-link > span,
.button > span {
  flex-shrink: 0;
}
.split-heading > * {
  min-width: 0;
}
/* Progressive enhancement: every service and value remains readable without scripts. */
html:not(.js-services) .business-gallery {
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
html:not(.js-services) .business-panel {
  height: auto;
  min-height: 460px;
  padding-top: 230px;
}
html:not(.js-services) .panel-title {
  position: relative;
  inset: auto;
  writing-mode: horizontal-tb;
  transform: none;
  display: block;
  margin: 0 24px 18px;
  font-size: 32px;
}
html:not(.js-services) .panel-detail {
  position: relative;
  inset: auto;
  opacity: 1;
  transform: none;
  visibility: visible;
  padding: 0 24px 26px;
}
html:not(.js-services) .panel-trigger {
  display: none;
}
html:not(.js-values) .value-deck {
  display: grid;
  gap: 20px;
  min-height: 0;
}
html:not(.js-values) .value-card {
  position: relative;
  inset: auto;
  transform: none;
  opacity: 1;
  visibility: visible;
  height: auto;
  min-height: 420px;
}
html:not(.js-values) .depth-controls {
  display: none;
}
@media (min-width: 601px) and (max-width: 800px) {
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 50%;
    padding: 12px;
  }
  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
  }
  .mobile-menu:not([hidden]) {
    display: flex;
    position: fixed;
    inset: 90px 0 0;
    background: var(--bg-main);
    color: var(--ink);
    padding: 40px;
    flex-direction: column;
    gap: 24px;
    overflow: auto;
  }
  .mobile-menu a {
    display: flex;
    justify-content: space-between;
    font: 32px var(--serif);
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu a span {
    font: 14px var(--sans);
  }
  .menu-open .site-header {
    position: fixed;
    background: var(--bg-main);
    color: var(--ink);
  }
}
@media (max-width: 600px) {
  html:not(.js-services) .business-gallery {
    grid-template-columns: 1fr;
  }
  .home-card {
    height: auto;
    min-height: 640px;
  }
  .value-card.current {
    position: relative;
    height: auto;
    min-height: 420px;
  }
}
.hero {
  height: auto;
  min-height: 100svh;
  max-height: none;
}
.hero-content {
  padding-top: clamp(130px, 18svh, 185px);
  padding-bottom: 175px;
}
.hero .eyebrow {
  font-size: 14px;
  max-width: 570px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(48px, 5.6vw, 82px);
  line-height: 1.06;
  max-width: 760px;
  letter-spacing: -0.04em;
}
.hero h1 > span,
.hero h1 > em {
  display: block;
}
.hero h1 > em {
  font-style: normal;
  letter-spacing: 0.035em;
  margin-top: 6px;
}
.hero-description {
  font-size: 18px;
  max-width: 510px;
  line-height: 1.65;
  margin-top: 26px;
}
.hero-actions {
  flex-wrap: wrap;
  margin-top: 26px;
}
.hero-actions .button {
  font-size: 15px;
  min-height: 52px;
}
.hero-services-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
  margin-top: 22px;
  padding-block: 6px;
  border-bottom: 1px solid var(--line);
}
.hero-note {
  bottom: 100px;
}
.agency-intro {
  padding-block: 70px;
}
.agency-intro .about-layout {
  grid-template-columns: minmax(180px, 0.65fr) minmax(0, 1.6fr);
  gap: 55px;
}
.agency-intro .about-symbol {
  max-width: 240px;
  width: 100%;
  justify-self: center;
}
.agency-intro .about-copy h2 {
  font-size: clamp(35px, 3.8vw, 54px);
  line-height: 1.12;
}
.agency-intro .about-copy > p {
  font-size: 16px;
}
.agency-belief {
  margin-top: 46px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  max-width: 760px;
}
.agency-belief h3 {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 12px;
}
.agency-belief > p {
  font-size: 16px;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 18px;
}
.agency-belief .eyebrow {
  font-size: 12px;
  line-height: 1.7;
}
.agency-intro .beliefs {
  margin-top: 32px;
}
@media (max-width: 800px) {
  .hero h1 {
    font-size: clamp(48px, 7.5vw, 64px);
    max-width: 620px;
  }
  .hero-art img {
    opacity: 0.82;
  }
  .agency-intro .about-layout {
    gap: 25px;
  }
}
@media (max-width: 600px) {
  .hero-content {
    padding-top: 122px;
    padding-bottom: 30px;
  }
  .hero .eyebrow {
    font-size: 12px;
    max-width: 340px;
    margin-bottom: 22px;
  }
  .hero h1 {
    font-size: clamp(42px, 10.8vw, 62px);
    max-width: 100%;
  }
  .hero-description {
    font-size: 16px;
    max-width: 370px;
    margin-top: 22px;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }
  .hero-actions .button {
    font-size: 14px;
    flex: 1 1 145px;
    max-width: none;
    padding-inline: 13px;
    gap: 12px;
  }
  .hero-note {
    position: relative;
    inset: auto;
    margin: 10px 20px 110px;
    max-width: calc(100% - 40px);
    width: fit-content;
  }
  .hero-art img {
    opacity: 0.85;
  }
  .hero-bottom {
    flex-wrap: wrap;
    gap: 16px;
  }
  .agency-intro {
    padding-block: 54px;
  }
  .agency-intro .about-layout {
    display: flex;
    gap: 28px;
  }
  .agency-intro .about-copy h2 {
    font-size: clamp(30px, 8.2vw, 43px);
  }
  .agency-intro .about-symbol {
    width: 190px;
  }
  .agency-belief {
    margin-top: 26px;
  }
  .agency-belief h3 {
    font-size: 27px;
  }
}
