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

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

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

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

:root {
  --paper: #f4f8f8;
  --white: #ffffff;
  --ink: #123638;
  --ink-deep: #092b2d;
  --muted: #617476;
  --oxygen: #007c95;
  --oxygen-dark: #0b5f6d;
  --lime: #9bbe1d;
  --lime-dark: #6f900d;
  --coral: #dc714f;
  --sky: #dceff1;
  --blue-grey: #8fb6c1;
  --line: rgba(18, 54, 56, 0.16);
  --line-light: rgba(255, 255, 255, 0.2);
  --header-height: 80px;
  --shell: 1380px;
  --focus: #ffcb52;
  --error: #a63f2c;
  --success: #36730e;
  --z-header: 20;
  --z-menu: 30;
  --z-mobile-actions: 40;
  --z-skip-link: 60;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Tenor Sans", "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  font-size: 76px;
  line-height: 1.02;
}

h2 {
  font-size: 56px;
  line-height: 1.08;
}

h3 {
  font-size: 34px;
  line-height: 1.18;
}

.shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: var(--z-skip-link);
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
}

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

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--oxygen);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button,
.text-button,
.phone-link {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 2px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button {
  padding: 15px 24px;
}

.button:hover,
.text-button:hover,
.phone-link:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--oxygen);
  color: var(--white);
}

.button--primary:hover {
  background: var(--oxygen-dark);
}

.button--secondary {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

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

.button--lime {
  background: var(--lime);
  color: var(--ink-deep);
}

.button--lime:hover {
  background: #afd229;
}

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

.text-button {
  justify-content: flex-start;
  padding: 10px 0;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
}

.text-button--light {
  color: var(--white);
}

.phone-link {
  padding: 10px 0;
  color: var(--ink);
}

.site-header {
  position: sticky;
  z-index: var(--z-header);
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  width: 159px;
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.desktop-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--oxygen);
}

.header-phone {
  min-width: 170px;
  display: grid;
  color: var(--ink);
  text-align: right;
  text-decoration: none;
}

.header-phone span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.header-phone strong {
  font-size: 17px;
}

.icon-button {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  position: fixed;
  z-index: var(--z-menu);
  top: var(--header-height);
  right: 0;
  left: 0;
  max-height: calc(100svh - var(--header-height));
  padding: 18px 24px 30px;
  overflow-y: auto;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  min-height: 52px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu__phone {
  color: var(--oxygen);
  font-size: 22px;
}

.home-hero,
.sub-hero {
  display: grid;
  grid-template-columns: minmax(500px, 44%) minmax(0, 56%);
  background: var(--white);
}

.home-hero {
  min-height: min(720px, calc(100svh - 132px));
}

.home-hero__copy,
.sub-hero__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px max(48px, calc((100vw - var(--shell)) / 2));
}

.home-hero h1 {
  max-width: 660px;
  margin-bottom: 26px;
}

.home-hero__lead {
  max-width: 600px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

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

.hero-mini-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.hero-mini-facts span {
  min-width: 0;
  padding: 18px 14px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.hero-mini-facts span + span {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.hero-mini-facts strong {
  display: block;
  color: var(--ink);
  font-family: "Tenor Sans", serif;
  font-size: 24px;
  font-weight: 400;
}

.home-hero__visual,
.sub-hero__visual {
  position: relative;
  min-width: 0;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--sky);
}

.home-hero__visual img,
.sub-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__visual img {
  object-position: 53% 50%;
}

.home-hero__visual figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 9px 12px;
  background: var(--white);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.finance-stage {
  padding: 96px 0 112px;
  background: var(--paper);
}

.section-intro {
  max-width: 870px;
  margin-bottom: 48px;
}

.section-intro h2 {
  margin-bottom: 0;
}

.section-intro--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
  align-items: end;
  gap: 56px;
}

.section-intro--split p:last-child {
  margin-bottom: 4px;
  color: var(--muted);
}

.finance-duo {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  border: 1px solid var(--line);
  background: var(--white);
}

.finance-duo article {
  min-height: 530px;
  display: flex;
  flex-direction: column;
  padding: 72px;
}

.finance-duo article > p:first-child {
  margin-bottom: 26px;
  color: currentColor;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.finance-duo h3 {
  max-width: 600px;
  margin-bottom: 26px;
  font-size: 62px;
}

.finance-duo__primary {
  background: var(--oxygen-dark);
  color: var(--white);
}

.finance-duo__primary > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.finance-duo__secondary {
  color: var(--ink);
}

.finance-duo__secondary > p:first-child {
  color: var(--oxygen);
}

.finance-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: auto;
}

.mortgage-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: auto 0 0;
  border-top: 1px solid var(--line);
}

