@charset "UTF-8";
:root {
  --paper: #f7f6f2;
  --ink: #2a302b;
  --muted: #70726b;
  --accent: #b4482c;
  --accent-dark: #963b23;
  --line: #dcded5;
  --sage: #eef0e9;
}

* {
  box-sizing: border-box;
}

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

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

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

button {
  color: inherit;
  font: inherit;
  cursor: pointer;
}

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

button:focus-visible, a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

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

button {
  border: 0;
}

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

body .container {
  width: calc(100% - 112px);
  max-width: 1328px;
  margin-inline: auto;
}

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

.eyebrow, .section-label {
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 1.6px;
  font-weight: 600;
}

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

body h2 {
  font-size: clamp(34px, 3.15vw, 47px);
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: -1.7px;
}

.status-dot, .light-dot {
  flex: 0 0 6px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.small-cross {
  font-size: 20px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}

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

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

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

.header-inner {
  height: 96px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.brand-mark {
  width: 31px;
  height: 31px;
  color: var(--accent);
}

.brand > span {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.6px;
}

.brand-suffix {
  display: inline-block;
  margin-left: 5px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .4px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 12px;
}

.desktop-nav a, .text-link, .contact-email, .privacy-button {
  transition: color .2s ease;
}

.desktop-nav a:hover, .text-link:hover, .privacy-button:hover {
  color: var(--accent);
}

.header-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  border: 1px solid #a8aaa1;
  padding: 12px 18px;
  font-size: 12px;
  border-radius: 3px;
  transition: background .2s ease, color .2s ease;
}

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

.header-contact span {
  font-size: 19px;
}

.menu-toggle, .mobile-nav {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  padding-top: 34px;
  padding-bottom: 46px;
}

.hero-copy {
  align-self: center;
  padding-block: 37px 22px;
}

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

.hero h1 {
  margin-top: 29px;
  font-size: clamp(57px, 5.95vw, 88px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -4.8px;
}

.hero h1 > span {
  color: var(--accent);
}

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

.hero-actions {
  gap: 24px;
  margin-top: 29px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 29px;
  padding: 17px 21px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  border-radius: 3px;
  transition: background .2s ease, transform .2s ease;
}

.button span {
  font-size: 19px;
  line-height: 1;
}

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

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

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 11px;
}

.text-link span {
  font-size: 18px;
}

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

.note-line {
  height: 1px;
  width: 27px;
  background: #a8aa9f;
}

.hero-visual {
  position: relative;
  min-height: 565px;
  overflow: hidden;
  border-radius: 3px;
  background: #e8e3d8;
}

.hero-image {
  height: 100%;
  width: 100%;
  position: absolute;
  object-fit: cover;
}

.visual-heading {
  position: absolute;
  inset: 24px 26px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.8px;
}

.visual-heading > span:last-child {
  font-size: 23px;
  font-weight: 400;
}

.image-caption {
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  bottom: 47px;
  left: 27px;
  right: 27px;
  padding: 20px 22px;
  background: rgba(248, 247, 240, .91);
  border: 1px solid rgba(255, 255, 255, .7);
  backdrop-filter: blur(12px);
}

.caption-index {
  align-self: flex-start;
  margin-top: 4px;
  font-size: 9px;
  color: var(--accent);
}

.image-caption > span:nth-child(2) {
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -.3px;
}

.image-caption svg {
  width: 42px;
  height: 34px;
  margin-left: auto;
  color: var(--accent);
}

.visual-coordinate {
  position: absolute;
  bottom: 19px;
  left: 28px;
  font-size: 7px;
  letter-spacing: 1.5px;
  color: #625a4f;
}

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

.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 93px;
}

.strip-inner > span {
  font-size: 13px;
  white-space: nowrap;
}

.strip-inner .strip-intro {
  font-size: 8px;
  color: var(--muted);
  letter-spacing: 1.3px;
  line-height: 1.8;
  margin-right: 35px;
}

