:root {
  color-scheme: light;
  --ink: #111111;
  --paper: #f5f5f2;
  --white: #ffffff;
  --muted: #70706b;
  --line: #d9d9d2;
  --soft: #ebebe7;
  --soft-dark: #deded8;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.1);
  --shadow-small: 0 12px 30px rgba(17, 17, 17, 0.08);
  --radius: 22px;
  --radius-small: 12px;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

::selection {
  background: var(--ink);
  color: var(--white);
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  cursor: pointer;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 9px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.cursor-glow {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 460px;
  height: 460px;
  transform: translate3d(calc(var(--pointer-x, 50vw) - 50%), calc(var(--pointer-y, 50vh) - 50%), 0);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 17, 17, 0.065), rgba(17, 17, 17, 0) 66%);
  pointer-events: none;
  transition: transform 700ms var(--ease);
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.section {
  padding: 112px 0;
}

.section-tight {
  padding: 72px 0;
}

.eyebrow,
.section-kicker,
.microcopy,
.tag,
.meta-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
}

.eyebrow::before {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.section-kicker {
  color: var(--muted);
}

.section-kicker::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

.microcopy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 54px;
}

.section-heading h2,
.page-intro h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.section-heading h2 em,
.page-intro h1 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.09em;
}

.section-heading > p,
.page-intro > p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(245, 245, 242, 0.84);
  backdrop-filter: blur(18px);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.045);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand img {
  width: 38px;
  height: 38px;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1.05rem;
  letter-spacing: -0.04em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--ink);
  content: "";
  transition: transform 220ms var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 180ms var(--ease), background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button::after {
  content: "↗";
  font-size: 1.1rem;
  line-height: 1;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-small);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: #333333;
}

.button-light {
  background: transparent;
  color: var(--ink);
}

.button-light:hover {
  background: var(--white);
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.78rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.875rem;
  font-weight: 800;
  transition: gap 180ms ease;
}

.text-link::after {
  content: "↗";
}

.text-link:hover {
  gap: 13px;
}

.hero {
  display: grid;
  min-height: calc(100vh - 82px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(44px, 7vw, 120px);
  padding-top: 84px;
  padding-bottom: 100px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(4rem, 9.3vw, 8.9rem);
  letter-spacing: -0.09em;
  line-height: 0.86;
}

.hero h1 em {
  display: block;
  padding-left: 0.75em;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.91em;
  font-weight: 400;
  letter-spacing: -0.1em;
}

.hero-lede {
  max-width: 500px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-art {
  position: relative;
  min-height: 570px;
  isolation: isolate;
}

.hero-art::before {
  position: absolute;
  top: 7%;
  left: 6%;
  width: 76%;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.hero-art::after {
  position: absolute;
  top: 14%;
  right: 2%;
  width: 54%;
  height: 54%;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
  opacity: 0.16;
}

.hero-orbit {
  position: absolute;
  top: 6%;
  right: 3%;
  width: 85%;
  aspect-ratio: 1;
  animation: orbit 18s linear infinite;
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.hero-orbit::before {
  top: 6%;
  left: 16%;
}

.hero-orbit::after {
  right: 9%;
  bottom: 28%;
  width: 8px;
  height: 8px;
  background: var(--muted);
}

.hero-card {
  position: absolute;
  z-index: 2;
  top: 18%;
  right: 8%;
  width: min(370px, 80%);
  min-height: 300px;
  padding: 28px;
  transform: rotate(4deg);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  animation: float-card 7s ease-in-out infinite;
}

.hero-card::before {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 76px;
  height: 76px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
}

.hero-card::after {
  position: absolute;
  right: 48px;
  bottom: 48px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.hero-card-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card h2 {
  max-width: 240px;
  margin: 44px 0 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.08em;
  line-height: 0.95;
}

.hero-card p {
  max-width: 220px;
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
}

.hero-note {
  position: absolute;
  z-index: 3;
  bottom: 12%;
  left: 0;
  display: flex;
  max-width: 220px;
  align-items: start;
  gap: 14px;
  padding: 18px;
  transform: rotate(-6deg);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(12px);
}

.hero-note strong {
  display: block;
  font-size: 1.25rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.hero-note span {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.35;
}

.hero-note-mark {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
}

.announcement {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.announcement-inner {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
}

.announcement p {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.announcement .arrow {
  font-size: 1.4rem;
}

.client-strip {
  padding: 32px 0 0;
}

.strip-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.strip-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.strip-heading span {
  color: var(--muted);
  font-size: 0.7rem;
}

.logo-marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logo-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee 32s linear infinite;
}

.client-logo {
  display: inline-flex;
  min-width: 210px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
  color: #4a4a46;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.client-logo b {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 900;
}

.client-logo:nth-child(3n) b {
  border-radius: 5px;
}

.client-logo:nth-child(4n) b {
  transform: rotate(45deg);
  border-radius: 5px;
}

.client-logo:nth-child(4n) b span {
  transform: rotate(-45deg);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(48px, 8vw, 130px);
  align-items: start;
}

.intro-grid h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.about-photo {
  margin-top: 38px;
}

.intro-copy {
  max-width: 560px;
}

.intro-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.1rem;
}

.signature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.signature-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.signature small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: 28px 20px 24px 0;
  border-right: 1px solid var(--line);
}

.stat:not(:first-child) {
  padding-left: 24px;
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  letter-spacing: -0.09em;
  line-height: 0.9;
}

.stat span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  transition: transform 220ms var(--ease), border-color 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: var(--ink);
  box-shadow: var(--shadow-small);
}

.service-card:nth-child(1) {
  grid-column: span 7;
  background: var(--ink);
  color: var(--white);
}

.service-card:nth-child(2) {
  grid-column: span 5;
}

.service-card:nth-child(3),
.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 4;
}

.service-card .number {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card:nth-child(1) .number {
  color: rgba(255, 255, 255, 0.55);
}

.service-card h3 {
  max-width: 420px;
  margin: 74px 0 10px;
  font-size: clamp(1.7rem, 3vw, 3rem);
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.service-card p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-card:nth-child(1) p {
  color: rgba(255, 255, 255, 0.68);
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
}

.service-card-footer .text-link {
  border-color: currentColor;
}

.service-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.2rem;
}

.service-card:nth-child(1) .service-icon {
  border-color: rgba(255, 255, 255, 0.3);
}

.process {
  background: var(--ink);
  color: var(--white);
}

.process .section-kicker,
.process .section-heading > p {
  color: rgba(255, 255, 255, 0.54);
}

.process .section-heading h2 {
  max-width: 700px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step {
  min-height: 290px;
  padding: 28px 28px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step:not(:first-child) {
  padding-left: 28px;
}

.process-step:last-child {
  border-right: 0;
}

.process-step .step-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
}

.process-step h3 {
  margin: 70px 0 12px;
  font-size: 1.7rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.process-step p {
  max-width: 260px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
}

.quote-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: end;
  padding: clamp(28px, 6vw, 72px);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
}

.quote-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.quote-avatar {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}

.quote-meta strong {
  display: block;
  font-size: 0.9rem;
}

.quote-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.5vw, 3.6rem);
  letter-spacing: -0.06em;
  line-height: 1.03;
}

.cta {
  padding: 100px 0;
  background: var(--soft);
}

.cta-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.cta h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 7.5rem);
  letter-spacing: -0.1em;
  line-height: 0.87;
}

.cta h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.cta-copy {
  max-width: 310px;
}

.cta-copy p {
  margin: 0 0 24px;
  color: var(--muted);
}

.site-footer {
  padding: 64px 0 28px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 64px;
  padding-bottom: 70px;
}

.footer-brand .brand-copy small,
.site-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.5);
}

