:root {
  --paper: #f8f7f2;
  --ink: #283a33;
  --muted: #6a7068;
  --line: #dedfd5;
  --gold: #edba62;
  --serif: Georgia, 'Times New Roman', serif;
}

* {
  box-sizing: border-box;
}

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

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

body.modal-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

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

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

svg {
  display: block;
}

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

:focus-visible {
  outline: 2px solid #936725;
  outline-offset: 6px;
}

[hidden] {
  display: none !important;
}

.container {
  width: calc(100% - 112px);
  max-width: 1248px;
  margin: 0 auto;
}

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

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

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

.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
  line-height: 1.7;
}

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

h2 em, h1 em {
  font-family: var(--serif);
  font-weight: 400;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 27px;
  padding: 18px 23px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  border: 1px solid transparent;
  border-radius: 3px;
  transition: background .2s, transform .2s;
}

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

.button-dark {
  background: var(--ink);
  color: #fffdf6;
}

.button-dark:hover {
  background: #405348;
}

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

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

.text-link span {
  font-size: 19px;
  transition: transform .2s;
}

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

.status-dot {
  display: inline-block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: #7b875b;
  border-radius: 50%;
}

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

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

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

.brand-symbol {
  width: 42px;
  height: 45px;
}

.brand > span {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1.2px;
}

.brand small {
  font-size: 8px;
  letter-spacing: .7px;
}

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

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

