:root {
  --ink: #1d211b;
  --ink-soft: #4e554b;
  --forest: #1b211b;
  --forest-2: #263026;
  --ivory: #f3efe7;
  --paper: #fbf9f4;
  --sand: #d7c5a7;
  --sand-light: #e7ddcc;
  --copper: #ad8357;
  --aqua: #7daaa4;
  --line: rgba(29, 33, 27, 0.18);
  --white-line: rgba(255, 255, 255, 0.24);
  --hero-shift: 0px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--forest);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

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

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

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

button {
  border: 0;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: white;
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 80;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  height: 86px;
  padding: 0 clamp(24px, 4vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  transition: background 240ms ease, color 240ms ease, height 240ms ease, border-color 240ms ease;
}

.site-header--solid {
  height: 72px;
  border-color: var(--line);
  background: rgba(251, 249, 244, 0.96);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 13px;
  width: max-content;
  line-height: 1;
}

.wordmark > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.wordmark strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.wordmark small {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wordmark__mark {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.wordmark__mark i {
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 1px;
  height: 19px;
  background: currentColor;
  transform-origin: bottom;
}

.wordmark__mark i:nth-child(1) {
  transform: rotate(-45deg);
}

.wordmark__mark i:nth-child(2) {
  transform: rotate(0);
}

.wordmark__mark i:nth-child(3) {
  transform: rotate(45deg);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 38px);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.desktop-nav a {
  position: relative;
  padding: 9px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 20px;
}

.header-phone {
  font-size: 12px;
  white-space: nowrap;
}

.header-cta {
  padding: 11px 15px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.04em;
  transition: background 160ms ease, color 160ms ease;
}

.header-cta:hover {
  background: white;
  color: var(--ink);
}

.site-header--solid .header-cta:hover {
  background: var(--ink);
  color: white;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 15px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button.is-active span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-button.is-active span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 70;
  inset: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: 124px clamp(24px, 6vw, 72px) 42px;
  background: var(--paper);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(28px, 6vw, 54px);
  line-height: 1.12;
}

.mobile-menu nav span {
  min-width: 20px;
  font-family: var(--sans);
  font-size: 10px;
}

.mobile-menu__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  color: white;
}

.hero__media,
.hero__shade,
.hero__media picture {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: calc(100% + 130px);
  object-fit: cover;
  object-position: var(--hero-focus-desktop, center 48%);
  transform: translateY(calc(var(--hero-shift) * -1));
  will-change: transform;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(13, 18, 14, 0.76) 0%, rgba(13, 18, 14, 0.35) 45%, rgba(13, 18, 14, 0.05) 74%),
    linear-gradient(0deg, rgba(13, 18, 14, 0.58) 0%, transparent 48%),
    linear-gradient(180deg, rgba(13, 18, 14, 0.4), transparent 23%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(980px, 78vw);
  padding: 0 clamp(24px, 7vw, 132px) clamp(82px, 10vh, 118px);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.68);
}

.hero h1 {
  max-width: 930px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(56px, 7.2vw, 120px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.hero__lead {
  max-width: 600px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 55px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 20px 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.035em;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button svg,
.text-link svg,
.lightbox__nav svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

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

.button--light:hover {
  background: var(--sand);
}

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

.button--dark:hover {
  background: var(--forest-2);
}

.button--wide {
  width: 100%;
}

.button:disabled {
  cursor: wait;
  opacity: 0.6;
  transform: none;
}

.text-link {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  padding: 0 0 7px;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.035em;
}

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

.text-link:hover svg {
  transform: translateX(4px);
}

.text-link--light {
  color: white;
}

.hero__caption {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 4vw, 72px);
  bottom: 30px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 4vw, 72px);
  bottom: 92px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right bottom;
}

.scroll-cue i {
  display: block;
  width: 56px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.36);
}

.scroll-cue i::after {
  display: block;
  width: 50%;
  height: 1px;
  background: white;
  content: "";
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  from { transform: translateX(-120%); }
  to { transform: translateX(220%); }
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 clamp(24px, 4vw, 72px);
  background: var(--forest);
  color: white;
}

.fact {
  display: flex;
  min-height: 160px;
  flex-direction: column;
  justify-content: center;
  padding: 25px clamp(12px, 2vw, 34px);
  border-left: 1px solid var(--white-line);
}

.fact:last-child {
  border-right: 1px solid var(--white-line);
}

.fact strong {
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 65px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.fact span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: clamp(90px, 11vw, 180px) clamp(24px, 7vw, 132px);
}

[data-reveal] .section-head,
[data-reveal] .concept__copy,
[data-reveal] .concept__grid figure,
[data-reveal] .architecture__media,
[data-reveal] .architecture__copy,
[data-reveal] .unit-switch,
[data-reveal] .unit-card,
[data-reveal] .proof-card,
[data-reveal] .faq__title,
[data-reveal] .faq__list {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible .section-head,
[data-reveal].is-visible .concept__copy,
[data-reveal].is-visible .concept__grid figure,
[data-reveal].is-visible .architecture__media,
[data-reveal].is-visible .architecture__copy,
[data-reveal].is-visible .unit-switch,
[data-reveal].is-visible .unit-card,
[data-reveal].is-visible .proof-card,
[data-reveal].is-visible .faq__title,
[data-reveal].is-visible .faq__list {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal].is-visible .concept__grid figure,
[data-reveal].is-visible .architecture__copy,
[data-reveal].is-visible .unit-card,
[data-reveal].is-visible .faq__list {
  transition-delay: 100ms;
}

.section-head h2,
.architecture__copy h2,
.service__copy h2,
.faq__title h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-head--row {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 8vw;
}

.section-head--row > p {
  max-width: 470px;
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 16px;
}

.concept__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(420px, 1.3fr);
  align-items: end;
  gap: clamp(50px, 8vw, 144px);
  margin-top: clamp(58px, 8vw, 110px);
}

.concept__copy {
  padding-bottom: 4vh;
}

.concept__copy > p:not(.lead-copy) {
  max-width: 520px;
  margin: 24px 0 34px;
  color: var(--ink-soft);
}

.lead-copy {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2.35vw, 38px);
  letter-spacing: -0.025em;
  line-height: 1.24;
}

