:root {
  --ink: #0b1711;
  --ink-2: #11251a;
  --ink-3: #193325;
  --ivory: #f4efe4;
  --paper: #fbf8f1;
  --paper-2: #eee6d7;
  --brass: #c29a4a;
  --brass-light: #e2c78f;
  --oxblood: #6d2f2d;
  --sage: #91a092;
  --muted: #667269;
  --line-dark: rgba(244, 239, 228, 0.13);
  --line-light: rgba(11, 23, 17, 0.14);
  --shadow: 0 28px 80px rgba(6, 18, 12, 0.16);
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 4px;
}

::selection {
  background: var(--brass);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--ivory);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

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

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--brass);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow.light {
  color: var(--brass-light);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading h2,
.legacy-copy h2,
.builder-copy h2,
.realty-cta h2,
.contact-panel h2,
.page-intro h1,
.story-block h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 380;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.section-heading h2,
.legacy-copy h2,
.builder-copy h2,
.realty-cta h2,
.contact-panel h2,
.story-block h2 {
  font-size: clamp(2.25rem, 4.4vw, 4.15rem);
}

.section-heading p,
.legacy-copy > p,
.builder-copy > p,
.story-block > p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 12px 22px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease,
    transform 0.25s ease;
}

.button:hover {
  transform: none;
}

.button-primary {
  background: var(--brass);
  color: var(--ink);
}

.button-primary:hover {
  background: var(--brass-light);
}

.button-outline {
  border-color: rgba(244, 239, 228, 0.35);
  color: var(--ivory);
}

.button-outline:hover {
  border-color: var(--brass-light);
  color: var(--brass-light);
}

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

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

.button-quiet {
  border-color: var(--line-light);
}

.button-quiet:hover {
  border-color: var(--ink);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  color: var(--ivory);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.inner-header {
  border-color: var(--line-dark);
  background: rgba(11, 23, 17, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 520;
  letter-spacing: 0.19em;
  white-space: nowrap;
}

.wordmark span {
  color: var(--brass-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav > a:not(.button) {
  position: relative;
  color: rgba(244, 239, 228, 0.78);
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--brass);
  content: "";
  transition: transform 0.22s ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a[aria-current="page"]:not(.button) {
  color: var(--ivory);
}

.site-nav > a:not(.button):hover::after,
.site-nav > a[aria-current="page"]:not(.button)::after {
  transform: scaleX(1);
}

.language-link {
  border: 1px solid rgba(244, 239, 228, 0.22);
  border-radius: 2px;
  padding: 7px 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 239, 228, 0.22);
  border-radius: 50%;
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 0.2s ease;
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

/* Hero */
.group-hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
}

.group-hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(194, 154, 74, 0.08), transparent 58%);
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 860px;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.76fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: center;
  padding-top: 132px;
  padding-bottom: 82px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6.5vw, 6.35rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.hero-copy h1 em {
  color: var(--brass-light);
  font-style: normal;
  font-weight: 500;
}

.hero-lede {
  max-width: 660px;
  margin: 30px 0 0;
  color: rgba(244, 239, 228, 0.74);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  font-weight: 350;
}

.hero-lede strong {
  color: var(--ivory);
  font-weight: 550;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.hero-modern,
.hero-archive {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(244, 239, 228, 0.16);
  box-shadow: var(--shadow);
}

.hero-modern {
  inset: 0 0 72px 42px;
  border-radius: 3px;
}

.hero-modern::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(6, 18, 12, 0.66));
  content: "";
}

.hero-modern img,
.hero-archive img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero-archive {
  width: 42%;
  height: 43%;
  bottom: 0;
  left: 0;
  z-index: 2;
  transform: rotate(-1deg);
  border: 4px solid var(--paper);
  background: var(--paper-2);
}

.hero-caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 46%;
  z-index: 3;
  color: rgba(244, 239, 228, 0.76);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-align: right;
  text-transform: uppercase;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink-2);
  color: var(--ivory);
}

.proof-item {
  padding: 30px clamp(18px, 4vw, 52px);
}

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

.proof-item b {
  display: block;
  margin-bottom: 5px;
  color: var(--brass-light);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 480;
}

.proof-item span {
  color: rgba(244, 239, 228, 0.62);
  font-size: 0.77rem;
  letter-spacing: 0.06em;
}

