:root {
  --paper: #f6f5f1;
  --paper-deep: #eeede7;
  --white: #fffefa;
  --ink: #2b2d29;
  --muted: #696b63;
  --rust: #a75037;
  --rust-dark: #8e3e29;
  --line: #dcdcd3;
  --serif: Georgia, 'Times New Roman', serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
}

a, button, summary {
  touch-action: manipulation;
}

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 6px;
}

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

p, h1, h2, h3 {
  margin: 0;
}

svg {
  display: block;
}

[hidden] {
  display: none !important;
}

::selection {
  background: #e4c9b8;
  color: var(--ink);
}

.page-shell {
  width: calc(100% - 112px);
  max-width: 1200px;
  margin-inline: auto;
}

.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.service-icon {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 10px;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: 1.55px;
}

.section-number {
  color: var(--rust);
  margin-right: 4px;
}

.small-rule {
  width: 29px;
  height: 1px;
  background: var(--rust);
}

.section-space {
  padding-top: 93px;
  padding-bottom: 96px;
}

body h2 {
  font-family: var(--serif);
  font-size: 49px;
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: -1.8px;
}

h2 em, h1 em {
  font-weight: 400;
  color: var(--rust);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
}

.section-aside {
  color: var(--muted);
  font-size: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 12px;
  font-weight: 600;
}

.text-link .icon {
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

.text-link:hover .icon {
  transform: translate(2px, -2px);
}

.button {
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 15px 22px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: background 180ms ease, transform 180ms ease;
}

.button-primary {
  background: var(--rust);
  color: #fff;
}

.button-primary:hover {
  background: var(--rust-dark);
  transform: translateY(-2px);
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  padding: 15px 22px;
  background: var(--ink);
  color: white;
}

.skip-link:focus {
  top: 15px;
}

/* Navigation */
.site-header {
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  display: block;
  width: 43px;
  height: 43px;
  color: #fff7ee;
  background: var(--rust);
  border-radius: 1px;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
}

.brand-name {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.25px;
}

.brand-name > span {
  display: block;
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 2.5px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
  margin-right: 49px;
}

.desktop-nav a {
  font-size: 12px;
  position: relative;
  padding-block: 10px;
}

.desktop-nav a::after {
  position: absolute;
  content: '';
  height: 1px;
  background: var(--rust);
  left: 0;
  right: 100%;
  bottom: 3px;
  transition: right 180ms ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid #babcb1;
  border-radius: 2px;
  font-size: 12px;
  transition: background 180ms ease;
}

.header-contact:hover {
  background: var(--paper-deep);
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  display: none;
}

/* A perspective-led introduction */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 35px;
  padding-top: 53px;
  padding-bottom: 67px;
}

.hero-content {
  padding-top: 21px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(64px, 6vw, 83px);
  font-weight: 400;
  line-height: 1.025;
  letter-spacing: -3.8px;
  margin-top: 28px;
}

.hero h1 em {
  display: inline-block;
}

.hero-description {
  max-width: 410px;
  margin-top: 27px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 27px;
  margin-top: 28px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}

.note-symbol {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  color: var(--rust);
}

.hero-note p {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
  letter-spacing: .25px;
}

.hero-note strong {
  font-weight: 400;
  color: var(--ink);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-photo {
  width: 100%;
  height: 570px;
  border-radius: 3px 120px 3px 3px;
  object-position: center 52%;
}

.image-caption {
  position: absolute;
  top: 24px;
  left: 23px;
  max-width: calc(100% - 70px);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 7px;
  line-height: 1.6;
  letter-spacing: 1.1px;
  padding: 7px 10px;
  background: rgba(246, 245, 241, .91);
  border-radius: 2px;
}

.caption-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rust);
  flex-shrink: 0;
}

.insight-card {
  position: absolute;
  left: -34px;
  bottom: 32px;
  width: 276px;
  padding: 25px 24px 24px;
  background: var(--white);
  border: 1px solid rgba(220, 220, 211, .6);
  border-radius: 2px;
  box-shadow: 0 8px 25px rgba(40, 32, 20, .05);
}

