:root {
  --green-950: #082f25;
  --green-900: #063f31;
  --green-800: #0c4d3d;
  --ivory-100: #faf7f2;
  --ivory-200: #f4eee5;
  --ivory-300: #e8ddce;
  --champagne: #c49a5a;
  --champagne-light: #e2cda8;
  --ink: #26332e;
  --muted: #5f6964;
  --white: #ffffff;
  --shadow-soft: 0 18px 50px rgba(14, 48, 38, 0.08);
  --shadow-card: 0 12px 32px rgba(31, 42, 37, 0.07);
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--ivory-100);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

address {
  font-style: normal;
}

.container {
  width: min(1280px, calc(100% - 96px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 3px;
  background: var(--white);
  color: var(--green-900);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.utility-bar {
  min-height: 42px;
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  letter-spacing: 0.015em;
}

.utility-bar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.utility-phone {
  margin-left: 8px;
  color: var(--champagne-light);
  font-weight: 700;
}

.utility-dot {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--champagne);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(6, 63, 49, 0.09);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 12px 32px rgba(6, 63, 49, 0.08);
}

.site-header__inner {
  position: relative;
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 238px;
  height: auto;
}

.primary-navigation {
  margin-left: auto;
}

.primary-navigation ul {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-navigation a {
  position: relative;
  display: inline-flex;
  padding-block: 34px;
  color: #26332e;
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
}

.mobile-nav-action {
  display: none;
}

.primary-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  height: 1px;
  background: var(--champagne);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after,
.primary-navigation a[aria-current="page"]::after {
  transform: scaleX(1);
}

.primary-navigation a[aria-current="page"] {
  color: var(--green-900);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

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

.button:focus-visible,
.primary-navigation a:focus-visible,
.contact-item:focus-visible,
.availability-card:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(196, 154, 90, 0.55);
  outline-offset: 4px;
}

.button--primary {
  background: var(--green-900);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(6, 63, 49, 0.14);
}

.button--primary:hover {
  background: var(--green-800);
  box-shadow: 0 14px 28px rgba(6, 63, 49, 0.2);
}

.button--outline {
  border-color: rgba(6, 63, 49, 0.55);
  background: rgba(255, 255, 255, 0.44);
  color: var(--green-900);
}

.button--outline:hover {
  border-color: var(--green-900);
  background: var(--white);
}

.button--compact {
  min-height: 44px;
  padding: 10px 15px;
  font-size: 0.75rem;
}

.button img {
  width: 17px;
  height: 17px;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  margin-left: auto;
  padding: 11px;
  border: 1px solid rgba(6, 63, 49, 0.22);
  border-radius: 3px;
  background: transparent;
  color: var(--green-900);
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  display: block;
  margin-block: 5px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: clamp(620px, 47vw, 720px);
  overflow: hidden;
  background: var(--ivory-100);
  isolation: isolate;
}

.hero__media {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero__media::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(250, 247, 242, 0.38) 0%, rgba(250, 247, 242, 0.16) 36%, rgba(250, 247, 242, 0) 58%);
  content: "";
  pointer-events: none;
}

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

.hero__inner {
  min-height: inherit;
  display: flex;
  align-items: center;
  padding-block: 72px 84px;
}

.hero__copy {
  width: min(48%, 610px);
}

.hero__title {
  margin: 0;
  color: var(--green-900);
  font-family: var(--font-display);
  font-size: clamp(4.25rem, 6vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.hero__title span {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 21px;
  color: #ad7e38;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero__title span::before {
  width: 40px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--champagne);
  content: "";
}

.hero__copy h2 {
  max-width: 540px;
  margin: 28px 0 18px;
  color: var(--green-950);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 400;
  line-height: 1.25;
}

.hero__copy p {
  max-width: 570px;
  margin: 0;
  color: #34423c;
  font-size: clamp(0.84rem, 1vw, 0.96rem);
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.availability-card {
  position: absolute;
  z-index: 2;
  right: max(48px, calc((100vw - 1280px) / 2));
  bottom: 44px;
  min-width: 252px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 22px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.availability-card__icon {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--champagne);
}

.availability-card__icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.availability-card small,
.availability-card strong {
  display: block;
}

.availability-card small {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.69rem;
}

.availability-card strong {
  color: var(--green-900);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
}

.section {
  padding-block: 104px;
}

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

.section-heading--center {
  text-align: center;
}

.section-heading h2 {
  max-width: 880px;
  margin: 0 auto;
  color: var(--green-950);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.4vw, 3.15rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.section-heading--center > span {
  width: 38px;
  height: 1px;
  display: block;
  margin: 22px auto 0;
  background: var(--champagne);
}

.section-kicker {
  margin: 0 0 10px;
  color: #895c24;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quality {
  background: var(--white);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quality-item {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
  text-align: center;
}

.quality-item:not(:last-child)::after {
  position: absolute;
  top: 15%;
  right: 0;
  width: 1px;
  height: 70%;
  background: var(--ivory-300);
  content: "";
}

.icon-medallion {
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--ivory-300);
  border-radius: 999px;
  background: var(--ivory-100);
}

.icon-medallion img {
  width: 36px;
  height: 36px;
}

.quality-item h3,
.service-card h3,
.journey-step h3 {
  color: var(--green-950);
  font-family: var(--font-display);
  font-weight: 400;
}

.quality-item h3 {
  margin: 22px 0 10px;
  font-size: 1.25rem;
  line-height: 1.3;
}

.quality-item p {
  max-width: 250px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.services {
  background: var(--ivory-200);
}

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

.service-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(196, 154, 90, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-card);
  transition: transform 220ms ease, box-shadow 220ms ease;
  container-type: inline-size;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(31, 42, 37, 0.12);
}

.service-card__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.035);
}

.service-card__icon {
  position: absolute;
  top: 170px;
  top: calc(66.666cqi - 30px);
  left: 22px;
  width: 58px;
  height: 58px;
  border-color: rgba(196, 154, 90, 0.4);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(31, 42, 37, 0.08);
}

.service-card__icon img {
  width: 29px;
  height: 29px;
}

.service-card__body {
  padding: 42px 24px 28px;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  line-height: 1.28;
}

.service-card p {
  margin: 0;
  color: #4f5b55;
  font-size: 0.85rem;
  line-height: 1.7;
}

.journey {
  background: var(--white);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 54px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-step {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 20px;
}

.journey-step:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -42px;
  width: 30px;
  border-top: 1px dashed var(--champagne);
  content: "";
}

.journey-step__number {
  position: absolute;
  z-index: 2;
  top: -5px;
  left: -7px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 999px;
  background: var(--green-900);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
}

.journey-step__icon {
  width: 78px;
  height: 78px;
}

.journey-step__copy h3 {
  margin: 0 0 7px;
  font-size: 1.16rem;
  line-height: 1.25;
}

.journey-step__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.contact {
  position: relative;
  overflow: hidden;
  background-color: var(--green-950);
  background-image: linear-gradient(90deg, rgba(6, 50, 39, 0.99) 0%, rgba(6, 54, 42, 0.95) 44%, rgba(6, 54, 42, 0.62) 78%, rgba(6, 54, 42, 0.48) 100%), url("../images/footer-residence.webp");
  background-position: center, center right;
  background-size: cover;
  color: var(--white);
}

.contact__inner {
  min-height: 410px;
  display: flex;
  align-items: center;
  padding-block: 80px 72px;
}

.contact__content {
  width: min(860px, 72%);
}

.section-heading--light {
  margin-bottom: 20px;
}

.section-heading--light > span {
  width: 38px;
  height: 1px;
  display: block;
  margin-bottom: 20px;
  background: var(--champagne);
}

.section-heading--light h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.08;
}

.contact__intro {
  margin: 0 0 38px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.65fr 0.85fr 1.25fr;
  gap: 32px;
}

.contact-item {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.83rem;
  line-height: 1.6;
}

.contact-item img {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  margin-top: 2px;
  filter: brightness(0) invert(1);
}

.contact-item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--champagne-light);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid rgba(196, 154, 90, 0.48);
  background: var(--green-950);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.15fr;
  gap: clamp(36px, 5vw, 72px);
  padding-block: 68px 58px;
}

