:root {
  --ink: #343a33;
  --ivory: #f3efe7;
  --vineyard: #3d523d;
  --earth: #806f40;
  --stone: #958f73;
  --sky: #90c3e6;
  --mist: #e5eff2;
  --display: Canela, "Tiempos Headline", Georgia, "Times New Roman", serif;
  --body:
    "Suisse Intl", "Neue Haas Grotesk", "Helvetica Neue", Arial, sans-serif;
  --line: rgba(52, 58, 51, 0.28);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
a,
button,
input {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--earth);
  outline-offset: 6px;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
figure,
p,
h1,
h2,
h3 {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 400;
}
h1,
h2 {
  font-family: var(--display);
  line-height: 1.06;
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(2.6rem, 4.6vw, 4.8rem);
}
em {
  font-weight: 400;
}
p {
  max-width: 62ch;
}
.wrap {
  max-width: 1440px;
  margin-inline: auto;
  width: calc(100% - 128px);
}
.section {
  padding-block: 160px;
}
.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.17em;
  line-height: 1.5;
}
.section-heading .eyebrow {
  margin-bottom: 40px;
}
.masthead {
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  color: var(--ivory);
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid rgba(243, 239, 231, 0.3);
}
.wordmark {
  font-size: 1rem;
  letter-spacing: 0.16em;
  line-height: 1.25;
  display: inline-block;
}
.wordmark span {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.23em;
  margin-top: 8px;
}
.masthead nav {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 0.875rem;
}
.nav-cta {
  border-bottom: 1px solid currentColor;
  padding: 8px 0;
}
.nav-cta span {
  margin-left: 24px;
}
.hero {
  min-height: 760px;
  height: 100svh;
  max-height: 1150px;
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  background: var(--ink);
}
.hero-image {
  position: absolute;
  inset: -32px 0;
  will-change: transform;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(30, 35, 29, 0.78),
      rgba(30, 35, 29, 0.3) 48%,
      rgba(30, 35, 29, 0.02)
    ),
    linear-gradient(
      0deg,
      rgba(30, 35, 29, 0.8),
      transparent 25%,
      transparent 65%,
      rgba(30, 35, 29, 0.6)
    );
}
.hero-copy {
  position: absolute;
  inset: auto 64px 150px;
  max-width: 900px;
}
.hero-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.small-rule {
  width: 40px;
  height: 1px;
  background: currentColor;
}
.hero h1 {
  font-size: clamp(3.3rem, 5.6vw, 6.2rem);
  text-wrap: balance;
}
.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  margin-top: 40px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(243, 239, 231, 0.7);
  font-size: 0.9375rem;
}
.hero-foot {
  position: absolute;
  inset: auto 48px 32px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  font-size: 0.75rem;
}
.hero-foot > span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.hero-foot p {
  font-size: 0.75rem;
}
.hero-foot a span {
  margin-left: 16px;
}
.plot {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0 96px;
}
.plot-intro {
  align-self: end;
  max-width: 430px;
  font-size: 1.125rem;
}
.plot-intro p + p {
  margin-top: 24px;
  font-size: 0.875rem;
}
.facts {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1.25fr 1.25fr;
  margin: 64px 0;
  gap: 40px;
  border-block: 1px solid var(--line);
  padding: 32px 0;
}
.facts dt {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}
.facts dd {
  margin: 0;
  font-size: clamp(1.3rem, 2.1vw, 2.1rem);
  line-height: 1.25;
}
.facts dd span {
  font-size: 1rem;
}
.facts small {
  display: block;
  font-size: 0.8125rem;
  margin-top: 12px;
}
.site-pair {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}
.site-pair figure:nth-child(2) {
  margin-top: 96px;
}
.site-pair img {
  height: 560px;
  object-fit: cover;
  object-position: center 55%;
}
.site-pair figure:nth-child(2) img {
  height: 440px;
}
.site-pair figcaption {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding-top: 16px;
  font-size: 0.75rem;
}
.photo-note {
  grid-column: 1/-1;
  margin-top: 24px;
  font-size: 0.75rem;
  max-width: 85ch;
}
.view-chapter {
  position: relative;
  background: var(--ink);
  color: var(--ivory);
}
.view-chapter > img {
  height: 80svh;
  max-height: 950px;
  min-height: 420px;
  object-fit: cover;
}
.view-chapter figcaption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 48px;
  font-size: 0.75rem;
}
.view-chapter figcaption span:first-child {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.vision-intro {
  margin-top: 40px;
  margin-left: auto;
  width: 43%;
  font-size: 1.125rem;
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.principles h3 {
  font-family: var(--display);
  font-size: 1.75rem;
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin: 16px 0;
}
.principles p {
  font-size: 0.9375rem;
  max-width: 35ch;
}
.principle-number {
  font-size: 0.8125rem;
  display: block;
  margin-top: 32px;
  color: var(--earth);
}
.story-crop {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.1;
  background: var(--ink);
}
.story-crop img {
  position: absolute;
  max-width: none;
  width: 318%;
  height: auto;
}
.ascent img {
  left: -6.1%;
  top: -36.9%;
}
.estate img {
  left: -110.3%;
  top: -151.2%;
}
.interior img {
  left: -212.3%;
  top: -151.2%;
}
.access {
  background: var(--ink);
  color: var(--ivory);
  padding: 128px 0;
}
.access h2 {
  margin-top: 40px;
  font-size: clamp(2.8rem, 5.1vw, 5.2rem);
}
.access-bottom {
  display: flex;
  gap: 64px;
  justify-content: space-between;
  align-items: end;
  margin-top: 64px;
}
.access-bottom p {
  max-width: 45ch;
  font-size: 1rem;
}
.text-link {
  border-bottom: 1px solid currentColor;
  padding: 12px 0;
  display: flex;
  gap: 40px;
  white-space: nowrap;
}
.briefing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
}
.briefing h2 {
  margin: 32px 0;
}
.briefing-copy > p:not(.eyebrow) {
  font-size: 0.9375rem;
}
.briefing .demo-note {
  margin-top: 40px;
  font-size: 0.8125rem;
  max-width: 32ch;
}
.field {
  margin-bottom: 32px;
}
.field label {
  font-size: 0.875rem;
  display: block;
}
.field label span {
  font-size: 0.75rem;
  margin-left: 8px;
}
.field input {
  display: block;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  border-radius: 0;
  color: var(--ink);
  width: 100%;
  min-height: 48px;
  padding: 8px 0;
  font-size: 1rem;
}
.field input:focus {
  border-bottom-color: var(--ink);
}
fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
button {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: var(--ivory);
  padding: 20px 24px;
  width: 100%;
  cursor: pointer;
  font-size: 0.9375rem;
}
button:hover {
  background: var(--vineyard);
}
button:disabled {
  cursor: default;
  opacity: 0.6;
}
.form-status {
  font-size: 0.875rem;
  margin-top: 24px;
  max-width: 48ch;
}
.form-status:empty {
  margin: 0;
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
footer p,
footer > a:last-child {
  font-size: 0.75rem;
}
.skip {
  position: fixed;
  z-index: 10;
  left: 16px;
  top: -100px;
  background: var(--ivory);
  padding: 16px;
}
.skip:focus {
  top: 16px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.reveal.in-view {
  animation: reveal 0.7s ease-out both;
}
@keyframes reveal {
  from {
    opacity: 0.5;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 1700px) {
  .hero-copy {
    left: max(64px, calc((100vw - 1440px) / 2));
  }
}
@media (max-width: 1000px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .masthead {
    padding: 24px 32px;
  }
  .masthead nav {
    gap: 24px;
  }
  .hero-copy {
    left: 32px;
    right: 32px;
  }
  .hero-foot {
    left: 32px;
    right: 32px;
  }
  .plot,
  .briefing {
    gap: 40px;
  }
  .facts {
    gap: 24px;
  }
  .site-pair {
    gap: 24px;
  }
  .site-pair img {
    height: 440px;
  }
  .site-pair figure:nth-child(2) img {
    height: 360px;
  }
  .principles h3 {
    font-size: 1.5rem;
  }
  .access-bottom {
    gap: 40px;
  }
}
@media (max-width: 700px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .section {
    padding-block: 96px;
  }
  .masthead {
    padding: 24px 16px;
    gap: 16px;
    align-items: start;
  }
  .wordmark {
    font-size: 0.8125rem;
  }
  .wordmark span {
    font-size: 0.5625rem;
  }
  .masthead nav > a:not(.nav-cta) {
    display: none;
  }
  .masthead nav {
    font-size: 0.8125rem;
  }
  .nav-cta {
    padding: 0 0 8px;
  }
  .nav-cta span {
    margin-left: 8px;
  }
  .hero {
    min-height: 700px;
    height: 100svh;
    max-height: 1000px;
  }
  .hero-image img {
    object-position: 61% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(30, 35, 29, 0.55), rgba(30, 35, 29, 0.12)),
      linear-gradient(
        0deg,
        rgba(30, 35, 29, 0.88),
        rgba(30, 35, 29, 0.16) 55%,
        rgba(30, 35, 29, 0.65)
      );
  }
  .hero-copy {
    left: 24px;
    right: 24px;
    bottom: 150px;
  }
  .hero-copy .eyebrow {
    font-size: 0.625rem;
    gap: 12px;
    margin-bottom: 24px;
  }
  .small-rule {
    width: 16px;
  }
  .hero h1 {
    font-size: clamp(2.65rem, 10.5vw, 4.5rem);
    letter-spacing: -0.05em;
  }
  .hero-link {
    font-size: 0.875rem;
    gap: 32px;
    margin-top: 32px;
  }
  .hero-foot {
    left: 24px;
    right: 24px;
    bottom: 24px;
    display: grid;
    gap: 12px;
  }
  .hero-foot > a {
    display: none;
  }
  .hero-foot p {
    font-size: 0.6875rem;
  }
  .hero-foot > span {
    font-size: 0.625rem;
  }
  .plot,
  .briefing {
    display: block;
  }
  .plot-intro {
    margin-top: 32px;
    font-size: 1rem;
  }
  .section-heading .eyebrow {
    margin-bottom: 24px;
  }
  .facts {
    grid-template-columns: 1fr;
    margin: 40px 0;
    gap: 24px;
    padding: 24px 0;
  }
  .facts > div {
    display: grid;
    grid-template-columns: 100px 1fr;
    column-gap: 16px;
  }
  .facts dt {
    margin: 4px 0 0;
    font-size: 0.6875rem;
  }
  .facts dd {
    font-size: 1.35rem;
  }
  .facts small {
    grid-column: 2;
    margin-top: 4px;
    font-size: 0.75rem;
  }
  .site-pair {
    gap: 32px;
    grid-template-columns: 1fr;
  }
  .site-pair img {
    height: 470px;
  }
  .site-pair figure:nth-child(2) {
    margin: 0;
  }
  .site-pair figure:nth-child(2) img {
    height: 350px;
  }
  .site-pair figcaption {
    font-size: 0.6875rem;
  }
  .view-chapter > img {
    height: 65svh;
    min-height: 420px;
    object-position: 61% center;
  }
  .view-chapter figcaption {
    padding: 20px 16px;
    display: grid;
    gap: 8px;
    font-size: 0.6875rem;
  }
  .vision-intro {
    width: auto;
    margin: 32px 0 0;
    font-size: 1rem;
  }
  .principles {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 40px;
  }
  .principles h3 {
    font-size: 1.875rem;
  }
  .principle-number {
    margin-top: 24px;
  }
  .story-crop {
    aspect-ratio: 1.1;
  }
  .principles p {
    max-width: 42ch;
  }
  .access {
    padding: 96px 0;
  }
  .access h2 {
    font-size: 2.8rem;
    margin-top: 32px;
  }
  .access-bottom {
    display: block;
    margin-top: 40px;
  }
  .text-link {
    display: inline-flex;
    margin-top: 32px;
    font-size: 0.875rem;
  }
  .briefing form {
    margin-top: 48px;
  }
  .briefing .demo-note {
    max-width: 40ch;
    margin-top: 24px;
  }
  footer {
    display: grid;
    padding: 32px 0;
    gap: 24px;
  }
  footer > a:last-child {
    justify-self: start;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .hero-image {
    transform: none !important;
    will-change: auto;
  }
}
/* Crop only within the supplied storyboard panels; no generated replacement imagery. */
.story-crop img {
  width: 330%;
}
.ascent img {
  left: -8%;
  top: -40.1%;
}
.estate img {
  left: -115.3%;
  top: -157.4%;
}
.interior img {
  left: -220.4%;
  top: -157.4%;
}
.wordmark span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}
.eyebrow,
.hero-foot > span,
.hero-foot p,
.view-chapter figcaption,
.site-pair figcaption,
.facts dt {
  font-size: 0.75rem;
}
h1,
h2,
h3 {
  overflow-wrap: break-word;
}
.hero-copy .eyebrow {
  flex-wrap: wrap;
  font-size: 0.75rem;
}
.field label {
  font-size: 0.875rem;
}
.principles p {
  font-size: 1rem;
}
@media (max-width: 700px) {
  .hero {
    min-height: max(760px, 48rem);
  }
  .masthead {
    flex-wrap: wrap;
  }
  .masthead .wordmark span {
    font-size: 0.75rem;
  }
  .hero-copy {
    bottom: 160px;
  }
  .hero-foot {
    font-size: 0.75rem;
  }
  .hero-foot > span {
    font-size: 0.75rem;
  }
  .hero h1 {
    font-size: clamp(2.4rem, 10.5vw, 4.5rem);
  }
}