.strip-inner .strip-star {
  color: var(--accent);
  font-size: 22px;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 2.04fr;
  gap: 36px;
}

.section-label {
  display: flex;
  align-items: center;
  align-self: start;
  gap: 10px;
  font-size: 9px;
  padding-top: 7px;
}

.section-number {
  color: #8e9185;
  font-size: 8px;
  margin-left: auto;
  margin-right: 43px;
}

.about-content h2 {
  font-size: clamp(31px, 3vw, 44px);
}

.muted-heading {
  color: #7a8074;
}

.about-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 28px;
}

.about-details p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.about-principles {
  display: flex;
  gap: 33px;
  padding-top: 27px;
  margin-top: 29px;
  border-top: 1px solid var(--line);
  font-size: 10px;
}

.about-principles i {
  font-size: 16px;
  color: var(--accent);
  margin-right: 10px;
  font-style: normal;
}

.expertise-section {
  background: var(--sage);
  border-block: 1px solid #e1e4da;
}

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

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

.section-intro {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
  padding-bottom: 3px;
  margin-right: 24px;
}

.services-grid {
  gap: 15px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 25px 23px 18px;
  background: var(--paper);
  border: 1px solid #dedfd6;
  border-radius: 3px;
  transition: border-color .2s ease, transform .2s ease;
}

.service-card:hover {
  border-color: #b7b9aa;
  transform: translateY(-4px);
}

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

.service-top svg {
  width: 37px;
  height: 37px;
  color: var(--accent);
}

.service-top > span {
  align-self: flex-start;
  font-size: 9px;
  color: #7d8273;
}

.service-card h3 {
  font-size: 23px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.6px;
}

.service-card > p {
  margin-top: 19px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.9;
  padding-bottom: 25px;
}

.service-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.service-bottom > span {
  font-size: 7px;
  letter-spacing: .6px;
}

.service-open {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid #d9dbcf;
  border-radius: 50%;
  background: transparent;
  font-size: 19px;
  transition: background .2s ease, color .2s ease;
}

.service-open:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.expertise-footnote {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  color: var(--muted);
  margin-top: 27px;
}

.expertise-footnote .status-dot {
  width: 4px;
  height: 4px;
  flex-basis: 4px;
}

.approach-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.approach-intro .eyebrow {
  margin-bottom: 24px;
}

.approach-intro h2 {
  font-size: clamp(32px, 3vw, 42px);
}

.approach-intro > p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.approach-intro .text-link {
  margin-top: 25px;
  padding-bottom: 6px;
  border-bottom: 1px solid #b2b5a6;
}

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

.approach-steps li {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

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

.step-number {
  font-size: 10px;
  color: var(--accent);
  padding-top: 4px;
}

.approach-steps h3 {
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -.4px;
}

.approach-steps p {
  margin-top: 10px;
  font-size: 11px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 340px;
}

.step-arrow {
  margin-left: auto;
  font-size: 20px;
  color: #7b806d;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  color: var(--paper);
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  padding-block: 64px;
  gap: 65px;
}

.contact-copy .eyebrow {
  color: #f3d5c9;
  font-size: 9px;
  letter-spacing: 1.7px;
  margin-bottom: 25px;
}

.light-dot {
  background: #f2cfbd;
}

.contact-copy h2 {
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1.1;
  letter-spacing: -2px;
}

.contact-copy h2 span {
  color: #edb29b;
}

.contact-copy > p:last-child {
  font-size: 12px;
  line-height: 1.8;
  margin-top: 22px;
  color: #f3ded4;
}

.contact-actions {
  justify-self: start;
  padding-left: 15px;
  padding-top: 36px;
}

.button-light {
  background: var(--paper);
  color: var(--ink);
  gap: 55px;
  padding-block: 18px;
}

.button-light:hover {
  background: #f5e1d6;
}

.contact-email {
  display: flex;
  gap: 35px;
  align-items: center;
  margin-top: 26px;
  font-size: 17px;
  letter-spacing: -.3px;
}

.contact-email:hover {
  color: #f7cfb8;
}

.contact-actions > p {
  margin-top: 14px;
  font-size: 10px;
  color: #f0cbbb;
}

.contact-actions > p a {
  color: var(--paper);
  margin-left: 4px;
}

.contact-actions > p a:hover {
  text-decoration: underline;
}

.contact-watermark {
  position: absolute;
  right: -30px;
  bottom: -139px;
  color: rgba(238, 170, 134, .11);
  font-size: 470px;
  line-height: 1;
  font-weight: 400;
  pointer-events: none;
}

.contact-section a:focus-visible {
  outline-color: white;
}

.site-footer {
  padding-top: 49px;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 42px;
}

.footer-brand > p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 15px;
}

