@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/Montserrat-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/Montserrat-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --color-earth: #916A57;
  --color-tan: #BA917B;
  --color-cream: #EEDFD3;
  --color-sage: #677D6A;
  --color-forest: #40534C;
  --color-slate: #636776;
  --radius-xl: 2.25rem;
  --radius-lg: 1.75rem;
  --radius-md: 1.25rem;
  --radius-sm: 1rem;
  --shadow-soft: 0 1.25rem 2.6rem rgba(26, 37, 34, 0.2);
  --shadow-card: 0 0.9rem 2.1rem rgba(23, 32, 29, 0.16);
  --shell-width: min(76.5rem, calc(100vw - 3rem));
}

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

html {
  scroll-behavior: smooth;
  font-family: "Montserrat", sans-serif;
  background-color: var(--color-forest);
}

body {
  margin: 0;
  min-width: 20rem;
  min-height: 100%;
  font-family: "Montserrat", sans-serif;
  color: var(--color-cream);
  background-color: var(--color-forest);
  background:
    radial-gradient(circle at top left, rgba(145, 106, 87, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(186, 145, 123, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(64, 83, 76, 1), rgba(64, 83, 76, 0.98));
  -webkit-text-size-adjust: 100%;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
  font-family: inherit;
  border-radius: 999px;
}

button {
  border: 0;
  padding: 0;
  color: inherit;
  background: none;
  cursor: pointer;
}

p,
h1,
h2,
h3,
dl,
dt,
dd {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  pointer-events: none;
}

.desktop-nav-shell {
  width: var(--shell-width);
  margin: 1.25rem auto 0;
  padding: 0.88rem 1.12rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(238, 223, 211, 0.28);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(64, 83, 76, 0.48), rgba(99, 103, 118, 0.34));
  box-shadow: 0 1rem 2.4rem rgba(26, 37, 34, 0.16);
  backdrop-filter: blur(1.2rem);
  -webkit-backdrop-filter: blur(1.2rem);
  pointer-events: auto;
}

.brand-mark {
  display: inline-flex;
  flex-direction: column;
  gap: 0.16rem;
}

.brand-mark__title {
  color: var(--color-cream);
  font-size: 0.92rem;
  font-weight: 760;
  letter-spacing: 0.24em;
}

.brand-mark__subtitle {
  color: rgba(238, 223, 211, 0.82);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 430;
  line-height: 1.58;
  letter-spacing: 0.012em;
  color: rgba(238, 223, 211, 0.86);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.nav-button:hover,
.nav-button:focus-visible {
  background: rgba(238, 223, 211, 0.13);
  transform: translateY(-0.125rem);
  outline: none;
}

.nav-button[aria-current="page"] {
  background: rgba(238, 223, 211, 0.15);
  color: var(--color-cream);
}

.glass-panel {
  border: 1px solid rgba(238, 223, 211, 0.24);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(238, 223, 211, 0.16), rgba(99, 103, 118, 0.12));
  backdrop-filter: blur(1.05rem);
  -webkit-backdrop-filter: blur(1.05rem);
}

.mobile-brand-pill {
  position: fixed;
  top: 1rem;
  left: 0.75rem;
  z-index: 52;
  display: none;
  align-items: center;
  max-width: calc(100vw - 5.75rem);
  padding: 0.72rem 0.95rem 0.76rem;
  pointer-events: auto;
}

.brand-mark--mobile .brand-mark__title {
  font-size: 0.76rem;
  letter-spacing: 0.2em;
}

.brand-mark--mobile .brand-mark__subtitle {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
}

.mobile-menu-shell {
  position: fixed;
  top: 1rem;
  right: 0.75rem;
  z-index: 53;
  display: none;
  width: 3.05rem;
  min-height: 3.05rem;
  padding: 0;
  pointer-events: auto;
  transition:
    width 0.28s cubic-bezier(0.22, 0.61, 0.36, 1),
    padding 0.28s cubic-bezier(0.22, 0.61, 0.36, 1),
    background-color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.mobile-menu-toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 3.05rem;
  height: 3.05rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.34rem;
  border: 1px solid rgba(238, 223, 211, 0.28);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(238, 223, 211, 0.18), rgba(99, 103, 118, 0.18));
  box-shadow: 0 0.75rem 1.8rem rgba(26, 37, 34, 0.18);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  z-index: 2;
}