.insight-card .eyebrow {
  font-size: 8px;
  letter-spacing: 1.4px;
  color: var(--muted);
}

.insight-card p {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.16;
  letter-spacing: -.6px;
  margin-top: 13px;
}

.insight-card > .icon {
  position: absolute;
  right: 20px;
  top: 22px;
  color: var(--rust);
  width: 16px;
  height: 16px;
}

.visual-index {
  position: absolute;
  right: 0;
  bottom: -25px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 1.4px;
}

/* Areas of expertise */
.expertise-strip {
  border-block: 1px solid var(--line);
}

.expertise-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 27px;
}

.expertise-strip-inner > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-right: 1px solid var(--line);
}

.expertise-strip-inner > div:first-child {
  justify-content: flex-start;
}

.expertise-strip-inner > div:last-child {
  justify-content: flex-end;
  border-right: 0;
}

.expertise-strip .service-icon {
  color: var(--rust);
  width: 27px;
  height: 27px;
}

.expertise-strip span {
  font-size: 12px;
}

/* About the firm */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  align-items: center;
  gap: 100px;
}

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  height: 398px;
  border-radius: 2px;
  object-position: 50% center;
}

.photo-label {
  position: absolute;
  bottom: 17px;
  left: 18px;
  padding: 8px 10px;
  font-size: 7px;
  letter-spacing: 1.2px;
  color: var(--ink);
  background: var(--paper);
}

.about-copy > p {
  margin-top: 15px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.about-copy > p:first-of-type {
  margin-top: 24px;
  color: var(--ink);
  font-size: 14px;
}

.underlined-link {
  margin-top: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rust);
}

/* Individually expandable consulting services */
.services-section {
  background: var(--paper-deep);
}

.services-section .section-heading {
  margin-bottom: 25px;
}

.services-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 43px;
}

.services-heading h2 {
  font-size: 46px;
}

.services-heading > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
  padding-bottom: 4px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.service-card {
  padding: 28px 26px 0;
  background: var(--paper);
  border: 1px solid #e0e0d6;
  border-radius: 3px;
  transition: border-color 180ms ease;
}

.service-card:hover {
  border-color: #bca895;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 29px;
}

.service-card-top .service-icon {
  width: 35px;
  height: 35px;
  color: var(--rust);
}

.service-card-top > span {
  color: #7b7c71;
  font-size: 10px;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.5px;
}

.service-card > p {
  min-height: 92px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 17px;
  margin-bottom: 25px;
}

.service-tags span {
  padding: 5px 7px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: #65675e;
  font-size: 8px;
  line-height: 1.4;
}

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

.service-detail summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 68px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

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

.detail-toggle {
  font-size: 22px;
  color: var(--rust);
  font-weight: 300;
  transition: transform 180ms ease;
}

.service-detail[open] .detail-toggle {
  transform: rotate(45deg);
}

.detail-content {
  padding-bottom: 26px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.detail-content ul {
  list-style: disc;
  margin: 14px 0 18px;
  padding-left: 17px;
}

.detail-content a {
  color: var(--rust-dark);
  border-bottom: 1px solid #d9c0b2;
  padding-bottom: 3px;
}

/* An evidence-led process */
.approach-section {
  background: #30352f;
  color: #f2f1e9;
}

.approach-section .section-number {
  color: #d59576;
}

.approach-section .section-aside {
  color: #b7bcaf;
}

.approach-heading {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: end;
  gap: 90px;
}

.approach-heading h2 em {
  color: #d8a58a;
}

.approach-heading > p {
  font-size: 13px;
  color: #c3c6bb;
  line-height: 1.85;
  padding-bottom: 4px;
  max-width: 360px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
  list-style: none;
  padding: 0;
  margin: 51px 0 0;
}

.process-number {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #d8a58a;
  font-family: var(--serif);
  font-size: 34px;
  padding-bottom: 19px;
  border-bottom: 1px solid #616657;
}

.process-number > span {
  font-family: Arial, sans-serif;
  font-size: 20px;
}

.process-grid h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -.5px;
  margin-top: 23px;
}