.footer-label {
  font-size: 8px;
  letter-spacing: 1.2px;
  color: var(--muted);
  padding-top: 3px;
  margin-bottom: 13px;
}

.footer-location address {
  font-size: 11px;
  line-height: 1.8;
  font-style: normal;
}

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

.back-top > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 16px;
  transition: background .2s ease;
}

.back-top:hover > span {
  background: var(--sage);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
}

.privacy-button {
  padding: 0;
  background: none;
  font-size: 9px;
}

.detail-dialog {
  width: min(560px, calc(100% - 32px));
  max-height: calc(100dvh - 48px);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 0;
}

.detail-dialog::backdrop {
  background: rgba(31, 36, 31, .55);
  backdrop-filter: blur(4px);
}

.dialog-inner {
  position: relative;
  padding: 45px;
}

.dialog-close {
  position: absolute;
  right: 15px;
  top: 10px;
  width: 36px;
  height: 36px;
  background: transparent;
  font-size: 27px;
  font-weight: 300;
}

.dialog-inner .eyebrow {
  color: var(--accent);
  margin-bottom: 20px;
}

.dialog-inner h2 {
  font-size: 36px;
  margin-bottom: 22px;
}

#dialog-description {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}

#dialog-points {
  padding-left: 18px;
  margin-block: 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

#dialog-points li {
  padding-left: 6px;
  margin-block: 8px;
}

#dialog-points li::marker {
  color: var(--accent);
}

body.dialog-open {
  overflow: hidden;
}

@media (min-width: 1600px) {
  .hero-visual {
    min-height: 640px;
  }
}