.image-frame {
  margin: 0;
}

.image-frame--portrait {
  height: min(76vw, 900px);
  max-height: 78vh;
}

.image-frame picture,
.image-frame--portrait > picture {
  display: block;
  height: calc(100% - 28px);
}

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

.image-frame figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 11px;
  color: var(--ink-soft);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ecosystem {
  position: relative;
  min-height: 980px;
  padding: clamp(120px, 12vw, 190px) clamp(24px, 7vw, 132px);
  overflow: hidden;
  color: white;
}

.ecosystem > picture,
.ecosystem__image,
.ecosystem__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ecosystem__image {
  object-fit: cover;
}

.ecosystem__overlay {
  background: linear-gradient(90deg, rgba(13, 18, 14, 0.86), rgba(13, 18, 14, 0.3) 72%), linear-gradient(0deg, rgba(13, 18, 14, 0.76), transparent 52%);
}

.ecosystem__content {
  position: relative;
  z-index: 2;
}

.ecosystem h2,
.wellness h2,
.location__panel h2,
.construction__copy h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 108px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.ecosystem__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(150px, 24vh, 290px);
  border-top: 1px solid var(--white-line);
}

.ecosystem__list article {
  min-height: 220px;
  padding: 24px 28px 18px 0;
  border-right: 1px solid var(--white-line);
}

.ecosystem__list article:not(:first-child) {
  padding-left: 28px;
}

.ecosystem__list span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
}

.ecosystem__list h3 {
  margin: 60px 0 12px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.ecosystem__list p {
  max-width: 260px;
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 13px;
}

.architecture {
  display: grid;
  grid-template-columns: minmax(460px, 1.35fr) minmax(300px, 0.65fr);
  align-items: center;
  gap: clamp(54px, 8vw, 140px);
  background: var(--ivory);
}

.architecture__media {
  position: relative;
  padding: 0 10% 16% 0;
}

.image-frame--wide {
  height: min(60vw, 740px);
}

.architecture__detail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  height: 41%;
  border: 10px solid var(--ivory);
}

