:root {
  --charcoal: #191b1d;
  --charcoal-2: #232629;
  --charcoal-3: #313539;
  --rust: #c96d4d;
  --rust-dark: #a84f35;
  --sand: #e6ddd3;
  --paper: #f4efe8;
  --white: #fffdf9;
  --ink: #202224;
  --muted: #696a68;
  --line: rgba(25, 27, 29, 0.18);
  --max: 1220px;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

address {
  font-style: normal;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--rust-dark);
}

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

:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 0.98;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 max(1rem, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: rgba(25, 27, 29, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  background: var(--rust);
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.brand-name {
  display: none;
  line-height: 1.08;
}

.brand-name strong {
  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-name small {
  margin-top: 0.28rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-button {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-button span {
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-button i,
.menu-button i::before,
.menu-button i::after {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button i {
  position: relative;
}

.menu-button i::before,
.menu-button i::after {
  position: absolute;
  content: "";
  left: 0;
}

.menu-button i::before {
  top: -7px;
}

.menu-button i::after {
  top: 7px;
}

.menu-button[aria-expanded="true"] i {
  background: transparent;
}

.menu-button[aria-expanded="true"] i::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] i::after {
  top: 0;
  transform: rotate(-45deg);
}

.main-navigation {
  position: absolute;
  top: 74px;
  left: 0;
  right: 0;
  display: none;
  min-height: calc(100vh - 74px);
  padding: 2rem 1rem;
  background: var(--charcoal);
}

.main-navigation.is-open {
  display: grid;
  align-content: start;
}

.main-navigation a {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--display);
  font-size: clamp(1.35rem, 6vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-navigation .header-cta {
  margin-top: 1.5rem;
  padding: 0.9rem 1rem;
  color: var(--white);
  background: var(--rust);
  border: 0;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--charcoal);
  background-size: 54px 54px;
}

.hero::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 42%;
  top: 0;
  left: 0;
  background: var(--rust);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3.5rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: clamp(4.5rem, 11vw, 8.5rem) 0 4rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
}

.hero-meta span {
  padding: 0.35rem 0.55rem;
  color: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--rust);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 850;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin-bottom: 1.6rem;
  font-size: clamp(3rem, 13vw, 7.4rem);
}

.hero-lead {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.03rem, 2vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0.8rem 1.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

.button-accent {
  color: var(--white);
  background: var(--rust);
}

.button-accent:hover {
  background: var(--rust-dark);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.button-ghost:hover {
  color: var(--charcoal);
  background: var(--white);
}

.hero-disclaimer {
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.69rem;
}

@media (max-width: 619px) {
  .hero h1 {
    font-size: clamp(2.3rem, 9.8vw, 2.75rem);
  }
}

.case-board {
  position: relative;
  min-height: 390px;
}

.case-board::before {
  position: absolute;
  content: "";
  width: 74%;
  height: 76%;
  top: 4%;
  right: 4%;
  background: var(--rust);
  clip-path: polygon(24% 0, 100% 0, 100% 78%, 74% 100%, 0 100%, 0 25%);
}

.board-corner {
  position: absolute;
  z-index: 4;
  width: 50px;
  height: 50px;
  border-color: rgba(255, 255, 255, 0.45);
}

.board-corner-one {
  top: 0;
  left: 0;
  border-top: 1px solid;
  border-left: 1px solid;
}

.board-corner-two {
  right: 0;
  bottom: 0;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.case-sheet {
  position: absolute;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.sheet-back {
  top: 4%;
  left: 7%;
  width: 68%;
  height: 74%;
  padding: 1.2rem;
  color: var(--charcoal);
  background: var(--sand);
  transform: rotate(-7deg);
}

.sheet-back small {
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.sheet-back span {
  display: block;
  width: 78%;
  height: 7px;
  margin-top: 1.1rem;
  background: rgba(25, 27, 29, 0.17);
}

.sheet-back span:nth-child(3) {
  width: 62%;
}

.sheet-back span:nth-child(4) {
  width: 84%;
}

.sheet-front {
  z-index: 2;
  width: 70%;
  height: 78%;
  top: 12%;
  right: 4%;
  overflow: hidden;
  color: var(--charcoal);
  background: var(--white);
  transform: rotate(4deg);
}

.sheet-head {
  display: flex;
  height: 33%;
  padding: 1.15rem;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--white);
  background: var(--charcoal-2);
}

.sheet-head span {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sheet-head strong {
  align-self: end;
  color: var(--rust);
  font-family: var(--display);
  font-size: clamp(2.2rem, 12vw, 4.6rem);
  line-height: 0.78;
}

.sheet-body {
  padding: 2rem 1.2rem;
}

.sheet-line {
  display: block;
  width: 66%;
  height: 8px;
  margin-bottom: 0.95rem;
  background: rgba(25, 27, 29, 0.14);
}

.line-long {
  width: 92%;
}

.line-short {
  width: 48%;
}

.sheet-stamp {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  color: var(--rust);
  border: 3px solid var(--rust);
  border-radius: 50%;
  font-family: var(--display);
  font-weight: 900;
  transform: rotate(-10deg);
}

.board-label {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  display: grid;
  width: min(90%, 340px);
  padding: 1rem 1.2rem;
  color: var(--white);
  background: var(--charcoal-3);
  border-left: 5px solid var(--rust);
}

.board-label span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.board-label strong {
  margin-top: 0.25rem;
  font-family: var(--display);
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-rail {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 1500px);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-rail > div {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.75rem;
  padding: 1.2rem max(1rem, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.rail-index {
  color: var(--rust);
  font-size: 0.6rem;
  font-weight: 900;
}

.hero-rail > div > div {
  display: grid;
}

.hero-rail strong {
  font-family: var(--display);
  font-size: 0.93rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-rail small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.66rem;
}

.intro-strip {
  display: grid;
  padding: 1.25rem max(1rem, calc((100vw - var(--max)) / 2));
  color: var(--charcoal);
  background: var(--rust);
}

.intro-strip p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.1rem, 5vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-transform: uppercase;
}

.intro-strip p:last-child {
  color: rgba(25, 27, 29, 0.62);
}

.section {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: clamp(4.5rem, 10vw, 8.5rem) 0;
}

.section-top {
  display: grid;
  gap: 1.7rem;
  margin-bottom: 2.7rem;
}

.section-label {
  display: flex;
  gap: 0.55rem;
  margin: 0;
  color: var(--rust-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-label span {
  color: var(--charcoal);
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.6rem, 9vw, 5.5rem);
}

.section-top > div > p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
}

.service-panels {
  display: grid;
}

.service-panel {
  min-height: 600px;
  padding: 1.3rem;
}

.service-panel-dark {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    var(--charcoal);
  background-size: 48px 100%;
}

.service-panel-light {
  color: var(--charcoal);
  background: var(--sand);
  border: 1px solid var(--line);
  border-top: 0;
}

.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid currentColor;
}

.service-panel-dark .panel-head {
  border-color: rgba(255, 255, 255, 0.2);
}

.panel-head span {
  font-family: var(--display);
  font-size: clamp(3.2rem, 15vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.service-panel-dark .panel-head span {
  color: var(--rust);
}

.panel-head p {
  margin: 0;
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.panel-content {
  padding-top: 3rem;
}

.panel-kicker {
  margin: 0 0 0.9rem;
  color: var(--rust);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-content h3 {
  max-width: 520px;
  margin-bottom: 1.2rem;
  font-family: var(--display);
  font-size: clamp(2.1rem, 7vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.panel-content > p:not(.panel-kicker) {
  max-width: 580px;
  opacity: 0.68;
}

.panel-content ul {
  display: grid;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid;
}

.service-panel-dark ul {
  border-color: rgba(255, 255, 255, 0.2);
}

.panel-content li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.2rem;
  border-bottom: 1px solid;
  font-size: 0.83rem;
  font-weight: 650;
}

.service-panel-dark li {
  border-color: rgba(255, 255, 255, 0.14);
}

.panel-content li::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  top: 1.22rem;
  left: 0;
  background: var(--rust);
}

.scope-note {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1.3rem;
  color: var(--white);
  background: var(--rust-dark);
}

.scope-note span {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.scope-note p {
  margin: 0;
  font-size: 0.84rem;
}

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

.method-heading {
  display: grid;
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}

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

.method-list li {
  position: relative;
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 1rem;
  padding: 1.7rem 0 2.2rem;
  border-bottom: 1px solid var(--line);
}

.method-index {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--charcoal);
  font-family: var(--display);
  font-weight: 900;
}

.method-list h3 {
  margin: 0.2rem 0 0.65rem;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.method-list p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.method-code {
  position: absolute;
  right: 0;
  bottom: 0.5rem;
  color: var(--rust-dark);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.profile {
  display: grid;
  background: var(--charcoal);
}

.profile-visual {
  position: relative;
  display: grid;
  min-height: 430px;
  overflow: hidden;
  align-content: center;
  justify-content: center;
  color: var(--white);
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, 0.05) 48% 52%, transparent 52%),
    var(--charcoal-2);
}

.profile-visual::before {
  position: absolute;
  content: "";
  width: 260px;
  height: 260px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--rust);
}

.profile-lines {
  position: absolute;
  inset: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.profile-lines::before,
.profile-lines::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.18);
}

.profile-lines::before {
  width: 1px;
  height: 100%;
  left: 50%;
}

.profile-lines::after {
  width: 100%;
  height: 1px;
  top: 50%;
}

.profile-visual strong,
.profile-visual small {
  position: relative;
  z-index: 2;
}

.profile-visual strong {
  font-family: var(--display);
  font-size: clamp(5.5rem, 26vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 0.8;
}

.profile-visual small {
  margin-top: 1.4rem;
  color: var(--charcoal);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-align: center;
}

.profile-copy {
  padding: clamp(4rem, 10vw, 7rem) max(1rem, calc((100vw - var(--max)) / 2));
  color: var(--white);
}

.profile-copy .section-label span {
  color: var(--white);
}

.profile-copy h2 {
  color: var(--white);
}

.profile-lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.1rem, 3vw, 1.35rem);
}

.profile-copy > p:not(.section-label):not(.profile-lead) {
  color: rgba(255, 255, 255, 0.58);
}

.facts {
  margin: 2rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.facts > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.facts dt {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.facts dd {
  margin: 0;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-align: right;
  text-transform: uppercase;
}

.office {
  display: grid;
  gap: 3rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: clamp(4.5rem, 10vw, 8.5rem) 0;
}

.office-copy > p:not(.section-label) {
  max-width: 650px;
  color: var(--muted);
}

.office-copy .button {
  margin-top: 1rem;
}

.contact-card {
  color: var(--white);
  background: var(--charcoal);
  border-top: 8px solid var(--rust);
  box-shadow: 20px 20px 0 var(--sand);
}

.contact-card-head {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-card-head span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.55rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.contact-row {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-row > span {
  color: var(--rust);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-row a,
.contact-row address,
.contact-row p {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.map-link {
  display: flex;
  padding: 1rem;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: var(--rust-dark);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  gap: 2rem;
  padding: 2rem max(1rem, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.5);
  background: #111315;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.7rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--rust);
  font-family: var(--display);
  font-weight: 900;
}

.footer-brand p,
.footer-note {
  margin: 0;
}

.footer-brand strong {
  color: var(--white);
  font-family: var(--display);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-note {
  max-width: 750px;
}

@media (min-width: 620px) {
  .brand-name {
    display: grid;
  }

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

  .hero-rail > div {
    padding: 1.2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 0;
  }

  .hero-rail > div:first-child {
    padding-left: max(1rem, calc((100vw - var(--max)) / 2));
  }

  .hero-rail > div:last-child {
    padding-right: max(1rem, calc((100vw - var(--max)) / 2));
    border-right: 0;
  }

  .intro-strip {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .intro-strip p:last-child {
    text-align: right;
  }

  .method-list li {
    grid-template-columns: 4rem minmax(0, 1fr) 3rem;
    align-items: start;
  }

  .method-code {
    position: static;
    padding-top: 0.5rem;
    text-align: right;
  }

  .contact-row {
    grid-template-columns: 8rem 1fr;
    gap: 1rem;
  }

  .site-footer {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
  }
}

@media (min-width: 900px) {
  body.nav-open {
    overflow: auto;
  }

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

  .menu-button {
    display: none;
  }

  .main-navigation,
  .main-navigation.is-open {
    position: static;
    display: flex;
    min-height: 0;
    padding: 0;
    align-items: center;
    gap: 1.4rem;
    background: transparent;
  }

  .main-navigation a {
    padding: 0.4rem 0;
    border: 0;
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
  }

  .main-navigation .header-cta {
    margin: 0 0 0 0.3rem;
    padding: 0.7rem 0.9rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
    min-height: calc(100svh - 82px);
    align-items: center;
    padding-top: 4.5rem;
    padding-bottom: 4rem;
  }

  .hero-meta {
    margin-bottom: 1.5rem;
  }

  .hero h1 {
    font-size: clamp(4.35rem, 5.5vw, 5rem);
  }

  .case-board {
    min-height: 520px;
  }

  .section-top {
    grid-template-columns: 0.36fr 1fr;
    align-items: start;
  }

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

  .service-panel {
    min-height: 680px;
    padding: 2rem;
  }

  .service-panel-light {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .method-heading {
    grid-template-columns: 0.36fr 1fr;
  }

  .method-list {
    margin-left: 27%;
  }

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

  .profile-visual {
    min-height: 680px;
  }

  .profile-copy {
    display: grid;
    padding-left: clamp(3.5rem, 7vw, 7rem);
    padding-right: max(1rem, calc((100vw - var(--max)) / 2));
    align-content: center;
  }

  .office {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.8fr);
    align-items: start;
    gap: clamp(4rem, 9vw, 8rem);
  }
}

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

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