.footer-brand img {
  width: 205px;
  height: auto;
}

.footer-brand p {
  max-width: 310px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
}

.footer-nav h2,
.footer-contact h2 {
  margin: 0 0 18px;
  color: var(--champagne-light);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-nav ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a,
.footer-contact,
.footer-contact a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
}

.footer-nav a,
.footer-contact a {
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact {
  overflow-wrap: anywhere;
}

.footer-contact p {
  margin: 0 0 13px;
}

.footer-contact a {
  display: block;
  margin-top: 7px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom__inner > div {
  display: flex;
  gap: 22px;
}

.footer-nav a:focus-visible,
.footer-contact a:focus-visible,
.footer-brand a:focus-visible,
.footer-bottom a:focus-visible {
  outline: 3px solid rgba(226, 205, 168, 0.72);
  outline-offset: 4px;
}

@media (max-width: 1220px) {
  .container {
    width: min(100% - 64px, 1180px);
  }

  .site-header__inner {
    gap: 20px;
  }

  .brand img {
    width: 205px;
  }

  .header-actions .button--outline {
    display: none;
  }

  .primary-navigation ul {
    gap: 19px;
  }

  .hero__copy {
    width: min(51%, 590px);
  }

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

}

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

  .site-header__inner {
    min-height: 82px;
  }

  .menu-toggle {
    display: block;
  }

  .header-actions {
    display: none;
  }

  .primary-navigation {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    max-height: calc(100vh - 124px);
    overflow-y: auto;
    padding: 18px 32px 28px;
    border-bottom: 1px solid var(--ivory-300);
    background: rgba(255, 255, 255, 0.995);
    box-shadow: 0 18px 40px rgba(6, 63, 49, 0.1);
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  body.nav-open .primary-navigation {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .primary-navigation ul {
    display: grid;
    gap: 0;
  }

  .primary-navigation li {
    border-bottom: 1px solid rgba(6, 63, 49, 0.09);
  }

  .primary-navigation a {
    width: 100%;
    display: flex;
    padding: 15px 0;
    font-size: 0.95rem;
  }

  .primary-navigation a::after {
    display: none;
  }

  .mobile-nav-action {
    display: block;
  }

  .mobile-nav-action a {
    color: var(--green-900);
    font-weight: 800;
  }

  .hero {
    min-height: 600px;
  }

  .hero__copy {
    width: 56%;
  }

  .hero__title {
    font-size: clamp(3.7rem, 7vw, 5rem);
  }

  .availability-card {
    right: 32px;
  }

  .quality-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 0;
  }

  .quality-item:nth-child(2)::after {
    display: none;
  }

  .quality-item:nth-child(-n + 2)::before {
    position: absolute;
    right: 16%;
    bottom: -22px;
    left: 16%;
    height: 1px;
    background: var(--ivory-300);
    content: "";
  }

  .journey-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    max-width: 720px;
    margin-inline: auto;
  }

  .journey-step:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -34px;
    left: 38px;
    width: 1px;
    height: 26px;
    border-top: 0;
    border-left: 1px dashed var(--champagne);
  }

  .contact__content {
    width: 88%;
  }

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

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 40px, 680px);
  }

  .utility-bar,
  .utility-bar__inner {
    min-height: 36px;
  }

  .utility-bar__inner {
    justify-content: center;
    gap: 12px;
    font-size: 0.7rem;
  }

  .utility-bar__inner > span:nth-child(3),
  .utility-bar__inner > span:nth-child(4) {
    display: none;
  }

  .site-header__inner {
    min-height: 74px;
  }

  .brand img {
    width: 176px;
  }

  .hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: visible;
  }

  .hero__media {
    position: relative;
    z-index: 0;
    height: clamp(310px, 82vw, 440px);
    order: 1;
    overflow: hidden;
  }

  .hero__media::after {
    background: linear-gradient(180deg, rgba(250, 247, 242, 0) 72%, var(--ivory-100) 100%);
  }

  .hero__media img {
    object-position: 70% center;
  }

  .hero__inner {
    min-height: 0;
    order: 2;
    align-items: flex-start;
    padding-block: 44px 58px;
  }

  .hero__copy {
    width: 100%;
    max-width: none;
  }

  .hero__title {
    font-size: clamp(3.25rem, 15vw, 4.6rem);
  }

  .hero__title span {
    margin-bottom: 17px;
    font-size: 0.72rem;
  }

  .hero__copy h2 {
    margin-top: 24px;
    font-size: 1.45rem;
  }

  .hero__copy p {
    font-size: 0.91rem;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .availability-card {
    z-index: 2;
    top: calc(clamp(310px, 82vw, 440px) - 36px);
    right: 20px;
    bottom: auto;
    min-width: 0;
    padding: 10px 14px;
  }

  .availability-card__icon {
    width: 42px;
    height: 42px;
  }

  .availability-card small {
    display: none;
  }

  .availability-card strong {
    font-size: 1rem;
  }

  .section {
    padding-block: 76px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

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

  .quality-grid {
    gap: 0;
  }

  .quality-item {
    min-height: 0;
    padding: 30px 10px 34px;
  }

  .quality-item:not(:last-child)::after {
    top: auto;
    right: 12%;
    bottom: 0;
    left: 12%;
    width: auto;
    height: 1px;
  }

  .quality-item:nth-child(-n + 2)::before {
    display: none;
  }

  .services-grid {
    gap: 22px;
  }

  .journey-step {
    grid-template-columns: 70px 1fr;
    gap: 18px;
  }

  .journey-step__icon {
    width: 70px;
    height: 70px;
  }

  .journey-step:not(:last-child)::after {
    left: 35px;
  }

  .contact {
    background-image: linear-gradient(90deg, rgba(6, 50, 39, 0.98) 0%, rgba(6, 54, 42, 0.91) 100%), url("../images/footer-residence.webp");
    background-position: center, 64% center;
  }

  .contact__inner {
    min-height: 0;
    padding-block: 72px 64px;
  }

  .contact__content {
    width: 100%;
  }

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

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

  .site-footer__inner {
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    padding-block: 30px;
  }

  .site-footer__inner p {
    text-align: left;
  }
}

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

  .utility-bar__inner > span:nth-child(5),
  .utility-bar__inner > span:nth-child(2) {
    display: none;
  }

  .brand img {
    width: 158px;
  }

  .primary-navigation {
    padding-inline: 20px;
  }

  .hero__title {
    font-size: 3.3rem;
  }

  .service-card__body {
    padding-inline: 20px;
  }

  .contact-item {
    overflow-wrap: anywhere;
  }
}

