:root {
  --ink: #173c36;
  --ink-deep: #0d2925;
  --cream: #f7f3e9;
  --paper: #fffdf8;
  --coral: #ef755e;
  --coral-dark: #da5e48;
  --gold: #d7ac58;
  --sage: #b9c9b9;
  --muted: #64716d;
  --line: rgba(23, 60, 54, 0.16);
  --shadow: 0 24px 70px rgba(23, 60, 54, 0.14);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  color: var(--paper);
}

.nav-wrap {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 12%;
  transform: rotate(-10deg);
}

.brand-mark::before {
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.brand-mark-dot {
  position: absolute;
  right: -4px;
  bottom: 3px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--coral);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 17px;
  letter-spacing: 0.095em;
}

.brand-copy small {
  margin-top: 6px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.07em;
  opacity: 0.74;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 600;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 20px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 100px;
  transition: 0.2s ease;
}

.nav-cta:hover {
  color: var(--ink);
  background: var(--paper);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 810px;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 88% 20%, rgba(215, 172, 88, 0.18), transparent 30%),
    linear-gradient(125deg, var(--ink-deep), var(--ink) 62%, #205149);
}

.hero::before {
  position: absolute;
  top: -230px;
  left: -240px;
  width: 590px;
  height: 590px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, 0.018),
    0 0 0 160px rgba(255, 255, 255, 0.014);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 810px;
  padding-top: 130px;
  align-items: center;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 82px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #f4b19f;
}

.eyebrow span {
  width: 30px;
  height: 1px;
  background: currentColor;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h1 {
  max-width: 700px;
  margin-bottom: 28px;
  font-size: clamp(54px, 6.2vw, 82px);
}

h1 em,
.outcomes h2 em {
  color: #f2aa98;
  font-weight: 400;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 35px;
  color: rgba(255, 253, 248, 0.75);
  font-size: 18px;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 25px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 750;
  transition: 0.25s ease;
}

.button-primary,
.button-coral {
  color: var(--ink-deep);
  background: var(--coral);
}

.button-primary:hover,
.button-coral:hover {
  background: #fb8a73;
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  padding: 8px 0;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 14px;
  font-weight: 700;
}

.text-link.dark {
  border-color: var(--line);
}

.hero-proof {
  display: flex;
  margin-top: 62px;
  gap: 0;
}

.hero-proof > div {
  display: flex;
  min-width: 150px;
  padding: 0 26px;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-proof > div:first-child {
  padding-left: 0;
  border: 0;
}

.hero-proof strong {
  font-size: 13px;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
}

.hero-visual {
  position: relative;
  min-height: 510px;
}

.visual-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.card-main {
  z-index: 2;
  top: 25px;
  right: 10px;
  width: 390px;
  height: 455px;
  margin: 0;
  padding: 0;
  border-radius: 190px 190px 32px 32px;
  background: #294f49;
}

.card-main::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(13, 41, 37, 0.05) 35%, rgba(13, 41, 37, 0.86) 100%);
  content: "";
}

.card-main img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
}

.card-main figcaption {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  padding: 37px;
  flex-direction: column;
  justify-content: space-between;
}

.card-label {
  align-self: flex-end;
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.speech-lines {
  display: grid;
  width: 138px;
  height: 130px;
  margin: auto;
  align-content: center;
  gap: 15px;
  transform: rotate(-6deg);
}

.speech-lines i {
  display: block;
  height: 9px;
  border-radius: 100px;
  background: var(--coral);
}

.speech-lines i:nth-child(2) {
  width: 76%;
  margin-left: 18%;
  background: var(--gold);
}

.speech-lines i:nth-child(3) {
  width: 47%;
  margin-left: 38%;
  background: var(--sage);
}

.card-main blockquote {
  max-width: 250px;
  margin: 0;
  color: var(--paper);
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1.35;
}

.card-float {
  z-index: 3;
  bottom: 0;
  left: 0;
  display: grid;
  width: 210px;
  padding: 24px 22px;
  border-radius: 18px;
  color: var(--ink);
  background: var(--cream);
  grid-template-columns: 38px 1fr;
}

.card-float .spark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--coral);
  grid-row: span 2;
}

.card-float strong {
  font-family: Georgia, serif;
  font-size: 15px;
}

.card-float small {
  color: var(--muted);
  font-size: 10px;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.orbit-one {
  top: -30px;
  right: -100px;
  width: 420px;
  height: 420px;
}

.orbit-two {
  right: 140px;
  bottom: -80px;
  width: 300px;
  height: 300px;
}

.trust-strip {
  background: var(--coral);
}

.trust-strip .container {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 60px;
}

.trust-strip span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.trust-items {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
}

.trust-items strong {
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 400;
}

.trust-items i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(23, 60, 54, 0.33);
}

.section {
  padding: 125px 0;
}

.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 120px;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(42px, 5vw, 64px);
}

.about-copy {
  padding-top: 15px;
}