.process-grid p {
  color: #c3c6bb;
  font-size: 12px;
  line-height: 1.9;
  margin-top: 13px;
  max-width: 275px;
}

.approach-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  border-top: 1px solid #555c4e;
  padding-top: 25px;
}

.approach-bottom > span {
  color: #b7bcaf;
  font-size: 11px;
}

.approach-bottom .text-link {
  font-size: 11px;
}

.approach-bottom .icon {
  color: #d8a58a;
}

/* The start of a conversation */
.contact-section > .eyebrow {
  margin-bottom: 34px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 100px;
  align-items: center;
}

.contact-grid h2 {
  font-size: 57px;
  line-height: 1.06;
  letter-spacing: -2px;
}

.contact-grid > div > p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
  margin-top: 24px;
}

.contact-grid .button {
  margin-top: 26px;
}

.contact-note {
  display: block;
  font-size: 9px;
  color: var(--muted);
  margin-top: 15px;
  letter-spacing: .2px;
}

.contact-detail {
  border-bottom: 1px solid var(--line);
  padding-block: 24px;
}

.contact-detail:first-child {
  padding-top: 0;
}

.contact-detail:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-detail .eyebrow {
  font-size: 8px;
  color: var(--muted);
  letter-spacing: 1.35px;
  margin-bottom: 13px;
}

.contact-detail > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 21px;
  letter-spacing: -.3px;
}

.contact-detail > a:hover {
  color: var(--rust);
}

.contact-detail .icon {
  color: var(--rust);
}

.contact-detail address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.8;
}

.location-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--muted);
  margin-top: 14px;
}

/* Company footer */
.site-footer {
  border-top: 1px solid var(--line);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding-block: 35px;
}

.footer-main > p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  font-size: 10px;
}

.back-to-top span {
  font-size: 20px;
  color: var(--rust);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--line);
  padding-block: 23px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.8;
}

@media (min-width: 1440px) {
  .hero {
    gap: 50px;
  }
}