/* Ventures */
.ventures {
  padding: 126px 0;
}

.venture-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.venture-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 3px;
  background: var(--paper-2);
  padding: 30px;
  transition: border-color 0.2s ease;
}

.venture-card:hover {
  border-color: rgba(194, 154, 74, 0.55);
  box-shadow: none;
}

.venture-card.featured {
  min-height: 500px;
  grid-column: span 8;
  color: var(--ivory);
  background: var(--ink);
}

.venture-card.featured::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 18, 12, 0.95) 0%, rgba(6, 18, 12, 0.7) 48%, rgba(6, 18, 12, 0.2)),
    url("img/re.jpg") center / cover no-repeat;
  content: "";
}

.venture-card.originals {
  min-height: 500px;
  grid-column: span 4;
  color: var(--ivory);
  background: var(--oxblood);
}

.venture-card.originals::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(46, 14, 12, 0.24), rgba(46, 14, 12, 0.92)),
    url("images/heritage/american-eagles-story.webp") center 32% / cover no-repeat;
  content: "";
  opacity: 0.86;
}

.venture-top,
.venture-bottom {
  position: relative;
  z-index: 2;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.status::before {
  width: 2px;
  height: 14px;
  border-radius: 0;
  background: currentColor;
  content: "";
}

.status.active {
  color: #a8d5ad;
}

.status.building {
  color: var(--brass-light);
}

.status.development {
  color: #bfaaa4;
}

.venture-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 3.1rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.venture-card p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.featured p,
.originals p {
  color: rgba(244, 239, 228, 0.72);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: var(--brass);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.featured .text-link,
.originals .text-link {
  color: var(--brass-light);
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.venture-disclaimer {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
}

/* Legacy preview */
.legacy-preview {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
  padding: 126px 0;
}

.legacy-preview::after {
  position: absolute;
  width: 520px;
  height: 520px;
  top: -220px;
  right: -160px;
  border: 1px solid rgba(194, 154, 74, 0.2);
  border-radius: 50%;
  content: "";
}

.legacy-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}

.legacy-copy h2,
.legacy-copy > p {
  color: var(--ivory);
}

.legacy-copy > p {
  margin-top: 26px;
  color: rgba(244, 239, 228, 0.68);
}

.legacy-quote {
  margin: 30px 0 0;
  border-left: 1px solid var(--brass);
  padding-left: 22px;
  color: var(--brass-light);
  font-family: var(--serif);
  font-size: 1.26rem;
  font-style: normal;
  line-height: 1.45;
}

.archive-collage {
  position: relative;
  min-height: 660px;
}

.archive-card {
  position: absolute;
  overflow: hidden;
  border: 8px solid var(--paper);
  background: var(--paper-2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
}

.archive-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-card.one {
  width: 60%;
  height: 74%;
  top: 0;
  left: 0;
  transform: rotate(-2deg);
}

.archive-card.two {
  width: 54%;
  height: 66%;
  right: 0;
  bottom: 0;
  transform: rotate(2deg);
}

.archive-stamp {
  position: absolute;
  right: 8%;
  top: 7%;
  z-index: 5;
  display: grid;
  width: 114px;
  height: 114px;
  place-items: center;
  transform: rotate(8deg);
  border: 1px solid var(--brass);
  border-radius: 50%;
  color: var(--brass-light);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

/* Archive proof */
.proof-archive {
  padding: 126px 0;
  background: var(--paper-2);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.proof-card {
  border: 1px solid var(--line-light);
  background: var(--paper);
}

.proof-card figure {
  margin: 0;
}

.proof-image {
  aspect-ratio: 4 / 4.5;
  overflow: hidden;
  background: #d9d1c3;
}

.proof-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.65, 0.2, 1);
}

.proof-card:hover .proof-image img {
  transform: scale(1.025);
}

.proof-card figcaption {
  padding: 22px;
}

.proof-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--brass);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.proof-card h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.48rem;
  font-weight: 450;
  line-height: 1.15;
}

.proof-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.archive-note {
  max-width: 820px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

/* Builder */
.builder {
  padding: 126px 0;
}

.builder-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.56fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}

.builder-mark {
  position: relative;
  display: flex;
  aspect-ratio: 1;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line-light);
  border-radius: 2px;
  background: var(--ink);
  color: var(--ivory);
  padding: clamp(28px, 4vw, 48px);
}