.mobile-menu-toggle__line {
  width: 1.02rem;
  height: 0.11rem;
  border-radius: 999px;
  background: var(--color-cream);
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.mobile-menu-panel {
  width: 100%;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.3rem);
  transform-origin: top right;
  transition:
    max-height 0.25s ease,
    padding 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.mobile-menu-shell.is-open {
  width: min(16.5rem, 82vw);
  padding: 0.5rem;
  border: 1px solid rgba(238, 223, 211, 0.22);
  border-radius: 1.5rem;
  background: linear-gradient(145deg, rgba(64, 83, 76, 0.84), rgba(145, 106, 87, 0.1));
  box-shadow: 0 1rem 2.4rem rgba(26, 37, 34, 0.22);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
}

.mobile-menu-shell.is-open .mobile-menu-panel {
  padding-top: 3.35rem;
  max-height: min(calc(100svh - env(safe-area-inset-top, 0px) - 1rem), 32rem);
  overflow-y: auto;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu-shell.is-open .mobile-menu-toggle__line:nth-child(1) {
  transform: translateY(0.22rem) rotate(45deg);
}

.mobile-menu-shell.is-open .mobile-menu-toggle__line:nth-child(2) {
  transform: translateY(-0.22rem) rotate(-45deg);
}

.mobile-menu-list {
  display: grid;
  gap: 0.35rem;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: 0.82rem 0.95rem;
  text-align: left;
  text-decoration: none;
  color: rgba(238, 223, 211, 0.88);
  border-radius: 1rem;
  background: rgba(238, 223, 211, 0.1);
  font-size: 0.94rem;
  font-weight: 430;
  line-height: 1.58;
  letter-spacing: 0.012em;
}

.mobile-menu-link[aria-current="page"] {
  background: rgba(238, 223, 211, 0.14);
  color: var(--color-cream);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 8.5rem 0 2.75rem;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(64, 83, 76, 0.58) 0%, rgba(64, 83, 76, 0.14) 38%, rgba(64, 83, 76, 0.64) 100%),
    linear-gradient(115deg, rgba(99, 103, 118, 0.1) 0%, transparent 48%, rgba(145, 106, 87, 0.16) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--shell-width);
  margin: 0 auto;
  display: grid;
  align-items: end;
  justify-items: center;
}

.hero-facts {
  width: min(100%, 59rem);
  margin-bottom: clamp(1.7rem, 3.2vw, 2.3rem);
  padding: 0.68rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.52rem;
}

.hero-fact {
  min-height: 4.15rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.24rem;
  padding: 0.68rem 0.92rem;
  border-radius: var(--radius-lg);
  background: rgba(238, 223, 211, 0.08);
  color: var(--color-cream);
}

.hero-fact__value,
.hero-fact__label {
  display: block;
  line-height: 1.58;
  letter-spacing: 0.012em;
  font-size: 0.94rem;
  font-weight: 430;
}

.hero-fact__value {
  color: rgba(238, 223, 211, 0.88);
}

.hero-fact__label {
  color: rgba(238, 223, 211, 0.82);
}

.content-section {
  padding: 1.5rem 0 0;
}

.section-shell {
  position: relative;
  width: var(--shell-width);
  margin: 0 auto;
  padding: clamp(1.8rem, 3vw, 3rem);
  border: 1px solid rgba(186, 145, 123, 0.26);
  border-radius: 2.25rem;
  background: linear-gradient(180deg, rgba(64, 83, 76, 0.96), rgba(64, 83, 76, 0.92));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.section-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(238, 223, 211, 0.07);
  pointer-events: none;
}

.section-kicker {
  color: var(--color-tan);
  font-size: 0.95rem;
  font-weight: 620;
  letter-spacing: 0.04em;
}

.section-title {
  margin-top: 0.7rem;
  max-width: 21ch;
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-description {
  margin-top: 1rem;
  max-width: 46rem;
  line-height: 1.75;
  color: rgba(238, 223, 211, 0.78);
}

.section-shell--mortgage {
  background: linear-gradient(180deg, rgba(64, 83, 76, 0.96), rgba(64, 83, 76, 0.9));
}

.mortgage-layout {
  display: grid;
  grid-template-columns: minmax(15rem, 18rem) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}

.mortgage-highlight {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.45rem;
  border: 1px solid rgba(238, 223, 211, 0.24);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(238, 223, 211, 0.22), rgba(145, 106, 87, 0.06));
  box-shadow:
    0 0.9rem 2rem rgba(23, 32, 29, 0.14),
    inset 0 0 0 1px rgba(238, 223, 211, 0.05);
  backdrop-filter: blur(1.2rem);
  -webkit-backdrop-filter: blur(1.2rem);
}

.mortgage-highlight__value {
  font-size: clamp(3.8rem, 8vw, 5.8rem);
  font-weight: 760;
  line-height: 0.92;
}

.mortgage-highlight__caption {
  max-width: 10rem;
  text-align: center;
  line-height: 1.45;
  color: rgba(238, 223, 211, 0.86);
}

.mortgage-copy {
  display: grid;
  align-content: start;
}

.section-shell--mortgage .section-title {
  max-width: 17ch;
}

.mortgage-points {
  margin-top: 1.55rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.info-card {
  height: 100%;
  padding: 1.2rem;
  display: grid;
  align-content: start;
  border: 1px solid rgba(238, 223, 211, 0.22);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(238, 223, 211, 0.16), rgba(145, 106, 87, 0.07));
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(1.15rem);
  -webkit-backdrop-filter: blur(1.15rem);
}

.info-card h3 {
  font-size: 1.04rem;
  font-weight: 650;
  color: var(--color-cream);
}

.info-card p {
  margin-top: 0.7rem;
  line-height: 1.62;
  color: rgba(238, 223, 211, 0.84);
}

.section-shell--standards {
  padding-top: clamp(1.7rem, 2.8vw, 2.6rem);
}

.section-shell--standards .section-title {
  max-width: 18ch;
}

.standards-grid {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.standard-card {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(186, 145, 123, 0.72);
  border-radius: 1.7rem;
  background: rgba(64, 83, 76, 0.98);
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.standard-card:hover,
.standard-card:focus-within {
  transform: translateY(-0.45rem);
  border-color: rgba(238, 223, 211, 0.38);
  box-shadow: 0 1.1rem 2.1rem rgba(23, 32, 29, 0.14);
}

.standard-card__media {
  padding: 0.9rem;
  background: linear-gradient(145deg, rgba(238, 223, 211, 0.14), rgba(99, 103, 118, 0.08));
}

.standard-card__media img {
  width: 100%;
  aspect-ratio: 308 / 248;
  border-radius: 1.05rem;
  object-fit: cover;
}

.standard-card__body {
  padding: 1.1rem 1.2rem 1.25rem;
}

.standard-card h3 {
  font-size: 1.14rem;
  line-height: 1.22;
  color: var(--color-cream);
}

.standard-card__lead {
  margin-top: 0.62rem;
  font-weight: 650;
  line-height: 1.5;
  color: var(--color-tan);
}

.standard-card__body p:last-child {
  margin-top: 0.7rem;
  line-height: 1.62;
  color: rgba(238, 223, 211, 0.78);
}

.standard-cta-wrap {
  display: grid;
  place-items: center;
}

.standards-cta {
  width: auto;
  min-height: 0;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  color: var(--color-cream);
  background: none;
  box-shadow: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.standards-cta:hover,
.standards-cta:focus-visible {
  transform: translateY(-0.4rem);
  outline: none;
}

.standards-cta__arrow-shell {
  width: 11.5rem;
  height: 11.5rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(238, 223, 211, 0.22);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(238, 223, 211, 0.18), rgba(99, 103, 118, 0.08));
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.standards-cta__arrow {
  position: relative;
  width: 4.5rem;
  height: 1.85rem;
  display: block;
}

.standards-cta__arrow::before,
.standards-cta__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  border-color: rgba(255, 255, 255, 0.96);
  border-style: solid;
}

.standards-cta__arrow::before {
  left: 0;
  width: 3.35rem;
  border-width: 0.22rem 0 0 0;
  transform: translateY(-50%);
}

.standards-cta__arrow::after {
  right: 0.02rem;
  width: 1.28rem;
  height: 1.28rem;
  border-width: 0.22rem 0.22rem 0 0;
  transform: translateY(-50%) rotate(45deg);
}

.standards-cta:hover .standards-cta__arrow-shell,
.standards-cta:focus-visible .standards-cta__arrow-shell {
  transform: translateX(0.22rem);
}

.section-shell--catalog {
  background: linear-gradient(180deg, rgba(64, 83, 76, 0.96), rgba(64, 83, 76, 0.9));
}

.catalog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.2rem;
}

.catalog-head__copy {
  min-width: 0;
}

.catalog-head__topline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
}

.catalog-mobile-swipe-hint {
  display: none;
}

.catalog-mobile-swipe-hint__arrow {
  display: block;
  width: 0.82rem;
  height: 0.82rem;
  color: rgba(238, 223, 211, 0.72);
  background: currentColor;
  -webkit-mask: url("../icons/7.svg") center / contain no-repeat;
  mask: url("../icons/7.svg") center / contain no-repeat;
}

.catalog-mobile-swipe-hint__arrow--prev {
  transform: rotate(-90deg);
}

.catalog-mobile-swipe-hint__arrow--next {
  transform: rotate(90deg);
}

.section-shell--catalog .section-title {
  max-width: 18ch;
}

.catalog-slider-shell {
  margin-top: 1.9rem;
}

.mobile-carousel-arrow {
  display: none;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.catalog-card {
  position: relative;
  isolation: isolate;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  cursor: pointer;
  border: 1px solid rgba(238, 223, 211, 0.38);
  border-radius: 1.7rem;
  background: rgba(64, 83, 76, 0.98);
  box-shadow: var(--shadow-card);
  background-clip: padding-box;
  backface-visibility: hidden;
  transform: translateZ(0);
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.catalog-card:hover,
.catalog-card:focus-within {
  transform: translateY(-0.42rem);
  border-color: rgba(238, 223, 211, 0.56);
  box-shadow: 0 1.2rem 2.35rem rgba(23, 32, 29, 0.18);
}

.catalog-card__visual {
  position: relative;
  aspect-ratio: 16 / 11;
  min-height: 15.3rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(64, 83, 76, 0.12), rgba(64, 83, 76, 0.38));
}

.catalog-card__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(64, 83, 76, 0.08) 0%, rgba(64, 83, 76, 0.18) 48%, rgba(64, 83, 76, 0.48) 100%);
}