.mortgage-line div {
  padding: 26px 16px 0 0;
}

.mortgage-line div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.mortgage-line dt {
  color: var(--ink);
  font-family: "Tenor Sans", serif;
  font-size: 28px;
  white-space: nowrap;
}

.mortgage-line dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.finance-duo__secondary > .text-button {
  margin-top: 30px;
}

.oxygen-manifest {
  padding: 112px 0 0;
  background: var(--white);
}

.oxygen-manifest__head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 90px;
  align-items: end;
}

.oxygen-manifest__head h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.oxygen-manifest__head > p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.oxygen-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 76px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.oxygen-index li {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px max(28px, calc((100vw - var(--shell)) / 2));
}

.oxygen-index li + li {
  border-left: 1px solid var(--line);
}

.oxygen-index span {
  color: var(--oxygen);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.oxygen-index strong {
  color: var(--ink);
  font-family: "Tenor Sans", serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 1;
}

.oxygen-index p {
  max-width: 220px;
  margin-bottom: 0;
  color: var(--muted);
}

.project-spread {
  display: grid;
  grid-template-columns: minmax(460px, 43%) minmax(0, 57%);
  min-height: 720px;
  background: var(--white);
}

.project-spread__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px max(48px, calc((100vw - var(--shell)) / 2));
}

.project-spread__copy h2 {
  max-width: 650px;
}

.project-spread__copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.project-spread figure {
  min-width: 0;
  min-height: 100%;
  margin: 0;
}

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

.line-list {
  max-width: 650px;
  margin: 28px 0 26px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.line-list li {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
}

.line-list .icon {
  color: var(--lime-dark);
}

.plans-stage {
  padding: 112px 0;
  background: var(--paper);
}

.plan-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.plan-tile {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 30px;
  text-decoration: none;
}

.plan-tile + .plan-tile {
  border-left: 1px solid var(--line);
}

.plan-tile img {
  grid-column: 1 / -1;
  width: 100%;
  height: 280px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 220ms ease;
}

.plan-tile:hover img {
  transform: scale(1.025);
}

.plan-tile span {
  font-family: "Tenor Sans", serif;
  font-size: 24px;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.route-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  min-height: 740px;
  background: var(--sky);
}

.route-stage__visual {
  min-width: 0;
  overflow: hidden;
}

.route-stage__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-stage__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px max(48px, calc((100vw - var(--shell)) / 2));
}

.route-stage__copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.route-lines {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.route-lines a {
  min-height: 96px;
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.route-lines strong {
  font-family: "Tenor Sans", serif;
  font-size: 24px;
  font-weight: 400;
}

.route-lines span {
  color: var(--muted);
}

.home-gallery {
  padding: 112px 0 0;
  background: var(--white);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-template-rows: 340px 340px;
}

.gallery-mosaic__item {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--ink);
  cursor: zoom-in;
}

.gallery-mosaic__item.tall {
  grid-row: span 2;
}

.gallery-mosaic__item.wide {
  grid-column: span 2;
}

.gallery-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.gallery-mosaic__item:hover img {
  transform: scale(1.02);
}

.final-cta,
.page-cta {
  padding: 100px 0;
  background: var(--ink-deep);
  color: var(--white);
}

.final-cta__inner,
.page-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 72px;
}