.footer-brand p {
  max-width: 300px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.footer-label {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--white);
}

.site-credit {
  position: fixed;
  z-index: 30;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: min(300px, calc(100vw - 32px));
  padding: 9px 10px 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.86);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.14);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.66rem;
  line-height: 1.2;
  backdrop-filter: blur(12px);
}

.site-credit-link {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 22px;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.site-credit-link strong {
  margin-left: 4px;
  color: var(--white);
}

.site-credit-link:hover,
.site-credit-link:focus-visible {
  color: var(--white);
}

.site-credit button {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.site-credit button:hover,
.site-credit button:focus-visible {
  border-color: var(--white);
  color: var(--white);
}

.site-credit[hidden] {
  display: none;
}

.page-hero {
  padding: 110px 0 86px;
  border-bottom: 1px solid var(--line);
}

.page-intro {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 60px;
  align-items: end;
}

.page-intro h1 {
  max-width: 800px;
}

.page-intro > p {
  padding-bottom: 8px;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 40px;
}

.tag {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-detail {
  position: relative;
  min-height: 410px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-detail:nth-child(3n) {
  background: var(--ink);
  color: var(--white);
}

.service-detail:nth-child(3n) .meta-label,
.service-detail:nth-child(3n) p,
.service-detail:nth-child(3n) li {
  color: rgba(255, 255, 255, 0.58);
}

.service-detail .meta-label {
  color: var(--muted);
}

.service-detail h2 {
  max-width: 480px;
  margin: 76px 0 14px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.08em;
  line-height: 0.92;
}

.service-detail > p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
}

.service-detail ul {
  display: grid;
  gap: 6px;
  max-width: 430px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.service-detail li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--muted);
  font-size: 0.875rem;
}

.service-detail li::before {
  content: "—";
  color: var(--ink);
}

.service-detail:nth-child(3n) li::before {
  color: var(--white);
}

.detail-index {
  position: absolute;
  top: 27px;
  right: 30px;
  font-size: 3.4rem;
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 0.8;
  opacity: 0.1;
}

.offer-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 56px;
  border-radius: var(--radius);
  background: var(--soft);
}

.offer-band h2 {
  max-width: 550px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: -0.08em;
  line-height: 0.94;
}

.offer-band p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
}

.faq {
  max-width: 840px;
  margin: 0 auto;
}

.faq details {
  border-top: 1px solid var(--line);
}

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

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

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

.faq summary::after {
  flex: 0 0 auto;
  font-size: 1.5rem;
  font-weight: 400;
  content: "+";
  transition: transform 180ms ease;
}

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

.faq details p {
  max-width: 690px;
  margin: -6px 0 26px;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-panel {
  min-height: 390px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.about-panel-dark {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--ink);
  color: var(--white);
}

.about-panel h2 {
  max-width: 520px;
  margin: 78px 0 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  letter-spacing: -0.09em;
  line-height: 0.91;
}

.about-panel p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
}

.about-story {
  margin-top: 78px;
}

.about-story p + p {
  margin-top: 22px;
}

.about-panel-dark p {
  color: rgba(255, 255, 255, 0.58);
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.principle {
  min-height: 250px;
  padding: 26px;
  border-top: 1px solid var(--ink);
}

.principle-number {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.principle h3 {
  margin: 64px 0 12px;
  font-size: 1.45rem;
  letter-spacing: -0.05em;
  line-height: 1;
}

.principle p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.timeline {
  display: grid;
  gap: 0;
  max-width: 880px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

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

.timeline-year {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.timeline-item h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.timeline-item p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 120px;
}

.contact-info h2 {
  max-width: 430px;
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  letter-spacing: -0.09em;
  line-height: 0.91;
}

.contact-info > p {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
}

.contact-photo {
  aspect-ratio: 4 / 3;
  margin: 0 0 32px;
  border-radius: 26px;
}

.contact-list {
  display: grid;
  gap: 22px;
  margin-top: 44px;
}

.contact-photo .contact-list {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  gap: 12px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(17, 17, 17, 0.72);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.contact-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  align-items: start;
}

.contact-photo .contact-item {
  grid-template-columns: 34px minmax(0, 1fr);
  color: var(--white);
  transition: color 220ms ease, transform 220ms var(--ease);
}

.contact-item-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
}

.contact-photo .contact-item-mark {
  border-color: rgba(255, 255, 255, 0.46);
  color: var(--white);
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
}

.contact-item span,
.contact-item a {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.contact-photo .contact-item strong,
.contact-photo .contact-item span {
  color: inherit;
}

.contact-photo .contact-item > span:last-child > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  line-height: 1.35;
}

.contact-photo .contact-item:hover,
.contact-photo .contact-item:focus-visible {
  color: var(--white);
  transform: translateX(3px);
}

.contact-item a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-form-card {
  padding: clamp(24px, 5vw, 56px);
  scroll-margin-top: 7rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.contact-form-card h2 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.07em;
  line-height: 1;
}

.contact-form-card > p {
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.78rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
  background: var(--paper);
  padding: 13px 14px;
  font-size: 0.92rem;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--ink);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.07);
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: #767676;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.form-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
}

.security-note {
  display: flex;
  gap: 12px;
  align-items: start;
  margin-top: 30px;
  padding: 16px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-small);
  color: var(--muted);
  font-size: 0.78rem;
}

.security-note strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
}

.not-found {
  display: grid;
  min-height: calc(100vh - 82px);
  place-items: center;
  padding: 100px 0;
  text-align: center;
}

.not-found h1 {
  margin: 0;
  font-size: clamp(6rem, 18vw, 15rem);
  letter-spacing: -0.12em;
  line-height: 0.75;
}

