:root {
  --navy-950: #061b34;
  --navy-900: #082442;
  --navy-800: #0b2e59;
  --navy-700: #164879;
  --steel-700: #4d5966;
  --steel-600: #65717c;
  --steel-300: #b8c0c7;
  --steel-200: #d8dde1;
  --paper: #f6f4ef;
  --paper-deep: #ebe8e0;
  --white: #ffffff;
  --ink: #102235;
  --gold: #bd9a5c;
  --gold-light: #d6bd8f;
  --line: rgba(16, 34, 53, 0.16);
  --shadow: 0 20px 60px rgba(6, 27, 52, 0.13);
  --container: 1200px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
}

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

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

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

::selection {
  background: var(--gold-light);
  color: var(--navy-950);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.section-muted {
  background: var(--paper-deep);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--navy-700);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--gold-light);
}

.section-title {
  max-width: 810px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.large-copy {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(1.32rem, 2.2vw, 1.8rem);
  line-height: 1.45;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--navy-800);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: gap 180ms ease, color 180ms ease;
}

.text-link:hover {
  gap: 18px;
  color: var(--gold);
}

.light-link {
  color: var(--white);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-light {
  background: var(--white);
  color: var(--navy-900);
}

.button-light:hover {
  background: var(--gold-light);
}

.button-outline-light {
  margin-top: 22px;
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.button-outline-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy-900);
}

/* Header */
.utility-bar {
  min-height: 36px;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.utility-inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-inner p {
  margin: 0;
}

.utility-inner a {
  color: var(--gold-light);
  text-transform: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(16, 34, 53, 0.11);
  background: rgba(246, 244, 239, 0.96);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(6, 27, 52, 0.1);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  width: 220px;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: 100%;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 36px);
  color: var(--navy-900);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
  padding: 12px 0;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 13px 17px;
  background: var(--navy-800);
  color: var(--white);
  transition: background 180ms ease;
}

.nav-cta:hover {
  background: var(--navy-700);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--navy-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 124px);
  background:
    radial-gradient(circle at 79% 20%, rgba(54, 105, 148, 0.42), transparent 31%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800) 72%, #123f6f);
  color: var(--white);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent, #000 42%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(214, 189, 143, 0.26);
  border-radius: 50%;
}

.orbit-one {
  top: -260px;
  right: -180px;
  width: 720px;
  height: 720px;
}

.orbit-two {
  top: 14%;
  right: 3%;
  width: 460px;
  height: 460px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 620px;
  align-items: center;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.72fr);
  gap: clamp(56px, 8vw, 120px);
  padding-top: 82px;
  padding-bottom: 92px;
}

.hero-copy h1 {
  max-width: 800px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7.2vw, 7.1rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hero-lede {
  max-width: 660px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.79);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 42px;
}

.hero-panel {
  position: relative;
  padding: 44px 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(6, 27, 52, 0.46);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.hero-panel::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 74px;
  height: 4px;
  background: var(--gold);
  content: "";
}

.panel-kicker {
  margin: 0 0 6px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 400;
}

.panel-role {
  margin: 4px 0 24px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.credential-row span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.panel-rule {
  width: 100%;
  height: 1px;
  margin: 29px 0 24px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-panel > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.69);
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.6;
}

.hero-foot {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-foot p {
  margin: 0;
}

.hero-foot span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

/* Intro and services */
.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(64px, 10vw, 145px);
}

.intro-copy {
  max-width: 600px;
}

.intro-copy > p:not(.large-copy) {
  margin: 0 0 32px;
  color: var(--steel-700);
}

.section-heading-row {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.58fr);
  gap: 64px;
  margin-bottom: 68px;
}

.section-heading-row > p {
  margin: 0 0 8px;
  color: var(--steel-700);
}

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

.service-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 32px 28px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.28);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  z-index: 1;
  background: var(--navy-800);
  box-shadow: var(--shadow);
  color: var(--white);
  transform: translateY(-8px);
}

.service-number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.service-card h3 {
  margin: 62px 0 18px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.18;
}

