:root {
  --ink: #171713;
  --paper: #f3f0e8;
  --paper-2: #e8e2d4;
  --accent: #d94f32;
  --accent-deep: #8d2e22;
  --green: #2f5a4f;
  --line: rgba(23, 23, 19, 0.16);
  --white: #fffdf7;
  --max: 1440px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 clamp(20px, 4vw, 64px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.scrolled {
  background: rgba(243, 240, 232, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-text strong {
  font-size: 15px;
  letter-spacing: .01em;
}

.brand-text small {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .55;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.site-nav a {
  position: relative;
  padding: 9px 0;
  opacity: .58;
  transition: opacity .2s ease;
}

.site-nav a:hover,
.site-nav a.active { opacity: 1; }

.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  background: var(--ink);
}

.menu-toggle { display: none; }

main { overflow: hidden; }

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: clamp(32px, 4vw, 80px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 140px clamp(20px, 4vw, 64px) 72px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  opacity: .62;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(58px, 7.1vw, 112px);
  line-height: .89;
  letter-spacing: -.055em;
  font-weight: 500;
  max-width: 820px;
}

.hero h1 span { color: var(--accent); }

.hero-lede {
  max-width: 650px;
  margin: 32px 0 0;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.55;
  color: rgba(23, 23, 19, .75);
}

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

.btn {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

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

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover { background: var(--accent); border-color: var(--accent); }

.btn-secondary { background: transparent; }
.btn-secondary:hover { background: var(--white); }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  max-width: 720px;
}

.hero-meta > div {
  display: grid;
  gap: 8px;
  min-height: 56px;
  padding-right: 14px;
  font-size: 12px;
  line-height: 1.35;
}

.meta-label {
  font-size: 10px;
  opacity: .42;
}

.hero-art {
  min-height: 620px;
  display: grid;
  place-items: center;
}

.art-stage {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: .86;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(255,255,255,.12), rgba(255,255,255,.12)),
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(23,23,19,.045) 80px),
    repeating-linear-gradient(0deg, transparent 0 79px, rgba(23,23,19,.045) 80px);
}

.region {
  position: absolute;
  width: 56%;
}

.region-la { left: 6%; top: 10%; }
.region-tz { right: 6%; bottom: 9%; }

.region-label {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  letter-spacing: .14em;
}

.art-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(23,23,19,.4);
  box-shadow: 0 20px 50px rgba(23,23,19,.08);
}

.art-card-la { background: #e7d2c6; }
.art-card-tz { background: #c8c09a; }

.card-caption {
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-size: 8px;
  letter-spacing: .14em;
  opacity: .7;
}

.line {
  position: absolute;
  height: 2px;
  background: var(--ink);
  transform-origin: left center;
}
.line-a { width: 75%; left: 9%; top: 26%; transform: rotate(28deg); }
.line-b { width: 62%; left: 17%; top: 51%; transform: rotate(-13deg); }
.line-c { width: 55%; left: 23%; top: 71%; transform: rotate(41deg); }

.sun {
  position: absolute;
  width: 80px;
  aspect-ratio: 1;
  border-radius: 50%;
  right: 14%;
  top: 15%;
  background: #d45834;
}

.hill {
  position: absolute;
  left: -8%;
  width: 120%;
  height: 45%;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.hill-a { bottom: 0; background: #355448; transform: rotate(6deg); }
.hill-b { bottom: -12%; background: #252c29; transform: rotate(-5deg); }

.connection {
  position: absolute;
  left: 44%;
  top: 49%;
  width: 24%;
  display: flex;
  align-items: center;
  z-index: 6;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(217,79,50,.15);
}

.connector-line {
  height: 1px;
  flex: 1;
  background: var(--accent);
}

.floating-note {
  position: absolute;
  padding: 8px 10px;
  border: 1px solid var(--ink);
  background: var(--paper);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}
.note-one { right: 3%; top: 20%; transform: rotate(3deg); }
.note-two { left: 6%; bottom: 27%; transform: rotate(-3deg); }
.note-three { right: 4%; bottom: 3%; transform: rotate(2deg); }

.statement,
.proof,
.join {
  max-width: var(--max);
  margin: 0 auto;
  padding: 110px clamp(20px, 4vw, 64px);
}

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

.statement-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(36px, 8vw, 140px);
  align-items: end;
}

.statement h2,
.proof h2,
.join h2 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -.045em;
}

.statement h2 { font-size: clamp(46px, 6vw, 86px); line-height: .98; }
.statement p,
.proof p,
.join p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(23,23,19,.72);
}

.proof-label {
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: .15em;
}

.proof-card {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(36px, 7vw, 110px);
  align-items: center;
  min-height: 520px;
  margin-top: 42px;
}

.proof h2 { font-size: clamp(42px, 5vw, 74px); line-height: 1; }
.proof-copy p { max-width: 620px; margin-top: 24px; }

.text-link {
  margin-top: 30px;
  padding: 0 0 6px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.proof-visual {
  position: relative;
  min-height: 430px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  overflow: hidden;
}

.portrait-block {
  position: absolute;
  width: 42%;
  height: 68%;
  top: 16%;
  border: 1px solid rgba(23,23,19,.5);
}
.left-block {
  left: 9%;
  background:
    radial-gradient(circle at 52% 30%, #f2e3da 0 10%, transparent 10.5%),
    linear-gradient(145deg, transparent 0 46%, #7a4141 46.5% 60%, transparent 60.5%),
    #bd9f93;
}
.right-block {
  right: 9%;
  background:
    radial-gradient(circle at 48% 30%, #dbba8e 0 10%, transparent 10.5%),
    linear-gradient(40deg, transparent 0 43%, #3f5c49 43.5% 60%, transparent 60.5%),
    #cbb276;
}

.shared-line {
  position: absolute;
  left: 16%;
  right: 16%;
  top: 50%;
  height: 2px;
  background: var(--accent);
  transform: rotate(-6deg);
  z-index: 3;
}

.proof-visual > span {
  position: absolute;
  bottom: 18px;
  font: 700 10px/1 Arial, sans-serif;
  letter-spacing: .14em;
}
.proof-visual > span:first-of-type { left: 10%; }
.proof-visual > span:last-of-type { right: 10%; }

.join {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.join-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 9vw, 150px);
}
.join h2 { font-size: clamp(44px, 5.6vw, 82px); line-height: .98; }
.join .btn { margin-top: 28px; }

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px clamp(20px, 4vw, 64px) 44px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  font-size: 11px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.site-footer > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.site-footer span { opacity: .55; }
.footer-right { text-align: right; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 100;
  transform: translate(-50%, 20px);
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(23,23,19,.94);
  color: white;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1050px) {
  .site-nav {
    position: fixed;
    inset: 84px 0 0 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    padding: 34px 24px;
    background: var(--paper);
    font-size: 18px;
  }
  body.menu-open .site-nav { display: flex; }
  .site-nav a { width: 100%; padding: 16px 0; border-bottom: 1px solid var(--line); }
  .site-nav a.active::after { display: none; }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    gap: 6px;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span { width: 24px; height: 1px; background: var(--ink); transition: transform .2s ease; }
  body.menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  body.menu-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 132px;
  }
  .hero-art { min-height: auto; }
  .art-stage { width: min(100%, 620px); }
  .statement-grid,
  .proof-card,
  .join-grid { grid-template-columns: 1fr; }
  .proof-card { min-height: auto; }
}

@media (max-width: 640px) {
  .site-header { height: 72px; padding-inline: 16px; }
  .site-nav { inset: 72px 0 0 0; }
  .brand-text small { display: none; }

  .hero { padding: 116px 16px 48px; }
  .hero h1 { font-size: clamp(52px, 17vw, 76px); }
  .hero-lede { font-size: 16px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-meta { grid-template-columns: 1fr; gap: 14px; margin-top: 44px; }
  .hero-meta > div { grid-template-columns: 30px 1fr; min-height: auto; }

  .hero-art { padding-top: 12px; }
  .art-stage { aspect-ratio: .75; }
  .region { width: 62%; }
  .region-la { left: 4%; top: 8%; }
  .region-tz { right: 4%; bottom: 7%; }
  .connection { left: 40%; width: 28%; }
  .floating-note { font-size: 8px; }
  .note-one { right: 2%; top: 13%; }
  .note-two { left: 2%; bottom: 31%; }

  .statement,
  .proof,
  .join { padding: 78px 16px; }
  .statement h2,
  .proof h2,
  .join h2 { font-size: clamp(42px, 12vw, 62px); }
  .proof-visual { min-height: 320px; }

  .site-footer { padding: 30px 16px 38px; flex-direction: column; }
  .footer-right { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