.not-found h2 {
  margin: 38px 0 12px;
  font-size: 2rem;
  letter-spacing: -0.07em;
}

.not-found p {
  max-width: 390px;
  margin: 0 auto 28px;
  color: var(--muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0) rotate(4deg);
  }

  50% {
    transform: translateY(-14px) rotate(2deg);
  }
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .site-nav {
    gap: 18px;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 72px;
  }

  .hero-art {
    min-height: 470px;
    max-width: 620px;
    margin: 0 auto;
  }

  .intro-grid,
  .quote-card,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .quote-card {
    gap: 38px;
  }

  .contact-info {
    position: static;
  }

  .page-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .page-intro > p {
    padding-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .section-shell {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding: 76px 0;
  }

  .section-tight {
    padding: 54px 0;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 8px;
    transform: translateY(-10px);
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-small);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms var(--ease);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 13px 14px;
    border-radius: 9px;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    background: var(--soft);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    gap: 34px;
    padding-top: 62px;
    padding-bottom: 66px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 18vw, 6.4rem);
  }

  .hero h1 em {
    padding-left: 0.24em;
  }

  .hero-art {
    min-height: 370px;
  }

  .hero-card {
    top: 13%;
    right: 1%;
    min-height: 250px;
    padding: 22px;
  }

  .hero-card h2 {
    margin-top: 34px;
  }

  .hero-note {
    bottom: 4%;
    left: 0;
  }

  .announcement-inner {
    min-height: 64px;
  }

  .announcement p {
    font-size: 0.65rem;
  }

  .strip-heading {
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }

  .section-heading,
  .cta-inner {
    align-items: start;
    flex-direction: column;
    margin-bottom: 36px;
  }

  .section-heading h2,
  .page-intro h1 {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
  }

  .stats-row {
    margin-top: 48px;
  }

  .stat {
    padding: 20px 10px 18px 0;
  }

  .stat:not(:first-child) {
    padding-left: 12px;
  }

  .stat strong {
    font-size: 2.3rem;
  }

  .stat span {
    font-size: 0.66rem;
    line-height: 1.2;
  }

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: 1 / -1;
    min-height: 270px;
  }

  .service-card h3 {
    margin-top: 56px;
  }

  .process-grid,
  .principles,
  .about-grid,
  .service-list,
  .offer-band {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step:not(:first-child) {
    min-height: auto;
    padding: 24px 0 32px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .process-step h3 {
    margin-top: 36px;
  }

  .quote-card {
    gap: 32px;
    padding: 26px;
  }

  blockquote {
    font-size: 2rem;
  }

  .cta {
    padding: 78px 0;
  }

  .cta h2 {
    font-size: clamp(3.2rem, 16vw, 6rem);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-bottom: 48px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .page-hero {
    padding: 74px 0 62px;
  }

  .service-detail {
    min-height: 360px;
    padding: 26px;
  }

  .service-detail h2 {
    margin-top: 64px;
  }

  .offer-band {
    gap: 24px;
    padding: 28px;
  }

  .about-panel {
    min-height: 330px;
    padding: 26px;
  }

  .about-panel h2 {
    margin-top: 58px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field-full {
    grid-column: auto;
  }

  .contact-form-card {
    padding: 24px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .cursor-glow {
    display: none;
  }
}

/* Editorial direction: flat surfaces, document-like rhythm, fewer decorative effects. */
:root {
  --paper: #f7f7f4;
  --white: #ffffff;
  --ink: #121212;
  --muted: #6f6f6a;
  --line: #cfcfc8;
  --soft: #e9e9e4;
  --soft-dark: #d7d7d1;
  --shadow: none;
  --shadow-small: none;
  --radius: 0;
  --radius-small: 0;
}

body {
  background: var(--paper);
}

body::before,
.cursor-glow {
  display: none;
}

.site-header {
  background: rgba(247, 247, 244, 0.95);
  backdrop-filter: none;
}

.header-inner {
  min-height: 76px;
}

.brand img {
  width: 32px;
  height: 32px;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.site-nav {
  gap: 26px;
}

.site-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.button {
  min-height: 46px;
  border-radius: 2px;
  padding: 0 17px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.button::after {
  font-size: 0.95rem;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.button-light:hover {
  background: var(--soft);
}

.hero {
  min-height: auto;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(44px, 8vw, 112px);
  padding-top: 104px;
  padding-bottom: 112px;
}

.hero-copy {
  padding-top: 30px;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(3.6rem, 7.6vw, 7.4rem);
  letter-spacing: -0.095em;
  line-height: 0.88;
}

.hero h1 em {
  padding-left: 0.28em;
  font-size: 0.85em;
  letter-spacing: -0.09em;
}

.hero-lede {
  max-width: 450px;
  margin-top: 28px;
  font-size: 1rem;
}

.microcopy {
  font-size: 0.66rem;
}

.hero-art.dossier {
  min-height: 520px;
  padding: 26px 30px 22px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
  transform: none;
}

.hero-art.dossier::before,
.hero-art.dossier::after,
.hero-art.dossier .hero-orbit,
.hero-art.dossier .hero-card,
.hero-art.dossier .hero-note {
  display: none;
}

.dossier-topline {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.dossier-topline span:nth-child(2) {
  text-align: center;
}

.dossier-topline span:last-child {
  text-align: right;
}

.dossier-title {
  display: grid;
  padding: 54px 0 28px;
  font-size: clamp(4.2rem, 9vw, 8.2rem);
  font-weight: 900;
  letter-spacing: -0.12em;
  line-height: 0.72;
  text-transform: uppercase;
}

.dossier-title span:last-child {
  padding-left: 0.42em;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.75em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.12em;
  text-transform: lowercase;
}

.dossier-rule {
  width: 48px;
  height: 5px;
  margin-bottom: 20px;
  background: var(--ink);
}

.dossier-intro {
  max-width: 280px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.4;
}

.dossier-list {
  border-top: 1px solid var(--line);
}

.dossier-list a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, color 180ms ease, padding 180ms var(--ease);
}

.dossier-list a:hover {
  padding-right: 12px;
  padding-left: 12px;
  background: var(--ink);
  color: var(--white);
}

.dossier-list a span,
.dossier-list a em {
  color: var(--muted);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dossier-list a:hover span,
.dossier-list a:hover em {
  color: rgba(255, 255, 255, 0.58);
}

.dossier-list a strong {
  font-size: 0.9rem;
  letter-spacing: -0.02em;
}

.dossier-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.7rem;
}

.dossier-bottom strong {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 0.72rem;
}

.announcement {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.announcement-inner {
  min-height: 48px;
}

.announcement p {
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}

.announcement .arrow {
  font-size: 1.1rem;
}

.client-strip {
  padding-top: 18px;
}

.strip-heading {
  margin-bottom: 14px;
}

.strip-heading p {
  font-size: 0.68rem;
}

.strip-heading span {
  font-size: 0.64rem;
}

.logo-marquee {
  width: auto;
  margin-left: 0;
  border-color: var(--line);
  overflow: visible;
}

.logo-track {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(6, 1fr);
  animation: none;
}

.client-logo {
  min-width: 0;
  justify-content: flex-start;
  padding: 18px 15px 18px 0;
  border-right: 0;
  font-size: 0.76rem;
}

.client-logo:not(:first-child) {
  padding-left: 15px;
  border-left: 1px solid var(--line);
}

.client-logo b {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 2px;
  font-size: 0.58rem;
}

.client-logo:nth-child(3n) b,
.client-logo:nth-child(4n) b {
  transform: none;
  border-radius: 2px;
}

.client-logo:nth-child(4n) b span {
  transform: none;
}

.section {
  padding: 128px 0;
}

.section-heading {
  align-items: start;
  margin-bottom: 44px;
  padding-top: 18px;
  border-top: 1px solid var(--ink);
}

.section-heading h2,
.page-intro h1 {
  font-size: clamp(2.8rem, 5.4vw, 5.4rem);
  letter-spacing: -0.085em;
}

.section-heading > p,
.page-intro > p {
  font-size: 0.98rem;
}

.section-kicker {
  margin-bottom: 18px;
  font-size: 0.68rem;
  letter-spacing: 0.11em;
}

.section-kicker::before {
  display: none;
}

.intro-grid {
  gap: clamp(48px, 9vw, 140px);
}

.intro-grid h2 {
  font-size: clamp(2.3rem, 4.7vw, 4.6rem);
}

.intro-copy p {
  font-size: 1rem;
}

.stats-row {
  margin-top: 58px;
}

.stat strong {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--ink);
}

.service-card,
.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(3),
.service-card:nth-child(4),
.service-card:nth-child(5) {
  display: grid;
  min-height: 0;
  grid-column: auto;
  grid-template-columns: 58px minmax(0, 1fr) 46px;
  gap: 22px;
  align-items: start;
  padding: 24px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent !important;
  color: var(--ink) !important;
  transition: background 180ms ease, padding 180ms var(--ease);
}

.service-card:hover {
  padding-right: 16px;
  padding-left: 16px;
  border-color: var(--line);
  box-shadow: none;
  transform: none;
  background: var(--soft) !important;
}

.service-card-number {
  padding-top: 4px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-card-content {
  min-width: 0;
}

.service-card-label {
  display: block;
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card-content h3 {
  max-width: 720px;
  margin: 0 0 9px;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.service-card-content p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.service-arrow {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 1rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms var(--ease);
}

.service-arrow:hover {
  background: var(--ink);
  color: var(--white);
  transform: translate(2px, -2px);
}

.process {
  padding-top: 94px;
  padding-bottom: 94px;
}

.process .section-heading {
  border-color: rgba(255, 255, 255, 0.35);
}

.process-step h3 {
  font-size: 1.5rem;
}

.quote-card {
  grid-template-columns: 0.7fr 1.3fr;
  gap: 52px;
  padding: 42px 0;
  border-top: 1px solid var(--ink);
  border-right: 0;
  border-bottom: 1px solid var(--ink);
  border-left: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.quote-avatar {
  width: 42px;
  height: 42px;
  border-radius: 0;
}

.cta {
  background: var(--ink);
  color: var(--white);
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.6);
}

.cta .button-light {
  border-color: var(--white);
  color: var(--white);
}

.cta .button-light:hover {
  background: var(--white);
  color: var(--ink);
}

.site-footer {
  padding-top: 56px;
}

.footer-bottom {
  font-size: 0.68rem;
}

.page-hero {
  padding: 94px 0 70px;
}

.page-intro h1 {
  max-width: 760px;
}

.page-meta {
  margin-top: 32px;
}

.tag {
  border-radius: 2px;
  font-size: 0.62rem;
}

.service-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 64px;
}

.service-detail,
.service-detail:nth-child(3n) {
  min-height: 0;
  padding: 30px 0 34px;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
}

.service-detail:nth-child(3n) .meta-label,
.service-detail:nth-child(3n) p,
.service-detail:nth-child(3n) li {
  color: inherit;
}

.service-detail .meta-label {
  color: var(--muted);
  font-size: 0.65rem;
}

.service-detail h2 {
  max-width: 500px;
  margin: 58px 0 14px;
  font-size: clamp(2rem, 3.3vw, 3.2rem);
}

.service-detail > p,
.service-detail li {
  color: var(--muted);
}

.detail-index {
  top: 28px;
  right: 0;
  font-size: 2.8rem;
  opacity: 0.14;
}

.service-detail li::before {
  color: var(--ink);
}

.offer-band {
  gap: 60px;
  padding: 42px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
}

.offer-band h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.about-panel {
  min-height: 0;
  padding: 30px 0;
  border: 0;
  border-top: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
}

.about-panel-dark {
  min-height: 390px;
  padding: 30px;
  background: var(--ink);
  color: var(--white);
}

.about-panel h2 {
  margin-top: 74px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.about-story {
  margin-top: 74px;
}

.principle {
  min-height: 0;
  padding: 26px 22px 26px 0;
}

.contact-form-card {
  padding: 38px 0;
  border: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 0;
  background: transparent;
}

.security-note {
  border-radius: 0;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 76px;
  }

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

  .hero-art.dossier {
    max-width: 600px;
    width: 100%;
    min-height: 470px;
    margin: 0;
  }

  .logo-track {
    grid-template-columns: repeat(3, 1fr);
  }

  .client-logo:nth-child(4) {
    border-left: 0;
    padding-left: 0;
  }

  .quote-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 84px 0;
  }

  .hero {
    gap: 48px;
    padding-top: 64px;
    padding-bottom: 78px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 17vw, 5.8rem);
  }

  .hero h1 em {
    padding-left: 0.18em;
  }

  .hero-art.dossier {
    min-height: 420px;
    padding: 22px 20px 18px;
  }

  .dossier-title {
    padding-top: 44px;
    font-size: clamp(3.8rem, 17vw, 6rem);
  }

  .dossier-list a {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .dossier-list a em {
    display: none;
  }

  .logo-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-logo,
  .client-logo:not(:first-child) {
    padding: 15px 8px 15px 0;
    border-left: 0;
  }

  .client-logo:nth-child(even) {
    padding-left: 8px;
    border-left: 1px solid var(--line);
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 10px;
    padding: 21px 0;
  }

  .service-card:hover {
    padding-left: 8px;
    padding-right: 8px;
  }

  .service-card-content h3 {
    font-size: 1.55rem;
  }

  .service-arrow {
    width: 30px;
    height: 30px;
  }

  .service-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-detail h2 {
    margin-top: 48px;
  }

  .offer-band {
    gap: 28px;
  }

  .about-panel-dark {
    min-height: 330px;
  }

  .about-story {
    margin-top: 58px;
  }

  .principle {
    padding-right: 0;
  }

  .contact-form-card {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track,
  .hero-art.dossier,
  .dossier-list a,
  .service-card,
  .service-arrow {
    animation: none !important;
    transition: none !important;
  }
}

/* Visual interaction layer: image-led storytelling, rounded surfaces, and intentional motion. */
:root {
  --paper: #f5f5f2;
  --white: #ffffff;
  --ink: #111111;
  --muted: #6c6c68;
  --line: #d9d9d2;
  --soft: #e9e9e5;
  --soft-dark: #d8d8d2;
  --radius: 28px;
  --radius-small: 14px;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.12);
  --shadow-small: 0 14px 36px rgba(17, 17, 17, 0.1);
}

body {
  background:
    radial-gradient(circle at 84% 2%, rgba(17, 17, 17, 0.055), transparent 22rem),
    var(--paper);
}

body::before {
  display: block;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.7;
}

.scroll-progress {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--ink);
  pointer-events: none;
}

.site-header {
  background: rgba(245, 245, 242, 0.82);
  backdrop-filter: blur(20px);
}

.header-inner {
  min-height: 82px;
}

.brand img {
  width: 36px;
  height: 36px;
}

.button {
  min-height: 48px;
  border-radius: 999px;
  padding: 0 19px;
  letter-spacing: 0.02em;
}

.button:hover {
  box-shadow: 0 12px 26px rgba(17, 17, 17, 0.12);
}

.hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 7vw, 108px);
  padding-top: 94px;
  padding-bottom: 104px;
}

.hero-copy {
  padding-top: 48px;
}

.hero h1 {
  font-size: clamp(3.7rem, 7.2vw, 7.2rem);
  line-height: 0.89;
}

.hero h1 em {
  padding-left: 0.2em;
  font-size: 0.88em;
}

.hero-lede {
  max-width: 470px;
  margin-top: 30px;
  font-size: 1.08rem;
}

.hero-stage {
  position: relative;
  min-height: 630px;
  isolation: isolate;
}

.hero-stage::before,
.hero-stage::after {
  display: none;
}

.hero-photo {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 88%;
  height: 540px;
  margin: 0;
  overflow: hidden;
  border-radius: 36px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.hero-photo::after,
.story-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.02), rgba(17, 17, 17, 0.35));
  content: "";
  pointer-events: none;
}

.hero-photo img,
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 600ms ease;
}

.hero-photo:hover img {
  transform: scale(1.045);
  filter: contrast(1.04) saturate(0.82);
}

.hero-photo figcaption,
.story-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-photo figcaption span:last-child {
  color: var(--white);
}

.dossier-card {
  position: absolute;
  z-index: 2;
  bottom: 12px;
  left: 0;
  width: min(390px, 67%);
  padding: 24px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.dossier-card .dossier-topline {
  padding-bottom: 13px;
  border-color: var(--line);
  font-size: 0.6rem;
}

.dossier-card .dossier-title {
  padding: 42px 0 24px;
  font-size: clamp(3.6rem, 7vw, 6rem);
}

.dossier-card .dossier-list a {
  margin-top: 7px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(247, 247, 244, 0.72);
}

.dossier-card .dossier-list a:hover {
  padding-right: 13px;
  padding-left: 13px;
  background: var(--ink);
}

.dossier-card .dossier-bottom {
  margin-top: 18px;
}

.dossier-card .dossier-bottom strong {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.announcement {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.announcement-inner {
  min-height: 52px;
}

.announcement p {
  font-size: 0.68rem;
}

.client-strip {
  padding-top: 22px;
}

.logo-marquee {
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.logo-track {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.client-logo,
.client-logo:not(:first-child) {
  padding: 20px 15px;
}

.client-logo:not(:first-child) {
  border-left: 1px solid var(--line);
}

.client-logo b {
  border-radius: 50%;
}

.section-heading {
  padding-top: 24px;
  border-top: 0;
}

.section-heading::before {
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 20px;
  background: var(--ink);
  content: "";
}

.service-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  border-top: 0;
}

.service-card,
.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(3),
.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 4;
  min-height: 300px;
  grid-template-columns: 42px minmax(0, 1fr) 38px;
  gap: 14px;
  align-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72) !important;
  box-shadow: none;
}

.service-card:nth-child(1) {
  grid-column: span 7;
  background: var(--ink) !important;
  color: var(--white) !important;
}

.service-card:nth-child(2) {
  grid-column: span 5;
}

.service-card:nth-child(1) .service-card-label,
.service-card:nth-child(1) .service-card-number,
.service-card:nth-child(1) .service-card-content p {
  color: rgba(255, 255, 255, 0.62);
}

.service-card:nth-child(1) .service-arrow {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.service-card:nth-child(1) .service-arrow:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.service-card:nth-child(4) {
  background: var(--soft) !important;
}

.service-card:hover {
  padding: 20px;
  border-color: var(--ink);
  box-shadow: var(--shadow-small);
  transform: translateY(-6px);
}

.service-card-number {
  grid-column: 1;
  color: var(--muted);
}

.service-card-content {
  grid-column: 2;
}

.service-card-label {
  font-size: 0.62rem;
}

.service-card-content h3 {
  font-size: clamp(1.45rem, 2.3vw, 2.35rem);
}

.service-arrow {
  grid-column: 3;
  border-radius: 50%;
}

.process {
  border-radius: 0;
}

.process-grid {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 26px;
}

.process-step,
.process-step:not(:first-child) {
  min-height: 270px;
  padding: 28px;
}

.process-step:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.05);
}

.process-step .step-number {
  border-radius: 50%;
}

.quote-card {
  padding: 54px 0;
}

.quote-avatar {
  border-radius: 50%;
}

.image-story {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: center;
}

.image-story-media {
  position: relative;
}

.story-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.story-photo img {
  transform: translateY(var(--parallax-y, 0)) scale(1.08);
  will-change: transform;
}

.story-stamp {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: -28px;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  transform: rotate(12deg);
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 900;
  box-shadow: var(--shadow-small);
}

.image-story-copy {
  max-width: 560px;
}

.image-story-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(2.8rem, 5.4vw, 5.2rem);
  letter-spacing: -0.09em;
  line-height: 0.94;
}

.image-story-copy h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.image-story-copy > p:not(.section-kicker) {
  max-width: 470px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 1.02rem;
}

.cta {
  border-radius: 34px 34px 0 0;
}

.page-hero {
  padding-top: 106px;
}

.tag {
  border-radius: 999px;
  background: var(--white);
}

.service-list {
  gap: 14px;
}

.service-detail,
.service-detail:nth-child(3n) {
  min-height: 390px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.service-detail:nth-child(3n) {
  background: var(--ink);
  color: var(--white);
}

.service-detail:nth-child(3n) .meta-label,
.service-detail:nth-child(3n) p,
.service-detail:nth-child(3n) li {
  color: rgba(255, 255, 255, 0.62);
}

.service-detail .meta-label {
  font-size: 0.62rem;
}

.detail-index {
  top: 27px;
  right: 27px;
  font-size: 3.2rem;
}

.offer-band {
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.about-grid {
  gap: 14px;
}

.about-panel,
.about-panel-dark {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.about-panel {
  padding: 32px;
  background: rgba(255, 255, 255, 0.72);
}

.about-panel-dark {
  padding: 32px;
}

.principles {
  gap: 14px;
}

.principle {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.contact-form-card {
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-small);
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 12px;
  background: var(--paper);
}

.security-note {
  border-radius: 14px;
}

[data-reveal] {
  filter: blur(10px);
  transform: translateY(32px) scale(0.985);
  transition:
    opacity 800ms var(--ease),
    transform 900ms var(--ease),
    filter 900ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  filter: blur(0);
  transform: translateY(0) scale(1);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

  .hero-stage {
    min-height: 610px;
  }

  .hero-photo {
    width: 90%;
  }

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: span 6;
  }

  .service-card:nth-child(1) {
    grid-column: span 7;
  }

  .service-card:nth-child(2) {
    grid-column: span 5;
  }

  .image-story {
    grid-template-columns: 1fr;
  }

  .story-photo {
    max-width: 520px;
  }
}

@media (max-width: 680px) {
  .hero {
    gap: 34px;
    padding-top: 70px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16vw, 5.7rem);
  }

  .hero-stage {
    min-height: 560px;
  }

  .hero-photo {
    width: 100%;
    height: 400px;
    border-radius: 26px;
  }

  .hero-photo figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .dossier-card {
    right: 14px;
    bottom: 0;
    left: 14px;
    width: auto;
    padding: 18px;
    border-radius: 22px;
  }

  .dossier-card .dossier-title {
    padding: 32px 0 20px;
    font-size: 4.2rem;
  }

  .dossier-card .dossier-list a em {
    display: none;
  }

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

  .client-logo,
  .client-logo:not(:first-child) {
    padding: 15px 10px;
  }

  .client-logo:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: 1 / -1;
    min-height: 220px;
    padding: 22px;
  }

  .service-card:hover {
    padding: 18px;
  }

  .process-grid {
    border-radius: 20px;
  }

  .process-step:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .story-stamp {
    right: -8px;
    width: 70px;
    height: 70px;
  }

  .offer-band {
    padding: 26px;
  }

  .about-panel,
  .about-panel-dark,
  .principle,
  .contact-form-card {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    display: none;
  }

  [data-reveal],
  [data-reveal].is-visible,
  .hero-photo img,
  .story-photo img,
  .service-card,
  .service-arrow {
    filter: none;
    transform: none;
    transition: none !important;
  }
}

/* Service cards use the image as the entry point; copy stays short and scannable. */
.service-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  grid-template-rows: auto auto 1fr;
  align-items: start;
  padding: 24px;
  overflow: hidden;
}

.service-card:nth-child(n) {
  grid-template-columns: minmax(0, 1fr) 42px;
  grid-template-rows: auto auto 1fr;
}

.service-card-media {
  position: relative;
  grid-column: 1 / -1;
  width: calc(100% + 48px);
  height: 188px;
  margin: -24px -24px 18px;
  overflow: hidden;
  background: var(--soft);
}

.service-card-media::after,
.service-detail-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.02), rgba(17, 17, 17, 0.22));
  content: "";
  pointer-events: none;
}

