:root {
  --color-paper: #fbf6ed;
  --color-cream: #f4eadc;
  --color-ink: #182033;
  --color-muted: #5e6472;
  --color-navy: #081833;
  --color-copper: #ad7b30;
  --color-bordeaux: #7f2635;
  --color-sage: #75836b;
  --color-white: #fffdf8;
  --color-line: rgba(24, 32, 51, 0.14);
  --shadow-soft: 0 22px 55px rgba(8, 24, 51, 0.12);
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: "Segoe UI", Arial, sans-serif;
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
}

body::selection {
  background: rgba(173, 123, 48, 0.24);
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3 {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.05;
}

h1 {
  font-size: 4.7rem;
  max-width: 980px;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.55rem;
}

p {
  margin: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--color-navy);
  color: var(--color-white);
  padding: 0.7rem 1rem;
  border-radius: 4px;
}

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

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

.container--narrow {
  max-width: 850px;
}

.container--quote {
  max-width: 980px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 237, 0.92);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  width: min(100% - 28px, 1320px);
  min-height: 82px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--color-navy);
  text-decoration: none;
  min-width: 230px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
}

.brand small {
  max-width: 210px;
  color: var(--color-muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

.site-nav {
  display: flex;
  align-items: center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__item {
  position: relative;
}

.nav a,
.nav summary {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.4rem 0.72rem;
  border-radius: 4px;
  color: var(--color-ink);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
}

.nav summary {
  list-style: none;
}

.nav summary::-webkit-details-marker {
  display: none;
}

.nav a:hover,
.nav summary:hover,
.nav__item.is-active > a,
.nav__item.is-active summary {
  color: var(--color-bordeaux);
  background: rgba(173, 123, 48, 0.1);
}

.nav-menu__panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 230px;
  padding: 0.45rem;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.nav-menu__panel a {
  width: 100%;
  justify-content: flex-start;
  min-height: 40px;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid var(--color-line);
  border-radius: 4px;
  background: var(--color-white);
  color: var(--color-navy);
  padding: 0.65rem 0.85rem;
  font: inherit;
  font-weight: 700;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-navy);
  content: "";
}

.nav-toggle__icon {
  position: relative;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  position: absolute;
  left: 0;
}

.nav-toggle__icon::before {
  top: -6px;
}

.nav-toggle__icon::after {
  top: 6px;
}

.hero {
  position: relative;
  min-height: 58vh;
  max-height: 820px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-navy);
}

.hero--home {
  min-height: 72vh;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 24, 51, 0.82), rgba(8, 24, 51, 0.46) 48%, rgba(8, 24, 51, 0.12)),
    linear-gradient(0deg, rgba(8, 24, 51, 0.72), rgba(8, 24, 51, 0.02) 62%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  padding: 6.4rem 0 5.2rem;
  color: var(--color-white);
}

.hero h1 {
  color: var(--color-white);
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.36);
}

.hero__lead {
  max-width: 720px;
  margin-top: 1.3rem;
  color: rgba(255, 253, 248, 0.93);
  font-size: 1.22rem;
}

.hero__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.hero__notes li {
  border: 1px solid rgba(255, 253, 248, 0.46);
  border-radius: 4px;
  padding: 0.32rem 0.64rem;
  color: rgba(255, 253, 248, 0.92);
  font-size: 0.9rem;
}

.hero--mark {
  min-height: 48vh;
  background: var(--color-cream);
}

.hero--mark .hero__image {
  inset: 4rem 0 auto auto;
  width: 54%;
  height: 70%;
  object-fit: contain;
  opacity: 0.16;
}

.hero--mark .hero__shade {
  background: linear-gradient(90deg, var(--color-paper), rgba(244, 234, 220, 0.72));
}

.hero--mark h1,
.hero--mark .hero__content {
  color: var(--color-navy);
}

.hero--mark h1 {
  text-shadow: none;
}

.hero--mark .hero__lead {
  color: var(--color-ink);
}

.hero--quiet-photo {
  isolation: isolate;
  min-height: 56vh;
  background:
    radial-gradient(circle at 76% 48%, rgba(173, 123, 48, 0.2), transparent 34%),
    var(--color-navy);
}