.architecture__copy h2 {
  font-size: clamp(48px, 5vw, 76px);
}

.architecture__copy .lead-copy {
  margin-top: 38px;
}

.line-list {
  padding: 0;
  margin: 48px 0 0;
  list-style: none;
}

.line-list li {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.line-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.line-list span {
  color: var(--copper);
  font-size: 9px;
}

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

.unit-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: clamp(60px, 8vw, 110px);
  border-top: 1px solid var(--line);
}

.unit-switch button {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  text-align: left;
  transition: color 180ms ease, padding 180ms ease;
}

.unit-switch button:first-child {
  padding-right: 35px;
}

.unit-switch button:last-child {
  padding-left: 35px;
  border-left: 1px solid var(--line);
}

.unit-switch button.is-active {
  color: var(--ink);
}

.unit-switch button.is-active::after {
  display: block;
  width: 7px;
  height: 7px;
  margin-left: 16px;
  border-radius: 50%;
  background: var(--copper);
  content: "";
}

.unit-switch button > span {
  font-size: 9px;
}

.unit-switch button > strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.unit-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.65fr) minmax(480px, 1.35fr);
  min-height: 670px;
  margin-top: 42px;
  background: var(--ivory);
}

.unit-card__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(42px, 6vw, 90px);
}

.unit-card__copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(64px, 7vw, 108px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
}

.unit-card__copy > p:not(.eyebrow) {
  max-width: 390px;
  margin: 24px 0 8px;
  color: var(--ink-soft);
}

.unit-card__copy ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 25px;
  width: 100%;
  padding: 0;
  margin: 34px 0 44px;
  list-style: none;
}

.unit-card__copy li {
  padding: 9px 0;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.unit-card__plan {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6% 8%;
  background: white;
}

.unit-card__plan img {
  width: min(100%, 760px);
  max-height: 560px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.unit-card__plan span {
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wellness {
  position: relative;
  min-height: 1100px;
  padding: clamp(100px, 10vw, 160px) clamp(24px, 7vw, 132px) 110px;
  overflow: hidden;
  background: var(--forest);
  color: white;
}

.wellness__copy {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 8vw;
}

.wellness__copy .eyebrow,
.wellness__copy h2 {
  grid-column: 1;
}

.wellness__copy p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 2;
  max-width: 430px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.68);
}

.wellness__grid {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  align-items: end;
  gap: 26px;
  height: 650px;
  margin-top: 80px;
}

.wellness__main {
  height: 100%;
}

.wellness__small {
  height: 60%;
}

.wellness__marquee {
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.09);
  font-family: var(--serif);
  font-size: clamp(70px, 10vw, 160px);
  line-height: 0.8;
  white-space: nowrap;
}