.final-cta h2,
.page-cta h2 {
  max-width: 860px;
  margin-bottom: 18px;
}

.final-cta p:not(.eyebrow),
.page-cta p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.final-cta .eyebrow,
.page-cta .eyebrow {
  color: var(--lime);
}

.final-cta__actions,
.page-cta__actions {
  display: grid;
  gap: 16px;
  justify-items: stretch;
}

.final-cta__actions > a,
.page-cta__actions > a {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumbs a {
  text-decoration: none;
}

.sub-hero {
  min-height: 650px;
}

.sub-hero__copy h1 {
  max-width: 710px;
  margin-bottom: 24px;
  font-size: 62px;
}

.sub-hero__copy > p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
}

.sub-hero__visual {
  min-height: 650px;
}

.sub-hero--finance .sub-hero__copy {
  background: var(--sky);
}

.sub-hero--product .sub-hero__visual img {
  padding: 50px;
  object-fit: contain;
  background: var(--paper);
}

.content-band {
  padding: 110px 0;
  background: var(--white);
}

.content-band__lead {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1.64fr);
  gap: 64px;
  margin-bottom: 60px;
}

.content-band__lead h2 {
  max-width: 1040px;
  margin: 0;
  font-size: 48px;
}

.point-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.point-item {
  min-width: 0;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 40px max(30px, calc((100vw - var(--shell)) / 2));
}

.point-item + .point-item {
  border-left: 1px solid var(--line);
}

.point-item > span {
  margin-bottom: auto;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
}

.point-item h3 {
  margin: 32px 0 16px;
  font-size: 28px;
}

.point-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.content-band--guide {
  background: var(--paper);
}

.content-band--guide .point-item {
  background: var(--white);
}

.content-band--finance .point-item:first-child {
  background: var(--oxygen-dark);
  color: var(--white);
}

.content-band--finance .point-item:first-child p {
  color: rgba(255, 255, 255, 0.72);
}

.content-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 270px;
  background: var(--white);
}

.content-gallery__item {
  position: relative;
  grid-column: span 4;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--ink);
  cursor: zoom-in;
}

.content-gallery__item--panorama {
  grid-column: span 8;
}

.content-gallery__item--portrait {
  grid-row: span 2;
}

.content-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-gallery__item span {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 12px 16px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.source-stage {
  padding: 96px 0;
  background: var(--sky);
}

.source-stage__inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 80px;
}

.source-stage__inner ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.source-stage__inner li {
  border-bottom: 1px solid var(--line);
}

.source-stage__inner a {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-weight: 700;
  text-decoration: none;
}

.faq-stage {
  padding: 100px 0;
  background: var(--paper);
}

.faq-stage__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  gap: 80px;
}

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

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

.faq-list summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 20px 44px 20px 0;
  font-family: "Tenor Sans", serif;
  font-size: 22px;
  cursor: pointer;
}

.faq-list p {
  max-width: 760px;
  padding-bottom: 24px;
  color: var(--muted);
}

.explore-stage {
  padding: 100px 0;
  background: var(--white);
}

