@charset "UTF-8";
:root {
  --navy: #102c32;
  --navy-light: #19383e;
  --mint: #b9dfc8;
  --cream: #f5f5ef;
  --ink: #193339;
  --muted: #66716d;
  --line: #dcded5;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -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 {
  border: 0;
}

button:focus-visible, a:focus-visible {
  outline: 2px solid #689f7a;
  outline-offset: 6px;
}

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

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

svg {
  flex-shrink: 0;
}

[hidden] {
  display: none !important;
}

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

.dark-stage {
  color: var(--cream);
  background: var(--navy);
}

.skip-link {
  position: fixed;
  top: -70px;
  left: 16px;
  z-index: 30;
  padding: 12px 20px;
  color: var(--navy);
  background: var(--mint);
}

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

.site-header {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff1c;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1.1;
}

.brand-mark {
  width: 36px;
  height: 36px;
  color: var(--mint);
}

.brand-descriptor {
  display: block;
  margin-top: 7px;
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 2.2px;
}

.desktop-nav {
  gap: 36px;
  padding-left: 65px;
}

.desktop-nav a {
  font-size: 12px;
  color: #e4e9e4;
  transition: color 180ms;
}

.desktop-nav a:hover, .text-link:hover, .back-top:hover {
  color: var(--mint);
}

.header-contact {
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 13px 19px;
  border: 1px solid #a6c2b66b;
  font-size: 12px;
  transition: background 180ms, color 180ms;
}

.header-contact:hover {
  background: var(--mint);
  color: var(--navy);
}

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

.menu-toggle {
  display: none;
  padding: 10px 0 10px 12px;
  background: none;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 1px;
  margin: 6px 0;
  background: var(--cream);
  transition: transform 180ms;
}

.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-nav {
  padding: 12px 28px 22px;
  background: var(--navy);
}

.mobile-nav a {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #ffffff1c;
  font-size: 15px;
}

.hero {
  display: grid;
  grid-template-columns: 1.07fr 1fr;
  align-items: center;
  gap: 68px;
  padding-top: 46px;
  padding-bottom: 59px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 1.75px;
}

.small-line {
  display: inline-block;
  width: 25px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.hero .eyebrow {
  color: var(--mint);
  margin-bottom: 26px;
}

.hero h1 {
  font-size: clamp(58px, 5.65vw, 81px);
  line-height: 1.035;
  font-weight: 500;
  letter-spacing: -3.8px;
}

h1 em, h2 em {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
}

.hero h1 em {
  color: var(--mint);
  font-size: 1.08em;
  letter-spacing: -3.5px;
  line-height: 1.06;
}

.hero-description {
  max-width: 410px;
  margin-top: 26px;
  font-size: 14px;
  line-height: 1.85;
  color: #c0cdca;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 49px;
  padding: 15px 20px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  transition: background 180ms, transform 180ms;
}

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

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

.button-mint {
  color: var(--navy);
  background: var(--mint);
}

.button-mint:hover {
  background: #cdebd8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 11px;
  line-height: 1.5;
  transition: color 180ms;
}

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

.hero-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 37px;
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 1.45px;
  color: #a8bcb8;
}

.location-dot {
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 3px #b9dfc811;
}

.hero-visual {
  position: relative;
  height: 530px;
  margin-bottom: 4px;
}

.hero-image {
  height: 100%;
  border-radius: 90px 3px 3px 3px;
  object-position: 50% 52%;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 90px 3px 3px 3px;
  background: linear-gradient(180deg, #071b1e20 0%, transparent 45%, #071b1e35 100%);
  pointer-events: none;
}

.image-label {
  position: absolute;
  top: 23px;
  right: 21px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 7px;
  letter-spacing: 1.4px;
  padding: 9px 11px;
  color: white;
  background: #16352e65;
  backdrop-filter: blur(10px);
  border: 1px solid #ffffff35;
}

.image-label span {
  height: 4px;
  width: 4px;
  background: var(--mint);
  border-radius: 50%;
}

.insight-card {
  position: absolute;
  bottom: 37px;
  left: -35px;
  z-index: 2;
  width: 290px;
  padding: 21px 23px 23px;
  color: var(--navy);
  background: #f8f8f0;
  box-shadow: 0 6px 30px #102c3217;
}

.insight-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 1.1px;
  color: #64736a;
}

