:root {
  --paper: #f3f0e8;
  --paper-soft: #e8e4da;
  --white: #fafaf7;
  --ink: #171815;
  --muted: #66675f;
  --deep: #1c1e1a;
  --moss: #6f7665;
  --line: rgba(23, 24, 21, 0.18);
  --line-light: rgba(250, 250, 247, 0.22);
  --serif: "Newsreader", "Iowan Old Style", "Baskerville", Georgia, serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --shell: 1320px;
  --section-space: clamp(6rem, 10vw, 10rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

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

p,
h1,
h2,
h3,
h4,
figure,
ul,
ol {
  margin-top: 0;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

::selection {
  background: var(--moss);
  color: var(--white);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.65rem 1rem;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
}

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

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

.shell-narrow {
  width: min(100%, 43rem);
}

.section-space {
  padding-block: var(--section-space);
}

.section-kicker,
.eyebrow {
  margin-bottom: 1.6rem;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--moss);
}

.section-kicker.light {
  color: rgba(250, 250, 247, 0.66);
}

.eyebrow.dark {
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-height: 3.55rem;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.55rem;
  border: 1px solid transparent;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  transition:
    background-color 420ms ease,
    color 420ms ease,
    border-color 420ms ease,
    transform 420ms ease;
}

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

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

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

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

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

.button-wide {
  width: 100%;
  max-width: 28rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-bottom: 0.28rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 350ms ease;
}

.text-link:hover span {
  transform: translate(2px, 2px);
}

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

.media-label {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  margin: 0;
  padding: 0.38rem 0.55rem;
  background: rgba(23, 24, 21, 0.78);
  color: var(--white);
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.reveal {
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(1.75rem);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  color: var(--white);
  transition:
    background-color 500ms ease,
    color 500ms ease,
    box-shadow 500ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(243, 240, 232, 0.97);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(calc(100% - 5rem), var(--shell));
  min-height: 5.4rem;
  align-items: center;
  margin-inline: auto;
  grid-template-columns: 1fr auto 1fr;
}

.brand {
  display: inline-flex;
  width: max-content;
  flex-direction: column;
  line-height: 1;
}

.brand-word {
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.brand-subline {
  margin-top: 0.42rem;
  font-size: 0.47rem;
  font-weight: 500;
  letter-spacing: 0.19em;
  opacity: 0.66;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}

.desktop-nav a {
  position: relative;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

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

.header-cta {
  justify-self: end;
  padding-bottom: 0.28rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--deep);
  color: var(--white);
}

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

.hero-media img {
  object-fit: cover;
  object-position: center center;
  animation: hero-breathe 14s ease-out both;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 18, 15, 0.72) 0%, rgba(16, 18, 15, 0.22) 58%, rgba(16, 18, 15, 0.12) 100%),
    linear-gradient(0deg, rgba(16, 18, 15, 0.5) 0%, transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100svh;
  align-items: end;
  padding-top: 8.5rem;
  padding-bottom: clamp(3.25rem, 7vh, 6rem);
  grid-template-columns: minmax(0, 48rem) 1fr;
}

.hero-copy {
  max-width: 46rem;
}

.hero .eyebrow {
  margin-bottom: 1.3rem;
  color: rgba(250, 250, 247, 0.78);
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 0.85rem;
  font-family: var(--serif);
  font-size: clamp(4.8rem, 7.1vw, 7.5rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.hero-price {
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1;
}

.hero-support {
  max-width: 38rem;
  margin-bottom: 1.8rem;
  color: rgba(250, 250, 247, 0.84);
  font-size: 0.92rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.hero-label {
  right: 0;
  bottom: clamp(3.25rem, 7vh, 6rem);
  background: transparent;
  border: 1px solid rgba(250, 250, 247, 0.46);
}

@keyframes hero-breathe {
  from {
    transform: scale(1.025);
  }
  to {
    transform: scale(1);
  }
}

/* Quick facts */
.facts {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

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

.fact {
  min-height: 9.4rem;
  padding: 2.65rem 2rem;
  border-left: 1px solid var(--line);
}

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

.fact span,
.fact strong {
  display: block;
}

.fact span {
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.fact strong {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.8vw, 1.85rem);
  font-weight: 400;
  line-height: 1.15;
}

/* Proof */
.proof-heading {
  display: grid;
  margin-bottom: clamp(3rem, 7vw, 6.5rem);
  grid-template-columns: repeat(12, 1fr);
  column-gap: 1.5rem;
}

.proof-heading .section-kicker {
  grid-column: 1 / 4;
}

.proof-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 5.2vw, 6rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.96;
  grid-column: 4 / 11;
}

.proof-intro {
  padding-top: 2.3rem;
  color: var(--muted);
  font-size: 0.94rem;
  grid-column: 8 / 12;
}

.proof-intro p:last-child {
  margin-bottom: 0;
}

.proof-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.45fr) minmax(20rem, 0.85fr);
  gap: clamp(1.5rem, 4vw, 4.75rem);
}

.proof-grid figure {
  margin-bottom: 0;
}

.proof-main {
  padding-left: 7vw;
}

.proof-main .image-button {
  aspect-ratio: 4 / 5;
}

.proof-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-grid figcaption {
  display: flex;
  margin-top: 0.85rem;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.proof-grid figcaption strong {
  color: var(--ink);
  font-weight: 600;
}

.proof-support {
  display: grid;
  padding-top: 7rem;
  gap: 4rem;
}

.proof-support .image-button {
  aspect-ratio: 3 / 2;
}

.delivery-figure {
  width: 78%;
  margin-left: auto;
}

.image-button {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: var(--paper-soft);
  cursor: zoom-in;
}

.image-button img {
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.image-button:hover img {
  transform: scale(1.018);
}

.zoom-cue {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 0.42rem 0.65rem;
  background: rgba(23, 24, 21, 0.8);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Models */
.models {
  border-top: 1px solid var(--line);
}

.models-heading {
  display: block;
  max-width: 74rem;
  text-align: center;
}

.models-heading .section-kicker {
  margin-bottom: 1.75rem;
}

.models-heading h2 {
  max-width: 11ch;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 5.8vw, 6.7rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 0.93;
}

.models-heading > p:last-child {
  max-width: 34rem;
  margin: 1.6rem auto 0;
  color: var(--muted);
}

.model {
  display: grid;
  min-height: 55rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(29rem, 0.9fr);
}

.model-media {
  position: relative;
  min-height: 48rem;
}

.model-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-copy {
  align-self: center;
  padding: 7rem clamp(2.5rem, 6vw, 7rem);
}

.model-number {
  margin-bottom: 5rem;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.model-copy h3 {
  margin-bottom: 2.7rem;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.88;
}

.model-copy h3 span {
  font-size: 0.62em;
  letter-spacing: -0.015em;
}

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

.spec-list li {
  padding: 1rem 0.7rem 1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.spec-list li:nth-child(odd) {
  padding-right: 1.4rem;
  border-right: 1px solid var(--line);
}

.spec-list li:nth-child(even) {
  padding-left: 1.4rem;
}

.delivery-line {
  display: flex;
  margin-bottom: 3.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
}

.delivery-line span {
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.delivery-line strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  text-align: right;
}

.payment-block {
  margin-bottom: 2.7rem;
}

.payment-block h4 {
  margin-bottom: 1.4rem;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.payment-steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

.payment-steps li {
  position: relative;
  min-width: 0;
  padding: 1.6rem 0.9rem 0 0;
  border-top: 1px solid currentColor;
}

.payment-steps li::before {
  position: absolute;
  top: -0.24rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  background: currentColor;
  border-radius: 50%;
  content: "";
}

.payment-value,
.payment-label {
  display: block;
}

.payment-value {
  margin-bottom: 0.45rem;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  line-height: 1;
}

.payment-label {
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.4;
}

.model-three {
  background: var(--deep);
  color: var(--white);
  grid-template-columns: minmax(29rem, 0.95fr) minmax(0, 1.05fr);
}

.model-three .model-media {
  grid-column: 2;
  grid-row: 1;
}

.model-three .model-copy {
  grid-column: 1;
  grid-row: 1;
}

.model-three .eyebrow,
.model-three .model-number,
.model-three .spec-list li,
.model-three .delivery-line span,
.model-three .payment-label {
  color: rgba(250, 250, 247, 0.62);
}

.model-three .spec-list,
.model-three .spec-list li,
.model-three .delivery-line {
  border-color: var(--line-light);
}

.availability-note {
  margin-bottom: 2.25rem;
  padding-left: 1rem;
  border-left: 2px solid var(--moss);
  color: rgba(250, 250, 247, 0.67);
  font-size: 0.75rem;
}

.availability-note strong {
  color: var(--white);
  font-weight: 500;
}

/* Gallery */
.gallery-heading {
  display: flex;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
}

.gallery-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 5vw, 5.8rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.7rem;
}

.gallery-filters button {
  padding: 0 0 0.35rem;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-filters button:hover,
.gallery-filters button.is-active {
  border-bottom-color: currentColor;
  color: var(--ink);
}

.gallery-grid {
  display: grid;
  width: min(calc(100% - 5rem), 1540px);
  margin-inline: auto;
  grid-auto-flow: dense;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  min-width: 0;
  margin: 0;
  grid-column: span 4;
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item-a,
.gallery-item-d {
  grid-column: span 7;
}

.gallery-item-b,
.gallery-item-c {
  grid-column: span 5;
}

.gallery-item .image-button {
  height: 100%;
  min-height: 26rem;
}

.gallery-item-a .image-button,
.gallery-item-b .image-button,
.gallery-item-c .image-button,
.gallery-item-d .image-button {
  aspect-ratio: 3 / 2;
}

.gallery-item-e .image-button,
.gallery-item-f .image-button,
.gallery-item-g .image-button {
  aspect-ratio: 3 / 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Positioning */
.positioning {
  padding-top: var(--section-space);
  background: var(--deep);
  color: var(--white);
}

.positioning-copy {
  display: grid;
  padding-bottom: clamp(4rem, 8vw, 8rem);
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.positioning-copy .section-kicker {
  color: rgba(250, 250, 247, 0.58);
  grid-column: 1 / 4;
}

.positioning-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 8vw, 9rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.78;
  grid-column: 1 / 13;
}

.positioning-copy h2 em {
  margin-left: 0.45em;
  color: #aeb4a4;
  font-weight: 300;
}

.positioning-text {
  display: grid;
  margin-top: 3.5rem;
  color: rgba(250, 250, 247, 0.68);
  grid-column: 1 / 13;
  grid-template-columns: 1.35fr 0.8fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.positioning-text p {
  margin: 0;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(250, 250, 247, 0.2);
}

.positioning-text p:nth-child(2) {
  color: rgba(250, 250, 247, 0.52);
}

.positioning-text p:last-child {
  color: var(--white);
}

.positioning-media {
  position: relative;
  height: min(76vw, 56rem);
  margin: 0;
  overflow: hidden;
}

.positioning-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Features */
.features-layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.features-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 5.5vw, 6rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

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

.features-list li {
  display: grid;
  min-height: 6.2rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
}

.features-list span {
  color: var(--muted);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
}

.features-list strong {
  max-width: 39rem;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.1vw, 2.1rem);
  font-weight: 400;
  line-height: 1.1;
}

/* Plans */
.distribution {
  background: var(--paper-soft);
}

.distribution-heading {
  display: grid;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.distribution-heading .section-kicker {
  grid-column: 1 / 4;
}

.distribution-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 5.5vw, 6.2rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 0.94;
  grid-column: 4 / 11;
}

.distribution-heading > p:last-child {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  grid-column: 8 / 12;
}

.plans-grid {
  display: grid;
  max-width: 76rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 5vw, 5rem);
}

.plan-card {
  margin: 0;
}

.plan-button {
  height: min(67vw, 50rem);
  background: var(--white);
}

.plan-button img {
  width: 100%;
  height: 100%;
  padding: clamp(1.5rem, 4vw, 4rem);
  object-fit: contain;
}

.plan-card figcaption {
  display: grid;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  grid-template-columns: 3rem 1fr;
}

.plan-card figcaption span {
  color: var(--muted);
  font-size: 0.65rem;
}

.plan-card figcaption strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

/* Master plan */
.masterplan {
  background: var(--white);
}

.masterplan-heading {
  display: grid;
  margin-bottom: 4rem;
  grid-template-columns: 1fr minmax(18rem, 30rem);
  align-items: end;
  gap: 4rem;
}

.masterplan-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 6vw, 7rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.masterplan-heading > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.masterplan-frame {
  max-width: 74rem;
  padding: clamp(1rem, 3vw, 3rem);
  border: 1px solid var(--line);
  background: var(--paper);
}

.masterplan-button {
  max-width: 57.7rem;
  margin-inline: auto;
  aspect-ratio: 923 / 986;
  background: var(--white);
}

.masterplan-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.masterplan-zoom {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 0.7rem 0.85rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* Location */
.location {
  border-top: 1px solid var(--line);
}

.location-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
  gap: clamp(3rem, 10vw, 10rem);
}

.location-copy {
  padding-left: 7vw;
}

.location-copy h2 {
  margin-bottom: 3rem;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 7vw, 7.8rem);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 0.84;
}

.location-copy > p:not(.section-kicker) {
  max-width: 33rem;
  color: var(--muted);
  font-size: 0.91rem;
}

.location-place {
  display: flex;
  max-width: 33rem;
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  justify-content: space-between;
  gap: 1rem;
}

.location-place span {
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.location-place strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
}

.location-media {
  margin: 0;
}

.location-media img {
  width: 100%;
  height: min(70vw, 50rem);
  object-fit: cover;
}

.location-media figcaption {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* Final CTA */
.final-cta {
  position: relative;
  display: flex;
  min-height: 50rem;
  align-items: center;
  overflow: hidden;
  background: var(--deep);
  color: var(--white);
}

.final-cta-media,
.final-cta-shade {
  position: absolute;
  inset: 0;
}

.final-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta-shade {
  background:
    linear-gradient(90deg, rgba(16, 18, 15, 0.95) 0%, rgba(16, 18, 15, 0.76) 55%, rgba(16, 18, 15, 0.62) 100%),
    linear-gradient(0deg, rgba(16, 18, 15, 0.45), transparent 70%);
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  padding-block: 7rem;
  grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.75fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
}

.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 6vw, 7rem);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 0.88;
}

.final-cta-details > p:first-child {
  margin-bottom: 1rem;
  color: rgba(250, 250, 247, 0.68);
  font-size: 0.82rem;
}

.final-cta-details ul {
  margin: 0 0 2.4rem;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.final-cta-details li {
  padding: 0.74rem 0;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--serif);
  font-size: 1.18rem;
}

.factual-note {
  max-width: 28rem;
  margin: 1rem 0 0;
  color: rgba(250, 250, 247, 0.48);
  font-size: 0.65rem;
}

.email-contact {
  margin: 1.15rem 0 0;
  color: rgba(250, 250, 247, 0.58);
  font-size: 0.68rem;
}

.email-contact a {
  margin-left: 0.25rem;
  padding-bottom: 0.12rem;
  border-bottom: 1px solid rgba(250, 250, 247, 0.5);
  color: var(--white);
}

.final-label {
  right: 2rem;
  bottom: 2rem;
}

/* Credibility */
.credibility-grid {
  display: grid;
  max-width: 68rem;
  align-items: center;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 9vw, 8rem);
}

.carlos-photo {
  margin: 0;
}

.carlos-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.credibility-copy h2 {
  margin-bottom: 0.4rem;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 5.5vw, 5.8rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.credibility-copy .role {
  margin-bottom: 2.4rem;
  color: var(--moss);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.credibility-copy > p:not(.section-kicker):not(.role) {
  max-width: 40rem;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Footer */
.site-footer {
  padding: 5rem 0 2rem;
  background: var(--deep);
  color: var(--white);
}

.footer-top {
  display: grid;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.footer-brand {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.23em;
}

.footer-top p {
  margin: 0;
  color: rgba(250, 250, 247, 0.58);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-location {
  text-align: center;
}

.footer-location a {
  display: inline-block;
  margin-top: 0.35rem;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid rgba(250, 250, 247, 0.32);
  color: rgba(250, 250, 247, 0.72);
  font-size: 0.67rem;
}

.footer-top .text-link {
  justify-self: end;
}

.disclaimer {
  padding-block: 2.25rem;
  border-bottom: 1px solid var(--line-light);
}

.disclaimer p {
  max-width: 66rem;
  margin: 0;
  color: rgba(250, 250, 247, 0.45);
  font-size: 0.66rem;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  padding-top: 1.75rem;
  justify-content: space-between;
  color: rgba(250, 250, 247, 0.5);
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

/* Sticky WhatsApp */
.sticky-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  left: 1rem;
  z-index: 80;
  display: none;
  min-height: 3.4rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  transform: translateY(calc(100% + 3rem));
  background: #176b46;
  color: #fff;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.sticky-whatsapp.is-visible {
  transform: translateY(0);
}

.wa-mark {
  display: inline-grid;
  width: 1.5rem;
  height: 1.5rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  font-size: 0.68rem;
}

/* Lightbox */
.lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
}

.lightbox::backdrop {
  background: rgba(12, 13, 11, 0.94);
  backdrop-filter: blur(10px);
}

.lightbox-inner {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  padding: 3rem 5rem 2rem;
  align-items: center;
  grid-template-columns: 3rem minmax(0, 1fr) 3rem;
  gap: 1.5rem;
}

.lightbox figure {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  place-items: center;
  grid-template-rows: minmax(0, 1fr) auto;
}

.lightbox figure img {
  max-width: 100%;
  max-height: calc(100dvh - 8rem);
  object-fit: contain;
}

.lightbox.is-masterplan .lightbox-inner {
  padding: 1rem;
  grid-template-columns: 1fr;
  gap: 0;
}

.lightbox.is-masterplan .lightbox-nav {
  display: none;
}

.lightbox.is-masterplan figure img {
  width: calc(100vw - 2rem);
  max-width: none;
  height: calc(100dvh - 6.5rem);
  max-height: none;
  object-fit: contain;
  touch-action: pinch-zoom;
}

.lightbox figcaption {
  display: flex;
  width: 100%;
  max-width: 76rem;
  min-height: 2.5rem;
  padding-top: 0.9rem;
  justify-content: space-between;
  color: rgba(250, 250, 247, 0.66);
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-nav {
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  z-index: 2;
  padding: 0.75rem;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox-nav {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(250, 250, 247, 0.28);
  font-size: 1.2rem;
}

.lightbox-nav[hidden] {
  visibility: hidden;
}

.site-toast {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 200;
  max-width: min(24rem, calc(100% - 2.5rem));
  padding: 0.9rem 1rem;
  transform: translateY(calc(100% + 3rem));
  background: var(--ink);
  color: var(--white);
  font-size: 0.75rem;
  opacity: 0;
  transition:
    opacity 300ms ease,
    transform 300ms ease;
}

.site-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1100px) {
  .shell,
  .header-inner,
  .gallery-grid {
    width: min(calc(100% - 3.5rem), var(--shell));
  }

  .desktop-nav {
    gap: 1.35rem;
  }

  .model {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) minmax(27rem, 1fr);
  }

  .model-three {
    grid-template-columns: minmax(27rem, 1fr) minmax(0, 1fr);
  }

  .model-copy {
    padding: 5rem 3.25rem;
  }

  .model-number {
    margin-bottom: 3rem;
  }

  .payment-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem 0;
  }

  .gallery-item .image-button {
    min-height: 20rem;
  }

  .positioning-copy h2 {
    grid-column: 2 / 12;
  }
}

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

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

  .menu-toggle {
    display: grid;
    width: 2.9rem;
    height: 2.9rem;
    padding: 0.8rem 0.55rem;
    border: 0;
    background: transparent;
    cursor: pointer;
    place-content: center;
    gap: 0.42rem;
  }

  .menu-toggle span {
    display: block;
    width: 1.45rem;
    height: 1px;
    background: currentColor;
    transition: transform 350ms ease;
  }

  .site-header.is-menu-open .menu-toggle span:first-child {
    transform: translateY(0.23rem) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:last-child {
    transform: translateY(-0.23rem) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    padding: 8.5rem 1.75rem 2.5rem;
    flex-direction: column;
    transform: translateY(-102%);
    background: var(--paper);
    color: var(--ink);
    visibility: hidden;
    transition:
      transform 500ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 500ms;
  }

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

  .mobile-menu nav {
    display: flex;
    margin-bottom: auto;
    flex-direction: column;
    border-top: 1px solid var(--line);
  }

  .mobile-menu nav a {
    padding: 0.6rem 0 0.85rem;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: clamp(2.8rem, 9vw, 4rem);
    font-weight: 300;
    letter-spacing: -0.035em;
    line-height: 1;
  }

  .mobile-menu .button {
    width: 100%;
    margin-top: 2rem;
  }

  .mobile-menu p {
    margin: 1.25rem 0 0;
    color: var(--muted);
    font-size: 0.61rem;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

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

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

  .fact:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .proof-heading .section-kicker,
  .models-heading .section-kicker,
  .distribution-heading .section-kicker {
    grid-column: 1 / 4;
  }

  .proof-heading h2,
  .models-heading h2,
  .distribution-heading h2 {
    grid-column: 4 / 13;
  }

  .proof-intro,
  .models-heading > p:last-child,
  .distribution-heading > p:last-child {
    grid-column: 5 / 12;
  }

  .proof-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.5rem;
  }

  .proof-main {
    padding-left: 0;
  }

  .model,
  .model-three {
    grid-template-columns: 1fr;
  }

  .model-media,
  .model-three .model-media {
    min-height: min(76vw, 42rem);
    grid-column: 1;
    grid-row: 1;
  }

  .model-copy,
  .model-three .model-copy {
    width: 100%;
    max-width: 48rem;
    margin-inline: auto;
    grid-column: 1;
    grid-row: 2;
  }

  .gallery-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-filters {
    justify-content: flex-start;
  }

  .gallery-item-a,
  .gallery-item-d {
    grid-column: span 7;
  }

  .gallery-item-b,
  .gallery-item-c {
    grid-column: span 5;
  }

  .gallery-item-e,
  .gallery-item-f,
  .gallery-item-g {
    grid-column: span 4;
  }

  .positioning-copy h2 {
    grid-column: 1 / 13;
  }

  .positioning-text {
    grid-column: 1 / 13;
  }

  .features-layout {
    grid-template-columns: 1fr;
  }

  .features-heading h2 br {
    display: none;
  }

  .location-copy {
    padding-left: 0;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  :root {
    --section-space: 5.2rem;
  }

  .shell,
  .header-inner,
  .gallery-grid {
    width: calc(100% - 2.5rem);
  }

  .header-inner {
    min-height: 4.7rem;
  }

  .brand-subline {
    display: none;
  }

  .brand-word {
    font-size: 0.98rem;
  }

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

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(16, 18, 15, 0.82) 0%, rgba(16, 18, 15, 0.38) 52%, rgba(16, 18, 15, 0.18) 100%),
      linear-gradient(90deg, rgba(16, 18, 15, 0.25), transparent 75%);
  }

  .hero-content {
    min-height: 100svh;
    padding-top: 7rem;
    padding-bottom: 2rem;
  }

  .hero .eyebrow {
    margin-bottom: 0.9rem;
    font-size: 0.59rem;
  }

  .hero h1 {
    max-width: 10ch;
    margin-bottom: 0.75rem;
    font-size: clamp(3.3rem, 14.5vw, 4.3rem);
    line-height: 0.86;
  }

  .hero-price {
    margin-bottom: 0.8rem;
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }

  .hero-support {
    max-width: 32rem;
    margin-bottom: 1.35rem;
    font-size: 0.79rem;
    line-height: 1.55;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
  }

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

  .hero-actions .text-link {
    width: max-content;
  }

  .hero-label {
    top: 5.6rem;
    right: 0;
    bottom: auto;
  }

  .facts {
    padding-block: 0.75rem;
  }

  .facts-grid {
    width: calc(100% - 2.5rem);
  }

  .fact {
    min-height: 7.7rem;
    padding: 1.6rem 1rem;
  }

  .fact:first-child,
  .fact:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .fact:nth-child(2),
  .fact:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .fact strong {
    font-size: 1.25rem;
  }

  .proof-heading,
  .models-heading,
  .distribution-heading,
  .positioning-copy {
    display: block;
  }

  .proof-heading h2,
  .models-heading h2,
  .distribution-heading h2 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .proof-intro,
  .models-heading > p:last-child,
  .distribution-heading > p:last-child {
    max-width: 31rem;
    margin-top: 2rem;
    padding-top: 0;
  }

  .proof-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .proof-main {
    width: calc(100% - 2.5rem);
    margin-inline: auto;
  }

  .proof-main .image-button {
    aspect-ratio: 4 / 5;
  }

  .proof-grid figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .proof-support {
    padding-top: 0;
    gap: 2.5rem;
  }

  .proof-support figure:first-child {
    width: calc(100% - 1.25rem);
    margin-right: 0;
    margin-left: auto;
  }

  .proof-support figure:last-child {
    width: calc(100% - 2.5rem);
    margin-inline: auto;
  }

  .proof-support figcaption {
    padding-right: 1.25rem;
  }

  .model-media,
  .model-three .model-media {
    min-height: 29rem;
  }

  .model-copy,
  .model-three .model-copy {
    padding: 4.5rem 1.25rem 5rem;
  }

  .model-number {
    margin-bottom: 2.6rem;
  }

  .model-copy h3 {
    font-size: clamp(3.3rem, 14vw, 4.3rem);
  }

  .spec-list {
    grid-template-columns: 1fr;
  }

  .spec-list li,
  .spec-list li:nth-child(odd),
  .spec-list li:nth-child(even) {
    padding: 0.9rem 0;
    border-right: 0;
  }

  .delivery-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.55rem;
  }

  .delivery-line strong {
    text-align: left;
  }

  .payment-four,
  .payment-three-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .payment-steps li {
    min-height: 4.9rem;
    padding: 0.9rem 0 0.9rem 2rem;
    border-top: 0;
    border-left: 1px solid currentColor;
  }

  .payment-steps li::before {
    top: 1.2rem;
    left: -0.24rem;
  }

  .payment-value {
    font-size: 1.35rem;
  }

  .model-copy .button {
    width: 100%;
  }

  .gallery-heading {
    width: calc(100% - 2.5rem);
  }

  .gallery-heading h2 {
    font-size: 3.6rem;
  }

  .gallery-filters {
    gap: 0.8rem 1.25rem;
  }

  .gallery-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .gallery-item,
  .gallery-item-a,
  .gallery-item-b,
  .gallery-item-c,
  .gallery-item-d,
  .gallery-item-e,
  .gallery-item-f,
  .gallery-item-g {
    grid-column: 1;
  }

  .gallery-item .image-button {
    min-height: 0;
  }

  .gallery-item-a .image-button,
  .gallery-item-b .image-button,
  .gallery-item-c .image-button,
  .gallery-item-d .image-button,
  .gallery-item-e .image-button {
    aspect-ratio: 4 / 3;
  }

  .gallery-item-f .image-button,
  .gallery-item-g .image-button {
    aspect-ratio: 4 / 5;
  }

  .positioning-copy h2 {
    font-size: clamp(3rem, 12vw, 4.2rem);
    line-height: 0.82;
  }

  .positioning-copy h2 em {
    display: block;
    margin: 0.08em 0 0 0.25em;
  }

  .positioning-text {
    display: grid;
    width: 100%;
    margin: 2.5rem 0 0;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .positioning-media {
    height: 70vh;
    min-height: 31rem;
  }

  .positioning-media img {
    object-position: 62% center;
  }

  .features-layout {
    gap: 3.5rem;
  }

  .features-heading h2 {
    font-size: 4rem;
  }

  .features-list li {
    min-height: 5.4rem;
    grid-template-columns: 2.7rem 1fr;
  }

  .features-list strong {
    font-size: 1.42rem;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .plan-button {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .plan-button img {
    padding: 1rem;
  }

  .masterplan-heading {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .masterplan-heading h2 {
    font-size: 4.4rem;
  }

  .masterplan-frame {
    width: 100%;
    padding: 0.6rem;
    border-right: 0;
    border-left: 0;
  }

  .masterplan-button {
    min-height: 0;
    aspect-ratio: 923 / 986;
  }

  .masterplan-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .masterplan-zoom {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .location-copy h2 {
    font-size: 5rem;
  }

  .location-place {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }

  .location-media {
    width: calc(100% + 2.5rem);
    margin-left: -1.25rem;
  }

  .location-media img {
    height: 75vh;
    min-height: 34rem;
  }

  .location-media figcaption {
    padding-inline: 1.25rem;
  }

  .final-cta {
    min-height: 55rem;
  }

  .final-cta-inner {
    padding-block: 5rem;
    gap: 3rem;
  }

  .final-cta h2 {
    font-size: clamp(3.7rem, 16vw, 5rem);
  }

  .final-cta-details li {
    font-size: 1.1rem;
  }

  .final-cta-media img {
    object-position: 68% center;
  }

  .credibility-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .carlos-photo {
    width: 78%;
  }

  .credibility-copy h2 {
    font-size: 4.1rem;
  }

  .footer-top {
    align-items: flex-start;
    grid-template-columns: 1fr auto;
    gap: 2rem;
  }

  .footer-location {
    grid-column: 1 / 3;
    grid-row: 2;
    text-align: left;
  }

  .sticky-whatsapp {
    display: flex;
  }

  .lightbox-inner {
    padding: 4.5rem 1rem 1rem;
    grid-template-columns: 1fr;
  }

  .lightbox figure img {
    max-height: calc(100dvh - 9rem);
  }

  .lightbox-nav {
    position: absolute;
    bottom: 1rem;
    z-index: 2;
    background: rgba(12, 13, 11, 0.68);
  }

  .lightbox-prev {
    left: 1rem;
  }

  .lightbox-next {
    right: 1rem;
  }

  .lightbox-close {
    top: 0.6rem;
    right: 0.6rem;
  }

  .lightbox figcaption {
    padding-right: 4rem;
    padding-bottom: 0.4rem;
  }

  .site-toast {
    right: 1rem;
    bottom: calc(5.2rem + env(safe-area-inset-bottom));
    left: 1rem;
    max-width: none;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: clamp(3.1rem, 14vw, 3.75rem);
  }

  .hero-support {
    max-width: 22rem;
  }

  .fact strong {
    font-size: 1.1rem;
  }

  .proof-heading h2,
  .models-heading h2,
  .distribution-heading h2 {
    font-size: 3.25rem;
  }

  .gallery-heading h2 {
    font-size: 3.25rem;
  }

  .positioning-copy h2 {
    font-size: 3.3rem;
  }

  .features-heading h2,
  .masterplan-heading h2 {
    font-size: 3.8rem;
  }

  .location-copy h2 {
    font-size: 4.5rem;
  }

  .final-cta h2 {
    font-size: 3.8rem;
  }

  .carlos-photo {
    width: 88%;
  }
}

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

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

  .js .reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
  }
}