.service-card-media img,
.service-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 500ms ease;
}

.service-card-topline {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 16px;
}

.service-card-topline .service-card-number,
.service-card-topline .service-card-label {
  grid-column: auto;
}

.service-card-topline .service-card-label {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-card-content {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
}

.service-card-content h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
  letter-spacing: -0.075em;
  line-height: 0.95;
}

.service-card-content p {
  max-width: 34rem;
  margin: 14px 0 0;
}

.service-card .service-arrow {
  grid-column: 2;
  grid-row: 3;
  align-self: end;
  justify-self: end;
}

.service-card:nth-child(1) .service-card-topline .service-card-label,
.service-card:nth-child(1) .service-card-topline .service-card-number {
  color: rgba(255, 255, 255, 0.64);
}

.service-card:nth-child(1) .service-card-media::after {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.02), rgba(17, 17, 17, 0.5));
}

.service-detail {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.service-detail-media {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--soft);
}

.service-detail-body {
  display: flex;
  min-height: 390px;
  min-width: 0;
  flex-direction: column;
  padding: 30px;
}

.service-detail-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.service-detail-topline .detail-index {
  position: static;
  top: auto;
  right: auto;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-detail-topline .meta-label {
  color: var(--muted);
  font-size: 0.62rem;
}

.service-detail h2 {
  margin: 30px 0 10px;
  font-size: clamp(2.7rem, 5vw, 5.6rem);
  letter-spacing: -0.09em;
  line-height: 0.88;
}

.service-detail h3 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.service-detail-body > p {
  max-width: 38rem;
  margin-top: 0;
}

.service-detail-body ul {
  margin-top: auto;
}

.service-detail:nth-child(3n) .service-detail-topline {
  border-color: rgba(255, 255, 255, 0.22);
}

.service-detail:nth-child(3n) .service-detail-topline .detail-index,
.service-detail:nth-child(3n) .service-detail-topline .meta-label {
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 900px) {
  .service-list {
    grid-template-columns: 1fr;
  }

  .service-card-media {
    height: 168px;
  }

  .service-detail {
    display: block;
  }

  .service-detail-body {
    min-height: 390px;
    padding: 24px;
  }
}

@media (max-width: 680px) {
  .service-card {
    grid-template-columns: minmax(0, 1fr) 40px;
    grid-template-rows: auto auto 1fr;
    padding: 22px;
  }

  .service-card:nth-child(n) {
    grid-template-columns: minmax(0, 1fr) 40px;
  }

  .service-card-media {
    width: calc(100% + 44px);
    height: 182px;
    margin: -22px -22px 18px;
  }

  .service-card-content h3 {
    font-size: 2.35rem;
  }

  .service-detail {
    display: block;
    min-height: 0;
  }

  .service-detail-media {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .service-detail-media img {
    min-height: 0;
  }

  .service-detail-body {
    min-height: 390px;
    padding: 22px;
  }

  .service-detail h2 {
    margin-top: 24px;
    font-size: 3.8rem;
  }
}

/* Keep the home hero in a safe reading order on compact viewports. */
@media (max-width: 900px) {
  .hero {
    display: block;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    padding-top: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3.25rem, 9.5vw, 5.8rem);
  }

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

  .hero-stage {
    min-height: 570px;
    margin-top: 44px;
  }

  .hero-photo {
    width: 88%;
    height: 430px;
  }

  .dossier-card {
    bottom: 0;
    left: 0;
    width: min(390px, 78%);
  }
}

@media (max-width: 680px) {
  .hero {
    padding-top: 58px;
    padding-bottom: 72px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 14.5vw, 5.2rem);
  }

  .hero-stage {
    min-height: 555px;
    margin-top: 34px;
  }

  .hero-photo {
    width: 100%;
    height: 360px;
    border-radius: 26px;
  }

  .dossier-card {
    right: 14px;
    bottom: 0;
    left: 14px;
    width: auto;
    padding: 18px;
  }

  .dossier-card .dossier-title {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

  .dossier-card .dossier-intro {
    max-width: 230px;
  }
}

/* Client logos and document reading panels use the supplied brand assets. */
.logo-marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.logo-track {
  display: flex;
  width: max-content;
  grid-template-columns: none;
  animation: marquee 36s linear infinite;
}

.client-logo {
  min-width: 260px;
  gap: 12px;
  justify-content: center;
  padding: 22px 26px;
  border-left: 0;
  border-right: 1px solid var(--line);
  font-size: 0.78rem;
  line-height: 1.25;
  white-space: normal;
  text-align: left;
}

.client-logo:not(:first-child) {
  padding-left: 26px;
  border-left: 0;
}

.client-logo-image img {
  width: 92px;
  height: 34px;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
}

.footer-grid {
  grid-template-columns: 1.25fr 0.8fr 0.9fr 1.15fr;
  gap: 34px;
}

.footer-documents {
  min-width: 0;
}

.document-links {
  display: grid;
  gap: 10px;
}

.document-links details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.document-links summary {
  padding: 0 0 10px;
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
}

.document-links summary::marker {
  color: rgba(255, 255, 255, 0.5);
}

.document-links iframe {
  display: block;
  width: 100%;
  height: 260px;
  margin: 4px 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #ffffff;
}

.footer-docs-note {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .logo-track {
    animation-duration: 42s;
  }

  .client-logo {
    min-width: 230px;
  }

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

@media (max-width: 680px) {
  .client-logo {
    min-width: 210px;
    padding: 18px 20px;
  }

  .client-logo:not(:first-child) {
    padding-left: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .document-links iframe {
    height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }
}

.review-title { text-align: center; margin-bottom: 2rem; }
.review-grid { columns: 3 280px; column-gap: 1.25rem; }
.review-card {
  break-inside: avoid;
  margin: 0 0 1.25rem;
  padding: 1.5rem 1.25rem;
  background: #fff;
  border: 1px solid #e5e9f0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(16, 24, 40, .06);
  text-align: center;
}
.review-name { margin: 0 0 .25rem; font-size: 1.1rem; }
.review-verified { display: block; font-size: .75rem; color: #16a34a; }
.review-text { margin: .9rem 0; font-size: .9rem; line-height: 1.6; color: #4b5563; }
.review-stars { color: #f59e0b; letter-spacing: 2px; }

/* Inline SVG keeps the contact symbols sharp, themeable, and dependency-free. */
.contact-item {
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
}

.contact-item > .contact-item-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  font-size: 0;
  line-height: 0;
}

.contact-item > .contact-item-mark .contact-icon,
.security-note > .security-icon {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item > .contact-item-mark .contact-icon {
  width: 19px;
  height: 19px;
  stroke-width: 1.8;
}

.security-note > .security-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 1px;
  color: var(--ink);
  stroke-width: 1.8;
}

@media (max-width: 680px) {
  .contact-item {
    grid-template-columns: 44px minmax(0, 1fr);
  }
}

/* Keep the service link readable on wide layouts without changing its mobile flow. */
.section-heading > .text-link {
  flex: 0 0 auto;
  white-space: nowrap;
}

/* The process logo is an inline memory cue for the Kawan Legal brand. */
.process-heading-mark {
  display: inline-grid;
  width: clamp(2.2rem, 5vw, 4.6rem);
  height: clamp(2.2rem, 5vw, 4.6rem);
  margin-left: 0.12em;
  overflow: hidden;
  vertical-align: -0.12em;
  border-radius: 50%;
  transition: transform 180ms ease;
}

.process-heading-mark:hover {
  transform: translateY(-3px) rotate(-4deg);
}

.process-heading-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Supplied client marks stay legible while the existing marquee remains continuous. */
.logo-track {
  display: flex;
  width: max-content;
  grid-template-columns: none;
  will-change: transform;
  animation: marquee 24s linear infinite;
  animation-play-state: running;
}

.client-logo-image img {
  width: clamp(108px, 9vw, 132px);
  height: 46px;
}

@media (max-width: 900px) {
  .logo-track {
    animation-duration: 28s;
  }

  .client-logo-image img {
    width: 116px;
    height: 42px;
  }
}

@media (max-width: 680px) {
  .client-logo-image img {
    width: 108px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track,
  .process-heading-mark {
    animation: none;
    transition: none;
  }
}

/* Service cards are image-first surfaces with a readable bottom gradient. */
.service-card,
.service-card:nth-child(n) {
  position: relative;
  display: block;
  min-height: 430px;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  border: 0;
  border-radius: 24px;
  background: var(--ink) !important;
  color: var(--white) !important;
  box-shadow: var(--shadow-small);
}

.service-card-media,
.service-card:nth-child(n) .service-card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  background: var(--ink);
}

.service-card-media::after {
  z-index: 1;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.04) 24%, rgba(17, 17, 17, 0.18) 46%, rgba(17, 17, 17, 0.96) 100%);
}

.service-card-media img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-topline {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  left: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.service-card-topline .service-card-number,
.service-card-topline .service-card-label {
  color: inherit !important;
}

.service-card-content {
  position: absolute;
  z-index: 2;
  right: 82px;
  bottom: 24px;
  left: 24px;
  grid-column: auto;
  grid-row: auto;
}

.service-card-content h3 {
  color: var(--white);
}

.service-card-content p {
  color: rgba(255, 255, 255, 0.7);
}

.service-card .service-arrow {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  grid-column: auto;
  grid-row: auto;
  border-color: rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  color: var(--white);
  background: rgba(17, 17, 17, 0.18);
}

.service-card .service-arrow:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

/* Footer documents use a native modal so the page behind it stays inert. */
.document-links .document-link {
  display: block;
  width: 100%;
  padding: 0 0 10px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.document-links .document-link:hover {
  color: var(--white);
}

.document-modal {
  width: min(1100px, calc(100vw - 32px));
  height: min(88vh, 820px);
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.28);
}

.document-modal::backdrop {
  background: rgba(17, 17, 17, 0.72);
  backdrop-filter: blur(8px);
}

.document-modal-panel {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 0;
  overflow: hidden;
}

.document-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

.document-modal-head h2 {
  margin: 0;
  font-size: 0.95rem;
}

.document-modal-close {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.document-modal-close:hover {
  background: var(--ink);
  color: var(--white);
}

.document-viewer {
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 18px;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  background: #242424;
}

.document-pages {
  display: grid;
  width: min(100%, 820px);
  gap: 16px;
  margin: 0 auto;
}

.document-pages img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  user-select: none;
}

html.document-modal-open,
body.document-modal-open {
  overflow: hidden !important;
  overscroll-behavior: none;
}

@media (max-width: 900px) {
  .service-card,
  .service-card:nth-child(n) {
    min-height: 400px;
  }
}

@media (max-width: 680px) {
  .service-card,
  .service-card:nth-child(n) {
    min-height: 360px;
    border-radius: 18px;
  }

  .service-card-topline {
    top: 18px;
    right: 18px;
    left: 18px;
  }

  .service-card-content {
    right: 70px;
    bottom: 18px;
    left: 18px;
  }

  .service-card .service-arrow {
    right: 18px;
    bottom: 18px;
  }

  .document-modal {
    width: calc(100vw - 20px);
    height: calc(100vh - 20px);
    height: calc(100dvh - 20px);
    max-width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    max-height: calc(100dvh - 20px);
    border-radius: 16px;
  }

  .document-viewer {
    padding: 10px;
  }

  .document-pages {
    gap: 10px;
  }
}

/* Service detail cards also use the image-first treatment from the home page. */
.service-list .service-detail {
  position: relative;
  display: block;
  min-height: 640px;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  border: 0;
  border-radius: 24px;
  background: var(--ink) !important;
  color: var(--white) !important;
  box-shadow: var(--shadow-small);
}

.service-list .service-detail-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  background: var(--ink);
}

.service-list .service-detail-media::after {
  z-index: 1;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.02) 16%, rgba(17, 17, 17, 0.18) 42%, rgba(17, 17, 17, 0.98) 100%);
}

.service-list .service-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
  transform: none;
  filter: none;
}