.wellness__marquee span {
  display: inline-block;
  animation: marquee 42s linear infinite;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.service {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(500px, 1.35fr);
  gap: clamp(65px, 9vw, 150px);
  background: var(--paper);
}

.service__copy {
  padding-top: 4vh;
}

.service__copy h2 {
  font-size: clamp(47px, 5.3vw, 82px);
}

.service__copy .lead-copy {
  margin-top: 42px;
}

.service-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.service-note span {
  color: var(--copper);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.service__visual {
  position: relative;
  min-height: 820px;
  padding-bottom: 120px;
}

.service__visual picture {
  display: block;
  height: 100%;
}

.service__features {
  position: absolute;
  right: -1px;
  bottom: 0;
  left: 12%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0;
  margin: 0;
  background: var(--ivory);
  list-style: none;
}

.service__features li {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 17px;
  padding: 16px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.service__features li:last-child {
  grid-column: span 2;
}

.service__features span {
  color: var(--copper);
  font-size: 9px;
}

.rich-line-list ul,
.rich-service-list ul {
  padding: 0;
  margin: 48px 0 0;
  list-style: none;
}

.rich-line-list li {
  padding: 15px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.rich-line-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.rich-service-list {
  position: absolute;
  right: -1px;
  bottom: 0;
  left: 12%;
  background: var(--ivory);
}

.rich-service-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
}

.rich-service-list li {
  display: flex;
  min-height: 76px;
  align-items: center;
  padding: 16px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.rich-service-list li:last-child {
  grid-column: span 2;
}

.location {
  position: relative;
  min-height: 1000px;
  padding: clamp(70px, 8vw, 130px) clamp(24px, 7vw, 132px);
  overflow: hidden;
}

.location > picture,
.location__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.location__image {
  object-fit: cover;
}

.location::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 20%, rgba(11, 16, 12, 0.24));
  content: "";
}

.location__panel {
  position: relative;
  z-index: 2;
  width: min(620px, 53vw);
  margin-left: auto;
  padding: clamp(50px, 6vw, 88px);
  background: rgba(25, 32, 25, 0.9);
  color: white;
  backdrop-filter: blur(12px);
}

.location__panel h2 {
  font-size: clamp(48px, 5vw, 80px);
}

.location__panel > p:not(.eyebrow):not(.microcopy) {
  max-width: 470px;
  margin: 34px 0 40px;
  color: rgba(255, 255, 255, 0.7);
}

.location__panel dl {
  margin: 0;
}

.location__panel dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: baseline;
  gap: 24px;
  padding: 15px 0;
  border-top: 1px solid var(--white-line);
}

.location__panel dt {
  font-family: var(--serif);
  font-size: 28px;
}

.location__panel dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.microcopy {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  letter-spacing: 0.04em;
}

.proof {
  background: var(--ivory);
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(60px, 8vw, 105px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.proof-card {
  position: relative;
  min-height: 490px;
  padding: clamp(35px, 4vw, 58px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.proof-card--dark {
  background: var(--forest);
  color: white;
}

.proof-card__index {
  position: absolute;
  top: 25px;
  right: 26px;
  color: var(--copper);
  font-size: 10px;
}

.proof-card h3 {
  margin: 95px 0 26px;
  font-family: var(--serif);
  font-size: clamp(35px, 3vw, 50px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.proof-card > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 13px;
}

.proof-card--dark > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.64);
}

.proof-card .text-link {
  margin-top: 34px;
}

.status-pill {
  display: inline-flex;
  margin-top: 35px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-card--list ul {
  padding: 0;
  margin: 40px 0 0;
  list-style: none;
}

.proof-card--list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.proof-card--list i {
  color: var(--copper);
  font-size: 9px;
  font-style: normal;
  text-transform: uppercase;
}

.construction {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  min-height: 820px;
  background: var(--forest);
  color: white;
}

.construction__media {
  position: relative;
  min-height: 680px;
}

.construction__media picture {
  display: block;
  height: 100%;
}

.construction__media > span {
  position: absolute;
  right: 22px;
  bottom: 20px;
  padding: 8px 10px;
  background: rgba(20, 25, 21, 0.72);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.construction__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(55px, 7vw, 110px);
}

.construction__copy h2 {
  font-size: clamp(48px, 5vw, 78px);
}

.construction__copy > p:not(.eyebrow) {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.construction__alert {
  margin-top: 42px;
  padding: 18px 0;
  border-top: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
}

.construction__alert span {
  display: block;
  margin-bottom: 8px;
  color: var(--sand);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.construction__alert strong {
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 400;
}

.construction__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-top: 38px;
}

.disabled-link {
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery {
  padding-right: 0;
  padding-left: 0;
  overflow: hidden;
}

.gallery .section-head {
  padding-right: clamp(24px, 7vw, 132px);
  padding-left: clamp(24px, 7vw, 132px);
}

.gallery__rail {
  display: flex;
  align-items: flex-end;
  gap: 22px;
  margin-top: clamp(60px, 8vw, 110px);
  padding: 0 clamp(24px, 7vw, 132px) 34px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
}

.gallery__item {
  position: relative;
  flex: 0 0 min(58vw, 760px);
  height: min(42vw, 570px);
  padding: 0;
  overflow: hidden;
  background: var(--ivory);
  cursor: zoom-in;
}

.gallery__item--2 {
  flex-basis: min(38vw, 490px);
  height: min(52vw, 660px);
}

.gallery__item--3 {
  flex-basis: min(48vw, 610px);
  height: min(34vw, 450px);
}

.gallery__item picture,
.gallery__item img {
  width: 100%;
  height: 100%;
}

.gallery__item img {
  object-fit: cover;
  transition: transform 600ms ease;
}

.gallery__item:hover img {
  transform: scale(1.025);
}

.gallery__item > span {
  position: absolute;
  right: 15px;
  bottom: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(16, 22, 17, 0.76);
  color: white;
  font-size: 9px;
}

.faq {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(500px, 1.35fr);
  gap: clamp(65px, 10vw, 170px);
  background: var(--ivory);
}

.faq__title {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq__title h2 {
  font-size: clamp(47px, 5vw, 77px);
}

.faq__title > p:not(.eyebrow) {
  max-width: 420px;
  margin: 34px 0;
  color: var(--ink-soft);
}

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

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: grid;
  grid-template-columns: 32px 1fr 24px;
  align-items: center;
  gap: 18px;
  padding: 28px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 30px);
  letter-spacing: -0.025em;
  line-height: 1.25;
  list-style: none;
}

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

.faq summary > span {
  align-self: start;
  padding-top: 7px;
  color: var(--copper);
  font-family: var(--sans);
  font-size: 9px;
}

.faq summary i {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq summary i::before,
.faq summary i::after {
  position: absolute;
  top: 50%;
  left: 2px;
  width: 16px;
  height: 1px;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease;
}

.faq summary i::after {
  transform: rotate(90deg);
}

.faq details[open] summary i::after {
  transform: rotate(0);
}

.faq details > p {
  max-width: 690px;
  padding: 0 58px 30px 50px;
  margin: -8px 0 0;
  color: var(--ink-soft);
}

.final-cta {
  position: relative;
  min-height: 900px;
  padding: clamp(100px, 11vw, 175px) clamp(24px, 7vw, 132px);
  color: white;
}

.final-cta > picture,
.final-cta__image,
.final-cta__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-cta__image {
  object-fit: cover;
}

.final-cta__shade {
  background: linear-gradient(90deg, rgba(12, 17, 13, 0.86), rgba(12, 17, 13, 0.33) 66%, rgba(12, 17, 13, 0.15));
}

.final-cta__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(380px, 1.25fr) minmax(330px, 0.55fr);
  align-items: end;
  gap: 12vw;
  min-height: 560px;
}

.final-cta h2 {
  font-size: clamp(58px, 7vw, 108px);
}

.final-cta__content > div:first-child > p:not(.eyebrow) {
  max-width: 520px;
  margin: 35px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.lead-form {
  display: grid;
  gap: 18px;
}

.lead-form label > span,
.lead-form legend {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.lead-form input:not([type="radio"]),
.lead-form textarea {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  outline: 0;
}

.lead-form input:not([type="radio"]):focus,
.lead-form textarea:focus {
  border-color: var(--copper);
}

.lead-form fieldset {
  padding: 0;
  border: 0;
}

.channel-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.channel-row label {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
}

.channel-row input {
  accent-color: var(--forest);
}

.lead-form--compact {
  padding: 36px;
  background: rgba(17, 22, 18, 0.74);
  backdrop-filter: blur(14px);
}

.lead-form--compact label > span {
  color: rgba(255, 255, 255, 0.58);
}

.lead-form--compact input {
  border-color: rgba(255, 255, 255, 0.34) !important;
  color: white;
}

.lead-form--compact input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.form-note,
.form-status {
  margin: 0;
  color: var(--ink-soft);
  font-size: 9px;
  line-height: 1.45;
}

.lead-form--compact .form-note {
  color: rgba(255, 255, 255, 0.48);
}

.form-note a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-status--success {
  color: #4f7654;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.footer {
  padding: 80px clamp(24px, 7vw, 132px) 34px;
  background: var(--forest);
  color: white;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: start;
  gap: 60px;
  padding-bottom: 80px;
}

.wordmark--footer {
  color: white;
}

.footer__contact,
.footer__social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer__contact span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__contact a {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 38px);
}

.footer__social {
  font-size: 12px;
}

.footer__social a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.footer__bottom {
  display: grid;
  grid-template-columns: auto 1fr minmax(260px, 0.7fr);
  align-items: end;
  gap: 55px;
  padding-top: 22px;
  border-top: 1px solid var(--white-line);
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom > div {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.mobile-contact-bar {
  display: none;
}

[hidden] {
  display: none !important;
}

.inner-body {
  background: var(--paper);
}

.inner-page {
  min-height: 72vh;
  padding: 170px clamp(24px, 12vw, 230px) 120px;
}

.rich-content {
  max-width: 980px;
}

.rich-content h1 {
  max-width: 920px;
  margin: 0 0 50px;
  font-family: var(--serif);
  font-size: clamp(54px, 8vw, 116px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.rich-content h2 {
  margin: 70px 0 24px;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.rich-content p,
.rich-content li {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.rich-content a {
  border-bottom: 1px solid var(--line);
}

.inner-page__cta {
  max-width: 760px;
  margin-top: 90px;
  padding: 50px;
  background: var(--ivory);
}

.inner-page__cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
}

.inner-page__cta p {
  margin: 16px 0 28px;
  color: var(--ink-soft);
}

.modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: flex;
  justify-content: flex-end;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 11, 0.72);
  cursor: default;
}

.modal__panel {
  position: relative;
  z-index: 2;
  width: min(590px, 100%);
  padding: clamp(38px, 6vw, 76px);
  overflow-y: auto;
  background: var(--paper);
  animation: modal-in 260ms ease both;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateX(30px); }
}

.modal__panel > h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(39px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.modal__panel > p:not(.eyebrow) {
  margin: 23px 0 40px;
  color: var(--ink-soft);
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.icon-button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.modal__panel > .icon-button {
  position: absolute;
  top: 22px;
  right: 22px;
}

.modal__direct {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 10px;
}

.modal__direct span {
  width: 100%;
  color: var(--ink-soft);
}

.modal__direct a {
  padding-bottom: 2px;
  border-bottom: 1px solid var(--line);
}

.lightbox {
  position: fixed;
  z-index: 220;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 74px 8vw 60px;
  background: rgba(13, 17, 14, 0.96);
  color: white;
}

.lightbox picture,
.lightbox picture img {
  max-width: 100%;
  max-height: calc(100vh - 160px);
}

.lightbox picture img {
  width: auto;
  height: auto;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  border-color: rgba(255, 255, 255, 0.35);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: transparent;
  color: white;
  cursor: pointer;
}

.lightbox__nav--prev {
  left: 22px;
  transform: rotate(180deg);
}

.lightbox__nav--next {
  right: 22px;
}

.lightbox > p {
  position: absolute;
  bottom: 17px;
  left: 8vw;
  display: flex;
  gap: 28px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.lightbox > p span {
  color: white;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

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

  .menu-button {
    display: block;
  }

  .architecture {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 6vw;
  }

  .service {
    gap: 6vw;
  }

  .proof-card {
    padding: 36px;
  }

  .construction {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 72px;
    padding: 0 24px;
  }

  .site-header--solid {
    height: 66px;
  }

  .header-cta {
    display: none;
  }

  .hero__content {
    width: 88vw;
    padding-right: 24px;
    padding-left: 24px;
  }

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

  .fact {
    min-height: 140px;
    border-bottom: 1px solid var(--white-line);
  }

  .fact:nth-child(2) {
    border-right: 1px solid var(--white-line);
  }

  .section-head--row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .concept__grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 44px;
  }

  .ecosystem {
    min-height: 1080px;
  }

  .ecosystem__list {
    grid-template-columns: 1fr 1fr;
    margin-top: 180px;
  }

  .ecosystem__list article {
    min-height: 190px;
    border-bottom: 1px solid var(--white-line);
  }

  .ecosystem__list article:nth-child(3) {
    padding-left: 0;
  }

  .ecosystem__list h3 {
    margin-top: 35px;
  }

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

  .architecture__media {
    order: 2;
  }

  .architecture__copy {
    order: 1;
  }

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

  .unit-card__copy {
    min-height: 520px;
  }

  .unit-card__plan {
    min-height: 560px;
  }

  .wellness {
    min-height: 960px;
  }

  .wellness__grid {
    height: 540px;
  }

  .service__visual {
    min-height: 720px;
  }

  .location__panel {
    width: min(660px, 80vw);
  }

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

  .proof-card:last-child {
    grid-column: span 2;
  }

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

  .construction__media {
    min-height: 620px;
  }

  .faq__title {
    position: static;
  }

  .final-cta__content {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 60px;
  }

  .final-cta {
    min-height: 1100px;
  }

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

  .footer__social {
    grid-column: 2;
  }

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

  .footer__bottom > p:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 58px;
  }

  .wordmark strong {
    font-size: 16px;
  }

  .wordmark small {
    font-size: 8px;
  }

  .wordmark__mark {
    width: 27px;
    height: 27px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__image {
    height: 100%;
    object-position: var(--hero-focus-mobile, 57% center);
    transform: none;
  }

  .hero__shade {
    background: linear-gradient(0deg, rgba(12, 17, 13, 0.85), rgba(12, 17, 13, 0.15) 70%), linear-gradient(90deg, rgba(12, 17, 13, 0.42), transparent 65%);
  }

  .hero__content {
    width: 100%;
    padding: 0 24px 105px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 68px);
    line-height: 0.94;
  }

  .hero__lead {
    max-width: 92%;
    margin-top: 24px;
    font-size: 15px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 28px;
  }

  .hero__caption,
  .scroll-cue {
    display: none;
  }

  .button {
    min-height: 52px;
  }

  .facts {
    padding: 0 16px;
  }

  .fact {
    min-height: 126px;
    padding: 20px 15px;
  }

  .fact strong {
    font-size: 38px;
  }

  .fact span {
    font-size: 8px;
  }

  .section {
    padding: 86px 24px;
  }

  .section-head h2,
  .architecture__copy h2,
  .service__copy h2,
  .faq__title h2 {
    font-size: 45px;
    line-height: 1;
  }

  .section-head--row > p {
    font-size: 14px;
  }

  .concept__grid {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }

  .concept__copy {
    padding-bottom: 0;
  }

  .lead-copy {
    font-size: 25px;
  }

  .image-frame--portrait {
    height: 112vw;
    max-height: none;
  }

  .ecosystem {
    min-height: 1180px;
    padding: 90px 24px;
  }

  .ecosystem__image {
    object-position: center;
  }

  .ecosystem__overlay {
    background: linear-gradient(0deg, rgba(13, 18, 14, 0.92), rgba(13, 18, 14, 0.34)), linear-gradient(90deg, rgba(13, 18, 14, 0.46), transparent);
  }

  .ecosystem h2,
  .wellness h2,
  .location__panel h2,
  .construction__copy h2,
  .final-cta h2 {
    font-size: 50px;
  }

  .ecosystem__list {
    grid-template-columns: 1fr;
    margin-top: 150px;
  }

  .ecosystem__list article,
  .ecosystem__list article:not(:first-child) {
    min-height: auto;
    padding: 21px 0;
    border-right: 0;
  }

  .ecosystem__list h3 {
    margin: 22px 0 8px;
  }

  .architecture {
    gap: 50px;
  }

  .architecture__media {
    padding: 0 12% 15% 0;
  }

  .image-frame--wide {
    height: 112vw;
  }

  .architecture__detail {
    width: 43%;
    height: 36%;
    border-width: 7px;
  }

  .unit-switch {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .unit-switch button:first-child,
  .unit-switch button:last-child {
    padding: 19px 0;
    border-left: 0;
  }

  .unit-switch button > strong {
    font-size: 20px;
  }

  .unit-card {
    min-height: 0;
    margin-top: 28px;
  }

  .unit-card__copy {
    min-height: 0;
    padding: 48px 26px;
  }

  .unit-card__copy h3 {
    font-size: 65px;
  }

  .unit-card__copy ul {
    grid-template-columns: 1fr;
  }

  .unit-card__plan {
    min-height: 410px;
    padding: 40px 18px;
  }

  .wellness {
    min-height: 930px;
    padding: 90px 24px 100px;
  }

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

  .wellness__copy .eyebrow,
  .wellness__copy h2,
  .wellness__copy p:not(.eyebrow) {
    grid-column: 1;
    grid-row: auto;
  }

  .wellness__copy p:not(.eyebrow) {
    margin-top: 24px;
  }

  .wellness__grid {
    grid-template-columns: 1fr;
    height: 520px;
    margin-top: 50px;
  }

  .wellness__main {
    height: 100%;
  }

  .wellness__small {
    display: none;
  }

  .service {
    gap: 50px;
  }

  .service-note {
    margin-top: 42px;
  }

  .service__visual {
    min-height: 650px;
    padding-bottom: 240px;
  }

  .service__features {
    left: 8%;
    grid-template-columns: 1fr;
  }

  .rich-service-list {
    left: 8%;
  }

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

  .rich-service-list li,
  .rich-service-list li:last-child {
    grid-column: auto;
    min-height: 54px;
  }

  .service__features li,
  .service__features li:last-child {
    grid-column: auto;
    min-height: 54px;
  }

  .location {
    min-height: 850px;
    padding: 70px 16px;
  }

  .location__image {
    object-position: center;
  }

  .location__panel {
    width: 100%;
    margin-top: 170px;
    padding: 38px 25px;
  }

  .location__panel dl div {
    grid-template-columns: 84px 1fr;
  }

  .location__panel dt {
    font-size: 23px;
  }

  .proof__grid {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .proof-card,
  .proof-card:last-child {
    grid-column: auto;
    min-height: 410px;
    padding: 32px 26px;
  }

  .proof-card h3 {
    margin-top: 70px;
  }

  .construction__media {
    min-height: 72vw;
  }

  .construction__copy {
    padding: 70px 24px 82px;
  }

  .gallery .section-head {
    padding-right: 24px;
    padding-left: 24px;
  }

  .gallery__rail {
    gap: 14px;
    margin-top: 48px;
    padding: 0 24px 25px;
  }

  .gallery__item,
  .gallery__item--2,
  .gallery__item--3 {
    flex-basis: 82vw;
    height: 112vw;
  }

  .faq {
    gap: 48px;
  }

  .faq summary {
    grid-template-columns: 25px 1fr 20px;
    gap: 12px;
    padding: 22px 0;
    font-size: 20px;
  }

  .faq details > p {
    padding: 0 0 26px 37px;
    font-size: 13px;
  }

  .final-cta {
    min-height: 1050px;
    padding: 86px 24px;
  }

  .final-cta__image {
    object-position: 58% center;
  }

  .final-cta__content {
    min-height: 850px;
    gap: 44px;
  }

  .lead-form--compact {
    padding: 27px 22px;
  }

  .footer {
    padding: 65px 24px 30px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-bottom: 52px;
  }

  .footer__social {
    grid-column: auto;
  }

  .footer__bottom {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer__bottom > p:last-child {
    grid-column: auto;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    min-height: 58px;
    background: var(--paper);
    box-shadow: 0 -8px 30px rgba(13, 18, 14, 0.12);
  }

  .mobile-contact-bar a,
  .mobile-contact-bar button {
    display: grid;
    place-items: center;
    border-right: 1px solid var(--line);
    background: transparent;
    font-size: 11px;
  }

  .mobile-contact-bar button {
    background: var(--forest);
    color: white;
  }

  .modal__panel {
    padding: 72px 24px 34px;
  }

  .inner-page {
    padding: 125px 24px 80px;
  }

  .inner-page__cta {
    margin-top: 60px;
    padding: 34px 24px;
  }

  .lightbox {
    padding: 70px 16px 76px;
  }

  .lightbox__nav {
    top: auto;
    bottom: 18px;
    width: 40px;
    height: 40px;
  }

  .lightbox__nav--prev {
    left: auto;
    right: 70px;
  }

  .lightbox__nav--next {
    right: 18px;
  }

  .lightbox > p {
    right: 125px;
    bottom: 28px;
    left: 18px;
    overflow: hidden;
    white-space: nowrap;
  }
}

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

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

  .hero__image {
    transform: none;
  }
}