.desktop-nav a::after {
  position: absolute;
  content: '';
  width: 0;
  height: 1px;
  left: 0;
  bottom: 5px;
  background: var(--ink);
  transition: width .2s;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-cta {
  padding: 13px 20px;
  gap: 30px;
}

.menu-toggle {
  display: none;
}

.mobile-nav {
  border-top: 1px solid var(--line);
  padding: 14px 24px 22px;
}

.mobile-nav a {
  display: block;
  padding: 13px 0;
  font-size: 15px;
}

.hero {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: 57px;
  padding-top: 67px;
  padding-bottom: 61px;
  align-items: center;
}

.hero-copy {
  padding-bottom: 22px;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: 1.6px;
  margin-bottom: 30px;
}

.tiny-sun {
  color: #b08236;
  font-size: 23px;
  line-height: 1;
}

h1 {
  font-size: clamp(58px, 5.7vw, 81px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -4.2px;
}

h1 em {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

h1 em::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 2px;
  right: 0;
  height: 13px;
  bottom: 10px;
  background: #edc477;
  border-radius: 50%;
  transform: rotate(-2deg);
}

.hero-description {
  max-width: 387px;
  margin: 25px 0 30px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
}

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

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

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

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

.hero-visual {
  position: relative;
  margin-left: 10px;
  padding-bottom: 29px;
}

.photo-frame {
  height: 521px;
  overflow: hidden;
  border-radius: 4px 110px 4px 4px;
  background: #b9b09a;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
}

.sun-orbit {
  position: absolute;
  z-index: -1;
  width: 154px;
  height: 154px;
  top: -24px;
  left: -35px;
  border-radius: 50%;
  border: 1px solid #dcb877;
}

.sun-orbit::before {
  position: absolute;
  content: '';
  inset: 11px;
  background: var(--gold);
  border-radius: 50%;
}

.photo-label {
  display: flex;
  align-items: center;
  gap: 9px;
  position: absolute;
  left: 23px;
  top: 23px;
  padding: 9px 12px;
  border: 1px solid #ffffff80;
  background: #f8f7f2e8;
  font-size: 8px;
  letter-spacing: 1.1px;
  border-radius: 2px;
}

.photo-label > span {
  font-size: 15px;
}

.insight-card {
  display: flex;
  gap: 16px;
  align-items: center;
  position: absolute;
  bottom: 58px;
  left: -35px;
  width: 335px;
  padding: 22px;
  border: 1px solid #f5f3ed;
  border-radius: 4px;
  background: #fffefa;
  box-shadow: 0 10px 35px #26372b12;
}

.insight-icon {
  padding: 12px;
  background: #f0f1e8;
  border-radius: 3px;
}

.insight-icon svg {
  width: 31px;
  height: 31px;
  color: #657655;
}

.card-overline {
  display: block;
  font-size: 7px;
  letter-spacing: 1.3px;
  margin-bottom: 8px;
  color: var(--muted);
}

.insight-card p {
  font-size: 13px;
  line-height: 1.55;
}

.insight-card strong {
  font-weight: 600;
}

.card-arrow {
  margin-left: auto;
  font-size: 22px;
  color: #7a865e;
}

.image-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 9px;
  color: var(--muted);
  letter-spacing: .2px;
}

.principles-strip {
  background: #efefe7;
  border-top: 1px solid #e5e5db;
  border-bottom: 1px solid #e5e5db;
}

.principles-inner {
  display: grid;
  grid-template-columns: .8fr 1.1fr 1fr 1.1fr;
  align-items: center;
  min-height: 103px;
  gap: 36px;
}

.principles-inner > p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.principles-inner strong {
  font-weight: 500;
  color: var(--ink);
}

.principles-inner > div {
  display: flex;
  align-items: center;
  gap: 16px;
  border-left: 1px solid #d7dace;
  padding-left: 32px;
}

.principles-inner svg {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  stroke: #6a7959;
  stroke-width: 1.3;
}

.principles-inner span {
  font-size: 12px;
  white-space: nowrap;
}

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

.section-heading .eyebrow, .about-copy .eyebrow {
  margin-bottom: 21px;
}

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

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 329px;
  padding: 27px 25px 20px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fbfbf7;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.service-card:hover {
  border-color: #b5bc9f;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px #283a3308;
}

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

.service-top svg {
  width: 39px;
  height: 39px;
  stroke: #758060;
  stroke-width: 1.4;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.service-top > span {
  font-size: 9px;
  color: #8c9283;
}

.service-card h3 {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -.5px;
  margin-bottom: 15px;
}

.service-card > p {
  font-size: 11.5px;
  line-height: 1.8;
  color: var(--muted);
  padding-bottom: 23px;
}

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

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

.service-link:hover {
  color: #85602a;
}

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

.expertise-note > span {
  font-size: 17px;
  color: #a18149;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 108px;
}

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

.about-visual > img {
  width: 100%;
  height: 417px;
  object-fit: cover;
  border-radius: 85px 3px 3px 3px;
}

.about-photo-tag {
  display: flex;
  gap: 20px;
  align-items: center;
  position: absolute;
  bottom: 0;
  right: -24px;
  padding: 22px 33px;
  background: #e8b965;
  border-radius: 3px;
}

.about-photo-tag > span {
  font-size: 40px;
}

.about-photo-tag > p {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.22;
}

.about-copy h2 {
  font-size: clamp(33px, 3.1vw, 43px);
  margin-bottom: 24px;
}

.about-copy > p:not(.eyebrow) {
  font-size: 12px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 15px;
}

.about-copy > p:nth-of-type(2) {
  color: var(--ink);
  font-size: 14px;
}

.about-copy .text-link {
  margin-top: 13px;
  padding-bottom: 8px;
  border-bottom: 1px solid #aeb5a6;
}

.approach {
  background: #293c33;
  color: #f7f6ed;
}

.approach .eyebrow {
  color: #c3c9b4;
}

.approach .section-heading {
  margin-bottom: 54px;
}

.approach .section-heading > p {
  color: #c0c6bb;
}

.approach h2 em {
  color: #e4c489;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 49px;
}

.step-marker {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 27px;
}

.step-marker span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid #7e8b72;
  color: #e4c489;
  font-size: 12px;
}

.step-marker i {
  display: block;
  height: 1px;
  width: 100%;
  background: #526152;
}

.process-step h3 {
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -.4px;
  margin-bottom: 14px;
}

.process-step > p {
  color: #c0c6bb;
  font-size: 12px;
  line-height: 1.9;
  max-width: 290px;
}

.step-outcome {
  display: block;
  font-size: 8px;
  color: #d2c299;
  letter-spacing: 1.2px;
  margin-top: 27px;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  padding: 56px 62px;
  background: #ebc278;
  border-radius: 4px;
}

.contact-copy {
  position: relative;
  z-index: 1;
}

.contact-copy .eyebrow {
  margin-bottom: 20px;
  font-size: 9px;
}

.contact-copy h2 {
  font-size: clamp(36px, 3.8vw, 52px);
}

.contact-copy > p:not(.eyebrow) {
  font-size: 12px;
  line-height: 1.85;
  margin: 22px 0 27px;
  color: #4e513c;
}

.contact-copy .button {
  gap: 44px;
}

.contact-note {
  display: block;
  font-size: 9px;
  margin-top: 15px;
  color: #56583f;
}

.contact-sun {
  position: absolute;
  right: -60px;
  top: 49px;
  width: 435px;
  height: 350px;
  opacity: .65;
}

.contact-sun > div {
  width: 290px;
  height: 146px;
  margin: 0 auto 21px;
  border-radius: 180px 180px 0 0;
  border: 1px solid #807f4d;
  border-bottom: 0;
  background: #e2b36055;
}

.contact-sun i {
  display: block;
  height: 1px;
  width: 100%;
  background: #807f4d;
  margin: 20px auto;
}

.contact-sun i:nth-of-type(2) {
  width: 82%;
}

.contact-sun i:nth-of-type(3) {
  width: 64%;
}

.contact-sun i:nth-of-type(4) {
  width: 45%;
}

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

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1fr;
  gap: 62px;
  padding-top: 50px;
  padding-bottom: 45px;
}

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