@media (max-width: 1100px) {
  .page-shell {
    width: calc(100% - 72px);
  }

  .desktop-nav {
    gap: 24px;
    margin-right: 15px;
  }

  .hero {
    grid-template-columns: 1.08fr 1fr;
    gap: 32px;
  }

  .hero h1 {
    font-size: clamp(51px, 6.2vw, 70px);
    letter-spacing: -3px;
  }

  .hero-photo {
    height: 530px;
  }

  .hero-description {
    font-size: 13px;
  }

  .hero-actions {
    gap: 18px;
  }

  .hero-actions .button {
    padding-inline: 18px;
    gap: 20px;
  }

  .hero-actions .text-link {
    font-size: 11px;
    gap: 8px;
  }

  .insight-card {
    width: 245px;
    left: -24px;
  }

  .insight-card p {
    font-size: 24px;
  }

  .expertise-strip-inner > div {
    gap: 10px;
  }

  .expertise-strip span {
    font-size: 10px;
  }

  .about-grid {
    gap: 55px;
  }

  body h2 {
    font-size: 43px;
  }

  .services-heading h2 {
    font-size: 42px;
  }

  .service-card {
    padding-inline: 20px;
  }

  .service-card h3 {
    font-size: 22px;
  }

  .service-card > p {
    min-height: 112px;
  }

  .service-tags {
    min-height: 49px;
    align-content: flex-start;
  }

  .approach-heading {
    gap: 60px;
  }

  .contact-grid {
    gap: 60px;
  }

  .contact-grid h2 {
    font-size: 51px;
  }

  .contact-detail > a {
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  .desktop-nav, .header-contact {
    display: none;
  }

  .header-inner {
    height: 80px;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 19px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--line);
    padding: 10px 36px 18px;
    background: var(--paper);
  }

  .mobile-menu a {
    display: flex;
    justify-content: space-between;
    padding-block: 14px;
    font-size: 14px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu a:last-child {
    color: var(--rust);
    border-bottom: 0;
  }

  .hero {
    padding-top: 40px;
    gap: 28px;
  }

  .hero-content {
    padding-top: 10px;
  }

  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.1px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-photo {
    height: 530px;
    border-top-right-radius: 95px;
  }

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

  .hero-note {
    margin-top: 25px;
  }

  .hero-description {
    margin-top: 22px;
  }

  .insight-card {
    width: 224px;
    bottom: 28px;
    padding: 22px 20px;
  }

  .insight-card .eyebrow {
    font-size: 7px;
  }

  .insight-card p {
    font-size: 23px;
  }

  .image-caption {
    left: 15px;
    top: 20px;
    font-size: 6px;
    max-width: calc(100% - 50px);
  }

  .section-space {
    padding-block: 72px;
  }

  .about-grid {
    gap: 35px;
  }

  .about-visual img {
    height: 422px;
  }

  .services-heading h2 {
    font-size: 36px;
  }

  .services-heading > p {
    font-size: 11px;
  }

  .service-grid {
    gap: 12px;
  }

  .service-card {
    padding-inline: 17px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-card > p {
    min-height: 134px;
  }

  .service-detail summary {
    font-size: 10px;
  }

  .approach-heading {
    gap: 35px;
  }

  .process-grid {
    gap: 30px;
  }

  .contact-grid {
    gap: 40px;
  }

  .contact-grid h2 {
    font-size: 45px;
  }

  .contact-detail > a {
    font-size: 15px;
  }

  .footer-main > p {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .page-shell {
    width: calc(100% - 44px);
  }

  .header-inner {
    height: 77px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: 8.5px;
    letter-spacing: .9px;
  }

  .brand-name > span {
    font-size: 8px;
    letter-spacing: 1.8px;
  }

  .mobile-menu {
    padding-inline: 22px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 36px;
    padding-bottom: 51px;
    gap: 36px;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 1.35px;
  }

  .hero h1 {
    font-size: clamp(48px, 12.7vw, 76px);
    letter-spacing: -2.6px;
    line-height: 1.04;
    margin-top: 23px;
  }

  .hero-description {
    font-size: 14px;
    line-height: 1.8;
    max-width: 450px;
    margin-top: 24px;
  }

  .desktop-break {
    display: none;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 23px;
    margin-top: 25px;
  }

  .hero-actions .button {
    min-height: 49px;
    padding-inline: 17px;
    font-size: 11px;
    gap: 16px;
  }

  .hero-actions .text-link {
    font-size: 10px;
    gap: 8px;
  }

  .hero-note {
    margin-top: 25px;
  }

  .hero-photo {
    height: 465px;
    border-top-right-radius: 110px;
    object-position: center 55%;
  }

  .image-caption {
    font-size: 6.5px;
    top: 21px;
    left: 17px;
  }

  .insight-card {
    width: 241px;
    left: -8px;
    bottom: 26px;
    padding: 22px;
  }

  .insight-card .eyebrow {
    font-size: 7px;
    letter-spacing: 1.1px;
  }

  .insight-card p {
    font-size: 24px;
  }

  .visual-index {
    font-size: 7px;
    bottom: -24px;
  }

  .expertise-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    padding-block: 8px;
  }

  .expertise-strip-inner > div {
    justify-content: flex-start;
    gap: 10px;
    padding: 18px 9px;
  }

  .expertise-strip-inner > div:first-child {
    padding-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .expertise-strip-inner > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-left: 18px;
  }

  .expertise-strip-inner > div:nth-child(3) {
    padding-left: 0;
  }

  .expertise-strip-inner > div:last-child {
    justify-content: flex-start;
    padding-left: 18px;
  }

  .expertise-strip .service-icon {
    width: 23px;
    height: 23px;
  }

  .expertise-strip span {
    font-size: 9px;
  }

  .section-space {
    padding-block: 59px;
  }

  .section-heading {
    margin-bottom: 27px;
  }

  .section-aside {
    display: none;
  }

  .eyebrow {
    font-size: 9px;
  }

  body h2 {
    font-size: 40px;
    letter-spacing: -1.4px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-copy {
    grid-row: 1;
  }

  .about-copy > p {
    font-size: 14px;
    line-height: 1.85;
  }

  .about-copy > p:first-of-type {
    font-size: 15px;
    margin-top: 22px;
  }

  .about-visual img {
    height: 290px;
  }

  .photo-label {
    font-size: 6.5px;
    left: 12px;
    bottom: 13px;
  }

  .services-heading {
    display: block;
    margin-bottom: 29px;
  }

  .services-heading h2 {
    font-size: 36px;
  }

  .services-heading > p {
    font-size: 13px;
    margin-top: 19px;
  }

  .services-heading > p br {
    display: none;
  }

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

  .service-card {
    padding: 26px 25px 0;
  }

  .service-card-top {
    margin-bottom: 25px;
  }

  .service-card h3 {
    font-size: 27px;
  }

  .service-card > p {
    min-height: 0;
    font-size: 13px;
    margin-top: 17px;
  }

  .service-tags {
    min-height: 0;
    margin-bottom: 23px;
    margin-top: 20px;
  }

  .service-tags span {
    font-size: 9px;
  }

  .service-detail summary {
    font-size: 12px;
    min-height: 65px;
  }

  .detail-content {
    font-size: 13px;
  }

  .approach-heading {
    grid-template-columns: 1fr;
    gap: 21px;
  }

  .approach-heading h2 {
    font-size: 38px;
  }

  .approach-heading > p {
    font-size: 14px;
    max-width: 430px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    margin-top: 33px;
    gap: 30px;
  }

  .process-number {
    font-size: 30px;
    padding-bottom: 14px;
  }

  .process-grid h3 {
    margin-top: 18px;
    font-size: 28px;
  }

  .process-grid p {
    margin-top: 10px;
    max-width: 400px;
    font-size: 13px;
  }

  .approach-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 37px;
    gap: 22px;
  }

  .approach-bottom .text-link {
    font-size: 12px;
  }

  .contact-section > .eyebrow {
    margin-bottom: 28px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-grid h2 {
    font-size: 48px;
    letter-spacing: -1.9px;
  }

  .contact-grid > div > p {
    font-size: 13px;
  }

  .contact-detail > a {
    font-size: 20px;
  }

  .contact-detail .eyebrow {
    font-size: 8px;
  }

  .contact-details {
    padding-top: 27px;
    border-top: 1px solid var(--line);
  }

  .contact-detail {
    padding-block: 23px;
  }

  .contact-detail address {
    font-size: 14px;
  }

  .footer-main {
    flex-wrap: wrap;
    padding-block: 28px;
    gap: 24px 10px;
  }

  .footer-main > p {
    order: 3;
    width: 100%;
    font-size: 17px;
  }

  .back-to-top {
    gap: 10px;
    font-size: 9px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-block: 20px;
    font-size: 8px;
  }
}

@media (max-width: 370px) {
  .page-shell {
    width: calc(100% - 36px);
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero-actions {
    gap: 16px;
  }

  .hero-actions .button {
    gap: 12px;
    padding-inline: 13px;
  }

  .hero-actions .text-link {
    gap: 6px;
  }

  .hero-photo {
    height: 420px;
  }

  .hero .eyebrow {
    font-size: 8px;
  }

  .expertise-strip span {
    font-size: 8px;
  }

  .services-heading h2 {
    font-size: 32px;
  }

  .contact-grid h2 {
    font-size: 43px;
  }

  .contact-detail > a {
    font-size: 17px;
  }

  .footer-main .brand {
    gap: 7px;
  }

  .footer-main .brand-name {
    font-size: 7.5px;
  }
}

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

  *, *::before, *::after {
    transition: none !important;
  }
}
