:root {
  --bg: #f0f0f0;
  --surface: #fafafa;
  --ink: #000000;
  --text: #000000;
  --muted: #2a2a2a;
  --muted-soft: #666666;
  --line: #d6d6d6;
  --line-strong: #b8b8b8;
  --accent: #7057ff;
  --accent-dark: #4f38e8;
  --accent-soft: #efecff;
  --green: #0c7a43;
  --radius: 4px;
  --container: min(1180px, calc(100vw - 36px));
  font-family:
    "Manrope",
    "Inter",
    "Segoe UI",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.018) 1px, transparent 1px),
    var(--bg);
  background-size:
    120px 120px,
    120px 120px,
    auto;
  font-size: 16px;
  line-height: 1.55;
  font-family: inherit;
  font-synthesis-weight: none;
  text-rendering: geometricPrecision;
}

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

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--surface);
  padding: 10px 14px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 250, 250, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  width: var(--container);
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-word {
  font-size: 1.03rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.brand-word strong {
  font-weight: 650;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-panel a {
  border-bottom: 1px solid transparent;
  padding-block: 4px;
}

.nav-panel a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.nav-toggle:hover {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 520;
  letter-spacing: -0.01em;
  line-height: 1.1;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--surface);
}

.button-primary:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

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

.button-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.button-small {
  min-height: 40px;
  padding-inline: 15px;
  font-size: 0.9rem;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 78px 0;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.88fr);
  align-items: center;
  gap: 76px;
  padding-top: 42px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 520;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 360;
}

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(3rem, 6.55vw, 6.25rem);
  text-wrap: balance;
}

.h1-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.22em;
  margin-bottom: -0.12em;
}