.catalog-card__chip {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.38rem 0.82rem;
  border: 1px solid rgba(238, 223, 211, 0.24);
  border-radius: 999px;
  color: var(--color-cream);
  background: rgba(238, 223, 211, 0.12);
  backdrop-filter: blur(0.95rem);
  -webkit-backdrop-filter: blur(0.95rem);
  font-size: 0.82rem;
  font-weight: 620;
}

.catalog-card__body {
  padding: 1.08rem 1.15rem 1.18rem;
}

.catalog-card__specs {
  display: grid;
  gap: 0.56rem;
}

.catalog-card__spec {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 0.8rem;
  padding-bottom: 0.56rem;
  border-bottom: 1px solid rgba(238, 223, 211, 0.08);
}

.catalog-card__spec:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.catalog-card__spec dt {
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(238, 223, 211, 0.72);
}

.catalog-card__spec dd {
  text-align: right;
  font-size: 0.95rem;
  font-weight: 620;
  line-height: 1.35;
  color: var(--color-cream);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.32rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-0.125rem);
  outline: none;
}

.button--solid {
  color: var(--color-cream);
  background: linear-gradient(135deg, var(--color-earth), var(--color-tan));
  box-shadow: 0 0.9rem 1.8rem rgba(145, 106, 87, 0.24);
}