.service-list .service-detail-body {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}

.service-list .service-detail-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.74);
}

.service-list .service-detail-topline .meta-label,
.service-list .service-detail-body h2,
.service-list .service-detail-body h3,
.service-list .service-detail-body p,
.service-list .service-detail-body li {
  color: inherit !important;
}

.service-list .service-detail-body h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(1.85rem, 3.2vw, 3.4rem);
  line-height: 0.9;
}

.service-list .service-detail-body h3 {
  max-width: 46rem;
  margin: 12px 0 0;
  font-size: clamp(0.95rem, 1.35vw, 1.3rem);
  line-height: 1.05;
}

.service-list .service-detail-body p {
  max-width: 42rem;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74) !important;
  font-size: 0.84rem;
  line-height: 1.45;
}

.service-list .service-detail-body ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px 24px;
  max-width: 50rem;
  margin: 18px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  line-height: 1.35;
  list-style: none;
}

.service-list .service-detail-body li::before {
  content: "— ";
  color: rgba(255, 255, 255, 0.56);
}

@media (max-width: 680px) {
  .service-list .service-detail {
    min-height: 700px;
    border-radius: 18px;
  }

  .service-list .service-detail-body {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .service-list .service-detail-body h2 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .service-list .service-detail-body ul {
    grid-template-columns: 1fr;
  }
}

/* Keep the shared header visible while the page content scrolls underneath it. */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
}