.h1-line span {
  display: block;
  animation: h1-line-reveal 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.h1-line:nth-child(1) span {
  animation-delay: 150ms;
}

.h1-line:nth-child(2) span {
  animation-delay: 260ms;
}

.hero .eyebrow,
.hero-copy,
.hero-actions,
.small-note,
.mobile-hero-summary {
  animation: hero-in 640ms ease both;
}

.hero .eyebrow {
  animation-delay: 80ms;
}

.hero-copy {
  animation-delay: 340ms;
}

.hero-actions {
  animation-delay: 430ms;
}

.small-note,
.mobile-hero-summary {
  animation-delay: 520ms;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes h1-line-reveal {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.5vw, 4.8rem);
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 520;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-copy,
.section-heading p,
.support p,
.final-cta p,
.project-copy p,
.footer p {
  color: var(--muted);
}

.hero-copy {
  max-width: 700px;
  font-size: clamp(1.04rem, 1.35vw, 1.2rem);
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 18px;
}

.small-note {
  max-width: 560px;
  color: var(--muted-soft);
  font-size: 0.92rem;
}

.mobile-hero-summary {
  display: none;
  margin: 20px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  color: var(--muted);
  font-size: 0.94rem;
  letter-spacing: -0.01em;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -36px -30px auto auto;
  width: 68%;
  height: 56%;
  border: 1px solid rgba(112, 87, 255, 0.18);
  background: var(--accent-soft);
  opacity: 0.62;
  transform: rotate(-4deg);
}

.studio-map {
  position: relative;
  min-height: 430px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 18px 20px 20px;
  overflow: hidden;
  background: var(--surface);
}

.studio-map::before,
.studio-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.studio-map::after {
  inset: 18px;
  border: 1px solid var(--line);
  background: none;
}

.map-ruler {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 68px;
  height: 1px;
  background: var(--line);
}

.map-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  gap: 18px;
  padding-bottom: 28px;
  color: var(--muted-soft);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-header strong {
  color: var(--ink);
  font-weight: 520;
}

.map-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 112px 1.18fr;
  gap: 18px;
  align-items: stretch;
}

.map-column {
  min-height: 318px;
  border: 1px solid var(--line);
  background: rgba(250, 250, 250, 0.78);
  padding: 18px;
}

.map-column p {
  margin-bottom: 18px;
  color: var(--muted-soft);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-column > span {
  display: flex;
  align-items: center;
  min-height: 42px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.map-column > span:last-child {
  border-bottom: 0;
}

.map-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.map-center::before,
.map-center::after {
  content: "";
  width: 1px;
  flex: 1;
  align-self: center;
  background: var(--line);
}

.map-center span {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 10px 12px;
  background: var(--surface);
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-column-output {
  display: grid;
  gap: 10px;
}

.map-column-output article {
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: rgba(250, 250, 250, 0.88);
  color: var(--ink);
}

.map-column-output small {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 560;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-column-output strong {
  margin-top: 4px;
  font-size: 0.94rem;
  font-weight: 460;
  line-height: 1.3;
}

.audience-band {
  width: var(--container);
  margin: -18px auto 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.audience-band p {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.45vw, 1.25rem);
  font-weight: 380;
  letter-spacing: -0.02em;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-heading.compact {
  max-width: 720px;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 58px;
  align-items: end;
}

.split-heading p:not(.eyebrow) {
  margin-bottom: 8px;
  font-size: 1.03rem;
}

.line-reveal {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--line);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 700ms ease;
}

.can-animate .line-reveal {
  transform: scaleX(0);
}

.can-animate .line-reveal.is-visible {
  transform: scaleX(1);
}

.service-card,
.before-card,
.steps li,
.project-card,
.support,
.final-cta {
  border: 1px solid var(--line);
  background: rgba(250, 250, 250, 0.76);
}

.line-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
}

.line-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-closing {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 420;
  letter-spacing: -0.02em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 292px;
  padding: 24px;
  border-top: 0;
  border-left: 0;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  border-color: rgba(112, 87, 255, 0.36);
  background: rgba(255, 255, 255, 0.86);
  transform: translateY(-2px);
}

.service-card .line-icon {
  margin-bottom: 26px;
}

.service-cue {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 42px;
  border-left: 2px solid var(--accent);
  padding-left: 10px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 520;
  letter-spacing: 0.02em;
}

.service-card p,
.steps p {
  color: var(--muted);
}

.process {
  padding-top: 68px;
}

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.steps li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.steps li:hover,
.steps li:focus-within {
  border-bottom-color: var(--line-strong);
  background: rgba(250, 250, 250, 0.58);
  transform: translateY(-1px);
}

.step-number {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 560;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.steps p {
  max-width: 700px;
  margin-bottom: 0;
}

.project-card {
  display: block;
  padding: 28px;
  background: rgba(250, 250, 250, 0.72);
}

.project-copy p {
  max-width: 560px;
}

.support {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 44px;
  align-items: center;
  padding: 34px;
  background: transparent;
}

.before-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.before-card {
  padding: 24px;
  border-top: 0;
  border-left: 0;
  background: rgba(250, 250, 250, 0.62);
}

.before-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.support p {
  margin-bottom: 0;
  font-size: 1.04rem;
}

.final-cta {
  max-width: var(--container);
  padding: 0;
  background: var(--surface);
}

.final-cta p {
  max-width: 680px;
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
  gap: 34px;
  padding: 48px;
  align-items: center;
  justify-content: space-between;
}

.form-main {
  min-width: 0;
}

.contact-form {
  max-width: 860px;
  margin: 32px 0 0;
  text-align: left;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--ink);
  font-weight: 420;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    outline-color 160ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted-soft);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  outline: 2px solid rgba(112, 87, 255, 0.26);
  outline-offset: 2px;
}

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

.form-note a {
  border-bottom: 1px solid currentColor;
}

.form-aside {
  width: 100%;
  max-width: 320px;
  justify-self: center;
  align-self: center;
  border-left: 1px solid var(--line);
  padding-left: 30px;
  color: var(--muted);
}

.form-aside img {
  display: block;
  width: min(100%, 230px);
  margin: 0 0 26px auto;
  filter: grayscale(1) contrast(1.08);
  opacity: 0.72;
  mix-blend-mode: multiply;
}

.form-aside h3 {
  margin-bottom: 12px;
}

.form-aside p {
  margin-bottom: 22px;
}

.form-aside ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: after-send;
}

.form-aside li {
  counter-increment: after-send;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: baseline;
  color: var(--ink);
  font-size: 0.94rem;
}

.form-aside li::before {
  content: counter(after-send, decimal-leading-zero);
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.nav-overlay {
  position: fixed;
  inset: 74px 0 0;
  z-index: 8;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(1px);
  opacity: 1;
  transition: opacity 180ms ease;
}

.nav-overlay[hidden] {
  display: block;
  opacity: 0;
  pointer-events: none;
}

.footer {
  width: var(--container);
  margin: 0 auto;
  padding: 42px 0 54px;
  display: block;
  color: var(--muted);
  border-top: 1px solid var(--ink);
}

.footer .brand {
  margin-bottom: 12px;
  color: var(--ink);
}

.footer p {
  margin-bottom: 8px;
}

.footer-subtle {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 0.92rem;
}

.footer-subtle a {
  border-bottom: 1px solid transparent;
}

.footer-subtle a:hover {
  color: var(--ink);
  border-bottom-color: currentColor;
}

.footer-subtle::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 540ms ease,
    transform 540ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .line-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition-delay: 0ms !important;
  }
}

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

  .nav-panel {
    position: absolute;
    z-index: 9;
    left: 18px;
    right: 18px;
    top: 74px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line-strong);
    background: rgba(250, 250, 250, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 190ms ease,
      transform 190ms ease,
      border-color 190ms ease;
  }

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

  .nav-panel a {
    padding: 13px 10px;
    border-bottom: 1px solid var(--line);
  }

  .nav-panel a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .split-heading,
  .project-card,
  .support {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    gap: 0;
  }

  .hero-visual {
    display: none;
  }

  .mobile-hero-summary {
    display: block;
  }

  .service-grid,
  .before-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 24px, 1180px);
  }

  body {
    background: var(--bg);
    font-size: 16px;
    line-height: 1.55;
  }

  .nav {
    min-height: 64px;
  }

  .brand-word {
    font-size: 1rem;
    letter-spacing: 0;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
    border-color: rgba(0, 0, 0, 0.22);
    background: rgba(250, 250, 250, 0.84);
  }

  .nav-toggle span {
    width: 17px;
    height: 1px;
    margin: 4px auto;
  }

  .nav-panel {
    top: 64px;
    left: 12px;
    right: 12px;
    border-color: rgba(0, 0, 0, 0.18);
  }

  .nav-overlay {
    inset: 64px 0 0;
  }

  .section {
    padding: 48px 0;
  }

  .hero {
    gap: 0;
    padding-top: 34px;
    padding-bottom: 42px;
  }

  h1 {
    max-width: 11ch;
    margin-bottom: 18px;
    font-size: 3.18rem;
    line-height: 1;
    letter-spacing: 0;
    font-weight: 500;
  }

  h2 {
    margin-bottom: 14px;
    font-size: 2.45rem;
    line-height: 1.04;
    letter-spacing: 0;
    font-weight: 500;
  }

  .eyebrow {
    display: none;
  }

  .hero-copy {
    max-width: 28ch;
    font-size: 1rem;
    line-height: 1.58;
    color: var(--muted);
  }

  .small-note {
    display: none;
  }

  .hero-actions {
    margin: 24px 0 0;
    width: 100%;
  }

  .hero-actions .button {
    width: auto;
    min-width: 190px;
  }

  .mobile-hero-summary {
    margin-top: 20px;
    padding: 12px 0 0;
    border-top: 1px solid var(--line);
    border-bottom: 0;
    color: var(--muted-soft);
    font-size: 0.88rem;
    letter-spacing: 0;
    line-height: 1.45;
  }

  .service-grid,
  .before-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .audience-band {
    display: none;
  }

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

  .split-heading {
    gap: 16px;
    align-items: start;
  }

  .split-heading p:not(.eyebrow) {
    max-width: 30ch;
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .service-grid,
  .before-grid {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-bottom: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.12);
  }

  .service-card {
    min-height: 0;
    padding: 22px 20px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(250, 250, 250, 0.82);
  }

  .before-card {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(250, 250, 250, 0.76);
  }

  .service-card .line-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 20px;
  }

  .service-cue {
    display: none;
  }

  .service-card h3,
  .before-card h3,
  .steps h3,
  .form-aside h3 {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0;
  }

  .service-card p,
  .before-card p,
  .steps p,
  .support p,
  .form-note,
  .footer p {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .steps li {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 0;
  }

  .project-card,
  .support,
  .form-shell {
    padding: 24px 20px;
    border-color: rgba(0, 0, 0, 0.12);
    background: rgba(250, 250, 250, 0.78);
  }

  .project-copy p,
  .support p {
    max-width: 30ch;
  }

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

  .contact-form {
    margin-top: 22px;
  }

  .contact-form label {
    gap: 7px;
    margin-bottom: 13px;
    font-size: 0.92rem;
    font-weight: 500;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 13px 13px;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .contact-form textarea {
    min-height: 148px;
  }

  .contact-form .button {
    width: 100%;
    min-height: 48px;
  }

  .form-aside {
    display: none;
  }

  .footer {
    padding: 30px 0 36px;
  }

  .footer p {
    max-width: 30ch;
    margin-bottom: 6px;
  }

  .footer-email {
    border-bottom: 1px solid currentColor;
  }

  .footer-subtle {
    display: flex;
    width: fit-content;
    max-width: none;
    flex-wrap: wrap;
    gap: 0.35em;
    font-size: 0.9rem;
    white-space: nowrap;
  }
}