.catalog-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.75rem;
}

.catalog-cta {
  min-width: 15rem;
  border-radius: 999px;
  border: 1px solid rgba(186, 145, 123, 0.28);
  background: var(--color-earth);
  box-shadow: none;
}

.catalog-cta:hover,
.catalog-cta:focus-visible {
  background: var(--color-earth);
  box-shadow: none;
}

.site-footer {
  padding: 1.5rem 0 2rem;
}

.footer-shell {
  width: var(--shell-width);
  margin: 0 auto;
  padding: clamp(1.8rem, 3vw, 3rem);
  border-radius: 2.25rem;
  background: var(--color-forest);
  color: var(--color-cream);
  box-shadow: var(--shadow-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr) auto;
  gap: 1.5rem;
}

.brand-mark--footer .brand-mark__title {
  color: var(--color-cream);
}

.brand-mark--footer .brand-mark__subtitle {
  color: rgba(238, 223, 211, 0.75);
}

.footer-contact {
  margin-top: 1rem;
  display: grid;
  gap: 0.42rem;
}

.footer-contact__link,
.footer-contact__mail {
  width: fit-content;
  color: rgba(238, 223, 211, 0.9);
  line-height: 1.72;
}

.footer-contact__mail {
  white-space: nowrap;
}

.footer-contact__link {
  font-size: 1.12rem;
  font-weight: 620;
}