.about-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.about-copy .lead {
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 25px;
  line-height: 1.5;
}

.about-copy .text-link {
  margin-top: 14px;
}

.section-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d9ddd6;
}

.section-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image {
  height: 275px;
  margin-top: 44px;
  box-shadow: 18px 18px 0 var(--cream);
}

.about-image img {
  object-position: center 48%;
}

.services {
  background: var(--cream);
}

.section-heading {
  display: grid;
  margin-bottom: 60px;
  align-items: end;
  grid-template-columns: 1fr 0.55fr;
  gap: 60px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  color: var(--muted);
  line-height: 1.8;
}

.services-image {
  height: 390px;
  margin-bottom: 52px;
}

.services-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 41, 37, 0.44), transparent 58%);
  content: "";
}

.services-image img {
  object-position: center 39%;
}

.services-image figcaption {
  position: absolute;
  z-index: 1;
  bottom: 27px;
  left: 30px;
  max-width: 270px;
  color: white;
  font-family: Georgia, serif;
  font-size: 23px;
  line-height: 1.3;
}

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

.service-card {
  position: relative;
  min-height: 420px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.65);
  transition: 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 18px 45px rgba(23, 60, 54, 0.09);
  transform: translateY(-4px);
}

.service-card.featured {
  color: var(--paper);
  background: var(--ink);
}

.service-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.featured .service-number {
  color: rgba(255, 255, 255, 0.5);
}

.service-icon {
  display: grid;
  width: 55px;
  height: 55px;
  margin-bottom: 65px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--coral);
  font-family: Georgia, serif;
  font-size: 27px;
}

.service-card h3 {
  margin-bottom: 13px;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
}

.service-card p {
  max-width: 490px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.67);
}

.service-card ul {
  display: grid;
  margin: 24px 0 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 650;
}

.service-card li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.service-card.wide {
  display: grid;
  min-height: 240px;
  align-items: center;
  grid-column: 1 / -1;
  grid-template-columns: 80px 1fr 70px;
}

.service-card.wide .service-icon {
  margin: 0;
}

.service-card.wide h3 {
  margin-top: 0;
}

.service-card.wide p {
  margin-bottom: 0;
}

.round-link {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 22px;
  transition: 0.2s ease;
}

.round-link:hover {
  color: var(--paper);
  background: var(--ink);
}

.approach {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.approach::after {
  position: absolute;
  top: 50%;
  left: -150px;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.approach-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 120px;
}

.section-kicker.light {
  color: #f4b19f;
}

.approach-intro > p:not(.section-kicker) {
  max-width: 480px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.65);
}

.button-light {
  color: var(--ink);
  background: var(--paper);
}

.button-light:hover {
  background: var(--coral);
  transform: translateY(-2px);
}

