:root {
  --ink: #17201b;
  --muted: #5d665d;
  --forest: #20382b;
  --pine: #314f3b;
  --leaf: #6f8f55;
  --copper: #b7663a;
  --gold: #d9b35f;
  --paper: #fbfaf5;
  --cloud: #f2f5f0;
  --line: #d7ddcf;
  --shadow: 0 18px 60px rgb(23 32 27 / 0.18);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgb(251 250 245 / 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 46px;
  height: 46px;
}

.brand span {
  font-size: 1.08rem;
}

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

.nav a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  padding: 9px 14px;
  text-decoration: none;
}

.nav a[aria-current="page"],
.nav a:hover,
.nav a:focus-visible {
  background: var(--forest);
  color: #fff;
  outline: 0;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 116px));
  min-height: min(720px, calc(100svh - 116px));
  color: #fff;
  display: grid;
  align-items: end;
  background: #121b16;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgb(13 21 16 / 0.86) 0%, rgb(13 21 16 / 0.48) 44%, rgb(13 21 16 / 0.12) 100%),
    linear-gradient(0deg, rgb(13 21 16 / 0.68) 0%, rgb(13 21 16 / 0) 46%),
    var(--hero-image) center / cover no-repeat;
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 118px 0 58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f6d989;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 9vw, 8.2rem);
  max-width: 880px;
}

.hero-subtitle {
  color: rgb(255 255 255 / 0.88);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  margin: 22px 0 0;
  max-width: 680px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-meta span,
.article-kicker span,
.pill {
  border: 1px solid rgb(255 255 255 / 0.32);
  border-radius: 999px;
  color: rgb(255 255 255 / 0.9);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 7px 12px;
}

.article-band {
  background: var(--paper);
  padding: 72px 0;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 730px) minmax(250px, 1fr);
  gap: 56px;
  align-items: start;
}

.article-copy {
  min-width: 0;
}

.article-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.article-kicker span {
  border-color: var(--line);
  color: var(--pine);
}

.article-copy h2 {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 24px;
}

.article-copy p {
  margin: 0 0 22px;
}

.article-copy .lead {
  color: #334337;
  font-size: 1.2rem;
}

.article-copy h3 {
  color: var(--forest);
  font-size: 1.55rem;
  margin: 42px 0 14px;
}

.article-image {
  margin: 40px 0;
}

.article-image img,
.page-image {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

figcaption {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 12px;
}

.sidebar {
  position: sticky;
  top: 110px;
}

.field-notes {
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.field-notes h3 {
  color: var(--forest);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.field-notes ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.field-notes li {
  border-top: 1px solid var(--line);
  color: #445043;
  padding-top: 12px;
}

.field-notes li:first-child {
  border-top: 0;
  padding-top: 0;
}

.page-hero {
  background: var(--forest);
  color: #fff;
  padding: 96px 0 78px;
}

.page-hero p {
  color: rgb(255 255 255 / 0.84);
  font-size: 1.2rem;
  max-width: 710px;
}

.content-section {
  padding: 72px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 52px;
  align-items: start;
}

.content-section h2 {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 18px;
}

.principles {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.principle {
  border-left: 4px solid var(--copper);
  padding-left: 18px;
}

.principle h3 {
  color: var(--forest);
  font-size: 1.08rem;
  margin-bottom: 4px;
}

.principle p {
  margin: 0;
}

.contact-form {
  display: grid;
  gap: 18px;
  max-width: 720px;
}

.form-row {
  display: grid;
  gap: 8px;
}

label {
  color: var(--forest);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

textarea {
  min-height: 168px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--pine);
  box-shadow: 0 0 0 4px rgb(49 79 59 / 0.16);
  outline: none;
}

.button {
  align-items: center;
  background: var(--forest);
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  text-decoration: none;
  width: fit-content;
}

.button:hover,
.button:focus-visible {
  background: var(--copper);
  outline: none;
}

.form-status {
  color: var(--pine);
  font-weight: 700;
  min-height: 28px;
}

.site-footer {
  background: #101812;
  color: rgb(255 255 255 / 0.82);
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner a {
  color: #f0d17b;
}

@media (max-width: 820px) {
  body {
    font-size: 16px;
  }

  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .hero {
    min-height: min(620px, calc(100vh - 128px));
    min-height: min(620px, calc(100svh - 128px));
  }

  .hero-content {
    padding: 82px 0 42px;
  }

  .article-layout,
  .split {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 520px) {
  .brand span {
    font-size: 1rem;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .hero-meta span,
  .article-kicker span {
    white-space: normal;
  }
}