/* Use a dedicated keyframe so older layout rules cannot disable the marquee. */
@keyframes client-logo-marquee {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.logo-track {
  display: flex;
  width: max-content;
  grid-template-columns: none;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  animation: client-logo-marquee 24s linear infinite;
  animation-play-state: running;
}

@media (max-width: 900px) {
  .logo-track {
    animation-duration: 26s;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .logo-track {
    animation: client-logo-marquee 24s linear infinite !important;
    animation-play-state: running !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none !important;
  }
}

/* The client strip is an intentional brand motion and must loop continuously. */
.logo-track {
  animation: client-logo-marquee 24s linear infinite !important;
  animation-duration: 24s !important;
  animation-iteration-count: infinite !important;
  animation-play-state: running !important;
}

/* Prevent viewport-width decorations from creating a second horizontal canvas. */
html {
  max-width: 100%;
  overflow-x: clip;
}

body {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
}

@media (max-width: 900px) {
  .logo-marquee {
    width: 100%;
    margin-left: 0;
  }
}

.site-header {
  position: sticky !important;
  z-index: 100 !important;
  top: 0 !important;
}

/* Client names reuse the homepage marquee so the movement stays continuous. */
.client-marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.client-marquee-track {
  display: flex;
  width: max-content;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  animation: client-logo-marquee 24s linear infinite !important;
  animation-duration: 24s !important;
  animation-iteration-count: infinite !important;
  animation-play-state: running !important;
}

.client-marquee-group {
  display: flex;
  flex: 0 0 auto;
}

.client-marquee-item {
  display: inline-flex;
  min-width: 220px;
  align-items: center;
  justify-content: center;
  padding: 22px 28px;
  border-right: 1px solid var(--line);
  color: #4a4a46;
  font-size: clamp(0.78rem, 1.2vw, 0.95rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

/* Stack the homepage value points on narrow screens so long headings cannot widen the grid. */
@media (max-width: 680px) {
  .stats-row {
    grid-template-columns: 1fr;
  }

  .stat,
  .stat:not(:first-child) {
    min-width: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat strong {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .stat:last-child {
    padding-bottom: 24px;
    border-bottom: 0;
  }
}

@media (max-width: 900px) {
  .client-marquee-item {
    min-width: 210px;
  }
}

@media (max-width: 680px) {
  .client-marquee-item {
    min-width: 190px;
    padding: 18px 22px;
  }
}
