/* Pearlaris.com marketing site — palette from brand assets (sRGB 0–1, with hex fallbacks) */

:root {
  /* Core brand (exact values from pearlaris_logo.png sampling) */
  --p-cyan: #6fbed3;
  --p-plum: #5c4861;
  --p-mist: #bbc3bc;
  --p-slate: #558fa8;
  --radius: 12px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --max: 1120px;
  --header-h: 76px;

  /* Derived UI */
  --bg-deep: #eef2f0;
  --bg-panel: #ffffff;
  --bg-elevated: #f7faf8;
  --text: var(--p-plum);
  --text-muted: var(--p-slate);
  --accent: var(--p-cyan);
  --accent-hover: #4a9eb8;
  --accent-dim: var(--p-slate);
  --accent-glow: rgba(111, 190, 211, 0.35);
  --border: #c5d0cd;
}

@supports (color: color(srgb 1 1 1)) {
  :root {
    --p-cyan: color(srgb 0.434 0.744 0.827);
    --p-plum: color(srgb 0.36 0.282 0.379);
    --p-mist: color(srgb 0.732 0.764 0.736);
    --p-slate: color(srgb 0.333 0.56 0.658);
  }
}

@supports (color: color-mix(in srgb, white, black)) {
  :root {
    --border: color-mix(in srgb, var(--p-plum) 14%, var(--p-mist) 86%);
  }
}

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

html {
  scroll-behavior: smooth;
}

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

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  background-image:
    linear-gradient(180deg, #ffffff 0%, #edf3f1 52%, var(--bg-deep) 100%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 48px,
      rgba(111, 190, 211, 0.06) 48px,
      rgba(111, 190, 211, 0.06) 49px
    );
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-hover);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--p-plum);
  color: #ffffff;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-h);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand:hover {
  color: var(--text);
}

.brand__icon {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(92, 72, 97, 0.14);
  flex-shrink: 0;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}

.brand__name {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand__tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  max-width: 18rem;
  line-height: 1.35;
  margin-top: 0.15rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.875rem;
}