.explore-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.explore-links a {
  min-height: 180px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: space-between;
  gap: 24px;
  padding: 30px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.explore-links a:not(:nth-child(3n + 1)) {
  border-left: 1px solid var(--line);
}

.explore-links span {
  grid-column: 1 / -1;
  color: var(--oxygen);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.explore-links strong {
  font-family: "Tenor Sans", serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.28;
}

.site-footer {
  padding: 74px 0 0;
  background: var(--ink-deep);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr 1fr;
  gap: 70px;
  padding-bottom: 62px;
}

.footer-brand img {
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 260px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-grid nav a {
  min-height: 34px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

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

.footer-contact {
  display: grid;
  align-content: start;
}

.footer-contact > span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-contact > a {
  margin-top: 8px;
  font-family: "Tenor Sans", serif;
  font-size: 24px;
  text-decoration: none;
}

.footer-contact .text-button {
  margin-top: 20px;
  color: var(--white);
}

.footer-meta {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.footer-meta a {
  text-decoration: none;
}

.lead-dialog,
.gallery-dialog {
  border: 0;
  border-radius: 2px;
  box-shadow: 0 32px 90px rgba(9, 43, 45, 0.28);
}

.lead-dialog::backdrop,
.gallery-dialog::backdrop {
  background: rgba(4, 25, 26, 0.72);
  backdrop-filter: blur(2px);
}

.lead-dialog {
  width: min(560px, calc(100% - 28px));
  padding: 54px;
  color: var(--ink);
}

.dialog-close,
.gallery-dialog__close {
  position: absolute;
  top: 14px;
  right: 14px;
}

.lead-dialog h2 {
  margin-bottom: 16px;
  font-size: 42px;
}

.dialog-lead {
  margin-bottom: 30px;
  color: var(--muted);
}

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

.lead-form label > span:first-child {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 750;
}

.lead-form input[type="tel"] {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
}

.lead-form input[aria-invalid="true"] {
  border-color: var(--error);
}

.lead-form input[aria-invalid="true"]:focus-visible {
  outline-color: var(--error);
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 12px;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
}

.consent input[aria-invalid="true"] {
  outline: 2px solid var(--error);
  outline-offset: 2px;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status.is-error {
  color: var(--error);
}

.form-status.is-success {
  color: var(--success);
}

.dialog-phone {
  display: grid;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.dialog-phone span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.dialog-phone a {
  margin-top: 6px;
  color: var(--ink);
  font-family: "Tenor Sans", serif;
  font-size: 25px;
  text-decoration: none;
}

.gallery-dialog {
  width: min(1240px, calc(100% - 40px));
  height: min(820px, calc(100svh - 40px));
  padding: 0;
  overflow: hidden;
  background: var(--ink-deep);
}

.gallery-dialog img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-dialog__close {
  z-index: 2;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(9, 43, 45, 0.72);
  color: var(--white);
}

.mobile-actions {
  display: none;
}

.policy-page,
.not-found {
  min-height: 70svh;
  padding: 110px 0;
  background: var(--paper);
}

.policy-page__inner,
.not-found .shell {
  max-width: 860px;
}

.policy-page h1,
.not-found h1 {
  font-size: 58px;
}

.policy-page p,
.not-found p {
  color: var(--muted);
  font-size: 18px;
}

.policy-page .button,
.not-found .button {
  margin-top: 24px;
}

@media (max-width: 1180px) {
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 48px;
  }

  .shell {
    width: min(calc(100% - 48px), var(--shell));
  }

  .desktop-nav {
    gap: 18px;
  }

  .home-hero,
  .sub-hero {
    grid-template-columns: minmax(440px, 48%) minmax(0, 52%);
  }

  .home-hero__copy,
  .sub-hero__copy,
  .project-spread__copy,
  .route-stage__copy {
    padding-inline: 40px;
  }

  .finance-duo article {
    min-height: 500px;
    padding: 54px;
  }

  .finance-duo h3 {
    font-size: 52px;
  }

  .point-item {
    padding-inline: 28px;
  }

  .oxygen-index li {
    padding-inline: 26px;
  }

  .footer-grid {
    gap: 36px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 72px;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 44px;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-phone {
    min-width: 158px;
  }

  .home-hero,
  .sub-hero,
  .project-spread,
  .route-stage {
    grid-template-columns: 1fr;
  }

  .home-hero,
  .sub-hero {
    min-height: 0;
  }

  .home-hero__copy,
  .sub-hero__copy {
    min-height: 560px;
    padding: 64px 42px;
  }

  .home-hero__visual,
  .sub-hero__visual {
    min-height: 420px;
  }

  .finance-duo {
    grid-template-columns: 1fr;
  }

  .finance-duo article {
    min-height: 460px;
  }

  .oxygen-manifest__head,
  .content-band__lead,
  .source-stage__inner,
  .faq-stage__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .oxygen-index li:nth-child(3),
  .oxygen-index li:nth-child(4),
  .point-item:nth-child(3),
  .point-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .oxygen-index li:nth-child(3),
  .point-item:nth-child(3) {
    border-left: 0;
  }

  .project-spread__copy,
  .route-stage__copy {
    min-height: 600px;
    padding: 72px 42px;
  }

  .project-spread figure,
  .route-stage__visual {
    min-height: 520px;
  }

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

  .plan-tile:nth-child(3) {
    border-left: 0;
  }

  .plan-tile:nth-child(3),
  .plan-tile:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 340px 300px 300px;
  }

  .gallery-mosaic__item.tall {
    grid-row: span 2;
  }

  .gallery-mosaic__item.wide {
    grid-column: span 1;
  }

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

  .explore-links a:not(:nth-child(3n + 1)) {
    border-left: 0;
  }

  .explore-links a:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .content-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 300px;
  }

  .content-gallery__item,
  .content-gallery__item--panorama {
    grid-column: span 1;
  }

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

@media (max-width: 700px) {
  :root {
    --header-height: 66px;
  }

  body {
    padding-bottom: 70px;
    font-size: 15px;
  }

  h1,
  .sub-hero__copy h1 {
    font-size: 40px;
    line-height: 1.06;
  }

  h2,
  .content-band__lead h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 27px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .site-header {
    height: var(--header-height);
  }

  .header-inner {
    gap: 12px;
  }

  .brand {
    width: 132px;
  }

  .header-phone {
    min-width: 0;
  }

  .header-phone span {
    display: none;
  }

  .header-phone strong {
    font-size: 0;
  }

  .header-phone strong::after {
    content: "8 800";
    font-size: 14px;
  }

  .icon-button {
    width: 42px;
    height: 42px;
  }

  .home-hero__copy,
  .sub-hero__copy {
    min-height: 470px;
    padding: 48px 20px 40px;
  }

  .home-hero__lead,
  .sub-hero__copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .button,
  .hero-actions .phone-link {
    width: 100%;
  }

  .hero-mini-facts {
    margin-top: 30px;
  }

  .hero-mini-facts span {
    padding-right: 8px;
    font-size: 9px;
  }

  .hero-mini-facts span + span {
    padding-left: 10px;
  }

  .hero-mini-facts strong {
    font-size: 19px;
  }

  .home-hero__visual,
  .sub-hero__visual {
    min-height: 245px;
    max-height: 280px;
  }

  .home-hero__visual img,
  .sub-hero__visual img {
    object-position: center;
  }

  .home-hero__visual figcaption {
    right: 10px;
    bottom: 10px;
  }

  .finance-stage,
  .plans-stage,
  .explore-stage,
  .faq-stage {
    padding: 72px 0;
  }

  .section-intro,
  .section-intro--split {
    display: block;
    margin-bottom: 32px;
  }

  .section-intro--split > p,
  .section-intro--split > a {
    margin-top: 20px;
  }

  .finance-duo article {
    min-height: 440px;
    padding: 38px 24px;
  }

  .finance-duo h3 {
    font-size: 42px;
  }

  .finance-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .finance-actions .button,
  .finance-actions .text-button {
    width: 100%;
    justify-content: center;
  }

  .mortgage-line {
    grid-template-columns: 1fr;
  }

  .mortgage-line div {
    min-height: 78px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .mortgage-line div + div {
    padding-left: 0;
    border-left: 0;
  }

  .mortgage-line dd {
    text-align: right;
  }

  .oxygen-manifest {
    padding-top: 72px;
  }

  .oxygen-manifest__head {
    display: block;
  }

  .oxygen-manifest__head > p {
    margin-top: 24px;
    font-size: 16px;
  }

  .oxygen-index,
  .point-grid {
    grid-template-columns: 1fr;
  }

  .oxygen-index li,
  .point-item {
    min-height: 220px;
    padding: 26px 20px;
    border-top: 1px solid var(--line);
    border-left: 0 !important;
  }

  .oxygen-index li:first-child,
  .point-item:first-child {
    border-top: 0;
  }

  .oxygen-index strong {
    font-size: 44px;
  }

  .project-spread__copy,
  .route-stage__copy {
    min-height: 0;
    padding: 68px 20px;
  }

  .project-spread figure,
  .route-stage__visual {
    min-height: 300px;
  }

  .plan-rail {
    grid-template-columns: 1fr;
  }

  .plan-tile,
  .plan-tile:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .plan-tile:first-child {
    border-top: 0;
  }

  .plan-tile img {
    height: 250px;
  }

  .route-lines a {
    min-height: 104px;
    grid-template-columns: 1fr auto;
    gap: 4px 12px;
  }

  .route-lines strong,
  .route-lines span {
    grid-column: 1;
  }

  .route-lines .icon {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .home-gallery {
    padding-top: 72px;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 280px);
  }

  .gallery-mosaic__item,
  .gallery-mosaic__item.tall,
  .gallery-mosaic__item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .final-cta,
  .page-cta {
    padding: 72px 0;
  }

  .final-cta__inner,
  .page-cta__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .final-cta__actions,
  .page-cta__actions {
    justify-items: stretch;
  }

  .sub-hero--product .sub-hero__visual img {
    padding: 24px;
  }

  .content-band {
    padding: 72px 0;
  }

  .content-band__lead {
    margin-bottom: 36px;
  }

  .point-item h3 {
    margin-top: 18px;
  }

  .content-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .content-gallery__item--portrait {
    grid-row: span 1;
  }

  .source-stage {
    padding: 72px 0;
  }

  .faq-list summary {
    font-size: 19px;
  }

  .explore-links {
    grid-template-columns: 1fr;
  }

  .explore-links a,
  .explore-links a:nth-child(even) {
    min-height: 145px;
    border-left: 0;
  }

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

  .site-footer {
    padding-top: 54px;
  }

  .footer-meta {
    min-height: 92px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }

  .lead-dialog {
    padding: 48px 22px 26px;
  }

  .lead-dialog h2 {
    font-size: 34px;
  }

  .gallery-dialog {
    width: calc(100% - 16px);
    height: calc(100svh - 16px);
  }

  .mobile-actions {
    position: fixed;
    z-index: var(--z-mobile-actions);
    right: 8px;
    bottom: 8px;
    left: 8px;
    height: 58px;
    display: grid;
    grid-template-columns: 0.38fr 0.62fr;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: var(--ink-deep);
    box-shadow: 0 14px 38px rgba(9, 43, 45, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(24px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-actions.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-actions a,
  .mobile-actions button {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
    border: 0;
    background: transparent;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-actions button {
    background: var(--lime);
    color: var(--ink-deep);
  }

  .policy-page,
  .not-found {
    padding: 72px 0;
  }

  .policy-page h1,
  .not-found h1 {
    font-size: 40px;
  }
}

@media (max-width: 360px) {
  .brand {
    width: 116px;
  }

  .header-phone strong::after {
    content: "8 800";
    font-size: 12px;
  }

  h1,
  .sub-hero__copy h1 {
    font-size: 36px;
  }

  .hero-mini-facts span {
    font-size: 8px;
  }

  .hero-mini-facts strong {
    font-size: 17px;
  }

  .button {
    padding-inline: 16px;
  }
}

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