.builder-mark span,
.builder-mark small {
  color: var(--brass-light);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.5;
  text-transform: uppercase;
}

.builder-mark strong {
  font-family: var(--serif);
  font-size: clamp(3rem, 6.7vw, 5.7rem);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.builder-mark small {
  color: rgba(244, 239, 228, 0.58);
}

.builder-copy > p {
  margin-top: 26px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 38px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.principle {
  background: var(--paper);
  padding: 20px;
}

.principle b {
  display: block;
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
}

.principle span {
  color: var(--muted);
  font-size: 0.75rem;
}

/* Realty conversion */
.realty-cta {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--ivory);
}

.realty-cta::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 18, 12, 0.08), rgba(6, 18, 12, 0.9)),
    url("img/hero.jpg") center / cover no-repeat;
  content: "";
}

.realty-content {
  position: relative;
  z-index: 2;
  max-width: 770px;
  padding-top: 100px;
  padding-bottom: 82px;
}

.realty-content p {
  max-width: 580px;
  margin: 24px 0 0;
  color: rgba(244, 239, 228, 0.75);
}

/* Contact and footer */
.contact {
  padding: 110px 0;
  background: var(--ink-2);
  color: var(--ivory);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 54px;
  align-items: end;
}

.contact-panel h2 {
  max-width: 780px;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.contact-options a:not(.button) {
  color: rgba(244, 239, 228, 0.68);
  font-size: 0.84rem;
}

.contact-options a:not(.button):hover {
  color: var(--brass-light);
}

.site-footer {
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
  color: var(--ivory);
  padding: 54px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 48px;
}

.footer-copy {
  max-width: 410px;
  margin: 16px 0 0;
  color: rgba(244, 239, 228, 0.57);
  font-size: 0.8rem;
}

.footer-heading {
  margin: 0 0 14px;
  color: var(--brass-light);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a,
.footer-links span {
  color: rgba(244, 239, 228, 0.65);
  font-size: 0.78rem;
}

.footer-links a:hover {
  color: var(--ivory);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 44px;
  border-top: 1px solid var(--line-dark);
  padding-top: 18px;
  color: rgba(244, 239, 228, 0.42);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
}

/* Inner pages */
.inner-main {
  min-height: 100vh;
  background: var(--paper);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
  padding: 190px 0 100px;
}

.page-hero::after {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -140px;
  bottom: -310px;
  border: 1px solid rgba(194, 154, 74, 0.22);
  border-radius: 50%;
  content: "";
}

.page-intro {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.page-intro h1 {
  color: var(--ivory);
  font-size: clamp(3.5rem, 8vw, 7.7rem);
}

.page-intro p {
  max-width: 710px;
  margin: 28px 0 0;
  color: rgba(244, 239, 228, 0.68);
  font-size: 1.08rem;
}

.timeline-section,
.story-section,
.archive-page,
.originals-section {
  padding: 112px 0;
}

.timeline {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.timeline::before {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 104px;
  width: 1px;
  background: var(--line-light);
  content: "";
}

.timeline-entry {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 54px;
  padding: 0 0 74px;
}

.timeline-entry:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: relative;
  color: var(--brass);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  text-align: right;
}

.timeline-marker::after {
  position: absolute;
  width: 11px;
  height: 11px;
  top: 9px;
  right: -33px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 1px var(--brass);
  content: "";
}

.timeline-content h2 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 430;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.timeline-content p {
  margin: 0;
  color: var(--muted);
}

.source-tag {
  display: inline-block;
  margin-top: 14px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1fr);
  gap: 76px;
  align-items: center;
}

.story-block > p {
  margin-top: 24px;
}

.story-image {
  border: 10px solid var(--paper-2);
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
}

.source-key {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 48px;
  border: 1px solid var(--line-light);
  background: var(--line-light);
}

.source-key div {
  background: var(--paper);
  padding: 20px;
}

.source-key b {
  display: block;
  margin-bottom: 4px;
  font-size: 0.74rem;
}

.source-key span {
  color: var(--muted);
  font-size: 0.71rem;
}

.archive-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.archive-page-card {
  border: 1px solid var(--line-light);
  background: #fff;
}

.archive-page-card figure {
  margin: 0;
}

.archive-page-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.archive-page-card figcaption {
  padding: 20px;
}

.archive-page-card h2 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 450;
}

.archive-page-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.77rem;
}

