:root {
  --ink: #111316;
  --ink-2: #1b1d21;
  --ink-3: #292b30;
  --ivory: #f3f0e9;
  --paper: #fbfaf6;
  --white: #ffffff;
  --bronze: #b99a6a;
  --bronze-light: #d5bb91;
  --muted: #716d66;
  --line: rgba(17, 19, 22, .14);
  --light-line: rgba(255, 255, 255, .18);
  --shadow: 0 28px 90px rgba(16, 18, 22, .17);
  --radius: 28px;
  --content: 1280px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.lead-modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

.skip-link:focus {
  transform: none;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
  min-height: 86px;
  padding: 16px clamp(20px, 4.2vw, 72px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid rgba(213, 187, 145, .8);
  color: var(--bronze-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 29px;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy b,
.footer-brand b {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: .07em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy small,
.footer-brand small {
  color: rgba(255, 255, 255, .66);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 28px);
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--bronze-light);
  transition: transform .25s ease;
}

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

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

.header-phone,
.footer-contact a {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta {
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: background .2s ease, color .2s ease;
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .38);
  background: rgba(17, 19, 22, .16);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: var(--white);
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 25;
  display: none;
  align-content: center;
  gap: 12px;
  padding: 100px 24px 32px;
  overflow-y: auto;
  background: rgba(17, 19, 22, .985);
  color: var(--white);
}

.mobile-menu.is-open {
  display: grid;
}

.mobile-menu > a {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  line-height: 1;
  text-decoration: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 100svh;
  overflow: hidden;
  align-items: end;
  padding: clamp(132px, 19vh, 210px) clamp(22px, 5.7vw, 96px) clamp(148px, 18vh, 190px);
  background: var(--ink);
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("../images/hero.webp") 58% 50% / cover no-repeat;
  transform: scale(1.025);
  transform-origin: center;
  animation: heroReveal 13s cubic-bezier(.2, .7, .2, 1) both;
}

.hero-overlay,
.media-overlay {
  background: linear-gradient(90deg, rgba(12, 14, 17, .91) 0%, rgba(12, 14, 17, .57) 42%, rgba(12, 14, 17, .16) 72%, rgba(12, 14, 17, .28) 100%);
}

.hero-content {
  position: relative;
  min-width: 0;
  z-index: 2;
  width: 100%;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--bronze-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

h1 {
  margin: 0;
  font-size: clamp(70px, 11vw, 156px);
  font-weight: 500;
  letter-spacing: .05em;
  line-height: .78;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .9);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
}

.hero-offer {
  display: grid;
  width: fit-content;
  max-width: 100%;
  margin-top: 30px;
  padding-left: 18px;
  border-left: 1px solid var(--bronze-light);
}

.hero-offer > span,
.hero-offer small {
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero-offer strong {
  margin: 2px 0 4px;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  min-width: 0;
  min-height: 54px;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}

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

.btn-gold {
  border-color: var(--bronze);
  background: var(--bronze);
  color: var(--ink);
}

.btn-gold:hover {
  border-color: var(--bronze-light);
  background: var(--bronze-light);
}

.btn-glass {
  border-color: rgba(255, 255, 255, .46);
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  backdrop-filter: blur(8px);
}

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

.btn-dark:hover {
  border-color: var(--bronze);
  background: var(--bronze);
  color: var(--ink);
}

.hero-stats {
  position: absolute;
  right: clamp(22px, 5.7vw, 96px);
  bottom: clamp(35px, 5vh, 58px);
  left: clamp(22px, 5.7vw, 96px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 730px;
  margin-left: auto;
  border-top: 1px solid rgba(255, 255, 255, .31);
}

.hero-stats article {
  display: grid;
  gap: 2px;
  padding: 16px 22px 0;
  border-left: 1px solid rgba(255, 255, 255, .21);
}

.hero-stats article:first-child {
  border-left: 0;
}

.hero-stats strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1;
}

.hero-stats article > span {
  color: rgba(255, 255, 255, .63);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 42px;
  left: clamp(22px, 5.7vw, 96px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .57);
  font-size: 10px;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, .44);
}

.ticker {
  overflow: hidden;
  padding: 15px 0;
  background: var(--bronze);
  color: var(--ink);
}

.ticker > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  animation: ticker 28s linear infinite;
}

.ticker span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ticker i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
}

.section {
  max-width: var(--content);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 144px) clamp(20px, 4.2vw, 60px);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: clamp(34px, 5vw, 66px);
}