.hero--quiet-photo .hero__image {
  inset: 0 0 0 auto;
  z-index: 0;
  width: min(57vw, 820px);
  height: 100%;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: saturate(0.88) contrast(1.04);
  opacity: 0.68;
  transform: none;
}

.hero--quiet-photo .hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 24, 51, 1), rgba(8, 24, 51, 0.98) 43%, rgba(8, 24, 51, 0.72) 58%, rgba(8, 24, 51, 0.34) 78%, rgba(8, 24, 51, 0.18)),
    linear-gradient(0deg, rgba(8, 24, 51, 0.8), rgba(8, 24, 51, 0.2));
}

.hero--quiet-photo .hero__content {
  z-index: 2;
  max-width: 1180px;
}

.hero--quiet-photo h1,
.hero--quiet-photo .hero__lead {
  max-width: 660px;
}

.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--color-copper);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e5c987;
}

.hero--mark .eyebrow {
  color: var(--color-bordeaux);
}

.section {
  padding: 5.6rem 0;
}

.section:nth-of-type(odd) {
  background: var(--color-white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section__lead {
  max-width: 790px;
  margin-top: 1.15rem;
  color: var(--color-muted);
  font-size: 1.18rem;
}

.prose {
  margin-top: 1.7rem;
}

.prose p + p {
  margin-top: 1rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0.82rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button--primary {
  background: var(--color-bordeaux);
  color: var(--color-white);
}

.button--primary:hover {
  background: #661d2a;
}

.button--secondary {
  background: rgba(255, 253, 248, 0.12);
  border-color: rgba(255, 253, 248, 0.52);
  color: var(--color-white);
}

.hero--mark .button--secondary,
.section .button--secondary {
  background: transparent;
  border-color: var(--color-copper);
  color: var(--color-navy);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

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

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(8, 24, 51, 0.06);
}

.section:nth-of-type(odd) .service-card {
  background: var(--color-paper);
}

.service-card img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.service-card--external img {
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: var(--color-paper);
}

.service-card__media-link {
  display: block;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.service-card__media-link img {
  transition: transform 220ms ease;
}

.service-card__media-link:hover img {
  transform: scale(1.025);
}

.service-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.35rem;
}

.service-card p {
  margin-top: 0.75rem;
  color: var(--color-muted);
}

.service-card a {
  margin-top: auto;
  padding-top: 1.15rem;
  color: var(--color-bordeaux);
  font-weight: 800;
  text-decoration: none;
}

.service-card a:hover {
  text-decoration: underline;
}

.experience,
.text-image,
.split,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 3.2rem;
  align-items: center;
}

.text-image {
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1fr);
}

.feature-media,
.experience__media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.feature-media img,
.experience__media img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
}

.experience__media img {
  min-height: 520px;
}

.check-list,
.feature-list {
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--color-ink);
}

.check-list li + li {
  margin-top: 0.78rem;
}

.check-list li::before {
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 0.62rem;
  height: 0.62rem;
  background: var(--color-copper);
  border-radius: 50%;
  content: "";
}

.container--quote blockquote {
  margin: 0;
  padding: 3.2rem;
  border-left: 6px solid var(--color-copper);
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius);
}

blockquote p {
  font-family: var(--font-heading);
  font-size: 3.15rem;
  line-height: 1.1;
}

blockquote footer {
  margin-top: 1rem;
  color: rgba(255, 253, 248, 0.76);
}

.section--longform {
  background: var(--color-white);
}

.longform {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.9fr);
  gap: 3.2rem;
  align-items: start;
}

.longform__intro {
  position: sticky;
  top: 112px;
}

.longform__body {
  max-width: 780px;
  padding-top: 4.35rem;
}

.longform__body h2,
.longform__body h3 {
  margin-top: 3rem;
}

.longform__body h3 {
  color: var(--color-bordeaux);
}

.longform__body p {
  color: var(--color-ink);
}

.longform__body p + p {
  margin-top: 1.05rem;
}

.longform__quote {
  margin: 2rem 0;
  padding: 1.5rem 1.65rem;
  border-left: 5px solid var(--color-copper);
  background: var(--color-cream);
  border-radius: var(--radius);
}

