/* 3RD August Engineering — design tokens carried over from the boomerang landing system */
:root {
  --ink: #191919;
  --mist: #f4f3f3;
  --line: #e5e4e2;
  --ochre: #a65a2e;
  --shell: 72rem;
  --serif: "P22 Mackinac W01 Book", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  background: #fff;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { margin: 0; font-weight: 400; font-family: var(--serif); letter-spacing: -0.02em; }
p { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 640px) { .shell { padding: 0 2.5rem; } }

.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: rgba(25, 25, 25, 0.5);
}
.eyebrow--ochre { color: var(--ochre); }

.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: rgba(25, 25, 25, 0.9); }
.btn--ghost { background: rgba(255, 255, 255, 0.8); border: 1px solid var(--line); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: #fff; }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: rgba(255, 255, 255, 0.9); }
.btn--outline { border: 1px solid rgba(255, 255, 255, 0.25); color: #fff; }
.btn--outline:hover { background: rgba(255, 255, 255, 0.1); }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 1.125rem 1.5rem;
  transition: background-color 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
@media (min-width: 640px) { .nav { padding: 1.25rem 2.5rem; } }
@media (min-width: 768px) { .nav { padding: 1.25rem 3.5rem; } }
.nav.is-solid {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.nav__row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav__brand { display: flex; align-items: center; gap: 0.625rem; font-weight: 700; font-size: 1.0625rem; letter-spacing: -0.025em; }
.nav__brand sup { font-size: 0.6em; }
.nav__brand span.sub { font-weight: 600; color: rgba(25, 25, 25, 0.62); }
@media (max-width: 639px) { .nav__brand span.sub { display: none; } }
.nav__links { display: none; gap: 2rem; }
@media (min-width: 768px) { .nav__links { display: flex; } }
.nav__links a { font-size: 0.875rem; color: rgba(25, 25, 25, 0.7); transition: color 0.2s; }
.nav__links a:hover { color: var(--ink); }
.nav__actions { display: flex; align-items: center; gap: 0.75rem; }
.nav__cta { padding: 0.625rem 1.25rem; background: var(--ink); color: #fff; font-size: 0.875rem; font-weight: 500; border-radius: 0.5rem; transition: background-color 0.2s; white-space: nowrap; }
.nav__cta:hover { background: rgba(25, 25, 25, 0.9); }
/* the full label stops fitting alongside the mark on small screens */
@media (max-width: 639px) {
  .nav__cta { padding: 0.5rem 0.875rem; font-size: 0.8125rem; }
  .nav__cta .long { display: none; }
}
.nav__burger { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; width: 2.25rem; height: 2.25rem; border: 1px solid var(--line); border-radius: 0.5rem; }
.nav__burger span { display: block; width: 1rem; height: 1px; background: var(--ink); }
@media (min-width: 768px) { .nav__burger { display: none; } }
.nav__mobile { display: none; flex-direction: column; margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid var(--line); }
.nav__mobile.is-open { display: flex; }
.nav__mobile a { padding: 0.5rem 0; font-size: 0.875rem; color: rgba(25, 25, 25, 0.7); }
@media (min-width: 768px) { .nav__mobile { display: none !important; } }

/* ---------- hero ---------- */
.hero { position: relative; display: flex; flex-direction: column; align-items: center; min-height: 100vh; overflow: hidden; }
.media-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.media-bg video, .media-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
/* Still sits underneath as the first paint and the reduced-motion fallback. */
.media-bg__still { z-index: 0; }
/* Two copies of the clip dissolve into each other so motion never reverses. */
.media-bg video { z-index: 1; opacity: 0; transition: opacity 1.1s linear; }
.media-bg video.is-front { opacity: 1; }
.media-bg.is-still video { display: none; }
.hero__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.72) 38%, rgba(255,255,255,0.42) 62%, rgba(255,255,255,0.78) 100%); }
.hero__inner { position: relative; z-index: 10; display: flex; flex-direction: column; align-items: center; width: 100%; min-height: 100vh; }
.hero__head { padding: 7rem 1rem 0; text-align: center; }
@media (min-width: 768px) { .hero__head { padding-top: 9rem; } }
.hero__head h1 { margin-top: 1.25rem; font-size: clamp(2.25rem, 7vw, 5.25rem); line-height: 1.05; letter-spacing: -0.035em; }
.hero__head p.lede { max-width: 32rem; margin: 1.5rem auto 0; font-size: 0.9375rem; line-height: 1.7; color: rgba(25, 25, 25, 0.7); }
@media (min-width: 768px) { .hero__head p.lede { font-size: 1rem; margin-top: 2rem; } }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 2rem; }
@media (min-width: 768px) { .hero__actions { margin-top: 2.5rem; } }