.service-card p {
  margin: 0;
  color: var(--steel-700);
  line-height: 1.65;
  transition: color 220ms ease;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 28px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Service details */
.service-detail {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.detail-grid {
  display: grid;
  grid-template-columns: 90px minmax(0, 1.2fr) minmax(300px, 0.72fr);
  gap: clamp(40px, 6vw, 90px);
}

.detail-index {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.1rem;
  line-height: 1;
}

.detail-main .section-title {
  font-size: clamp(2.5rem, 4.5vw, 4.6rem);
}

.detail-main .large-copy {
  max-width: 780px;
  margin-top: 38px;
}

.detail-list {
  padding-top: 50px;
}

.detail-list h3 {
  margin: 0 0 24px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.check-list li {
  position: relative;
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid var(--line);
  color: var(--steel-700);
}

.check-list li:first-child {
  border-top: 1px solid var(--line);
}

.check-list li::before {
  position: absolute;
  top: 17px;
  left: 2px;
  width: 12px;
  height: 7px;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  content: "";
  transform: rotate(-45deg);
}

.fine-print {
  margin: 26px 0 0;
  color: var(--steel-600);
  font-size: 0.78rem;
  line-height: 1.6;
}

.detail-dark {
  border: 0;
  background: var(--navy-950);
  color: var(--white);
}

.detail-dark .large-copy,
.detail-accent .large-copy {
  color: rgba(255, 255, 255, 0.87);
}

.light-list li {
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
}

.light-list li:first-child {
  border-color: rgba(255, 255, 255, 0.16);
}

.detail-accent {
  border: 0;
  background: var(--navy-700);
  color: var(--white);
}

.light-fine {
  color: rgba(255, 255, 255, 0.61);
}

/* Process */
.approach {
  background: var(--white);
}

.approach-heading {
  margin-bottom: 54px;
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  min-height: 300px;
  padding: 30px 28px 32px 0;
  border-right: 1px solid var(--line);
}

.process-list li + li {
  padding-left: 28px;
}

.process-list li:last-child {
  border-right: 0;
  padding-right: 0;
}

.process-number {
  display: block;
  margin-bottom: 78px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.process-list h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.process-list p {
  margin: 0;
  color: var(--steel-700);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* About Chris */
.chris-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1fr);
  gap: clamp(64px, 10vw, 150px);
}

.profile-card {
  position: relative;
  padding: 0 42px 42px;
  overflow: hidden;
  background: var(--navy-900);
  box-shadow: var(--shadow);
  color: var(--white);
}

.profile-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 80px;
  height: 80px;
  border-right: 1px solid rgba(214, 189, 143, 0.7);
  border-bottom: 1px solid rgba(214, 189, 143, 0.7);
  content: "";
}

.profile-photo {
  position: relative;
  margin: 0 -42px 42px;
  aspect-ratio: 1 / 1.04;
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
  background: var(--steel-100);
}

.profile-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 72%, rgba(6, 27, 52, 0.18));
  content: "";
  pointer-events: none;
}

.profile-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.profile-label {
  margin: 0 0 7px;
  color: var(--gold-light);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2.45rem;
  font-weight: 400;
}

.profile-rule {
  height: 1px;
  margin: 30px 0;
  background: rgba(255, 255, 255, 0.18);
}

.credential-list {
  margin: 0;
}

.credential-list div {
  display: grid;
  padding: 13px 0;
  grid-template-columns: 90px 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.credential-list dt {
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.credential-list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.chris-copy > p:not(.eyebrow):not(.large-copy):not(.entity-note) {
  color: var(--steel-700);
}

blockquote {
  margin: 38px 0 32px;
  padding: 18px 0 18px 28px;
  border-left: 2px solid var(--gold);
}

blockquote p {
  margin: 0;
  color: var(--navy-800);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-style: italic;
}

.entity-note {
  margin: 0;
  color: var(--steel-600);
  font-size: 0.8rem;
}

/* Assignment form */
.assignment {
  background:
    linear-gradient(110deg, rgba(6, 27, 52, 0.97), rgba(11, 46, 89, 0.95)),
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(255, 255, 255, 0.05) 20px 21px);
  color: var(--white);
}

.assignment-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.74fr) minmax(460px, 1fr);
  gap: clamp(60px, 9vw, 130px);
}

.assignment-intro {
  position: sticky;
  top: 140px;
}

.assignment-intro .large-copy {
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.77);
}