.footer-contact__meta,
.footer-column p {
  line-height: 1.72;
  color: rgba(238, 223, 211, 0.84);
}

.footer-column h2 {
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-links button,
.footer-links a {
  padding: 0.3rem 0;
  text-align: left;
  color: rgba(238, 223, 211, 0.86);
}

.footer-column--top {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.footer-top-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 3rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(238, 223, 211, 0.22);
  border-radius: 999px;
  color: var(--color-cream);
  background: rgba(238, 223, 211, 0.08);
}

.footer-top-link__arrow {
  width: 0.92rem;
  height: 0.92rem;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("../icons/7.svg") center / contain no-repeat;
  mask: url("../icons/7.svg") center / contain no-repeat;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  border-top: 1px solid rgba(238, 223, 211, 0.16);
  color: rgba(238, 223, 211, 0.76);
  line-height: 1.6;
}

@media (max-width: 74rem) {
  .catalog-grid,
  .standards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-head,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer-column--top {
    justify-content: flex-start;
  }
}

@media (max-width: 60rem) {
  .desktop-nav-shell {
    display: none;
  }

  .mobile-brand-pill,
  .mobile-menu-shell {
    display: block;
  }

  .hero {
    padding-top: 1.25rem;
    padding-bottom: 1.15rem;
  }

  .hero-facts,
  .mortgage-layout,
  .mortgage-points {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    width: min(100%, 21.6rem);
    margin-bottom: 1.6rem;
  }

  .mortgage-highlight {
    max-width: 18rem;
  }
}

@media (max-width: 42rem), (orientation: landscape) and (max-width: 60rem) and (max-height: 32rem) {
  :root {
    --shell-width: min(30rem, calc(100vw - 1.5rem), calc(100vh - 1.5rem));
  }

  body {
    background: #40534C;
  }

  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: env(safe-area-inset-top, 0px);
    background: #40534C;
    pointer-events: none;
    z-index: 1;
  }

  .mobile-brand-pill,
  .mobile-menu-shell {
    top: calc(env(safe-area-inset-top, 0px) + 0.45rem);
  }

  .hero {
    min-height: 100svh;
    padding-bottom: 0.9rem;
  }

  .hero-facts,
  .section-shell,
  .footer-shell {
    border-radius: 1.6rem;
  }

  .hero-fact {
    min-height: 3.85rem;
  }

  .hero-fact__value {
    font-size: 0.94rem;
  }

  .hero-fact__label {
    font-size: 0.94rem;
  }

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

  .standards-cta {
    width: auto;
  }

  .standards-cta__arrow-shell {
    width: 8.2rem;
    height: 8.2rem;
  }

  .catalog-slider-shell {
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
    margin-top: 0.52rem;
    padding: 0.1rem 0 0.34rem;
    touch-action: pan-y pinch-zoom;
    user-select: none;
    cursor: grab;
  }

  .catalog-head__topline {
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.9rem;
  }

  .catalog-mobile-swipe-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    flex: 0 0 auto;
    padding-top: 0.08rem;
  }

  .catalog-grid {
    display: flex;
    gap: 0.85rem;
    margin-top: 0;
    padding: 0.16rem 0.24rem 0.34rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    scroll-padding-inline: 0.24rem;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .catalog-grid::-webkit-scrollbar {
    display: none;
  }

  .catalog-card {
    flex: 0 0 calc(100% - 0.48rem);
    min-width: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
  }

  .catalog-card:hover,
  .catalog-card:focus-within {
    transform: none;
    border-color: rgba(238, 223, 211, 0.38);
    box-shadow: none;
  }

  .catalog-card:active {
    transform: none;
  }

  .catalog-slider-shell.is-dragging {
    cursor: grabbing;
  }

  .catalog-slider-shell.is-dragging .catalog-card {
    pointer-events: none;
  }

  .home-page .catalog-slider-shell .mobile-carousel-arrow {
    display: none !important;
  }

  .catalog-card__visual {
    min-height: 13.4rem;
  }

  .button {
    width: 100%;
  }

  .catalog-actions {
    justify-content: stretch;
  }

  .footer-bottom {
    margin-top: 1.6rem;
  }

  .footer-contact__meta {
    white-space: nowrap;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "brand top";
    align-items: start;
    column-gap: 1rem;
    row-gap: 0.85rem;
  }

  .footer-column--top {
    grid-area: top;
    justify-content: flex-end;
    align-self: start;
  }

  .footer-top-link {
    margin-left: auto;
  }

  .footer-brand {
    grid-area: brand;
  }

  .footer-column--nav {
    display: none;
  }

  .footer-column--top {
    width: 12.4rem;
  }

  .footer-top-link {
    width: 100%;
    justify-content: center;
  }

  .standard-card:hover,
  .standard-card:focus-within {
    transform: none;
    border-color: rgba(186, 145, 123, 0.52);
    box-shadow: none;
  }

  .standards-cta:hover,
  .standards-cta:focus-visible {
    transform: none;
  }

  .standards-cta:hover .standards-cta__arrow-shell,
  .standards-cta:focus-visible .standards-cta__arrow-shell {
    transform: none;
  }
}

@media (hover: none) and (pointer: coarse) {
  .catalog-card:hover {
    transform: none;
    border-color: rgba(238, 223, 211, 0.38);
    box-shadow: none;
  }

  .button:hover,
  .catalog-cta:hover {
    transform: none;
  }

  .standard-card:hover,
  .standard-card:focus-within {
    transform: none;
    border-color: rgba(186, 145, 123, 0.72);
    box-shadow: none;
  }

  .standards-cta:hover,
  .standards-cta:focus-visible {
    transform: none;
  }

  .standards-cta:hover .standards-cta__arrow-shell,
  .standards-cta:focus-visible .standards-cta__arrow-shell {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