.hero__card-wrap { margin-top: auto; width: 100%; max-width: 64rem; padding: 4rem 1rem 0; }
.hero__card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-bottom: 0;
  padding: 2rem 1.25rem 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
@media (min-width: 768px) { .hero__card { padding: 4rem 3rem 0; } }
.hero__card-top { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .hero__card-top { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.hero__card-top h2 { margin-top: 0.75rem; font-size: clamp(1.5rem, 3.5vw, 2.25rem); line-height: 1.2; }
.hero__card-top .body { display: flex; align-items: flex-end; font-size: 0.9375rem; line-height: 1.7; color: rgba(25, 25, 25, 0.7); }
.rule { height: 1px; background: var(--line); width: 100%; margin: 2rem 0 0; }
.pillars { display: grid; gap: 0.75rem; padding: 0.75rem 0; }
@media (min-width: 640px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.875rem 1.5rem; background: var(--mist); transition: background-color 0.2s; }
.pillar:hover { background: #eaeaea; }
.pillar__label { font-size: 0.875rem; }
.pillar__num { color: rgba(25, 25, 25, 0.4); }
.pillar__slash { margin: 0 0.5rem; color: rgba(166, 90, 46, 0.5); }
.pillar__name { font-weight: 500; }
.pillar svg { width: 1rem; height: 1rem; color: rgba(25, 25, 25, 0.3); transition: color 0.2s, transform 0.2s; flex: none; }
.pillar:hover svg { color: rgba(25, 25, 25, 0.7); transform: translateX(2px); }

/* ---------- generic sections ---------- */
.section { border-top: 1px solid var(--line); }
.section--mist { background: var(--mist); }
/* padding-block only — a shorthand here would wipe out .shell's side padding */
.section__body { padding-top: 5rem; padding-bottom: 5rem; }
@media (min-width: 640px) { .section__body { padding-top: 7rem; padding-bottom: 7rem; } }
.section h2 { margin-top: 1rem; font-size: clamp(1.75rem, 4.5vw, 3rem); line-height: 1.1; }

.grid12 { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .grid12 { grid-template-columns: repeat(12, 1fr); gap: 4rem; } }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
@media (max-width: 1023px) { .col-5, .col-6, .col-7 { grid-column: 1 / -1; } }
.align-end { align-items: flex-end; }

.prose p { font-size: 0.9375rem; line-height: 1.75; color: rgba(25, 25, 25, 0.7); }
.prose p + p { margin-top: 1.25rem; }
.prose strong { font-weight: 500; color: var(--ink); }
.muted-sm { margin-top: 1.5rem; font-size: 0.875rem; color: rgba(25, 25, 25, 0.5); }

/* stats */
.stats { margin-top: 4rem; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
@media (min-width: 1024px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.75rem 1.25rem; }
@media (min-width: 640px) { .stat { padding: 2.25rem 1.75rem; } }
.stat__value { font-family: var(--serif); font-size: clamp(1.875rem, 4vw, 3rem); letter-spacing: -0.02em; }
.stat__label { margin-top: 0.5rem; font-size: 13px; line-height: 1.4; color: rgba(25, 25, 25, 0.55); }

/* principles */
.principles { margin-top: 4rem; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 768px) { .principles { grid-template-columns: repeat(3, 1fr); } }
.principle { background: #fff; padding: 1.75rem; }
@media (min-width: 640px) { .principle { padding: 2.25rem; } }
.principle p.q { margin-top: 1rem; font-family: var(--serif); font-size: 1.35rem; line-height: 1.35; letter-spacing: -0.02em; }

/* capabilities */
.cap { margin-top: 3rem; display: grid; gap: 2rem; }
@media (min-width: 1024px) { .cap { grid-template-columns: 5fr 7fr; gap: 3rem; margin-top: 4rem; } }
.cap__list { border-top: 1px solid var(--line); }
.cap__item { border-bottom: 1px solid var(--line); }
.cap__btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.125rem 0; text-align: left; color: rgba(25, 25, 25, 0.55); transition: color 0.2s; }
.cap__btn:hover, .cap__btn.is-active { color: var(--ink); }
.cap__btn-label { display: flex; align-items: baseline; gap: 1rem; }
.cap__num { font-size: 0.75rem; font-variant-numeric: tabular-nums; color: rgba(25, 25, 25, 0.3); transition: color 0.2s; }
.cap__btn.is-active .cap__num { color: var(--ochre); }
.cap__title { font-size: 0.9375rem; font-weight: 500; line-height: 1.35; }
@media (min-width: 640px) { .cap__title { font-size: 1rem; } }
.cap__btn svg { width: 1rem; height: 1rem; flex: none; color: rgba(25, 25, 25, 0.2); transition: color 0.2s, transform 0.2s; }
.cap__btn.is-active svg { color: var(--ink); transform: translateX(2px); }
.cap__panel { position: sticky; top: 7rem; }
.cap__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: rgba(25, 25, 25, 0.05); }
.cap__slides { position: absolute; inset: 0; }
.cap__slides[hidden] { display: none; }
.cap__slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.9s ease-in-out; }
.cap__slide.is-active { opacity: 1; }
/* frame indicator */
.cap__dots { position: absolute; left: 1rem; bottom: 1rem; z-index: 2; display: flex; gap: 5px; padding: 6px 8px; border-radius: 999px; background: rgba(25, 25, 25, 0.35); backdrop-filter: blur(6px); }
.cap__dot { width: 5px; height: 5px; border-radius: 999px; background: rgba(255, 255, 255, 0.4); transition: background-color 0.3s; }
.cap__dot.is-on { background: #fff; }
.cap__caption { background: #fff; border: 1px solid var(--line); border-top: 0; padding: 1.5rem; }
@media (min-width: 640px) { .cap__caption { padding: 2rem; } }
.cap__caption h3 { margin-top: 0.75rem; font-size: 1.35rem; line-height: 1.35; }
.cap__caption p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.7; color: rgba(25, 25, 25, 0.7); }

/* projects */
.projects { margin-top: 3rem; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 768px) { .projects { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .projects { grid-template-columns: repeat(3, 1fr); margin-top: 4rem; } }
.project { background: #fff; display: flex; flex-direction: column; height: 100%; }
.project__media { aspect-ratio: 4 / 3; overflow: hidden; background: rgba(25, 25, 25, 0.05); }
.project__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1); }
.project:hover .project__media img { transform: scale(1.04); }
.project__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
@media (min-width: 640px) { .project__body { padding: 1.75rem; } }
.project__client { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ochre); }
.project__body h3 { margin-top: 0.75rem; font-size: 1.2rem; line-height: 1.35; }
.project__scope { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.7; color: rgba(25, 25, 25, 0.65); }
.project__year { margin-top: auto; padding-top: 1.25rem; font-size: 0.75rem; color: rgba(25, 25, 25, 0.45); }

/* quote band */
.band { position: relative; height: 52vh; min-height: 380px; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to right, rgba(25, 25, 25, 0.72), rgba(25, 25, 25, 0.45) 60%, rgba(25, 25, 25, 0.3)); }
.band__inner { position: relative; z-index: 10; height: 100%; display: flex; align-items: center; }
.band blockquote { margin: 0; max-width: 44rem; font-family: var(--serif); font-size: clamp(1.5rem, 3.5vw, 2.25rem); line-height: 1.35; letter-spacing: -0.02em; color: #fff; }
.band__attr { margin-top: 1.5rem; font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255, 255, 255, 0.85); }

/* sectors */
.sectors { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.sectors li { padding: 0.5rem 1rem; background: var(--mist); border: 1px solid var(--line); font-size: 0.875rem; color: rgba(25, 25, 25, 0.75); }

/* leadership */
.lead { margin-top: 3rem; display: grid; background: #fff; border: 1px solid var(--line); }
@media (min-width: 1024px) { .lead { grid-template-columns: 4fr 8fr; margin-top: 4rem; } }
.lead__media img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }
.lead__body { padding: 1.75rem; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 1024px) { .lead__body { padding: 3rem; } }
.lead__body h3 { margin-top: 0.75rem; font-size: clamp(1.5rem, 3vw, 1.875rem); line-height: 1.2; }
.lead__body p { margin-top: 1.25rem; font-size: 0.9375rem; line-height: 1.75; color: rgba(25, 25, 25, 0.7); }
.team { margin-top: 1px; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-top: 0; }
@media (min-width: 640px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team { grid-template-columns: repeat(3, 1fr); } }
.member { background: #fff; height: 100%; padding: 1.5rem; }
@media (min-width: 640px) { .member { padding: 1.75rem; } }
.member__role { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ochre); }
.member h3 { margin-top: 0.75rem; font-size: 1.125rem; line-height: 1.35; }
.member p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.7; color: rgba(25, 25, 25, 0.65); }

/* group companies */
.group-list { margin-top: 2rem; border-top: 1px solid var(--line); }
.group-item { display: flex; align-items: baseline; gap: 1.5rem; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.group-item__num { font-size: 0.75rem; font-variant-numeric: tabular-nums; color: var(--ochre); flex: none; }
.group-item__name { font-size: 0.9375rem; font-weight: 500; line-height: 1.35; }
.group-item__focus { margin-top: 0.25rem; font-size: 0.875rem; color: rgba(25, 25, 25, 0.6); }

/* footer */
.footer { background: var(--ink); color: #fff; }
.footer h2 { margin-top: 1rem; font-size: clamp(1.75rem, 4.5vw, 3rem); line-height: 1.08; }
.footer .eyebrow { color: rgba(255, 255, 255, 0.45); }
.footer__lede { margin-top: 1.5rem; max-width: 28rem; font-size: 0.9375rem; line-height: 1.75; color: rgba(255, 255, 255, 0.65); }
.footer__actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.footer__cols { display: grid; gap: 2.5rem; }
@media (min-width: 640px) { .footer__cols { grid-template-columns: repeat(2, 1fr); } }
.footer address, .footer__phones a { font-style: normal; font-size: 0.9375rem; line-height: 1.75; color: rgba(255, 255, 255, 0.75); }
.footer address { margin-top: 1rem; }
.footer__phones { margin-top: 1rem; display: grid; gap: 0.375rem; }
.footer__phones a { font-variant-numeric: tabular-nums; transition: color 0.2s; }
.footer__phones a:hover { color: #fff; }
.footer__bar { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.15); display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 640px) { .footer__bar { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer__brand { display: flex; align-items: center; gap: 0.625rem; font-size: 0.9375rem; font-weight: 700; letter-spacing: -0.025em; }
.footer__tagline { font-family: var(--serif); font-size: 1rem; color: rgba(255, 255, 255, 0.55); }
.footer__reg { font-size: 0.75rem; color: rgba(255, 255, 255, 0.4); font-variant-numeric: tabular-nums; }

/* reveal */
.reveal { opacity: 0; transform: translateY(1.5rem); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .project__media img { transition: none; }
}

/* ---------- proposal page ---------- */
.page-head { border-bottom: 1px solid var(--line); padding-top: 8rem; padding-bottom: 3.5rem; }
@media (min-width: 640px) { .page-head { padding-top: 10rem; padding-bottom: 5rem; } }
.page-head h1 { margin-top: 1rem; font-size: clamp(2rem, 5.5vw, 3.5rem); line-height: 1.08; }
.page-head p { margin-top: 1.5rem; max-width: 34rem; font-size: 0.9375rem; line-height: 1.75; color: rgba(25, 25, 25, 0.7); }
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: rgba(25, 25, 25, 0.55); transition: color 0.2s; }
.back-link:hover { color: var(--ink); }
.back-link svg { width: 1rem; height: 1rem; transform: rotate(180deg); }

.form-layout { display: grid; gap: 3rem; padding-top: 4rem; padding-bottom: 5rem; }
@media (min-width: 1024px) { .form-layout { grid-template-columns: 7fr 5fr; gap: 5rem; padding-top: 5rem; padding-bottom: 7rem; } }

.fieldset { border: 0; margin: 0 0 2.5rem; padding: 0; }
.fieldset legend { padding: 0; margin-bottom: 1.5rem; font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 500; color: var(--ochre); }
.field-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .field-grid { grid-template-columns: repeat(2, 1fr); } }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.875rem; font-weight: 500; color: var(--ink); }
.field .req { color: var(--ochre); }
.field .hint { font-size: 0.8125rem; color: rgba(25, 25, 25, 0.5); }
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 0.9375rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.375rem;
  padding: 0.75rem 0.875rem;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { min-height: 9rem; resize: vertical; line-height: 1.6; }
.field select { appearance: none; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23191919' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 1rem; padding-right: 2.5rem; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(25, 25, 25, 0.08); }
.field input:user-invalid, .field textarea:user-invalid, .field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #b3261e; }
.field-error { font-size: 0.8125rem; color: #b3261e; }
.field:not(.has-error) .field-error { display: none; }

.check-grid { display: grid; gap: 0.625rem; }
@media (min-width: 640px) { .check-grid { grid-template-columns: repeat(2, 1fr); } }
.check { display: flex; align-items: flex-start; gap: 0.625rem; padding: 0.75rem 0.875rem; border: 1px solid var(--line); background: #fff; font-size: 0.875rem; cursor: pointer; transition: border-color 0.2s, background-color 0.2s; }
.check:hover { border-color: rgba(25, 25, 25, 0.35); }
.check input { width: 1rem; height: 1rem; margin: 0.125rem 0 0; accent-color: var(--ink); flex: none; }
.check:has(input:checked) { border-color: var(--ink); background: var(--mist); }

.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; padding-top: 0.5rem; }
.form-note { font-size: 0.8125rem; color: rgba(25, 25, 25, 0.5); }

.form-status { margin-top: 1.5rem; padding: 1.25rem 1.5rem; border: 1px solid var(--line); background: var(--mist); font-size: 0.875rem; line-height: 1.7; }
.form-status h2 { font-family: var(--serif); font-size: 1.35rem; margin-bottom: 0.5rem; }
.form-status a { text-decoration: underline; text-underline-offset: 2px; }
.form-status[hidden] { display: none; }

.aside { align-self: start; }
@media (min-width: 1024px) { .aside { position: sticky; top: 7rem; } }
.aside__card { border: 1px solid var(--line); padding: 1.75rem; }
.aside__card + .aside__card { margin-top: 1px; border-top: 0; }
.aside__card h2 { font-family: var(--serif); font-size: 1.35rem; line-height: 1.35; margin-top: 0.75rem; letter-spacing: -0.02em; }
.aside__card p, .aside__card li { font-size: 0.875rem; line-height: 1.7; color: rgba(25, 25, 25, 0.7); }
.aside__card p { margin-top: 0.75rem; }
.aside__list { margin-top: 1rem; display: grid; gap: 0.625rem; }
.aside__list li { display: flex; gap: 0.75rem; }
.aside__phones { margin-top: 1rem; display: grid; gap: 0.375rem; }
.aside__phones a { font-size: 0.9375rem; font-variant-numeric: tabular-nums; color: rgba(25, 25, 25, 0.75); transition: color 0.2s; }
.aside__phones a:hover { color: var(--ink); }