.approach-image {
  height: 245px;
  margin-top: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.approach-image img {
  object-position: center 54%;
}

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

.process-list li {
  display: grid;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: 62px 1fr;
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.process-list > li > span {
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-list h3 {
  margin-bottom: 8px;
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 400;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.outcomes {
  background: var(--paper);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 120px;
}

.outcomes h2 em {
  color: var(--coral);
}

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

.outcome-list > div {
  min-height: 180px;
  padding: 26px;
  border-top: 1px solid var(--line);
}

.outcome-list > div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.outcome-list span {
  color: var(--coral);
  font-size: 10px;
  font-weight: 800;
}

.outcome-list h3 {
  margin: 26px 0 7px;
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 400;
}

.outcome-list p {
  color: var(--muted);
  font-size: 13px;
}

.contact {
  padding-top: 0;
  background: var(--paper);
}

.contact-card {
  display: grid;
  padding: 70px;
  border-radius: 32px;
  color: var(--paper);
  background:
    radial-gradient(circle at 87% 90%, rgba(239, 117, 94, 0.17), transparent 30%),
    var(--ink-deep);
  grid-template-columns: 1fr 0.65fr 0.48fr;
  gap: 50px;
}

.contact-copy h2 {
  max-width: 590px;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 580px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.65);
}

.button-coral {
  background: var(--coral);
}

.contact-details {
  display: flex;
  margin: 0;
  flex-direction: column;
  justify-content: center;
  font-style: normal;
}

.contact-details > div {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-details span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-details a {
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.contact-details a:hover {
  color: #f4b19f;
}

.contact-image {
  min-height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 140px 140px 22px 22px;
}

.contact-image img {
  object-position: center 58%;
}

.site-footer {
  color: var(--ink);
  background: var(--cream);
}

.footer-top {
  display: grid;
  padding: 70px 0;
  align-items: start;
  grid-template-columns: 0.72fr 0.95fr 1fr 0.34fr;
  gap: 55px;
}

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

.footer-brand .brand-copy small {
  max-width: 190px;
  line-height: 1.4;
}

.footer-top > p {
  max-width: 430px;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 19px;
  line-height: 1.55;
}

.footer-contact {
  display: grid;
  margin: 0;
  gap: 15px;
  font-style: normal;
}

.footer-contact div {
  display: grid;
  gap: 3px;
}

.footer-contact span {
  color: var(--coral-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-contact a {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  overflow-wrap: anywhere;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--ink);
}

.footer-top nav {
  display: grid;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}

.footer-top nav a:hover {
  color: var(--coral-dark);
}

.footer-bottom {
  display: flex;
  padding: 25px 0;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 960px) {
  .hero-grid {
    padding-top: 150px;
    padding-bottom: 90px;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .card-main {
    right: 8%;
    left: auto;
    width: min(420px, 80%);
    height: 400px;
  }

  .card-float {
    left: 10%;
  }

  .hero-proof {
    margin-top: 45px;
  }

  .about-grid,
  .approach-grid,
  .outcomes-grid,
  .contact-card {
    gap: 60px;
  }

  .about-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-top {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 45px 60px;
  }

  .footer-top nav {
    grid-template-columns: repeat(2, max-content);
    gap: 10px 28px;
  }

  .contact-card {
    grid-template-columns: 1fr 0.8fr;
  }

  .contact-image {
    min-height: 280px;
    grid-column: 1 / -1;
    border-radius: 22px;
  }
}

@media (max-width: 740px) {
  .container {
    width: min(100% - 32px, 1160px);
  }

  .nav-wrap {
    min-height: 82px;
  }

  .brand-copy small {
    display: none;
  }

  .menu-toggle {
    z-index: 60;
    display: grid;
    width: 43px;
    height: 43px;
    padding: 11px;
    align-content: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: transparent;
    gap: 4px;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1px;
    background: white;
    transition: 0.2s ease;
  }

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

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

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

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    padding: 120px 32px 50px;
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-start;
    background: var(--ink-deep);
    font-family: Georgia, serif;
    font-size: 34px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: 0.25s ease;
  }

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

  .nav-cta {
    margin-top: 20px;
    padding: 15px 24px;
    align-self: flex-start;
    font-family: "Avenir Next", sans-serif;
    font-size: 14px;
  }

  .hero {
    min-height: 0;
  }

  .hero-grid {
    min-height: 0;
    padding-top: 140px;
    padding-bottom: 70px;
    gap: 30px;
  }

  h1 {
    font-size: clamp(47px, 14vw, 64px);
  }

  h2 {
    font-size: clamp(39px, 11vw, 53px);
  }

  .hero-lead {
    font-size: 16px;
  }

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

  .hero-proof {
    margin-top: 45px;
    justify-content: space-between;
  }

  .hero-proof > div {
    min-width: 0;
    padding: 0 14px;
  }

  .hero-proof span {
    display: none;
  }

  .hero-visual {
    min-height: 350px;
  }

  .card-main {
    top: 15px;
    right: 0;
    width: 90%;
    height: 330px;
    padding: 28px;
    border-radius: 160px 160px 24px 24px;
  }

  .card-main blockquote {
    font-size: 20px;
  }

  .speech-lines {
    width: 110px;
    height: 90px;
  }

  .card-float {
    bottom: -15px;
    left: 0;
  }

  .trust-strip .container {
    padding: 22px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .trust-items {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 5px 16px;
  }

  .trust-items strong {
    font-size: 14px;
  }

  .trust-items i {
    display: none;
  }

  .section {
    padding: 86px 0;
  }

  .about-grid,
  .approach-grid,
  .outcomes-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .approach-grid,
  .outcomes-grid {
    gap: 30px;
  }

  .about-copy {
    padding: 0;
  }

  .about-image {
    height: 250px;
    margin: 28px 8px 14px 0;
    box-shadow: 10px 10px 0 var(--cream);
  }

  .about-copy .lead {
    font-size: 22px;
  }

  .services-image {
    height: 310px;
    margin-bottom: 30px;
  }

  .services-image img {
    object-position: center 55%;
  }

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

  .service-card {
    min-height: 400px;
    padding: 30px;
  }

  .service-card.wide {
    min-height: 360px;
    align-items: start;
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .service-card.wide .service-icon {
    margin-bottom: 40px;
  }

  .round-link {
    margin-top: 20px;
  }

  .approach-image {
    height: 225px;
    margin-top: 38px;
  }

  .outcome-list > div {
    padding: 22px 18px;
  }

  .contact {
    padding-top: 0;
  }

  .contact-card {
    width: calc(100% - 20px);
    padding: 48px 26px;
    gap: 30px;
    border-radius: 24px;
  }

  .contact-image {
    min-height: 270px;
    grid-column: auto;
    border-radius: 120px 120px 20px 20px;
  }

  .contact-details a {
    font-size: 16px;
  }

  .footer-top {
    padding: 55px 0;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-brand .brand-copy small {
    display: block;
    max-width: 220px;
  }

  .footer-contact {
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

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

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