:root {
  --ink: #102029;
  --ink-soft: #273b44;
  --steel: #526a74;
  --mist: #dce3e4;
  --paper: #f5f3ed;
  --white: #fffef9;
  --signal: #c64f2a;
  --signal-dark: #963a20;
  --line: rgba(16, 32, 41, 0.2);
  --max: 1180px;
  --pad: clamp(1.15rem, 3vw, 2.25rem);
  --display: "Arial Narrow", "Aptos Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--signal-dark);
}

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

:focus-visible {
  outline: 3px solid #f19a74;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-180%);
}

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

.preview-bar {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.52rem var(--pad);
  background: var(--signal);
  color: var(--white);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.preview-separator {
  opacity: 0.65;
}

.utility-bar {
  background: var(--ink);
  color: var(--mist);
  font-size: 0.76rem;
  letter-spacing: 0.035em;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.4rem;
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  min-height: 2.35rem;
  margin: 0 auto;
}

.utility-inner a {
  text-decoration: none;
}

.utility-inner a:hover {
  color: var(--white);
}

.utility-label {
  color: #9fb0b7;
  font-weight: 700;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 243, 237, 0.97);
}

.nav-shell {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto;
  align-items: stretch;
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  min-height: 6rem;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: fit-content;
  text-decoration: none;
}

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

.brand-mark {
  position: relative;
  width: 2.65rem;
  height: 2.65rem;
  flex: 0 0 auto;
  border: 2px solid var(--ink);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
}

.brand-mark::before {
  left: 0.38rem;
  top: 0.38rem;
  width: 1.5rem;
  height: 1.5rem;
  border-left: 0.38rem solid var(--signal);
  border-bottom: 0.38rem solid var(--signal);
}

.brand-mark::after {
  right: -0.28rem;
  top: -0.28rem;
  width: 0.85rem;
  height: 0.85rem;
  background: var(--ink);
}

.brand-text {
  display: grid;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-transform: uppercase;
}

.brand-text span:first-child {
  font-size: 1.16rem;
}

.brand-text span:last-child {
  margin-top: 0.28rem;
  color: var(--steel);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
}

.site-nav {
  align-self: stretch;
}