.longform__quote p {
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1.24;
}

.longform__body .longform__emphasis {
  margin: 1.9rem 0;
  padding: 1.25rem 1.45rem;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 1.75rem;
  line-height: 1.26;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.6rem;
  background: var(--color-bordeaux);
  color: var(--color-white);
  border-radius: var(--radius);
}

.cta-band h2 {
  color: var(--color-white);
  font-size: 2.2rem;
}

.cta-band p {
  max-width: 690px;
  margin-top: 0.8rem;
  color: rgba(255, 253, 248, 0.86);
}

.cta-band .actions {
  margin-top: 0;
  flex: 0 0 auto;
}

.cta-band .button--primary {
  background: var(--color-white);
  color: var(--color-bordeaux);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  min-height: 240px;
  padding: 1.35rem;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  counter-increment: steps;
}

.steps__number::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 1.15rem;
  background: var(--color-sage);
  color: var(--color-white);
  border-radius: 50%;
  content: counter(steps);
  font-weight: 800;
}

.steps p {
  margin-top: 0.75rem;
  color: var(--color-muted);
}

.split {
  align-items: start;
}

.split > * {
  min-width: 0;
}

.callout {
  position: relative;
  max-width: 560px;
  margin-top: 0.35rem;
  padding: 1.2rem 0 1.2rem 1.55rem;
  background:
    linear-gradient(90deg, rgba(173, 123, 48, 0.11), rgba(173, 123, 48, 0.035) 54%, transparent);
  border: 0;
  border-left: 2px solid var(--color-copper);
  border-radius: 0;
}

.callout p {
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 1.38rem;
  line-height: 1.42;
  overflow-wrap: break-word;
}

.callout::before {
  position: absolute;
  top: -0.65rem;
  left: 1.35rem;
  color: rgba(173, 123, 48, 0.28);
  content: "“";
  font-family: var(--font-heading);
  font-size: 3.8rem;
  line-height: 1;
}

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

.feature-list li {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 0.95rem;
  align-items: start;
  padding: 1.2rem 1.25rem;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.feature-list span {
  width: 11px;
  height: 11px;
  margin-top: 0.45rem;
  background: var(--color-bordeaux);
  border-radius: 50%;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: 0 14px 34px rgba(8, 24, 51, 0.06);
}

.rates-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.rates-table th,
.rates-table td {
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--color-line);
  text-align: left;
  vertical-align: top;
}

.rates-table thead th {
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 0.95rem;
}

.rates-table tbody th {
  width: 42%;
  color: var(--color-navy);
  font-weight: 800;
}

.rates-table tbody tr:last-child th,
.rates-table tbody tr:last-child td {
  border-bottom: 0;
}

.contact-layout {
  align-items: start;
}

.contact-details {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-line);
}

.contact-details p + p {
  margin-top: 1rem;
}

.contact-details strong,
.contact-details span,
.contact-details a {
  display: block;
}

.contact-details strong {
  color: var(--color-navy);
}

.contact-details a {
  color: var(--color-bordeaux);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

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

label {
  display: grid;
  gap: 0.4rem;
  color: var(--color-navy);
  font-size: 0.95rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(24, 32, 51, 0.22);
  border-radius: 4px;
  background: var(--color-paper);
  color: var(--color-ink);
  font: inherit;
  padding: 0.78rem 0.82rem;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.button:focus,
.nav-toggle:focus,
a:focus {
  outline: 3px solid rgba(173, 123, 48, 0.42);
  outline-offset: 3px;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--color-muted);
  font-weight: 500;
}

.checkbox input {
  width: auto;
  margin-top: 0.35rem;
}

.form-status {
  min-height: 1.4rem;
  color: var(--color-bordeaux);
  font-weight: 750;
}

.form-status.is-error {
  color: #9f1d35;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.site-footer {
  overflow: hidden;
  padding: 4.4rem 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(173, 123, 48, 0.16), transparent 28%),
    linear-gradient(135deg, #06152d, var(--color-navy));
  color: rgba(255, 253, 248, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(160px, 0.62fr) minmax(260px, 0.86fr);
  gap: 2.5rem;
  align-items: start;
}

.footer-grid > * {
  min-width: 0;
}

.footer-logo-card {
  display: block;
  width: 100%;
  max-width: 430px;
  padding: 1.05rem 1.25rem;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(244, 234, 220, 0.96));
  border: 1px solid rgba(229, 201, 135, 0.42);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
  text-decoration: none;
}

.footer-brand__logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(8, 24, 51, 0.08));
}