@media (max-width: 1100px) {
  body .container {
    width: calc(100% - 64px);
  }
  .desktop-nav {
    gap: 24px;
  }
  .hero {
    gap: 24px;
  }
  .hero-visual {
    min-height: 560px;
  }
  .hero h1 {
    letter-spacing: -3.5px;
  }
  .hero-actions {
    gap: 19px;
  }
  .hero-actions .button {
    font-size: 10px;
    gap: 19px;
    padding-inline: 16px;
  }
  .hero-actions .text-link {
    font-size: 10px;
    gap: 10px;
  }
  .strip-inner {
    gap: 18px;
  }
  .strip-inner > span {
    font-size: 11px;
  }
  .strip-inner .strip-intro {
    margin-right: 0;
    font-size: 7px;
  }
  .service-card {
    padding-inline: 17px;
  }
  .service-bottom > span {
    font-size: 6px;
    letter-spacing: .3px;
  }
  .approach-section {
    gap: 45px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    height: 82px;
  }
  .desktop-nav {
    gap: 20px;
    font-size: 10px;
  }
  .header-contact {
    padding: 10px 13px;
    gap: 20px;
    font-size: 10px;
  }
  .brand > span {
    font-size: 19px;
  }
  .brand-mark {
    width: 26px;
    height: 26px;
  }
  .hero {
    padding-block: 25px 35px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-copy {
    padding-block: 23px;
  }
  .hero-copy .eyebrow {
    font-size: 7px;
    letter-spacing: 1px;
  }
  .hero-description {
    font-size: 12px;
  }
  .desktop-break {
    display: none;
  }
  .hero-visual {
    min-height: 550px;
  }
  .hero-note {
    margin-top: 30px;
    font-size: 9px;
  }
  .image-caption {
    left: 17px;
    right: 17px;
    padding: 16px 14px;
    gap: 10px;
  }
  .image-caption > span:nth-child(2) {
    font-size: 15px;
  }
  .image-caption svg {
    width: 32px;
  }
  .strip-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding-block: 22px;
    gap: 15px 20px;
  }
  .strip-inner .strip-intro {
    display: none;
  }
  .section-space {
    padding-block: 70px;
  }
  .about-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .section-number {
    margin-right: 0;
  }
  .about-content h2 {
    font-size: 39px;
  }
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .service-card {
    padding: 27px;
  }
  .service-card > p {
    font-size: 12px;
  }
  .service-bottom > span {
    font-size: 8px;
    letter-spacing: .5px;
  }
  .section-intro {
    max-width: 240px;
    margin-right: 0;
  }
  .approach-section {
    gap: 40px;
  }
  .approach-intro h2 {
    font-size: 34px;
  }
  .approach-steps li {
    gap: 17px;
  }
  .approach-steps h3 {
    font-size: 17px;
  }
  .contact-inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
  }
  .contact-copy h2 {
    font-size: 42px;
  }
  .contact-copy .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .contact-actions {
    padding-left: 0;
  }
  .contact-email {
    font-size: 15px;
    gap: 15px;
  }
  .footer-bottom > span {
    display: none;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 20px;
  }
  body .container {
    width: calc(100% - 40px);
  }
  .section-space {
    padding-block: 57px;
  }
  .header-inner {
    height: 76px;
  }
  .brand > span {
    font-size: 21px;
  }
  .brand-mark {
    width: 29px;
    height: 29px;
  }
  .desktop-nav, .header-contact {
    display: none;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: transparent;
  }
  .menu-toggle span {
    width: 24px;
    height: 1px;
    background: var(--ink);
    transition: transform .2s ease;
  }
  .menu-toggle span:last-child {
    width: 17px;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    width: 24px;
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .mobile-nav:not([hidden]) {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
    padding: 8px 20px 18px;
  }
  .mobile-nav a {
    padding: 13px 4px;
    font-size: 14px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 17px;
    padding-bottom: 30px;
  }
  .hero-copy {
    padding-top: 19px;
    padding-bottom: 0;
  }
  .hero-copy .eyebrow {
    font-size: 8px;
    letter-spacing: 1.1px;
  }
  .hero h1 {
    margin-top: 23px;
    font-size: clamp(51px, 12.9vw, 78px);
    line-height: 1.04;
    letter-spacing: -3.3px;
  }
  .hero-description {
    margin-top: 23px;
    max-width: 340px;
    font-size: 13px;
    line-height: 1.8;
  }
  .hero-actions {
    gap: 21px;
    margin-top: 25px;
  }
  .hero-actions .button {
    font-size: 10px;
    padding: 16px;
    gap: 14px;
  }
  .hero-actions .text-link {
    font-size: 10px;
    gap: 8px;
  }
  .hero-note {
    margin-top: 24px;
    font-size: 9px;
  }
  .hero-visual {
    min-height: 390px;
    aspect-ratio: 1 / 1.1;
  }
  .hero-image {
    object-position: center 46%;
  }
  .visual-heading {
    inset: 19px 21px auto;
    font-size: 7px;
  }
  .image-caption {
    left: 20px;
    right: 20px;
    bottom: 39px;
    padding: 16px 18px;
  }
  .image-caption > span:nth-child(2) {
    font-size: 17px;
  }
  .visual-coordinate {
    bottom: 15px;
    left: 21px;
    font-size: 6px;
  }
  .strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px 24px;
    justify-items: center;
    padding-block: 24px;
  }
  .strip-inner .strip-star {
    display: none;
  }
  .strip-inner > span:not(.strip-intro):not(.strip-star) {
    font-size: 11px;
  }
  .strip-inner > span:not(.strip-intro):not(.strip-star)::before {
    content: "+";
    margin-right: 7px;
    color: var(--accent);
  }
  .about-section {
    gap: 23px;
  }
  .about-content h2 {
    font-size: 31px;
    letter-spacing: -1.25px;
    line-height: 1.18;
  }
  .about-details {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 23px;
  }
  .about-details p {
    font-size: 13px;
    line-height: 1.85;
  }
  .about-principles {
    flex-direction: column;
    gap: 13px;
    margin-top: 23px;
    padding-top: 19px;
    font-size: 11px;
  }
  .section-heading-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 27px;
  }
  .section-heading-row .eyebrow {
    margin-bottom: 20px;
  }
  body h2 {
    font-size: 36px;
    letter-spacing: -1.4px;
  }
  .section-intro {
    max-width: 310px;
    font-size: 13px;
    line-height: 1.8;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .service-card {
    padding: 23px;
  }
  .service-top {
    margin-bottom: 23px;
  }
  .service-card h3 {
    font-size: 27px;
  }
  .service-card h3 br {
    display: none;
  }
  .service-card > p {
    font-size: 13px;
    margin-top: 15px;
    padding-bottom: 22px;
  }
  .service-bottom {
    padding-top: 12px;
  }
  .service-bottom > span {
    font-size: 8px;
    letter-spacing: .7px;
  }
  .service-open {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
  .expertise-footnote {
    font-size: 9px;
    margin-top: 25px;
  }
  .approach-section {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .approach-intro .eyebrow {
    margin-bottom: 20px;
  }
  .approach-intro h2 {
    font-size: 34px;
  }
  .approach-intro > p:not(.eyebrow) {
    font-size: 13px;
    max-width: 300px;
    margin-top: 18px;
  }
  .approach-intro .text-link {
    font-size: 12px;
    margin-top: 21px;
  }
  .approach-steps li {
    padding-block: 23px;
    gap: 19px;
  }
  .approach-steps h3 {
    font-size: 19px;
  }
  .approach-steps p {
    font-size: 12px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 49px;
  }
  .contact-copy .eyebrow {
    font-size: 8px;
    letter-spacing: 1.2px;
    margin-bottom: 22px;
  }
  .contact-copy h2 {
    font-size: 45px;
    letter-spacing: -1.8px;
  }
  .contact-copy > p:last-child {
    font-size: 13px;
    margin-top: 20px;
  }
  .contact-actions {
    padding-top: 0;
  }
  .contact-email {
    font-size: 16px;
    margin-top: 25px;
  }
  .contact-actions > p {
    font-size: 11px;
  }
  .contact-watermark {
    font-size: 330px;
    bottom: -95px;
    right: -45px;
  }
  .site-footer {
    padding-top: 37px;
  }
  .footer-main {
    flex-wrap: wrap;
    gap: 29px 15px;
    padding-bottom: 30px;
  }
  .footer-brand {
    width: 100%;
  }
  .footer-label {
    font-size: 7px;
    letter-spacing: .7px;
  }
  .footer-location {
    max-width: 230px;
  }
  .footer-location address {
    font-size: 11px;
  }
  .back-top {
    font-size: 0;
    gap: 0;
    margin-left: auto;
  }
  .back-top > span {
    width: 37px;
    height: 37px;
  }
  .footer-bottom {
    font-size: 8px;
    gap: 8px;
    padding-block: 20px;
  }
  .privacy-button {
    font-size: 8px;
  }
  .dialog-inner {
    padding: 40px 26px 30px;
  }
  .dialog-inner h2 {
    font-size: 31px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