/* Inner pages */

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

.page-hero {
  position: relative;
  min-height: clamp(440px, 39vw, 590px);
  display: flex;
  overflow: hidden;
  background: var(--green-950);
  color: var(--white);
  isolation: isolate;
}

.page-hero__media {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.page-hero__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 35, 27, 0.95) 0%, rgba(5, 48, 37, 0.82) 44%, rgba(5, 48, 37, 0.36) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.2));
  content: "";
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  animation: hero-drift 14s ease-out both;
}

.page-hero__inner {
  display: flex;
  align-items: center;
  padding-block: 86px;
}

.page-hero__copy {
  width: min(740px, 72%);
}

.page-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  color: var(--champagne-light);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.page-hero__eyebrow::before {
  width: 42px;
  height: 1px;
  background: var(--champagne);
  content: "";
}

.page-hero h1 {
  max-width: 880px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 5.7vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.97;
}

.page-hero__copy > p:last-child {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.9rem, 1.1vw, 1.02rem);
  line-height: 1.75;
}

.content-section {
  padding-block: 104px;
  background: var(--white);
}

.content-section--intro {
  background: var(--ivory-100);
}

.content-section--tint {
  background: var(--ivory-200);
}

.content-section--green {
  background: var(--green-900);
  color: var(--white);
}