.nav-toggle[aria-expanded="true"] {
  border-color: var(--accent);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  align-items: center;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

main:not(.site-main) {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

main.site-main {
  max-width: none;
  margin: 0;
  padding: 0;
}

.hero {
  padding: 2rem 0 3rem;
  text-align: center;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.hero__lead {
  margin: 0 auto 2rem;
  max-width: 38rem;
  font-size: 1.125rem;
  color: var(--text-muted);
}

.hero__flow {
  margin: 2.75rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 32rem;
}

.hero__flow-lockup {
  display: inline-block;
  line-height: 0;
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  background: var(--bg-panel);
  box-shadow: 0 1px 4px rgba(92, 72, 97, 0.08);
}

.hero__flow-lockup:hover {
  box-shadow: 0 2px 10px rgba(111, 190, 211, 0.25);
}

.hero__flow-logo {
  height: 44px;
  width: auto;
  max-width: min(240px, 85vw);
  display: block;
  object-fit: contain;
}

.hero__flow-text {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.55;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn--primary {
  background: linear-gradient(135deg, var(--p-cyan) 0%, var(--p-slate) 100%);
  color: #ffffff;
  box-shadow: 0 2px 14px var(--accent-glow);
}

.btn--primary:hover {
  color: #ffffff;
  filter: brightness(1.05);
}

.btn--ghost {
  background: var(--bg-panel);
  border-color: var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 2.5rem;
}

.card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.section-title {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section-lead {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  max-width: 42rem;
}

.prose {
  max-width: 46rem;
}

.prose h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.prose ul {
  padding-left: 1.25rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #f6f8f7;
  margin-top: auto;
  box-shadow: 0 -1px 0 rgba(92, 72, 97, 0.06);
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
}

.site-footer nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-flow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-flow-icon {
  flex-shrink: 0;
  display: block;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(92, 72, 97, 0.12);
}

.site-footer .fineprint {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 36rem;
  line-height: 1.5;
}

.copyright {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.layout-stack {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Forms */
.form {
  max-width: 32rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 500;
  font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #7a9aaa;
}

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

.form-check {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.form-check input {
  width: auto;
  margin-top: 0.35rem;
}

.form-msg {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  display: none;
}

.form-msg.is-visible {
  display: block;
}

.form-msg--ok {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #047857;
}

.form-msg--err {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}

.form-msg--pending {
  background: #f8fafc;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.mailto-block {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--bg-panel);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem 1.25rem;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav a {
    display: block;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
  }

  .site-nav a.is-active {
    border-bottom-color: var(--border);
    border-left: 3px solid var(--accent);
    padding-left: 0.5rem;
  }

  .site-header__inner {
    flex-wrap: wrap;
  }

  .brand {
    flex: 1;
  }
}

/* --- Long-scroll home (index) --- */
.section {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
}

.section__inner--narrow {
  max-width: 52rem;
}

.section__inner--hero {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.section--band {
  background: color-mix(in srgb, var(--p-mist) 22%, #ffffff);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section--contact {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

/* Home long-scroll (#index): Services and Flow share the same panel surface; About alternates as a band (like Process). */
#services,
#flow {
  background: var(--bg-panel);
}

#flow {
  border-bottom: 1px solid var(--border);
}

#about {
  background: color-mix(in srgb, var(--p-mist) 22%, #ffffff);
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  text-align: left;
}

.hero-split__copy .hero__lead {
  margin-left: 0;
  margin-right: 0;
  max-width: 36rem;
  text-align: left;
}

.btn-row--left {
  justify-content: flex-start;
}

.hero-visual {
  border-radius: var(--radius);
  min-height: 260px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(92, 72, 97, 0.1);
}

.hero-visual--photo {
  min-height: 280px;
}

.hero-visual__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.hero-visual__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, color-mix(in srgb, var(--p-cyan) 45%, transparent), transparent 55%),
    radial-gradient(ellipse 60% 50% at 20% 80%, color-mix(in srgb, var(--p-plum) 25%, transparent), transparent 50%),
    linear-gradient(145deg, #ffffff 0%, color-mix(in srgb, var(--p-mist) 40%, white) 100%);
}

.hero-visual__mesh--over-photo {
  opacity: 0.36;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual__mesh--over-photo {
    opacity: 0.28;
    mix-blend-mode: normal;
  }
}

.proof-strip {
  margin: 0;
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* #proof — atmospheric background + readable panel (inner vertically centered in band) */
.section--proof-visual.section--band {
  position: relative;
  isolation: isolate;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: clamp(11.5rem, 18vw, 15rem);
  padding-block: 1.75rem;
  box-sizing: border-box;
}

.section--proof-visual.section--band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(180deg, color-mix(in srgb, #f7faf8 88%, transparent) 0%, color-mix(in srgb, #edf3f1 92%, transparent) 100%),
    url("../images/editorial/proof-credibility-atmosphere/opt1-unsplash-global-data.jpg");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
}

.section__inner--proof {
  position: relative;
  z-index: 1;
  margin-inline: auto;
  width: min(100%, 52rem);
  max-width: 52rem;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background: color-mix(in srgb, #ffffff 86%, transparent);
  box-shadow: 0 2px 16px rgba(92, 72, 97, 0.07);
  backdrop-filter: blur(8px);
}

.section--proof-visual .proof-strip {
  color: var(--text);
}

.section--proof-visual .proof-strip strong {
  color: var(--p-plum);
}

.section-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section-title--left,
.section-lead--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.section-lead--left {
  max-width: 40rem;
}

.h4 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.card--service h3 {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.card__icon {
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.card--featured {
  box-shadow: 0 8px 28px rgba(111, 190, 211, 0.22);
  border-color: color-mix(in srgb, var(--p-cyan) 35%, var(--border));
  transform: translateY(-4px);
}

.card-grid--dense {
  margin-top: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card-grid--services {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

@media (min-width: 900px) {
  .card-grid--services-quad {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .card-grid--services-quad {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.services-editorial {
  margin: 2rem 0 0;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 22px rgba(92, 72, 97, 0.1);
  border: 1px solid var(--border);
}

.services-editorial__img {
  display: block;
  width: 100%;
  max-height: min(420px, 52vh);
  object-fit: cover;
  object-position: center 35%;
}

.section--hero h1,
.hero-split__copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.section-outro {
  margin: 2.5rem 0 0;
  max-width: 40rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section__inner--process {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

/* Process: four steps at corners, abstract image centered */
.process-radial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(11rem, 22rem) minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  gap: clamp(0.75rem, 2.5vw, 1.75rem) clamp(0.75rem, 2vw, 1.5rem);
  margin-top: 2.25rem;
  align-items: start;
}

.process-radial > .process-radial__steps {
  display: contents;
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-radial__step {
  list-style: none;
  max-width: 22rem;
}

.process-radial__step--tl {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

.process-radial__step--tr {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

.process-radial__step--tr.process-steps__item,
.process-radial__step--br.process-steps__item {
  flex-direction: row-reverse;
  align-items: flex-start;
}

.process-radial__step--tr > div,
.process-radial__step--br > div {
  text-align: left;
  min-width: 0;
}

.process-radial__step--bl {
  grid-column: 1;
  grid-row: 3;
  justify-self: start;
}

.process-radial__step--br {
  grid-column: 3;
  grid-row: 3;
  justify-self: end;
}

.process-radial__center {
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
  align-self: center;
  width: 100%;
  max-width: 22rem;
  aspect-ratio: 1;
  border-radius: var(--radius);
  background-color: var(--bg-panel);
  background-image: url("../images/editorial/process-delivery-abstract/opt2-unsplash-data-abstract.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  box-shadow: 0 4px 22px rgba(92, 72, 97, 0.12);
}

.process-steps__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.process-steps__num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--p-cyan), var(--p-slate));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-steps__item p {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.split-two {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.split-two__col--flow-intro .section-eyebrow,
.split-two__col--flow-intro .section-title {
  text-align: left;
}

.flow-intro-brand {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0.65rem 0 1.15rem;
}

.flow-intro-brand .flow-lockup {
  display: block;
  line-height: 0;
  margin: 0;
}

.flow-lockup {
  display: inline-block;
  margin: 0.5rem 0 1rem;
  line-height: 0;
}

.flow-lockup__img {
  height: auto;
  max-width: min(280px, 100%);
  display: block;
}

.flow-visual {
  border-radius: var(--radius);
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(92, 72, 97, 0.06);
}

.flow-visual--collage {
  padding: 0;
  overflow: hidden;
  text-align: left;
}

.flow-visual__collage {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-visual__hero {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(240px, 38vw);
  object-fit: cover;
  object-position: center 45%;
}

.flow-visual__mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--border);
}

.flow-visual__mosaic img {
  display: block;
  width: 100%;
  height: 88px;
  object-fit: cover;
  object-position: center;
}

.flow-visual__brand {
  display: flex;
  justify-content: center;
  padding: 1rem 1rem 0;
}

.flow-visual__mark {
  margin: 0 auto;
  display: block;
}

.flow-visual--collage .flow-visual__mark {
  margin: 0;
}

.flow-visual__caption {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.flow-visual--collage .flow-visual__caption {
  padding: 0 1.25rem 1.25rem;
  margin-top: 0.75rem;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem 3rem;
  /* Vertically center the image column with the taller copy column */
  align-items: center;
}

.about-split__copy {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.about-pull__quote {
  margin: 0 0 2rem;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.02em;
  text-align: left;
  max-width: 22rem;
}

.about-brand {
  text-align: center;
}

.about-brand__logo {
  display: block;
  margin-inline: auto;
  width: auto;
  max-width: min(280px, 78%);
  height: auto;
  box-shadow: none;
  border-radius: 0;
}

.about-brand__note {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.about-split__prose {
  max-width: 36rem;
}

.about-split__prose p:first-child {
  margin-top: 0;
}

.about-mission-figure {
  margin: 0;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(92, 72, 97, 0.1);
  border: 1px solid var(--border);
}

.about-mission-figure__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(420px, 52vh);
  object-fit: cover;
  object-position: center 28%;
}

.section__inner--contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2.5rem;
  align-items: start;
}

.contact-aside__mail {
  font-size: 1rem;
  margin: 1rem 0 0;
}

.contact-aside__hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0.5rem 0 0;
}

.contact-aside__visual {
  margin-top: 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(92, 72, 97, 0.07);
  max-width: 22rem;
}

.contact-aside__visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  object-position: center 55%;
}

.contact-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(92, 72, 97, 0.07);
}

.contact-card .form {
  max-width: none;
}

.reveal-on-scroll {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-on-scroll:not(.is-revealed) {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.45s ease-out, transform 0.45s ease-out;
  }

  .reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header.is-scrolled {
  box-shadow: 0 2px 12px rgba(92, 72, 97, 0.08);
}

.site-header.is-scrolled .brand__icon {
  width: 40px;
  height: 40px;
}

.site-header.is-scrolled .brand__name {
  font-size: 1.05rem;
}

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

  .hero-visual {
    min-height: 200px;
    order: -1;
  }

  .hero-visual--photo {
    min-height: 220px;
  }

  .process-radial {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.75rem;
  }

  .process-radial > .process-radial__steps {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
  }

  .process-radial__step {
    max-width: none;
  }

  .process-radial__step--tr,
  .process-radial__step--br {
    justify-self: stretch;
    text-align: left;
  }

  .process-radial__step--tr > div,
  .process-radial__step--br > div {
    text-align: left;
  }

  .process-radial__center {
    order: -1;
    max-width: 16rem;
    margin-inline: auto;
  }

  .split-two {
    grid-template-columns: 1fr;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  .about-pull__quote {
    max-width: none;
    margin-bottom: 1.75rem;
  }

  .section__inner--contact {
    grid-template-columns: 1fr;
  }

  .flow-visual__hero {
    max-height: 200px;
  }

  .flow-visual__mosaic img {
    height: 72px;
  }

  .contact-aside__visual {
    max-width: none;
  }
}