.insight-arrow {
  font-size: 16px;
  color: var(--navy);
}

.insight-body {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: 17px;
}

.insight-body p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -.4px;
}

.insight-body svg {
  width: 76px;
  height: 50px;
}

.image-caption {
  position: absolute;
  bottom: -22px;
  right: 0;
  font-size: 6px;
  letter-spacing: 1.4px;
  color: #9baea7;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #ffffff24;
  padding: 28px 0 30px;
}

.value-strip > div {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 13px;
  letter-spacing: -.1px;
}

.value-strip > div:nth-child(2) {
  justify-content: center;
  border-inline: 1px solid #ffffff20;
}

.value-strip > div:last-child {
  justify-content: flex-end;
}

.value-number {
  font-size: 8px;
  color: var(--mint);
  letter-spacing: 1px;
}

.section {
  padding: 92px 0;
}

.section > .site-container > .eyebrow, .about-copy > .eyebrow {
  color: #567462;
}

body h2 {
  font-size: clamp(36px, 3.55vw, 49px);
  font-weight: 400;
  letter-spacing: -1.9px;
  line-height: 1.12;
}

.section-heading {
  display: flex;
  gap: 35px;
  margin: 25px 0 42px;
}

.muted-heading {
  color: #748479;
}

.section-heading > p {
  max-width: 345px;
  padding-bottom: 3px;
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 25px 23px 22px;
  min-height: 299px;
  border: 1px solid var(--line);
  background: #fbfbf6;
  transition: border-color 180ms, background 180ms, transform 180ms;
}

.service-card:hover {
  border-color: #9ab5a4;
  transform: translateY(-4px);
  background: #fff;
}

.service-card:has(button[aria-expanded="true"]) {
  border-color: #739781;
  background: #edf1e7;
}

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

.service-top svg {
  width: 34px;
  height: 34px;
  color: #47664f;
}

.service-top > span {
  color: #9ca69b;
  font-size: 9px;
  letter-spacing: 1px;
}

.service-card h3 {
  font-size: 21px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -.6px;
}

.service-card > p {
  margin-top: 15px;
  margin-bottom: 23px;
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
}

.service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 0 0;
  margin-top: auto;
  border-top: 1px solid #dcded5;
  background: transparent;
  font-size: 10px;
  text-align: left;
}

.service-link span {
  font-size: 17px;
  transition: transform 180ms;
}

.service-link:hover span {
  transform: translate(2px, -2px);
}

.expertise-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 29px;
  font-size: 10px;
  color: #738073;
}

.small-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #819886;
}

.service-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  position: relative;
  gap: 48px;
  padding: 34px;
  margin-top: 18px;
  border: 1px solid #bac8b8;
  background: #eaf0e5;
}

.service-detail .eyebrow {
  color: #657d68;
  font-size: 8px;
}

.service-detail h3 {
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -.5px;
  margin-top: 10px;
}

.service-detail p:not(.eyebrow) {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.85;
  color: #5b6f60;
}

.service-detail ul {
  margin: 3px 0 20px;
  padding-left: 17px;
  font-size: 12px;
  line-height: 2.1;
  list-style: disc;
}

.detail-close {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 25px;
  background: none;
  padding: 0 5px;
}

.about-section {
  background: #e9ede4;
  padding: 88px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-visual {
  position: relative;
  padding-bottom: 26px;
}

.about-visual > img {
  height: 390px;
  border-radius: 3px 70px 3px 3px;
}

.about-image-note {
  display: flex;
  align-items: center;
  gap: 14px;
  position: absolute;
  bottom: 0;
  left: 28px;
  padding: 18px 24px;
  min-width: 275px;
  font-size: 12px;
  line-height: 1.6;
  color: #e6efe2;
  background: var(--navy);
}

.note-line {
  width: 24px;
  height: 1px;
  background: var(--mint);
}

.about-copy h2 {
  margin: 22px 0 25px;
}

.about-copy h2 em {
  color: #567761;
}

.about-copy > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.85;
  color: #5e6c60;
  margin-top: 14px;
}