.narrow-copy {
  max-width: 920px;
}

.narrow-copy h2,
.content-heading h2,
.editorial-card h2,
.document-panel h2,
.finance-panel h2,
.content-cta h2,
.content-section--green h2 {
  color: var(--green-950);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.narrow-copy h2 {
  max-width: 850px;
  margin: 0 0 25px;
  font-size: clamp(2.35rem, 4vw, 4rem);
}

.narrow-copy > p:last-child {
  max-width: 860px;
  margin: 0;
  color: #4e5c56;
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  line-height: 1.82;
}

.content-heading {
  margin-bottom: 48px;
}

.content-heading h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.25rem, 3.6vw, 3.4rem);
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.split-grid--center {
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.split-grid--start {
  align-items: start;
  gap: 36px;
}

.editorial-card,
.document-panel,
.finance-panel {
  padding: clamp(32px, 4vw, 54px);
  border: 1px solid rgba(196, 154, 90, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
}

.editorial-card > span {
  color: #895c24;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.editorial-card h2,
.document-panel h2,
.finance-panel h2 {
  margin: 18px 0 18px;
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
}

.editorial-card p,
.document-panel p,
.finance-panel p {
  margin: 0;
  color: #52605a;
}

.feature-grid,
.stat-grid,
.overview-grid {
  display: grid;
  gap: 22px;
}

.feature-grid--four,
.stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.stat-card,
.overview-grid article {
  padding: 30px;
  border: 1px solid var(--ivory-300);
  border-radius: 7px;
  background: var(--ivory-100);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover,
.stat-card:hover,
.overview-grid article:hover {
  border-color: rgba(196, 154, 90, 0.58);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.feature-card__number {
  display: block;
  margin-bottom: 36px;
  color: #895c24;
  font-size: 0.72rem;
  font-weight: 800;
}

.feature-card h3,
.room-card h3,
.care-card h3,
.premium-service h3,
.process-card h3 {
  color: var(--green-950);
  font-family: var(--font-display);
  font-weight: 400;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.feature-card p,
.stat-card p,
.overview-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.content-cta {
  padding-block: 82px 38px;
  background: var(--green-900);
  color: var(--white);
}

.content-cta__inner {
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: center;
  gap: 56px;
}

.content-cta h2,
.content-section--green h2 {
  margin: 7px 0 16px;
  color: var(--white);
  font-size: clamp(2.2rem, 3.8vw, 3.7rem);
}

.content-cta p,
.content-section--green p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.77);
}

.content-cta .section-kicker,
.content-section--green .section-kicker {
  color: var(--champagne-light);
}

.content-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.button--light {
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--white);
}

.button--light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--green-900);
}

.button--champagne {
  background: var(--champagne);
  color: var(--green-950);
}

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

.content-cta__address {
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.room-card {
  padding: 34px 30px;
  border-top: 3px solid var(--champagne);
  border-radius: 5px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.room-card__top > span {
  color: #895c24;
  font-size: 0.72rem;
  font-weight: 800;
}

.room-card h3 {
  min-height: 66px;
  margin: 14px 0 26px;
  font-size: 1.42rem;
  line-height: 1.24;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 27px;
  color: #52605a;
  font-size: 0.88rem;
}

.check-list li::before {
  position: absolute;
  top: 0.36em;
  left: 0;
  width: 14px;
  height: 8px;
  border-bottom: 2px solid var(--champagne);
  border-left: 2px solid var(--champagne);
  content: "";
  transform: rotate(-45deg);
}

.content-section--green .check-list li {
  color: rgba(255, 255, 255, 0.82);
}

.comparison-table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--ivory-300);
  border-radius: 7px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--ivory-300);
  text-align: center;
  vertical-align: middle;
}