.direct-contact {
  margin-top: 54px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.direct-contact p {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.direct-contact a {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.assignment-form {
  padding: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

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

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  background: rgba(6, 27, 52, 0.44);
  color: var(--white);
  transition: border-color 180ms ease, background 180ms ease;
}

.field input,
.field select {
  height: 52px;
  padding: 0 14px;
}

.field textarea {
  min-height: 150px;
  padding: 13px 14px;
  resize: vertical;
}

.field select {
  color-scheme: dark;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-light);
  background: rgba(6, 27, 52, 0.7);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(189, 154, 92, 0.18);
}

.field [aria-invalid="true"] {
  border-color: #f2a3a3;
}

.field-help,
.form-note {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.73rem;
  line-height: 1.55;
}

.consent {
  display: grid;
  align-items: start;
  margin: 0 0 28px;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  color: rgba(255, 255, 255, 0.67);
  cursor: pointer;
  font-size: 0.78rem;
  line-height: 1.55;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--gold);
}

.submit-button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin-top: 12px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 700;
}

/* Contact and footer */
.contact-strip {
  padding: 58px 0;
  background: var(--gold-light);
}

.contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.contact-strip .eyebrow {
  margin-bottom: 8px;
  color: var(--navy-800);
}

.contact-strip h2 {
  max-width: 650px;
  margin: 0;
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
}

.contact-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
}

.contact-links a {
  border-bottom: 1px solid rgba(6, 27, 52, 0.3);
  color: var(--navy-950);
  font-weight: 800;
}

.site-footer {
  padding: 78px 0 26px;
  background: var(--navy-950);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr;
  gap: 70px;
  padding-bottom: 68px;
}

.footer-brand img {
  width: 230px;
}

.footer-brand p {
  max-width: 390px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.55);
}

.footer-heading {
  margin: 4px 0 20px;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.site-footer li {
  margin: 7px 0;
}

.site-footer li a {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.88rem;
  transition: color 180ms ease;
}

.site-footer li a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.68rem;
  line-height: 1.55;
}

.footer-bottom p {
  max-width: 560px;
  margin: 0;
}

/* Responsive */
@media (max-width: 1040px) {
  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    z-index: 99;
    top: 88px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 44px 24px 72px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .primary-nav > a:not(.nav-cta) {
    padding: 17px 2px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }

  .primary-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 26px;
    padding: 17px 20px;
    text-align: center;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-panel {
    max-width: 620px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .detail-list {
    padding-top: 0;
    grid-column: 2;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

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

  .assignment-intro {
    position: static;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 84px 0;
  }

  .utility-inner p {
    display: none;
  }

  .utility-inner {
    justify-content: flex-end;
  }

  .header-inner {
    min-height: 76px;
  }

  .primary-nav {
    top: 76px;
  }

  .brand {
    width: 190px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: 0;
    gap: 58px;
    padding-top: 76px;
    padding-bottom: 68px;
  }

  .hero-copy h1 {
    font-size: clamp(3.35rem, 16vw, 5rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-panel {
    padding: 35px 28px;
  }

  .hero-foot {
    min-height: 62px;
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }

  .hero-foot span {
    flex: 0 0 auto;
  }

  .intro-grid,
  .section-heading-row,
  .chris-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .section-heading-row {
    margin-bottom: 46px;
  }

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

  .service-card {
    min-height: 310px;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .detail-index {
    font-size: 1.4rem;
  }

  .detail-list {
    grid-column: auto;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li + li,
  .process-list li:last-child {
    min-height: 0;
    padding: 28px 0 32px;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .process-list li:first-child {
    border-top: 0;
  }

  .process-number {
    margin-bottom: 32px;
  }

  .profile-card {
    padding: 0 28px 34px;
  }

  .profile-photo {
    margin: 0 -28px 34px;
  }

  .assignment-form {
    padding: 30px 22px;
  }

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

  .contact-strip-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
  }

  .contact-links {
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 46px 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 420px) {
  .utility-bar {
    display: none;
  }

  .brand {
    width: 170px;
  }

  .section-title {
    font-size: 2.45rem;
  }

  .hero-copy h1 {
    font-size: 3.25rem;
  }

  .hero-panel h2 {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .utility-bar,
  .site-header,
  .hero-actions,
  .assignment,
  .contact-strip,
  .site-footer {
    display: none !important;
  }

  .section,
  .hero {
    padding: 28px 0;
    break-inside: avoid;
  }

  .hero {
    min-height: 0;
    background: #fff;
    color: #000;
  }

  .hero-grid,
  .hero-orbit,
  .hero-panel,
  .hero-foot {
    display: none;
  }

  .hero-copy h1,
  .hero-lede,
  .eyebrow.light {
    color: #000;
  }
}