.footer-company {
  display: block;
  margin-top: 17px;
  font-size: 8px;
  letter-spacing: 1px;
  color: var(--muted);
}

.footer-main h2 {
  font-size: 8px;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin: 7px 0 23px;
}

.footer-contact > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: fit-content;
  margin-bottom: 16px;
  font-size: 12px;
}

.footer-contact > a span {
  font-size: 17px;
  margin-left: 10px;
}

.footer-contact > a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-location address {
  font-size: 10px;
  line-height: 1.9;
  font-style: normal;
  color: #565f53;
}

.location-caption {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-top: 15px;
  font-size: 9px;
  color: var(--muted);
}

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

.footer-bottom > a {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-bottom > a span {
  font-size: 16px;
}

#service-dialog {
  width: min(560px, calc(100% - 32px));
  max-height: calc(100dvh - 48px);
  margin: auto;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 100px #0c1b2240;
}

#service-dialog::backdrop {
  background: #162b23ad;
  backdrop-filter: blur(4px);
}

.dialog-content {
  position: relative;
  padding: 43px;
}

.dialog-close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  color: var(--ink);
}

.dialog-close:hover {
  background: #e9eadf;
}

.dialog-content .eyebrow {
  margin: 9px 0 18px;
}

.dialog-content h2 {
  font-size: 36px;
  margin-bottom: 21px;
}

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

.dialog-content h3 {
  font-size: 14px;
  font-weight: 600;
  margin-top: 26px;
}

#dialog-deliverables {
  padding-left: 18px;
  margin: 14px 0 27px;
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  list-style: disc;
}

.dialog-note {
  font-size: 10px;
  color: var(--muted);
  margin-top: 17px;
  line-height: 1.6;
}