.footer-brand__caption {
  max-width: 430px;
  margin: 1rem 0 0;
  color: rgba(255, 253, 248, 0.78);
}

.site-footer h2 {
  margin-bottom: 0.85rem;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
}

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

.site-footer li + li {
  margin-top: 0.45rem;
}

.site-footer a {
  color: var(--color-white);
  text-decoration-color: rgba(255, 253, 248, 0.35);
}

.site-footer p,
.site-footer a {
  overflow-wrap: anywhere;
}

.footer-small {
  margin-top: 1rem;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.95rem;
}

@media (max-width: 1120px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 14px;
    left: 14px;
    display: none;
    padding: 0.75rem;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: block;
  }

  .nav {
    display: grid;
    gap: 0.15rem;
  }

  .nav a,
  .nav summary {
    width: 100%;
    justify-content: space-between;
  }

  .nav-menu__panel {
    position: static;
    width: 100%;
    margin-top: 0.2rem;
    box-shadow: none;
  }
}

@media (max-width: 920px) {
  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero,
  .hero--home {
    min-height: 68vh;
  }

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

  .experience,
  .text-image,
  .split,
  .contact-layout,
  .longform,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .longform__intro {
    position: static;
  }

  .longform__body {
    padding-top: 0;
  }

  .feature-media img,
  .experience__media img {
    min-height: 360px;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-band .actions {
    width: 100%;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .container,
  .hero__content {
    width: min(100% - 28px, var(--container));
  }

  .site-header__inner {
    min-height: 72px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 1.08rem;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: 2.58rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  .hero,
  .hero--home {
    min-height: 70vh;
  }

  .hero--home {
    min-height: 78vh;
  }

  .hero--home .hero__image {
    object-position: 26% 34% !important;
  }

  .hero--home .hero__shade {
    background:
      linear-gradient(90deg, rgba(8, 24, 51, 0.76), rgba(8, 24, 51, 0.38) 54%, rgba(8, 24, 51, 0.08)),
      linear-gradient(0deg, rgba(8, 24, 51, 0.76), rgba(8, 24, 51, 0.08) 58%);
  }

  .hero__content {
    padding: 4.4rem 0 3.6rem;
  }

  .hero--home .hero__content {
    padding-top: clamp(8rem, 25vh, 12rem);
    padding-bottom: 3.2rem;
  }

  .hero__lead {
    font-size: 1.05rem;
  }

  .hero--mark .hero__image {
    width: 82%;
    height: 62%;
    opacity: 0.14;
  }

  .hero--quiet-photo .hero__image {
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
    opacity: 0.24;
    transform: none;
  }

  .hero--quiet-photo .hero__shade {
    z-index: 1;
    background:
      linear-gradient(90deg, rgba(8, 24, 51, 0.94), rgba(8, 24, 51, 0.76)),
      linear-gradient(0deg, rgba(8, 24, 51, 0.84), rgba(8, 24, 51, 0.52));
  }

  .hero--quiet-photo .hero__content {
    z-index: 2;
  }

  .section {
    padding: 4rem 0;
  }

  .actions,
  .hero__notes {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .card-grid,
  .steps,
  .feature-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-card img {
    aspect-ratio: 4 / 3;
  }

  .container--quote blockquote,
  .cta-band,
  .contact-form {
    padding: 1.35rem;
  }

  .callout {
    padding: 1rem 0 1rem 1.2rem;
  }

  .callout p {
    font-size: 1.22rem;
  }

  blockquote p {
    font-size: 2rem;
  }

  .longform__quote p,
  .longform__emphasis {
    font-size: 1.35rem;
  }

  .longform__quote,
  .longform__emphasis {
    padding: 1.15rem;
  }

  .steps li {
    min-height: auto;
  }

  .feature-media img,
  .experience__media img {
    min-height: 300px;
  }
}