.section-kicker span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--bronze);
  font-size: 10px;
}

.section-kicker p {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: clamp(38px, 5.2vw, 66px);
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: .98;
}

h3 {
  margin: 0;
  font-size: clamp(25px, 2.7vw, 38px);
  font-weight: 500;
  line-height: 1.05;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, .95fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: start;
}

.section-copy > p,
.section-head > p,
.location-copy > p,
.team-copy > p,
.safety-copy > p {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 19px);
}

.source-note {
  font-size: 12px !important;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  color: var(--bronze);
  font-size: 19px;
}

.intro-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.intro-metrics article {
  display: grid;
  min-height: 190px;
  align-content: space-between;
  padding: clamp(22px, 3vw, 36px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-metrics b {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 4.8vw, 68px);
  font-weight: 500;
  line-height: .95;
}

.intro-metrics article > span {
  max-width: 180px;
  color: var(--muted);
  font-size: 12px;
}

.stack-scene {
  position: relative;
  height: 190svh;
  background: var(--ink);
}

.stack-pin {
  position: sticky;
  top: 0;
  height: 100svh;
}

.feature-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  color: var(--white);
}

.feature-screen > img,
.cta-section > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-screen--facade > img {
  object-position: center 58%;
}

.feature-screen--terrace > img {
  object-position: center;
}

.media-overlay {
  position: absolute;
  inset: 0;
}

.feature-caption {
  position: absolute;
  right: clamp(22px, 6vw, 96px);
  bottom: clamp(50px, 9vh, 110px);
  left: clamp(22px, 6vw, 96px);
  z-index: 2;
  max-width: 780px;
}

.feature-caption h2 {
  max-width: 760px;
}

.feature-caption > span {
  display: block;
  max-width: 560px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .7);
}

.stack-cover {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  min-height: 96svh;
  border-radius: 34px 34px 0 0;
  box-shadow: var(--shadow);
}

.stack-cover--ivory {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  padding: clamp(52px, 7vw, 100px) clamp(22px, 6vw, 96px);
  overflow: hidden;
  background: var(--paper);
}

.stack-cover--ivory > img {
  width: 100%;
  height: min(68svh, 680px);
  object-fit: cover;
}

.stack-cover-copy > p:not(.eyebrow) {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.stack-cover-copy .btn {
  margin-top: 30px;
}

.stack-cover--dark {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
  padding: clamp(54px, 7vw, 100px) clamp(22px, 6vw, 96px);
  background: var(--ink);
  color: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--light-line);
  border-left: 1px solid var(--light-line);
}

.service-grid article {
  min-height: 190px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
}

.service-grid article > span,
.infra-card div > span {
  color: var(--bronze-light);
  font-size: 10px;
  letter-spacing: .12em;
}

.service-grid h3 {
  margin-top: 38px;
  font-size: 30px;
}

.service-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
}

.stack-cover-callout p:not(.eyebrow) {
  color: rgba(255, 255, 255, .68);
}

.stack-cover-callout .btn {
  margin-top: 30px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(260px, .78fr);
  gap: clamp(34px, 8vw, 130px);
  align-items: end;
}

.section-head > p {
  margin: 0;
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(44px, 7vw, 88px);
}

.infra-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.infra-card--wide {
  min-height: 620px;
}

.infra-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.infra-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 38%, rgba(10, 11, 13, .9));
}

.infra-card:hover > img {
  transform: scale(1.035);
}

.infra-card > div {
  position: absolute;
  right: clamp(22px, 4vw, 44px);
  bottom: clamp(22px, 4vw, 40px);
  left: clamp(22px, 4vw, 44px);
  z-index: 2;
}