.nav-list {
  display: flex;
  align-items: stretch;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 0.73rem;
  border-top: 4px solid transparent;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.nav-toggle {
  display: none;
  align-self: center;
  justify-self: end;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.3rem;
  height: 2px;
  margin: 0.24rem auto;
  background: currentColor;
}

.section-shell {
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
}

.hero {
  position: relative;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: 0 50% 0 0;
  z-index: -1;
  content: "";
  background-image: linear-gradient(rgba(16, 32, 41, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(16, 32, 41, 0.055) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  min-height: 44rem;
}

.hero-copy {
  align-self: center;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem) clamp(4rem, 8vw, 7rem) 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.4rem;
  color: var(--signal-dark);
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.5rem;
  height: 3px;
  flex: 0 0 auto;
  content: "";
  background: var(--signal);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.6rem;
  font-size: clamp(3.2rem, 6.5vw, 6.55rem);
}

h2 {
  font-size: clamp(2.35rem, 4vw, 4.25rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.08;
}

.hero-lead {
  max-width: 42rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.button {
  padding: 0.85rem 1.3rem;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button:hover {
  border-color: var(--signal-dark);
  background: var(--signal-dark);
  color: var(--white);
}

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

.button-secondary:hover {
  color: var(--white);
}

.hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--ink);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-plate {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(80%, 25rem);
  padding: 1.5rem;
  border-top: 4px solid var(--signal);
  background: rgba(16, 32, 41, 0.94);
  color: var(--white);
}

.hero-plate-label {
  display: block;
  margin-bottom: 0.75rem;
  color: #aab8bd;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-plate p {
  margin: 0;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  padding: clamp(5rem, 9vw, 8.5rem) 0 3rem;
}

.service-intro h2,
.section-heading h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.service-intro p,
.section-heading p {
  max-width: 42rem;
  margin: 0;
  color: var(--ink-soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.service-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 25rem;
  padding: clamp(1.5rem, 4vw, 2.8rem);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
}

.service-card::before {
  position: absolute;
  right: -6rem;
  bottom: -8rem;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgba(16, 32, 41, 0.12);
  content: "";
  transform: rotate(45deg);
  transition: transform 220ms ease;
}

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

.service-card:hover::before {
  transform: translate(-1.5rem, -1.5rem) rotate(45deg);
}

.service-number {
  position: relative;
  color: var(--signal-dark);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.service-card-copy {
  position: relative;
  align-self: center;
}

.service-card h3 {
  max-width: 14ch;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.5vw, 3.55rem);
}

.service-card p {
  max-width: 35rem;
  margin: 0;
  color: var(--ink-soft);
}

.service-arrow {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-arrow::after {
  width: 3rem;
  height: 1px;
  content: "";
  background: var(--signal);
}

.project-needs {
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: 3.5rem;
}

.needs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 5px solid var(--ink);
}

.need-column {
  padding: 1.8rem 1.35rem;
  border-right: 1px solid var(--line);
}

.need-column:last-child {
  border-right: 0;
}

.need-column h3 {
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
}

.need-column ul,
.detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.need-column li,
.detail-list li {
  position: relative;
  padding: 0.72rem 0 0.72rem 1.15rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.need-column li::before,
.detail-list li::before {
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 0.38rem;
  height: 0.38rem;
  content: "";
  background: var(--signal);
}

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

.firm-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 37rem;
}

.firm-visual {
  position: relative;
  min-height: 30rem;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  background: #172b34;
}

.firm-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.firm-copy {
  align-self: center;
  padding: clamp(3rem, 7vw, 7rem);
}

.firm-copy .eyebrow {
  color: #efa387;
}

.firm-copy h2 {
  max-width: 11ch;
}

.firm-copy p {
  max-width: 38rem;
  color: #c3ced2;
}

.fact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.6rem;
}

.fact {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.fact strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1.2;
}

.fact span {
  color: #aab8bd;
  font-size: 0.85rem;
}

.contact-section {
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}

.contact-copy h2 {
  max-width: 12ch;
}

.contact-copy > p {
  color: var(--ink-soft);
}

.direct-list {
  margin-top: 2.4rem;
  border-top: 4px solid var(--ink);
}

.direct-item {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.direct-item span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--steel);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.direct-item a,
.direct-item address {
  font-family: var(--display);
  font-size: 1.04rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}

.concept-form {
  padding: clamp(1.4rem, 4vw, 2.75rem);
  border: 1px solid var(--ink);
  background: var(--white);
}

.form-heading {
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 4px solid var(--ink);
}

.form-heading h3 {
  margin-bottom: 0.4rem;
}

.form-heading p {
  margin: 0;
  color: var(--steel);
  font-size: 0.84rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

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

label,
legend {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.8rem;
  border: 1px solid #7e8d93;
  border-radius: 0;
  background: #fbfaf6;
  color: var(--ink);
}

textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.35rem;
}

.concept-form button {
  cursor: pointer;
}

.form-caveat,
.form-response {
  margin: 0;
  color: var(--steel);
  font-size: 0.8rem;
}

.form-response {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-left: 4px solid var(--signal);
  background: var(--mist);
  color: var(--ink);
}

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

.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  min-height: 15rem;
  padding: 2.5rem 0;
}

.cta-band h2 {
  max-width: 16ch;
  margin-bottom: 0.7rem;
  font-size: clamp(2rem, 4vw, 3.75rem);
}

.cta-band p {
  max-width: 45rem;
  margin: 0;
  color: #ffe8df;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

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

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

.cta-band .button-secondary {
  background: transparent;
  color: var(--white);
}

.site-footer {
  background: #0a151a;
  color: #bdc9ce;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  padding: 4.5rem 0;
}

.footer-brand {
  color: var(--white);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.footer-summary {
  max-width: 28rem;
  font-size: 0.88rem;
}

.footer-heading {
  margin: 0 0 1rem;
  color: #82949b;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 0.5rem;
}

.footer-links a {
  color: var(--white);
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: #efa387;
}

.footer-address {
  margin: 0 0 1.2rem;
  font-size: 0.86rem;
  font-style: normal;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #82949b;
  font-size: 0.72rem;
}

/* Interior page structure */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
}

.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 34rem;
}

.page-hero-copy {
  align-self: center;
  padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 7vw, 7rem) clamp(4rem, 8vw, 7rem) 0;
}

.page-kicker {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  margin-bottom: 1.25rem;
  color: #efa387;
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-number {
  font-size: 1.7rem;
}

.page-hero h1 {
  max-width: 13ch;
  margin-bottom: 1.4rem;
  font-size: clamp(3rem, 6vw, 5.9rem);
}

.page-hero-copy > p {
  max-width: 42rem;
  margin: 0;
  color: #c2ced2;
  font-size: clamp(1.04rem, 1.5vw, 1.24rem);
}

.page-hero .button {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.page-hero .button:hover {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--white);
}

.page-hero .button-secondary {
  background: transparent;
  color: var(--white);
}

.firm-band .button {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.firm-band .button:hover {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--white);
}

.page-hero-art {
  position: relative;
  min-height: 26rem;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.page-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.page-hero-tag {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 1rem 1.25rem;
  background: var(--signal);
  color: var(--white);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-overview {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(2.5rem, 8vw, 8rem);
}

.overview-intro {
  position: sticky;
  top: 2rem;
  align-self: start;
}

.overview-intro h2 {
  max-width: 10ch;
  margin-bottom: 1.4rem;
}

.overview-intro p {
  color: var(--ink-soft);
}

.audience-note {
  margin-top: 2rem;
  padding: 1.2rem;
  border-left: 5px solid var(--signal);
  background: var(--mist);
}

.audience-note strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--display);
  text-transform: uppercase;
}

.audience-note p {
  margin: 0;
  font-size: 0.88rem;
}

.detail-groups {
  display: grid;
  gap: 1rem;
}

.detail-group {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--ink);
}

.detail-group h3 {
  margin-bottom: 0;
}

.detail-group-copy > p {
  margin-top: 0;
  color: var(--ink-soft);
}

.detail-list {
  columns: 2;
  column-gap: 2rem;
}

.detail-list li {
  break-inside: avoid;
}

.related-services {
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.related-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.related-header h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.related-card {
  min-height: 13rem;
  padding: 1.5rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  text-decoration: none;
}

.related-card:hover {
  background: var(--mist);
  color: var(--ink);
}

.related-card span {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--signal-dark);
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 900;
}

.related-card h3 {
  margin-bottom: 0;
}

.about-formation {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.formation-year,
.formation-copy {
  min-height: 18rem;
  padding: clamp(1.5rem, 5vw, 4rem);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.formation-year strong {
  display: block;
  color: var(--signal);
  font-family: var(--display);
  font-size: clamp(4.5rem, 10vw, 8rem);
  line-height: 0.9;
}

.formation-year span {
  color: var(--steel);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.formation-copy h2 {
  max-width: 14ch;
}

.formation-copy p {
  max-width: 48rem;
  color: var(--ink-soft);
}

.team-structure {
  padding: clamp(4rem, 9vw, 8rem) 0;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 5px solid var(--ink);
}

.role-card {
  min-height: 16rem;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
}

.role-card:last-child {
  border-right: 0;
}

.role-card span {
  display: block;
  margin-bottom: 4rem;
  color: var(--signal-dark);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 900;
}

.role-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.35rem;
}

.role-card p {
  margin: 0;
  color: var(--steel);
  font-size: 0.88rem;
}

.status-panel {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(2.5rem, 8vw, 8rem);
  align-items: start;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.status-mark {
  position: relative;
  min-height: 24rem;
  border: 1px solid var(--ink);
  background-image: linear-gradient(rgba(16, 32, 41, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(16, 32, 41, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
}

.status-mark::before,
.status-mark::after {
  position: absolute;
  content: "";
  background: var(--signal);
}

.status-mark::before {
  left: 15%;
  right: 15%;
  top: 50%;
  height: 10px;
}

.status-mark::after {
  left: 50%;
  top: 15%;
  bottom: 15%;
  width: 10px;
}

.status-copy h2 {
  max-width: 12ch;
}

.status-copy p {
  max-width: 45rem;
  color: var(--ink-soft);
}

.mail-panel {
  margin-top: 2rem;
  padding: 1.5rem;
  border-top: 5px solid var(--ink);
  background: var(--white);
}

.mail-panel span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--steel);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mail-panel address {
  font-family: var(--display);
  font-size: 1.12rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.5;
}

@media (max-width: 1060px) {
  .nav-list a {
    padding-inline: 0.48rem;
    font-size: 0.7rem;
  }

  .brand-text span:first-child {
    font-size: 1rem;
  }

  .brand-text span:last-child {
    font-size: 0.62rem;
  }

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

  .need-column:nth-child(2),
  .role-card:nth-child(2) {
    border-right: 0;
  }

  .need-column,
  .role-card {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 860px) {
  .utility-inner {
    justify-content: center;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    min-height: 5.2rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    grid-column: 1 / -1;
  }

  .nav-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
    padding: 0 0 1.2rem;
  }

  .js-ready .site-nav .nav-list {
    display: none;
  }

  .js-ready .site-nav.is-open .nav-list {
    display: grid;
  }

  .nav-list a {
    min-height: 2.8rem;
    padding: 0.5rem;
    border-top: 1px solid var(--line);
  }

  .hero-grid,
  .page-hero-grid,
  .firm-grid,
  .contact-grid,
  .overview-grid,
  .status-panel {
    grid-template-columns: 1fr;
  }

  .hero::before {
    right: 0;
  }

  .hero-copy,
  .page-hero-copy {
    padding-right: 0;
  }

  .hero-visual {
    min-height: 32rem;
  }

  .page-hero-art {
    min-height: 25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 0;
  }

  .service-intro,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .firm-visual {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .overview-intro {
    position: static;
  }

  .detail-group {
    grid-template-columns: 1fr;
  }

  .cta-band-inner {
    grid-template-columns: 1fr;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .preview-bar {
    display: block;
  }

  .preview-separator,
  .utility-label,
  .utility-email {
    display: none;
  }

  .utility-inner {
    min-height: 2.15rem;
  }

  .brand-mark {
    width: 2.35rem;
    height: 2.35rem;
  }

  .brand-text span:first-child {
    font-size: 0.9rem;
  }

  .brand-text span:last-child {
    font-size: 0.55rem;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(2.65rem, 14vw, 4.2rem);
  }

  .hero-copy,
  .page-hero-copy {
    padding-block: 4rem;
  }

  .hero-visual {
    min-height: 25rem;
  }

  .hero-plate {
    width: 90%;
  }

  .service-grid,
  .needs-grid,
  .role-grid,
  .related-grid,
  .field-grid,
  .footer-grid,
  .fact-row,
  .detail-group,
  .about-formation {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 22rem;
  }

  .need-column,
  .role-card {
    border-right: 0;
  }

  .detail-list {
    columns: 1;
  }

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

  .cta-actions,
  .button-row,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .related-header {
    display: block;
  }

  .related-header .text-link {
    margin-top: 1rem;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 0.35rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