.about-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 23px;
  margin-top: 22px;
  margin-bottom: 27px;
}

.about-principles span {
  font-size: 10px;
  color: #425b49;
}

.about-principles i {
  font-style: normal;
  font-size: 11px;
  margin-right: 6px;
}

.dark-link {
  padding-bottom: 5px;
  border-bottom: 1px solid #9aaa99;
}

.dark-link:hover {
  color: #4d775c;
}

.approach-section {
  padding-top: 93px;
  padding-bottom: 91px;
}

.approach-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
}

.approach-heading .eyebrow {
  color: #567462;
  margin-bottom: 24px;
}

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

.approach-heading > p {
  max-width: 325px;
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
  padding-bottom: 4px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  margin-top: 54px;
}

.step-track {
  display: flex;
  align-items: center;
  gap: 19px;
  color: #55795f;
  font-size: 13px;
}

.track-line {
  height: 1px;
  flex: 1;
  background: #cdd6c8;
}

.step-track > span:last-child {
  font-size: 19px;
}

.process-step h3 {
  margin-top: 25px;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -.5px;
}

.process-step p {
  margin-top: 13px;
  max-width: 320px;
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
}

.step-outcome {
  display: block;
  margin-top: 24px;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 1.4px;
  color: #637b67;
}

.contact-section {
  background: var(--navy);
  color: var(--cream);
  padding-top: 76px;
}

.contact-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 60px;
  gap: 40px;
}

.contact-intro .eyebrow {
  color: var(--mint);
  margin-bottom: 24px;
}

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

.contact-intro h2 em {
  color: var(--mint);
}

.contact-action {
  margin-right: 75px;
}

.contact-action > p {
  margin-bottom: 23px;
  font-size: 13px;
  color: #c0cdca;
  line-height: 1.85;
}

.contact-action .button {
  min-width: 224px;
}

.contact-action-note {
  display: block;
  color: #9fb7ac;
  font-size: 9px;
  margin-top: 14px;
}

.contact-details {
  display: grid;
  grid-template-columns: 1.2fr 1.1fr .9fr 1.2fr;
  gap: 30px;
  padding: 44px 0;
  border-top: 1px solid #ffffff25;
}

.footer-brand-block .brand {
  font-size: 17px;
  gap: 7px;
}

.footer-brand-block .brand-mark {
  width: 30px;
  height: 30px;
}

.footer-brand-block .brand-descriptor {
  font-size: 6px;
  letter-spacing: 1.6px;
  margin-top: 6px;
}

.footer-brand-block > p {
  font-size: 9px;
  margin-top: 16px;
  color: #a7bab1;
}

.contact-item h3 {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 1.8px;
  color: #a5bcb1;
  margin-bottom: 17px;
}

.contact-item > a:not(.map-link) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.contact-item > a:hover {
  color: var(--mint);
}

.contact-item > p, .contact-item address {
  font-size: 10px;
  font-style: normal;
  color: #c2d0c6;
  line-height: 1.9;
}

.contact-item > p {
  margin-top: 12px;
  color: #95ada1;
  font-size: 9px;
}

.copy-email {
  display: flex;
  align-items: center;
  gap: 7px;
  background: none;
  padding: 0;
  margin-top: 13px;
  font-size: 9px;
  color: #95ada1;
}

.copy-email:hover {
  color: var(--mint);
}

.map-link {
  display: inline-flex;
  gap: 8px;
  font-size: 9px;
  color: var(--mint);
  margin-top: 10px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid #ffffff20;
  font-size: 8px;
  color: #a3b4aa;
}

.footer-bottom > span {
  font-size: 7px;
  letter-spacing: 1.2px;
}

.footer-coordinate {
  margin-left: 15px;
  opacity: .65;
}

.back-top {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #d1dfd3;
  font-size: 9px;
}

.back-top span {
  font-size: 14px;
}

.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;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }

  .header-contact {
    display: inline-flex;
  }

}