.infra-card h3 {
  margin-top: 11px;
}

.infra-card p {
  max-width: 520px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
}

.section-head--row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.section-head--row > div > p {
  max-width: 670px;
  margin: 24px 0 0;
  color: var(--muted);
}

.layout-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(44px, 7vw, 84px);
}

.layout-card {
  display: grid;
  grid-template-rows: minmax(300px, 1fr) auto;
  min-width: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
}

.layout-image {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: clamp(22px, 3vw, 38px);
  background: var(--white);
}

.layout-image img {
  width: 100%;
  height: 100%;
  max-height: 340px;
  object-fit: contain;
}

.layout-info {
  padding: 26px clamp(20px, 2.8vw, 32px) 31px;
  border-top: 1px solid var(--line);
}

.layout-info > span {
  color: var(--bronze);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.layout-info h3 {
  margin-top: 7px;
}

.layout-info p {
  min-height: 42px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.layouts-note {
  display: grid;
  grid-template-columns: .6fr 1.4fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 28px 32px;
  background: var(--ink);
  color: var(--white);
}

.layouts-note p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
}

.layouts-note h3 {
  font-size: 29px;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.route-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.route-list li {
  display: grid;
  gap: 6px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.route-list b {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 1;
}

.route-list li > span {
  color: var(--muted);
  font-size: 11px;
}

.location-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.location-visual > img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
}

.location-pin {
  position: absolute;
  top: 46%;
  left: 49%;
  display: grid;
  min-width: 142px;
  padding: 14px 17px;
  transform: translate(-50%, -50%);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .32);
}

.location-pin > span {
  display: grid;
  width: 29px;
  height: 29px;
  margin-bottom: 9px;
  place-items: center;
  border: 1px solid var(--bronze-light);
  color: var(--bronze-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
}

.location-pin b {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
}

.location-pin small {
  color: rgba(255, 255, 255, .58);
  font-size: 9px;
}

.safety {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  max-width: none;
  padding-right: 0;
  padding-left: 0;
  background: var(--paper);
}

.safety-image {
  min-height: 650px;
}

.safety-image img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
}

.safety-copy {
  align-self: center;
  max-width: 660px;
  padding: clamp(45px, 7vw, 100px);
}

.safety-copy ul {
  display: grid;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.safety-copy li {
  position: relative;
  padding: 12px 0 12px 26px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.safety-copy li::before {
  position: absolute;
  top: 19px;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  border: 1px solid var(--bronze);
  border-radius: 50%;
}

.safety-copy .btn {
  margin-top: 30px;
}

.cta-section {
  position: relative;
  display: grid;
  min-height: 78svh;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.cta-section > img,
.cta-section > .media-overlay {
  position: absolute;
  inset: 0;
}

.cta-section > .media-overlay {
  background: rgba(13, 15, 18, .72);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 70px 24px;
  text-align: center;
}

.cta-content p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, .7);
}

.cta-content .btn {
  margin-top: 32px;
}

.team-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(48px, 8vw, 120px);
}

.team-copy {
  position: sticky;
  top: 34px;
  align-self: start;
}

.team-phone {
  display: inline-block;
  margin-top: 30px;
  color: var(--ink);
  font-size: 20px;
}

.team-cards {
  display: grid;
  gap: 14px;
}

.team-cards article {
  display: grid;
  grid-template-columns: 135px minmax(0, 1fr);
  align-items: center;
  min-height: 150px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.team-cards img {
  width: 135px;
  height: 150px;
  object-fit: cover;
}

.team-cards div {
  padding: 20px 26px;
}

.team-cards h3 {
  font-size: 28px;
}

.team-cards p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  line-height: 1.1;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 17px;
  height: 1px;
  content: "";
  background: var(--ink);
  transition: transform .2s ease;
}

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

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

.faq-list details p {
  max-width: 700px;
  margin: 0;
  padding: 0 44px 26px 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-grid .btn {
  margin-top: 30px;
}

.site-footer {
  padding: clamp(60px, 8vw, 100px) clamp(22px, 6vw, 96px) 28px;
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 38px;
  align-items: center;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--light-line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand > div {
  display: grid;
  gap: 4px;
}

.footer-contact {
  display: grid;
  gap: 4px;
}

.footer-contact a:last-child {
  color: rgba(255, 255, 255, .6);
  font-size: 11px;
}

.footer-legal {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 18px 50px;
  padding-top: 24px;
}

.footer-legal p {
  margin: 0;
  color: rgba(255, 255, 255, .48);
  font-size: 10px;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.footer-legal a {
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
}

.footer-legal .disclaimer {
  grid-column: 1 / -1;
  max-width: 900px;
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 12px;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 9, .78);
  backdrop-filter: blur(8px);
}

.lead-modal__dialog {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(430px, 1.18fr);
  width: min(940px, 100%);
  max-height: calc(100svh - 24px);
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .38);
}

.lead-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(17, 19, 22, .18);
  border-radius: 50%;
  background: rgba(251, 250, 246, .92);
  cursor: pointer;
}

.lead-modal__close span {
  position: relative;
  display: block;
  width: 17px;
  height: 17px;
}

.lead-modal__close span::before,
.lead-modal__close span::after {
  position: absolute;
  top: 8px;
  left: 0;
  width: 17px;
  height: 1px;
  content: "";
  background: var(--ink);
}

.lead-modal__close span::before {
  transform: rotate(45deg);
}

.lead-modal__close span::after {
  transform: rotate(-45deg);
}

.lead-modal__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--ink);
}