.comparison-table thead th {
  background: var(--green-900);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.comparison-table thead th:first-child,
.comparison-table tbody th {
  text-align: left;
}

.comparison-table tbody th {
  color: var(--green-950);
  font-size: 0.84rem;
}

.comparison-table tbody td {
  color: var(--muted);
  font-size: 0.83rem;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.stat-card {
  background: var(--white);
}

.stat-card strong,
.overview-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green-950);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
}

.care-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--ivory-300);
  background: var(--ivory-300);
}

.care-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 28px;
  padding: 36px;
  background: var(--white);
}

.care-card > span {
  color: var(--champagne);
  font-family: var(--font-display);
  font-size: 2.2rem;
}

.care-card h3 {
  margin: 0 0 10px;
  font-size: 1.55rem;
}

.care-card p {
  margin: 0;
  color: var(--muted);
}

.premium-service-list {
  display: grid;
  gap: 34px;
}

.premium-service {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 1px solid rgba(196, 154, 90, 0.24);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.premium-service--reverse .premium-service__media {
  order: 2;
}

.premium-service__media {
  min-height: 350px;
  overflow: hidden;
}

.premium-service__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.premium-service:hover .premium-service__media img {
  transform: scale(1.035);
}

.premium-service__copy {
  align-self: center;
  padding: clamp(34px, 5vw, 66px);
}

.premium-service h3 {
  margin: 0 0 26px;
  font-size: clamp(1.8rem, 2.7vw, 2.65rem);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-card {
  position: relative;
  min-height: 280px;
  padding: 32px;
  border: 1px solid var(--ivory-300);
  border-radius: 7px;
  background: var(--white);
}

.process-card > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 48px;
  border-radius: 999px;
  background: var(--green-900);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
}

.process-card h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.document-panel,
.finance-panel {
  background: var(--ivory-100);
}

.document-panel > p:nth-of-type(2),
.finance-panel > p:nth-of-type(2) {
  margin-top: 24px;
}

.document-panel .check-list,
.finance-panel ul {
  margin-top: 28px;
}

.finance-panel ul {
  display: grid;
  gap: 9px;
  padding-left: 20px;
  color: #52605a;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-card {
  margin: 0;
  padding: 38px;
  border: 1px solid var(--ivory-300);
  border-radius: 7px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.testimonial-card > span {
  display: block;
  height: 48px;
  color: var(--champagne);
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
}

.testimonial-card p {
  margin: 12px 0 26px;
  color: #44534d;
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.65;
}

.testimonial-card footer {
  padding-top: 20px;
  border-top: 1px solid var(--ivory-300);
  color: var(--green-900);
  font-size: 0.78rem;
}

.overview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.overview-grid article {
  text-align: center;
}

.faq-groups {
  display: grid;
  gap: 60px;
  max-width: 1000px;
}

.faq-group > h2 {
  margin: 0 0 24px;
  color: var(--green-950);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 400;
}

.faq-group > div {
  border-top: 1px solid rgba(6, 63, 49, 0.18);
}

.faq-item {
  border-bottom: 1px solid rgba(6, 63, 49, 0.18);
}

.faq-item summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 4px;
  color: var(--green-950);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary:focus-visible {
  outline: 3px solid rgba(196, 154, 90, 0.55);
  outline-offset: 4px;
}

.faq-item__icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid rgba(6, 63, 49, 0.35);
  border-radius: 999px;
}

.faq-item__icon::before,
.faq-item__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--green-900);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease;
}