@media (min-width: 1600px) {
  .hero {
    gap: 85px;
    padding-top: 83px;
    padding-bottom: 75px;
  }

  .photo-frame {
    height: 556px;
  }

}

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

  .desktop-nav {
    margin-left: 10px;
    gap: 25px;
  }

  .hero {
    gap: 38px;
  }

  h1 {
    font-size: 64px;
    letter-spacing: -3px;
  }

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

  .hero-actions {
    gap: 20px;
  }

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

  .photo-frame {
    height: 507px;
  }

  .insight-card {
    width: 310px;
    left: -25px;
    padding: 18px;
    gap: 12px;
  }

  .principles-inner {
    gap: 16px;
  }

  .principles-inner > div {
    padding-left: 20px;
    gap: 12px;
  }

  .principles-inner span {
    font-size: 11px;
  }

  .service-card {
    padding: 23px 18px 18px;
  }

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

  .about {
    gap: 62px;
  }

  .steps-grid {
    gap: 30px;
  }

  .contact-sun {
    right: -125px;
    opacity: .4;
  }

  .footer-main {
    gap: 30px;
  }

}

@media (max-width: 850px) {
  .container {
    width: calc(100% - 48px);
  }

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

  .header-inner {
    height: 86px;
  }

  .desktop-nav {
    gap: 22px;
  }

  .header-cta {
    padding: 12px 16px;
    gap: 18px;
  }

  .hero {
    gap: 26px;
    padding-top: 59px;
    padding-bottom: 50px;
  }

  h1 {
    font-size: 54px;
    letter-spacing: -2.8px;
  }

  .hero .eyebrow {
    font-size: 7px;
    gap: 6px;
    letter-spacing: .9px;
  }

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

  .photo-frame {
    height: 476px;
    border-top-right-radius: 80px;
  }

  .photo-label {
    left: 14px;
    top: 18px;
    font-size: 6px;
    letter-spacing: .7px;
    padding: 8px;
  }

  .insight-card {
    width: 277px;
    padding: 15px;
    left: -20px;
  }

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

  .card-overline {
    font-size: 6px;
  }

  .insight-icon {
    padding: 10px;
  }

  .hero-note {
    line-height: 1.7;
    font-size: 9px;
  }

  .principles-inner {
    grid-template-columns: 1fr 1fr;
    padding-top: 23px;
    padding-bottom: 23px;
    gap: 23px;
  }

  .principles-inner > p {
    padding-left: 4px;
  }

  .principles-inner > div:nth-child(3) {
    border-left: 0;
    padding-left: 4px;
  }

  .section-heading {
    gap: 28px;
  }

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

  h2 {
    font-size: 35px;
  }

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

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

  .service-card > p {
    font-size: 12px;
    max-width: 270px;
  }

  .about {
    gap: 40px;
    padding-top: 0;
  }

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

  .about-photo-tag {
    right: -15px;
    padding: 19px 22px;
    gap: 15px;
  }

  .about-photo-tag > p {
    font-size: 19px;
  }

  .about-photo-tag > span {
    font-size: 31px;
  }

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

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

  .process-step h3 {
    font-size: 18px;
    line-height: 1.4;
  }

  .steps-grid {
    gap: 25px;
  }

  .contact-panel {
    padding: 45px;
  }

  .contact-sun {
    right: -200px;
  }

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

  .footer-intro {
    grid-row: span 2;
  }

  .footer-main h2 {
    margin-top: 0;
    margin-bottom: 17px;
  }

}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 44px);
  }

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

  .header-inner {
    height: 80px;
  }

  .brand-symbol {
    width: 35px;
    height: 39px;
  }

  .brand {
    gap: 9px;
  }

  .brand > span {
    font-size: 12px;
    letter-spacing: 1.2px;
  }

  .brand small {
    font-size: 7px;
  }

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

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 42px;
    height: 42px;
    border: 1px solid #d9dccf;
    border-radius: 3px;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--ink);
    transition: transform .2s;
  }

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

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

  .hero-copy {
    padding-bottom: 0;
  }

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

  h1 {
    font-size: clamp(55px, 12.8vw, 78px);
    letter-spacing: -3.4px;
    line-height: 1.05;
  }

  .hero-description {
    font-size: 13px;
    line-height: 1.8;
    max-width: 390px;
    margin: 23px 0 25px;
  }

  .hero-actions {
    gap: 20px;
  }

  .hero-actions .button {
    font-size: 11px;
    gap: 14px;
  }

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

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

  .hero-visual {
    margin: 0 0 0 12px;
    padding-bottom: 26px;
  }

  .photo-frame {
    height: 390px;
    border-top-right-radius: 90px;
  }

  .sun-orbit {
    width: 120px;
    height: 120px;
    top: -17px;
    left: -25px;
  }

  .photo-label {
    left: 16px;
    top: 19px;
    font-size: 7px;
    padding: 8px 10px;
  }

  .insight-card {
    left: -13px;
    bottom: 48px;
    width: 282px;
    padding: 17px;
  }

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

  .card-overline {
    font-size: 6.5px;
  }

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

  .principles-inner {
    gap: 21px 12px;
  }

  .principles-inner > div {
    padding-left: 15px;
    gap: 9px;
  }

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

  .principles-inner span {
    white-space: normal;
    font-size: 10px;
    line-height: 1.5;
  }

  .principles-inner svg {
    width: 23px;
    height: 23px;
  }

  .principles-inner > p {
    font-size: 11px;
    padding-left: 0;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
    margin-bottom: 30px;
  }

  .section-heading .eyebrow, .about-copy .eyebrow {
    font-size: 8px;
    margin-bottom: 17px;
    letter-spacing: 1.4px;
  }

  h2 {
    font-size: 36px;
    letter-spacing: -1.3px;
  }

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

  .services-grid {
    gap: 13px;
  }

  .service-card {
    padding: 21px 17px 18px;
    min-height: 318px;
  }

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

  .service-top svg {
    width: 32px;
    height: 32px;
  }

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

  .service-card > p {
    font-size: 11px;
    line-height: 1.75;
  }

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

  .expertise-note {
    font-size: 9px;
    margin-top: 23px;
    gap: 7px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 0;
  }

  .about-visual {
    padding-right: 12px;
  }

  .about-visual > img {
    height: 345px;
    border-top-left-radius: 70px;
  }

  .about-photo-tag {
    right: 0;
    padding: 22px 26px;
  }

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

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

  .about-copy > p:nth-of-type(2) {
    font-size: 15px;
  }

  .approach .section-heading {
    margin-bottom: 35px;
  }

  .approach h2 {
    font-size: 34px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 33px;
  }

  .step-marker {
    margin-bottom: 18px;
  }

  .step-marker span {
    width: 34px;
    height: 34px;
    font-size: 11px;
  }

  .process-step h3 {
    font-size: 21px;
    margin-bottom: 11px;
  }

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

  .step-outcome {
    margin-top: 18px;
  }

  .contact-panel {
    padding: 36px 26px 40px;
  }

  .contact-copy h2 {
    font-size: 35px;
  }

  .contact-copy .eyebrow {
    font-size: 7px;
    letter-spacing: 1.3px;
  }

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

  .contact-copy > p br {
    display: none;
  }

  .contact-sun {
    right: -278px;
    top: auto;
    bottom: -80px;
    opacity: .3;
  }

  .contact-note {
    font-size: 8px;
    max-width: 225px;
    line-height: 1.7;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .footer-intro {
    grid-row: auto;
  }

  .footer-main h2 {
    font-size: 8px;
  }

  .footer-contact > a {
    font-size: 13px;
  }

  .footer-location address {
    font-size: 11px;
  }

  .footer-bottom {
    font-size: 8px;
    align-items: flex-start;
    gap: 24px;
    line-height: 1.7;
  }

  .footer-bottom > a {
    gap: 9px;
    white-space: nowrap;
  }

  .dialog-content {
    padding: 39px 25px 29px;
  }

  .dialog-content h2 {
    font-size: 31px;
  }

}

@media (max-width: 360px) {
  .hero-actions {
    gap: 17px;
  }

  .hero-actions .text-link {
    min-height: 35px;
  }

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

  .service-card {
    min-height: auto;
  }

  .service-card h3 br {
    display: none;
  }

}

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

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

}
