:root {
  --paper: #eee9df;
  --surface: #fffdf8;
  --surface-soft: #f8f4eb;
  --ink: #14120e;
  --muted: #665f52;
  --line: #ddd4c5;
  --field: #315a4c;
  --field-dark: #20382f;
  --focus: #7b3f1d;
  --shadow: 0 24px 70px rgba(20, 18, 14, 0.12);
  --max: 1180px;
  --pad: clamp(20px, 4vw, 40px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--field-dark);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--ink);
  color: var(--surface);
  border-radius: 999px;
}

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

.concept-bar {
  padding: 9px var(--pad);
  background: var(--ink);
  color: var(--surface);
  font-size: 13px;
  text-align: center;
}

.site-header {
  max-width: calc(var(--max) + (var(--pad) * 2));
  margin: 0 auto;
  padding: 24px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: min(330px, 62vw);
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.nav-toggle {
  display: none;
}

.section-shell,
.proof-strip,
.path-grid,
.field-grid,
.source-record,
.owner-cta,
.site-footer {
  max-width: var(--max);
  margin: 0 auto;
}

.section-shell {
  padding: clamp(34px, 6vw, 72px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero {
  min-height: min(760px, calc(100vh - 98px));
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: stretch;
  gap: clamp(28px, 5vw, 64px);
  box-shadow: var(--shadow);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.meta {
  margin: 0 0 14px;
  color: var(--field-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 10.5ch;
  font-size: clamp(48px, 8vw, 96px);
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
}

h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.lead {
  max-width: 640px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.hero__actions,
.desk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

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

.button--primary:hover {
  color: var(--surface);
}

.button--secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.button--secondary:hover {
  background: var(--surface-soft);
  color: var(--ink);
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 42px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.hero__facts div {
  padding: 18px;
  background: var(--surface-soft);
}

.hero__facts dt {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
}

.hero__facts dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero__media {
  margin: 0;
  min-height: 520px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.hero__media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.hero__media figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
}

.proof-strip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  gap: 1px;
}

.proof-strip div {
  padding: 24px;
  background: var(--surface);
}

.proof-strip strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1;
}

.proof-strip span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.section-intro {
  margin-top: clamp(58px, 9vw, 104px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  gap: 36px;
  align-items: end;
  box-shadow: none;
}

.section-intro p:last-child {
  margin: 0;
  color: var(--muted);
}

.path-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.path-card {
  min-height: 260px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.path-card--large {
  grid-row: span 2;
  background: var(--field-dark);
  color: var(--surface);
}

.path-card--large .meta,
.path-card--large p {
  color: #dbe7df;
}

.path-card p,
.field-card p,
.media-desk p,
.source-record p,
.owner-cta p {
  color: var(--muted);
}

.path-card a,
.field-card a,
.source-record a {
  margin-top: auto;
  font-weight: 800;
}

.path-card--large a {
  color: var(--surface);
}

.field-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.field-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.field-card div {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field-card h3 {
  font-size: 28px;
}

.field-card p {
  margin: 0;
}

.media-desk {
  margin-top: clamp(58px, 9vw, 104px);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.45fr);
  gap: 34px;
  align-items: center;
  background: var(--ink);
  color: var(--surface);
}

.media-desk .meta,
.media-desk p {
  color: #d8d0c1;
}

.media-desk .button--primary {
  background: var(--surface);
  color: var(--ink);
}

.media-desk .button--secondary {
  color: var(--surface);
  border-color: #4b4740;
}

.media-desk .button--secondary:hover {
  background: #24211d;
  color: var(--surface);
}

.desk-actions {
  margin-top: 0;
  flex-direction: column;
  align-items: stretch;
}

.source-record {
  margin-top: 28px;
  padding: clamp(28px, 5vw, 52px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  gap: 34px;
  align-items: center;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.source-record p {
  margin-bottom: 20px;
}

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

.logo-row img {
  width: 100%;
  min-height: 92px;
  padding: 18px;
  object-fit: contain;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.owner-cta {
  margin-top: clamp(58px, 9vw, 104px);
  padding: clamp(32px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.owner-cta p {
  max-width: 760px;
}

.site-footer {
  padding: 34px var(--pad) 46px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--ink);
    padding: 10px 14px;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
  }

  .nav-toggle__line {
    width: 16px;
    height: 2px;
    background: currentColor;
    box-shadow: 0 5px 0 currentColor, 0 -5px 0 currentColor;
  }

  .site-nav {
    position: fixed;
    inset: 86px 16px auto;
    z-index: 10;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .hero,
  .section-intro,
  .media-desk,
  .source-record,
  .owner-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero__media {
    min-height: 360px;
  }

  .proof-strip,
  .path-grid,
  .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .path-card--large {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .owner-cta {
    align-items: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .section-shell {
    padding: 28px 20px;
  }

  h1 {
    max-width: none;
    font-size: clamp(42px, 14vw, 58px);
  }

  .hero__facts,
  .proof-strip,
  .path-grid,
  .field-grid,
  .logo-row {
    grid-template-columns: 1fr;
  }

  .hero__media {
    min-height: 300px;
  }

  .path-card {
    min-height: 0;
  }

  .button,
  .owner-cta .button {
    width: 100%;
  }

  .owner-cta {
    padding: 28px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