.archive-page-card a {
  color: var(--oxblood);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.originals-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(350px, 0.6fr);
  gap: 80px;
  align-items: center;
}

.originals-art {
  position: relative;
  transform: rotate(1.5deg);
  border: 10px solid var(--paper);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.originals-art img {
  width: 100%;
}

.originals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 54px;
}

.originals-card {
  border: 1px solid var(--line-light);
  background: var(--paper-2);
  padding: 28px;
}

.originals-card small {
  color: var(--brass);
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.originals-card h3 {
  margin: 16px 0 10px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 450;
  line-height: 1.1;
}

.originals-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.compliance-note {
  margin-top: 44px;
  border-left: 3px solid var(--brass);
  background: #eee5d5;
  padding: 22px 24px;
  color: var(--muted);
  font-size: 0.8rem;
}

/* Progressive reveal */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal,
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 17px;
  }

  .site-nav > a:not(.button) {
    font-size: 0.65rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.66fr);
    gap: 40px;
  }

  .venture-card {
    grid-column: span 6;
  }

  .venture-card.featured {
    grid-column: span 8;
  }

  .venture-card.originals {
    grid-column: span 4;
  }
}

@media (max-width: 880px) {
  .shell {
    width: min(calc(100% - 32px), var(--page));
  }

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

  .site-nav {
    position: fixed;
    inset: 78px 0 auto;
    display: grid;
    max-height: calc(100vh - 78px);
    transform: translateY(-130%);
    overflow: auto;
    background: var(--ink);
    padding: 28px 24px 36px;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav > a:not(.button) {
    border-bottom: 1px solid var(--line-dark);
    padding: 13px 0;
    font-size: 0.76rem;
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    margin-top: 10px;
  }

  .language-link {
    border: 0;
    border-radius: 0;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 158px;
  }

  .hero-copy h1 {
    max-width: 720px;
  }

  .hero-visual {
    width: min(100%, 620px);
    min-height: 570px;
    margin-inline: auto;
  }

  .section-heading,
  .legacy-grid,
  .builder-grid,
  .story-grid,
  .contact-panel,
  .originals-hero-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 24px;
  }

  .legacy-grid,
  .builder-grid,
  .story-grid,
  .originals-hero-grid {
    gap: 54px;
  }

  .venture-card,
  .venture-card.featured,
  .venture-card.originals {
    grid-column: span 12;
  }

  .venture-card.featured,
  .venture-card.originals {
    min-height: 440px;
  }

  .builder-mark {
    max-width: 440px;
  }

  .contact-options {
    margin-top: 4px;
  }

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

@media (max-width: 620px) {
  .header-inner {
    min-height: 70px;
  }

  .site-nav {
    inset: 70px 0 auto;
    max-height: calc(100vh - 70px);
  }

  .group-hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 130px;
    padding-bottom: 58px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 14.5vw, 4.8rem);
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-modern {
    inset: 0 0 54px 24px;
  }

  .hero-archive {
    width: 46%;
    height: 42%;
    border-width: 5px;
  }

  .hero-caption {
    right: 12px;
    bottom: 14px;
    font-size: 0.54rem;
  }

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

  .proof-item + .proof-item {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .ventures,
  .legacy-preview,
  .proof-archive,
  .builder,
  .timeline-section,
  .story-section,
  .archive-page,
  .originals-section {
    padding: 86px 0;
  }

  .venture-card {
    min-height: 300px;
    padding: 24px;
  }

  .venture-card.featured,
  .venture-card.originals {
    min-height: 390px;
  }

  .archive-collage {
    min-height: 500px;
  }

  .proof-grid,
  .archive-page-grid,
  .originals-grid,
  .principles,
  .source-key,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-image {
    aspect-ratio: 4 / 4.2;
  }

  .realty-cta {
    min-height: 580px;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .page-hero {
    padding: 150px 0 76px;
  }

  .page-intro h1 {
    font-size: clamp(3.2rem, 16vw, 5.2rem);
  }

  .timeline::before {
    left: 15px;
  }

  .timeline-entry {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 44px;
  }

  .timeline-marker {
    text-align: left;
  }

  .timeline-marker::after {
    right: auto;
    left: -34px;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
