:root {
  --ink: #0f1a2e;
  --surface: #fffdf6;
  --brass: #a77f3a;
  --oxblood: #5c1f1f;
  --near-black: #202020;

  --font-body: "Libre Caslon Text", Georgia, serif;
  --font-display: "Libre Caslon Text", Georgia, serif;

  --measure: 48rem;
  --rhythm: 1.6;
  --section-pad: clamp(4rem, 8vw, 8rem);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: var(--rhythm);
  -webkit-font-smoothing: antialiased;
}

p { margin: 0 0 1.2em; }

a {
  color: var(--ink);
  text-decoration-color: var(--brass);
  text-underline-offset: 0.2em;
  transition: text-decoration-color 200ms ease;
}
a:hover { text-decoration-color: var(--ink); }

.label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.5rem;
  display: block;
}

.wordmark-wrap {
  margin: 0;
  padding: 0;
  display: block;
  line-height: 0;
}

.section {
  padding: var(--section-pad) 1.5rem;
  background: var(--surface);
}

.section + .section { padding-top: 0; }

.column {
  max-width: var(--measure);
  margin: 0 auto;
}

/* ───── Hero ───── */

.hero {
  position: relative;
  background: var(--ink);
  color: var(--surface);
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 2rem 1.5rem;
  overflow: hidden;
}

.hero-eagle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(85vw, 60rem);
  height: auto;
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
}

.hero-inner {
  position: relative;
  text-align: center;
  width: 100%;
  max-width: var(--measure);
}

.wordmark {
  width: 100%;
  max-width: 32rem;
  height: auto;
  display: block;
  margin: 0 auto;
}

.tagline {
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 2vw, 1.4rem);
  letter-spacing: 0.02em;
  margin: 2.25rem 0 0;
  color: var(--surface);
  opacity: 0.92;
}

.tagline em {
  font-style: italic;
}

/* ───── Full-bleed image bands ───── */

.band {
  margin: 0;
  padding: 0;
  display: block;
}

.band img {
  width: 100%;
  height: auto;
  display: block;
}

.band-caption {
  color: rgba(15, 26, 46, 0.55);
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.85rem;
  text-align: center;
  margin: 0.75rem 1.5rem 0;
  padding: 0;
}

/* ───── Section ornaments ───── */

.ornament {
  border: 0;
  display: block;
  margin: 0;
  height: 5rem;
  background-color: var(--surface);
  background-image: url('/assets/eagle-ornament.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 3rem auto;
  opacity: 1;
}

.ornament::before { content: ""; }

/* ───── Lede (positioning quote) ───── */

.lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.35;
  text-align: center;
  margin: 0;
  text-wrap: balance;
}

/* Symmetric breathing room around the pull quote */
.section.section--quiet {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section:has(+ .section--quiet) {
  padding-bottom: 0;
}

.section + .section.section--quiet {
  padding-top: 5rem;
}

.section--tinted {
  background: rgba(167, 127, 58, 0.05);
  border-top: 1px solid rgba(167, 127, 58, 0.18);
  border-bottom: 1px solid rgba(167, 127, 58, 0.18);
}

/* ───── Vision list ───── */

.vision-intro {
  margin-bottom: 2.5rem;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 18rem;
  gap: 2.5rem;
  align-items: stretch;
}

.split-layout--wider-figure {
  grid-template-columns: 1fr 22rem;
}

.split-layout--wider-figure .split-figure img {
  object-fit: contain;
}

.split-text > p:last-child {
  margin-bottom: 0;
}

.split-figure {
  margin: 0;
  overflow: hidden;
}

.split-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 720px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .split-figure img {
    height: auto;
    object-fit: contain;
    max-width: 12rem;
    margin: 0 auto;
  }
}

.vision-list {
  display: grid;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
}

.vision-item {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.7rem;
  padding: 0.55rem 0;
  border-top: 1px solid rgba(167, 127, 58, 0.22);
}

.vision-item:last-child {
  border-bottom: 1px solid rgba(167, 127, 58, 0.22);
}

@media (max-width: 600px) {
  .vision-item {
    grid-template-columns: 1fr;
    gap: 0.15rem;
    padding: 0.85rem 0;
  }
}

.vision-item dt {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--ink);
}

.vision-item dd {
  margin: 0;
  color: var(--ink);
}

/* ───── Form section ───── */

.form-section {
  background: var(--ink);
  color: var(--surface);
  padding: var(--section-pad) 1.5rem;
}

.form-intro {
  font-family: var(--font-body);
  font-style: italic;
  margin-bottom: 2.5rem;
  opacity: 0.85;
  color: var(--surface);
}

#interest-form {
  display: grid;
  gap: 1.75rem;
  position: relative;
}

.field {
  display: grid;
  gap: 0.45rem;
  border: 0;
  padding: 0;
  margin: 0;
}

.field label,
.field legend {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
}

.field input[type="text"],
.field input[type="email"],
.field textarea {
  background: rgba(255, 253, 246, 0.06);
  color: var(--surface);
  border: 0;
  border-bottom: 1px solid rgba(255, 253, 246, 0.55);
  padding: 0.75rem 0.85rem;
  font: inherit;
  width: 100%;
  outline: none;
  transition: background 200ms ease, border-color 200ms ease;
}

.field input:hover,
.field textarea:hover {
  background: rgba(255, 253, 246, 0.09);
}

.field input:focus,
.field textarea:focus {
  background: rgba(255, 253, 246, 0.1);
  border-bottom-color: var(--brass);
  border-bottom-width: 2px;
  padding-bottom: calc(0.75rem - 1px);
}

.field textarea {
  resize: vertical;
  min-height: 5rem;
}

.field .radio {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--surface);
  padding: 0.35rem 0;
}

.field .radio input {
  accent-color: var(--brass);
}

.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.submit {
  justify-self: start;
  background: var(--brass);
  color: var(--ink);
  border: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  padding: 0.9rem 1.6rem;
  cursor: pointer;
  transition: background 200ms ease;
}

.submit:hover { background: #b78d44; }
.submit:disabled { opacity: 0.5; cursor: progress; }

.form-status {
  margin: 0;
  min-height: 1.25em;
  font-size: 0.95rem;
  color: var(--surface);
  opacity: 0.85;
}

.form-status.error {
  color: #d99a9a;
}

/* ───── Footer ───── */

.site-footer {
  background: var(--ink);
  color: var(--surface);
  padding: 2.5rem 1.5rem 3rem;
  text-align: center;
  border-top: 1px solid rgba(255, 253, 246, 0.08);
}

.site-footer p {
  margin: 0;
}

.footer-line {
  font-size: 0.95rem;
  margin-bottom: 0.6rem !important;
  opacity: 0.9;
}

.footer-meta {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  opacity: 0.55;
}

.site-footer a {
  color: inherit;
  text-decoration-color: currentColor;
}

.site-footer a:hover {
  text-decoration-color: var(--surface);
}