.faq-item[open] .faq-item__answer {
  grid-template-rows: 1fr;
}

.faq-item__answer p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 58px 0 4px;
  color: var(--muted);
  transition: padding 240ms ease;
}

.faq-item[open] .faq-item__answer p {
  padding-bottom: 24px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.contact-cards article,
.contact-cards a {
  min-width: 0;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--ivory-300);
  border-radius: 7px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 200ms ease, border-color 200ms ease;
}

.contact-cards a:hover {
  border-color: var(--champagne);
  transform: translateY(-4px);
}

.contact-cards img {
  width: 34px;
  height: 34px;
  margin-bottom: 32px;
}

.contact-cards span {
  margin-bottom: 8px;
  color: #895c24;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-cards strong {
  color: var(--green-950);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  overflow-wrap: anywhere;
}

.contact-form-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(84px, 9vw, 124px);
  background:
    radial-gradient(circle at 8% 12%, rgba(196, 154, 90, 0.16), transparent 28%),
    linear-gradient(135deg, var(--green-950), var(--green-900));
  color: var(--white);
}

.contact-form-section::after {
  position: absolute;
  right: -180px;
  bottom: -240px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(226, 205, 168, 0.16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.contact-form-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(540px, 1.2fr);
  align-items: start;
  gap: clamp(48px, 7vw, 96px);
}

.contact-form-copy {
  padding-top: 20px;
}

.contact-form-copy .section-kicker {
  color: var(--champagne-light);
}

.contact-form-copy h2 {
  max-width: 520px;
  margin: 8px 0 24px;
  color: var(--white);
  font-size: clamp(2.7rem, 5vw, 4.5rem);
}

.contact-form-copy > p:not(.section-kicker):not(.contact-form-note) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.contact-form-direct {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-form-direct a {
  display: grid;
  gap: 4px;
  padding-block: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-form-direct span {
  color: var(--champagne-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-form-direct strong {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.contact-form-direct a:hover strong,
.contact-form-direct a:focus-visible strong {
  color: var(--champagne-light);
}

.contact-form-note {
  max-width: 500px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
  line-height: 1.6;
}

.contact-form-card {
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 28px 80px rgba(1, 22, 17, 0.3);
  color: var(--ink);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 22px;
}

.form-field {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.form-field--wide {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--green-950);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.018em;
}

.form-field label > span:not([aria-hidden="true"]) {
  color: var(--muted);
  font-weight: 500;
}

.form-field label > span[aria-hidden="true"],
.form-consent span[aria-hidden="true"] {
  color: #9c572e;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #d8d3ca;
  border-radius: 4px;
  outline: none;
  background: #fffefc;
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-field input,
.form-field select {
  min-height: 54px;
  padding: 12px 14px;
}

.form-field textarea {
  min-height: 154px;
  padding: 14px;
  line-height: 1.55;
  resize: vertical;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: #b8ae9f;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--champagne);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(196, 154, 90, 0.14);
}

.form-field small {
  color: var(--muted);
  font-size: 0.69rem;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 11px;
  margin-top: 26px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.74rem;
  line-height: 1.55;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--green-900);
}

.form-consent a {
  color: var(--green-900);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(6, 63, 49, 0.35);
  text-underline-offset: 3px;
}

.turnstile-slot {
  min-height: 65px;
  margin-top: 24px;
}

.turnstile-slot[hidden] {
  display: none;
}

.contact-form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.contact-form-submit {
  min-width: 174px;
  cursor: pointer;
}

.contact-form-submit[aria-busy="true"] {
  cursor: wait;
  opacity: 0.78;
}

.contact-form-actions > a {
  color: var(--green-900);
  font-size: 0.73rem;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(6, 63, 49, 0.3);
  text-underline-offset: 4px;
}

.form-status,
.form-fallback-message,
.form-noscript {
  margin: 22px 0 0;
  padding: 14px 16px;
  border-radius: 4px;
  font-size: 0.8rem;
  line-height: 1.55;
}

.form-status[hidden],
.form-fallback-message {
  display: none;
}

.form-status.is-success,
.form-fallback-message--success:target {
  display: block;
  border: 1px solid rgba(32, 118, 82, 0.24);
  background: #ecf8f1;
  color: #155a3c;
}

.form-status.is-error,
.form-fallback-message--error:target,
.form-noscript {
  display: block;
  border: 1px solid rgba(158, 74, 45, 0.23);
  background: #fff2ed;
  color: #873e27;
}

.hours-list {
  display: grid;
  gap: 0;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 15px;
  border-top: 1px solid var(--ivory-300);
  color: var(--muted);
  font-size: 0.86rem;
}

.legal-article {
  max-width: 920px;
  padding: 66px clamp(28px, 6vw, 76px);
  border: 1px solid var(--ivory-300);
  border-radius: 8px;
  background: var(--ivory-100);
  box-shadow: var(--shadow-card);
}

.legal-article section + section {
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid var(--ivory-300);
}

.legal-article h2 {
  margin: 0 0 18px;
  color: var(--green-950);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.8vw, 2.3rem);
  font-weight: 400;
}

.legal-article h3 {
  margin: 28px 0 10px;
  color: var(--green-900);
  font-size: 1rem;
}

.legal-article p,
.legal-article li {
  color: #52605a;
}

.legal-article a {
  color: var(--green-900);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@keyframes hero-drift {
  from { transform: scale(1.055); }
  to { transform: scale(1.015); }
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 560ms ease, transform 560ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .utility-phone {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1.35fr 1fr 1fr;
  }

  .footer-contact {
    grid-column: 2 / -1;
  }

  .feature-grid--four,
  .stat-grid,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .page-hero__copy {
    width: 86%;
  }

  .split-grid,
  .content-cta__inner,
  .contact-form-layout,
  .premium-service,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-copy {
    max-width: 660px;
    padding-top: 0;
  }

  .content-cta__actions {
    justify-content: flex-start;
  }

  .room-grid,
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .room-card h3 {
    min-height: 0;
  }

  .premium-service--reverse .premium-service__media {
    order: 0;
  }

  .premium-service__media {
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .page-hero {
    min-height: 430px;
  }

  .page-hero__media::after {
    background: linear-gradient(90deg, rgba(3, 35, 27, 0.92), rgba(5, 48, 37, 0.62));
  }

  .page-hero__inner {
    padding-block: 66px;
  }

  .page-hero__copy {
    width: 100%;
  }

  .page-hero h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .content-section {
    padding-block: 76px;
  }

  .feature-grid--four,
  .stat-grid,
  .contact-cards,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .content-cta {
    padding-block: 68px 32px;
  }

  .content-cta__actions {
    display: grid;
  }

  .content-cta__actions .button {
    width: 100%;
  }

  .contact-form-section {
    padding-block: 72px;
  }

  .contact-form-layout {
    gap: 42px;
  }

  .contact-form-card {
    padding: 28px 22px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-field--wide {
    grid-column: auto;
  }

  .contact-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form-actions .button,
  .contact-form-actions > a {
    width: 100%;
    text-align: center;
  }

  .care-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 24px;
  }

  .care-card > span {
    font-size: 1.25rem;
  }

  .process-card {
    min-height: 0;
  }

  .premium-service__media {
    min-height: 250px;
  }

  .testimonial-card {
    padding: 30px 24px;
  }

  .contact-cards article,
  .contact-cards a {
    min-height: 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 26px;
    padding-block: 52px 44px;
  }

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

  .footer-bottom__inner {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    padding-block: 24px;
  }
}

@media (max-width: 430px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }

  .hours-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

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

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

  .reveal-ready [data-reveal],
  .reveal-ready [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }
}

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

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

@media print {
  .utility-bar,
  .site-header,
  .availability-card,
  .hero__actions {
    display: none !important;
  }

  .hero,
  .contact {
    background: var(--white) !important;
    color: var(--ink) !important;
  }
}


.offline-content > .container { max-width: 1040px; }
.offline-content h2 { margin: 54px 0 18px; color: var(--green-950); font-family: var(--font-display); font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 400; }
.offline-content h2:first-child { margin-top: 0; }
.offline-content h3 { margin: 32px 0 13px; color: var(--green-900); font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; }
.offline-content p { color: #52605a; }
.offline-content .check-list, .offline-content .offline-steps, .offline-content .comparison-table-wrapper, .offline-content .testimonial-card { margin-block: 22px 34px; }
.offline-steps { display: grid; gap: 14px; padding-left: 24px; color: #52605a; }
.offline-content .testimonial-card + .testimonial-card { margin-top: 24px; }
.offline-intro { margin-bottom: 58px; }
