:root {
  --ink: #17201f;
  --forest: #0f3d36;
  --sage: #dfe8df;
  --paper: #fbfaf6;
  --cream: #f3efe5;
  --clay: #a4573e;
  --gold: #b9964f;
  --gold-dark: #8f6f2f;
  --muted: #65716e;
  --line: rgba(23, 32, 31, 0.14);
  --shadow: 0 24px 70px rgba(23, 32, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: clamp(16px, 4vw, 56px);
  right: clamp(16px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(185, 150, 79, 0.34);
  border-radius: 999px;
  padding: 10px 12px 10px 18px;
  background: rgba(15, 61, 54, 0.82);
  color: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.hero-actions,
.feature-strip,
.stat-row,
.footer-brand,
.menu-toggle {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 0;
  gap: 10px;
  font-weight: 850;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(185, 150, 79, 0.35);
  object-fit: contain;
  padding: 5px;
}

.site-nav {
  gap: 6px;
}

.site-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 750;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(185, 150, 79, 0.24);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  flex-direction: column;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--forest);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px clamp(20px, 5vw, 76px) 74px;
  color: #fff;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.hero::before {
  background: var(--hero-image) center / cover;
  transform: scale(1.02);
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(6, 19, 17, 0.9) 0%, rgba(6, 19, 17, 0.58) 48%, rgba(6, 19, 17, 0.08) 100%),
    linear-gradient(0deg, rgba(6, 19, 17, 0.56), transparent 58%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f5d991;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  font-size: clamp(4rem, 10vw, 8.8rem);
  line-height: 0.9;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 5vw, 4.8rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.hero-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.36rem);
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 850;
}

.button.primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 12px 28px rgba(143, 111, 47, 0.28);
}

.button.primary:hover {
  background: var(--gold-dark);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.page-section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 76px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
}

.split.reverse .media-frame {
  order: -1;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.feature-strip {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.feature-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  background: #fff;
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 800;
}

.media-frame {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.cards-section {
  background: var(--cream);
}

.section-heading {
  width: min(920px, 100%);
  margin-bottom: clamp(30px, 5vw, 58px);
}

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

.content-card,
.step-card,
.policy-card {
  border: 1px solid var(--line);
  border-top: 3px solid rgba(185, 150, 79, 0.62);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(23, 32, 31, 0.08);
}

.content-card {
  overflow: hidden;
}

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

.content-card div,
.step-card,
.policy-card {
  padding: 24px;
}

.content-card p,
.step-card p,
.policy-card p,
.quick-links p {
  color: var(--muted);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.stat-row article {
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  padding-top: 18px;
}

.stat-row strong {
  display: block;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.stat-row span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.dark-band {
  background:
    linear-gradient(135deg, rgba(15, 61, 54, 0.98), rgba(23, 32, 31, 0.96));
  color: #fff;
}

.dark-band .lead,
.dark-band p {
  color: rgba(255, 255, 255, 0.75);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.step-card strong {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 18px;
  background: rgba(185, 150, 79, 0.18);
  color: var(--gold-dark);
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.quick-links a {
  min-height: 150px;
  display: grid;
  align-content: space-between;
  border: 1px solid var(--line);
  border-top: 3px solid rgba(185, 150, 79, 0.62);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
}

.quick-links strong {
  color: var(--forest);
  font-size: 1.08rem;
}

.policy-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.side-nav {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 8px;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}

.side-nav a {
  color: var(--muted);
  font-weight: 750;
}

.policy-stack {
  display: grid;
  gap: 14px;
}

.contact-band {
  background:
    linear-gradient(rgba(15, 61, 54, 0.86), rgba(23, 32, 31, 0.86)),
    url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1800&q=82") center / cover;
  color: #fff;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list div {
  border: 1px solid rgba(185, 150, 79, 0.26);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.contact-list strong,
.contact-list span {
  display: block;
}

.contact-list span,
.contact-list a {
  color: rgba(255, 255, 255, 0.78);
}

.contact-form {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(185, 150, 79, 0.28);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.website-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.split > .contact-form {
  align-self: stretch;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--forest);
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23, 32, 31, 0.18);
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(185, 150, 79, 0.24);
  border-color: var(--gold);
}

.contact-form .button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.form-note {
  min-height: 24px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 42px clamp(20px, 5vw, 76px);
  background: var(--ink);
  color: #fff;
}

.footer-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.site-footer p,
.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.7);
}

address {
  display: grid;
  gap: 5px;
  font-style: normal;
  text-align: right;
}

address strong {
  color: #fff;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    border-radius: 18px;
    padding: 10px;
    background: rgba(23, 32, 31, 0.94);
    flex-direction: column;
    align-items: stretch;
  }

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

  .site-nav a {
    padding: 13px 16px;
  }

  .split,
  .split.reverse,
  .contact-panel,
  .form-grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .split.reverse .media-frame {
    order: 0;
  }

  .card-grid,
  .quick-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .side-nav {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 12px;
    left: 12px;
    right: 12px;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-bottom: 48px;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(6, 19, 17, 0.9), rgba(6, 19, 17, 0.26));
  }

  .button,
  .contact-form .button,
  .card-grid,
  .steps-grid,
  .quick-links,
  .stat-row,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    display: grid;
  }

  address {
    text-align: left;
  }
}