@media (max-width: 1199px) {
  .site-container {
    width: calc(100% - 80px);
  }

  .hero {
    gap: 45px;
    grid-template-columns: 1.05fr 1fr;
  }

  .hero h1 {
    font-size: 66px;
    letter-spacing: -3px;
  }

  .hero-visual {
    height: 514px;
  }

  .hero .hero-actions {
    gap: 18px;
  }

  .hero-actions .button {
    gap: 17px;
    padding-inline: 16px;
  }

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

  .desktop-nav {
    gap: 26px;
    padding-left: 0;
  }

  .about-grid {
    gap: 55px;
  }

  .service-card {
    padding: 24px 19px 20px;
  }

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

  .contact-action {
    margin-right: 20px;
  }

  .contact-details {
    grid-template-columns: 1fr 1fr;
    row-gap: 36px;
  }

}

@media (max-width: 991px) {
  .site-container {
    width: calc(100% - 64px);
  }

  .brand {
    font-size: 18px;
    gap: 8px;
  }

  .brand-descriptor {
    font-size: 6px;
    letter-spacing: 1.8px;
  }

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

  .desktop-nav {
    gap: 20px;
  }

  .desktop-nav a {
    font-size: 11px;
  }

  .header-contact {
    padding: 11px 13px;
    gap: 17px;
  }

  .hero {
    gap: 37px;
    padding-block: 46px 55px;
  }

  .hero h1 {
    font-size: 56px;
    letter-spacing: -2.7px;
  }

  .hero .eyebrow {
    font-size: 7px;
    letter-spacing: 1.3px;
    gap: 8px;
  }

  .hero .small-line {
    width: 18px;
  }

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

  .hero-visual {
    height: 490px;
  }

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

  .hero-location {
    font-size: 6px;
    letter-spacing: .9px;
    margin-top: 28px;
  }

  .insight-card {
    width: 250px;
    padding: 17px;
    left: -22px;
    bottom: 27px;
  }

  .insight-body {
    gap: 8px;
  }

  .insight-body p {
    font-size: 14px;
  }

  .insight-body svg {
    width: 65px;
  }

  .image-caption {
    font-size: 5px;
    letter-spacing: .8px;
  }

  .value-strip > div {
    font-size: 11px;
    gap: 15px;
  }

  .section {
    padding-block: 72px;
  }

  body h2 {
    font-size: 39px;
  }

  .section-heading > p {
    max-width: 280px;
    font-size: 12px;
  }

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

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

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

  .service-card > p {
    max-width: 265px;
  }

  .about-grid {
    gap: 37px;
  }

  .about-visual > img {
    height: 430px;
  }

  .about-image-note {
    left: 18px;
    min-width: 245px;
    padding: 15px 18px;
    font-size: 11px;
  }

  .about-copy .eyebrow {
    font-size: 7px;
    letter-spacing: 1.1px;
  }

  .about-copy h2 {
    font-size: 37px;
  }

  .about-copy > p:not(.eyebrow) {
    font-size: 12px;
  }

  .approach-heading > p {
    max-width: 260px;
    font-size: 12px;
  }

  .process-grid {
    gap: 35px;
  }

  .contact-intro h2 {
    font-size: 47px;
  }

  .contact-action {
    margin-right: 0;
  }

  .contact-action > p {
    font-size: 12px;
  }

}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 20px;
  }

  .site-container {
    width: calc(100% - 48px);
  }

  .site-header {
    height: 85px;
  }

  .desktop-nav, .header-contact {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .brand {
    font-size: 19px;
  }

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

  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 41px;
    padding-bottom: 46px;
  }

  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.4px;
    margin-bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(54px, 9vw, 75px);
    letter-spacing: -2.5px;
  }

  .hero h1 em {
    letter-spacing: -2.5px;
  }

  .hero-description {
    max-width: 480px;
    font-size: 14px;
    margin-top: 24px;
  }

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

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

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

  .hero-location {
    font-size: 7px;
    letter-spacing: 1.1px;
    margin-top: 30px;
  }

  .hero-visual {
    height: 440px;
    margin-left: 16px;
    margin-bottom: 10px;
  }

  .hero-image, .hero-visual::after {
    border-top-left-radius: 75px;
  }

  .hero-image {
    object-position: center 60%;
  }

  .insight-card {
    left: -16px;
    bottom: 26px;
    width: 275px;
    padding: 20px;
  }

  .insight-body p {
    font-size: 16px;
  }

  .insight-body svg {
    width: 74px;
  }

  .insight-body {
    justify-content: space-between;
  }

  .image-caption {
    font-size: 5.5px;
    letter-spacing: .9px;
  }

  .value-strip {
    padding: 8px 0 20px;
    grid-template-columns: 1fr;
  }

  .value-strip > div {
    padding: 16px 0;
    font-size: 13px;
    gap: 20px;
  }

  .value-strip > div:nth-child(2) {
    border-inline: 0;
    border-block: 1px solid #ffffff14;
    justify-content: flex-start;
  }

  .value-strip > div:last-child {
    justify-content: flex-start;
  }

  .section {
    padding-block: 63px;
  }

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

  body h2 {
    font-size: 39px;
    letter-spacing: -1.5px;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 21px;
    margin: 23px 0 31px;
  }

  .section-heading > p {
    max-width: 410px;
    font-size: 13px;
  }

  .service-card {
    min-height: 306px;
    padding: 22px;
  }

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

  .service-detail {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 27px;
  }

  .service-detail h3 {
    padding-right: 10px;
  }

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

  .about-visual > img {
    height: 370px;
    border-top-right-radius: 60px;
  }

  .about-image-note {
    min-width: 270px;
    left: 20px;
    padding: 17px 22px;
  }

  .about-copy .eyebrow {
    font-size: 8px;
    letter-spacing: 1.5px;
  }

  .about-copy h2 {
    font-size: 41px;
    margin: 23px 0;
  }

  .about-copy > p:not(.eyebrow) {
    font-size: 13px;
  }

  .about-principles {
    margin-top: 24px;
  }

  .approach-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
  }

  .approach-heading > p {
    max-width: 420px;
    font-size: 13px;
  }

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

  .process-step h3 {
    margin-top: 17px;
    font-size: 23px;
  }

  .process-step p {
    max-width: 100%;
    font-size: 13px;
  }

  .step-outcome {
    margin-top: 17px;
    font-size: 8px;
  }

  .contact-section {
    padding-top: 61px;
  }

  .contact-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding-bottom: 43px;
  }

  .contact-intro h2 {
    font-size: 46px;
    letter-spacing: -1.7px;
  }

  .contact-intro .eyebrow {
    font-size: 7px;
  }

  .contact-action > p {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .contact-action-note {
    font-size: 9px;
  }

  .contact-details {
    gap: 35px 20px;
    padding-block: 34px;
  }

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

  .contact-item:last-child {
    grid-column: 1 / -1;
  }

  .contact-item > a:not(.map-link) {
    font-size: 11px;
    gap: 5px;
  }

  .contact-item h3 {
    margin-bottom: 12px;
  }

  .contact-item address {
    font-size: 11px;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 20px 12px;
    padding-block: 23px;
    line-height: 1.6;
  }

  .footer-bottom > p {
    width: 100%;
    font-size: 9px;
  }

  .footer-coordinate {
    display: none;
  }

}

@media (max-width: 479px) {
  .hero .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 19px;
  }

  .hero-visual {
    height: 390px;
  }

  .hero-location {
    font-size: 6px;
    letter-spacing: 1px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card {
    min-height: 280px;
    padding: 25px;
  }

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

  .service-card > p {
    font-size: 13px;
    max-width: none;
  }

  .service-top {
    margin-bottom: 20px;
  }

  .service-link {
    font-size: 11px;
  }

  .about-visual > img {
    height: 320px;
  }

  .about-image-note {
    left: 14px;
    min-width: 255px;
  }

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

  .contact-item > a:not(.map-link) {
    font-size: 13px;
  }

}

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

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

  .button:hover, .service-card:hover {
    transform: none;
  }

}