.lead-modal__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(17, 19, 22, .08), rgba(17, 19, 22, .68));
}

.lead-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lead-modal__media > div {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  display: grid;
  color: var(--white);
}

.lead-modal__media > div span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
}

.lead-modal__media > div small {
  margin-top: 6px;
  color: rgba(255, 255, 255, .64);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.lead-modal__content {
  padding: clamp(30px, 4vw, 50px);
  overflow: hidden;
}

.lead-modal__content h2 {
  max-width: 480px;
  padding-right: 30px;
  font-size: clamp(31px, 4vw, 46px);
}

.lead-modal__content > p {
  max-width: 470px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.lead-form {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

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

.lead-form label:not(.check) {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.lead-form input[type="text"],
.lead-form input[type="tel"] {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  text-transform: none;
}

.lead-form input:focus {
  border-color: var(--bronze);
  box-shadow: 0 0 0 2px rgba(185, 154, 106, .16);
}

.contact-method {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-method legend {
  grid-column: 1 / -1;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.contact-method label {
  display: block !important;
}

.contact-method input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-method span {
  display: grid;
  min-height: 39px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.contact-method input:checked + span {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.consents {
  display: grid;
  gap: 7px;
}

.check {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.35;
}

.check input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--ink);
}

.check a {
  color: var(--ink);
}

.lead-form .btn {
  width: 100%;
  min-height: 50px;
}

.form-status {
  min-height: 18px;
  margin: -3px 0 0;
  color: #396f42;
  font-size: 11px;
  line-height: 1.35;
}

.form-status.is-error {
  color: #a43a32;
}

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

.reveal,
.reveal-grid > * {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .72s ease, transform .72s cubic-bezier(.2, .7, .2, 1);
}

.reveal-grid > *:nth-child(2) {
  transition-delay: .08s;
}

.reveal-grid > *:nth-child(3) {
  transition-delay: .16s;
}

.reveal-grid > *:nth-child(4) {
  transition-delay: .24s;
}

.reveal.is-visible,
.reveal-grid > *.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroReveal {
  from { transform: scale(1.085); }
  to { transform: scale(1.025); }
}

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

@media (max-width: 1120px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

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

  .menu-toggle {
    display: block;
  }

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

  .layout-card:last-child {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .7fr);
    grid-template-rows: auto;
  }

  .layout-card:last-child .layout-info {
    display: grid;
    align-content: center;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .layout-card:last-child .layout-image {
    min-height: 330px;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 76px;
    padding: 13px 18px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-copy b {
    font-size: 23px;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    min-height: 900px;
    padding: 126px 20px 230px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(12, 14, 17, .48) 0%, rgba(12, 14, 17, .2) 33%, rgba(12, 14, 17, .88) 76%, rgba(12, 14, 17, .96) 100%);
  }

  .hero-stats {
    right: 20px;
    bottom: 52px;
    left: 20px;
    max-width: none;
    margin: 0;
  }

  .hero-scroll {
    display: none;
  }

  .intro-grid,
  .section-head,
  .location-grid,
  .safety,
  .team-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 45px;
  }

  .section-head {
    gap: 20px;
  }

  .section-head > p {
    margin: 0;
  }

  .stack-cover--ivory,
  .stack-cover--dark {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .stack-cover--ivory > img {
    height: 43svh;
    min-height: 340px;
  }

  .infra-card,
  .infra-card--wide {
    min-height: 480px;
  }

  .layouts-note {
    grid-template-columns: 1fr auto;
  }

  .layouts-note p {
    grid-column: 1 / -1;
  }

  .location-visual,
  .location-visual > img,
  .safety-image,
  .safety-image img {
    min-height: 520px;
  }

  .safety-copy {
    max-width: 740px;
    padding-right: clamp(20px, 5vw, 60px);
    padding-left: clamp(20px, 5vw, 60px);
  }

  .team-copy {
    position: static;
  }

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

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

  .lead-modal__dialog {
    grid-template-columns: minmax(230px, .65fr) minmax(410px, 1.35fr);
  }

  .lead-modal__content {
    padding: 28px;
  }
}

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

  body {
    font-size: 15px;
  }

  .site-header {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .menu-toggle {
    position: absolute;
    top: 15px;
    right: 18px;
    z-index: 55;
    display: block !important;
  }

  .header-actions {
    display: none;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .hero {
    min-height: 780px;
    padding: 120px 18px 207px;
  }

  .hero-content {
    align-self: end;
  }

  h1 {
    font-size: clamp(52px, 17.3vw, 72px);
    line-height: .84;
    letter-spacing: .02em;
  }

  .hero-subtitle {
    margin-top: 20px;
    font-size: 27px;
  }

  .hero-offer {
    margin-top: 21px;
  }

  .hero-offer small {
    max-width: 270px;
    font-size: 8px;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 23px;
  }

  .hero-actions .btn {
    min-height: 50px;
    padding: 0 12px;
    font-size: 11px;
  }

  .hero-stats {
    bottom: 88px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-stats article {
    min-width: 0;
    padding: 13px 8px 0;
  }

  .hero-stats strong {
    font-size: clamp(23px, 7vw, 31px);
    white-space: nowrap;
  }

  .hero-stats article > span {
    font-size: 8px;
    letter-spacing: .04em;
  }

  .section {
    padding: 72px 18px;
  }

  .section-kicker {
    margin-bottom: 34px;
  }

  h2 {
    font-size: clamp(36px, 11.8vw, 49px);
  }

  .intro-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .intro-metrics article {
    min-height: 150px;
    padding: 18px;
  }

  .intro-metrics b {
    font-size: 39px;
  }

  .stack-scene {
    height: auto;
    background: var(--ink);
  }

  .stack-pin {
    position: relative;
    height: 78svh;
    min-height: 590px;
  }

  .stack-cover {
    position: relative;
    min-height: auto;
    border-radius: 24px 24px 0 0;
  }

  .stack-cover--ivory,
  .stack-cover--dark {
    padding: 55px 18px;
  }

  .feature-caption {
    right: 18px;
    bottom: 50px;
    left: 18px;
  }

  .feature-caption h2 {
    font-size: 43px;
  }

  .stack-cover--ivory > img {
    height: 330px;
    min-height: 0;
  }

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

  .service-grid article {
    min-height: 164px;
    padding: 17px;
  }

  .service-grid h3 {
    margin-top: 26px;
    font-size: 24px;
  }

  .service-grid p {
    font-size: 11px;
  }

  .infra-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .infra-card,
  .infra-card--wide {
    min-height: 430px;
  }

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

  .section-head--row .btn {
    justify-self: start;
  }

  .layout-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .layout-card,
  .layout-card:last-child {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(280px, 1fr) auto;
  }

  .layout-card:last-child .layout-info {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .layout-image,
  .layout-card:last-child .layout-image {
    min-height: 310px;
  }

  .layout-info p {
    min-height: 0;
  }

  .layouts-note {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 26px 20px;
  }

  .layouts-note p {
    grid-column: auto;
  }

  .layouts-note .btn {
    width: 100%;
  }

  .route-list li {
    padding: 17px 13px;
  }

  .route-list b {
    font-size: 29px;
  }

  .location-visual,
  .location-visual > img,
  .safety-image,
  .safety-image img {
    min-height: 410px;
  }

  .safety {
    padding-top: 0;
    padding-bottom: 0;
  }

  .safety-copy {
    padding-top: 62px;
    padding-bottom: 72px;
  }

  .cta-section {
    min-height: 680px;
  }

  .team-cards article {
    grid-template-columns: 105px minmax(0, 1fr);
    min-height: 122px;
  }

  .team-cards img {
    width: 105px;
    height: 122px;
  }

  .team-cards div {
    padding: 14px 17px;
  }

  .team-cards h3 {
    font-size: 23px;
  }

  .faq-list summary {
    padding: 21px 40px 21px 0;
    font-size: 24px;
  }

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

  .footer-contact {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-main .btn {
    width: 100%;
  }

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

  .footer-legal nav {
    justify-content: flex-start;
  }

  .footer-legal .disclaimer {
    grid-column: auto;
  }

  .lead-modal {
    padding: 7px;
  }

  .lead-modal__dialog {
    display: block;
    width: 100%;
    max-height: calc(100svh - 14px);
  }

  .lead-modal__media {
    display: none;
  }

  .lead-modal__content {
    padding: 22px 16px 14px;
  }

  .lead-modal__content h2 {
    padding-right: 38px;
    font-size: clamp(27px, 8.7vw, 36px);
    line-height: .98;
  }

  .lead-modal__content > p {
    margin-top: 7px;
    font-size: 11px;
  }

  .lead-modal__close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }

  .lead-form {
    gap: 9px;
    margin-top: 13px;
  }

  .field-row {
    gap: 7px;
  }

  .lead-form input[type="text"],
  .lead-form input[type="tel"] {
    min-height: 44px;
    padding: 0 10px;
    font-size: 13px;
  }

  .contact-method span {
    min-height: 37px;
    font-size: 10px;
  }

  .check {
    font-size: 8.5px;
  }

  .lead-form .btn {
    min-height: 47px;
  }

  .form-status {
    min-height: 14px;
    font-size: 10px;
  }
}

@media (max-width: 370px) {
  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: 740px;
    padding-bottom: 196px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .hero-offer strong {
    font-size: 25px;
  }

  .hero-actions .btn {
    min-height: 46px;
    font-size: 10px;
  }

  .hero-stats {
    bottom: 78px;
  }

  .hero-stats article {
    padding-right: 5px;
    padding-left: 5px;
  }

  .hero-stats strong {
    font-size: 22px;
  }

  .intro-metrics {
    grid-template-columns: 1fr;
  }

  .intro-metrics article {
    min-height: 132px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .lead-modal__content {
    padding-top: 18px;
  }

  .lead-modal__content h2 {
    font-size: 27px;
  }

  .lead-modal__content > p {
    display: none;
  }

  .lead-form {
    margin-top: 10px;
  }

  .lead-form label:not(.check) {
    gap: 2px;
    font-size: 8px;
  }
}

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

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

  .hero-media,
  .ticker > div {
    animation: none;
  }

  .reveal,
  .reveal-grid > * {
    opacity: 1;
    transform: none;
  }
}
