:root {
  --green: #16352B;
  --green-2: #24493E;
  --footer: #0F1713;
  --gold: #B08D57;
  --gold-2: #C8AE7F;
  --warm: #F7F5F1;
  --paper: #FFFDF8;
  --stone: #EDE7DB;
  --charcoal: #20231F;
  --muted: #646A62;
  --line: #DDD5C7;
  --shadow: 0 18px 45px rgba(24, 31, 27, .08);
  --max: 1180px;
  --heading: "Manrope", "General Sans", "Neue Haas Grotesk Text", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: Inter, "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  background: var(--warm);
  color: var(--charcoal);
  font-family: var(--body);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.4), rgba(255,255,255,0) 420px),
    var(--warm);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.62;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease; }
a:hover { color: var(--green); }
p { margin: 0 0 1rem; }

h1, h2, h3 {
  margin: 0;
  color: var(--green);
  font-family: var(--heading);
  font-weight: 720;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 { max-width: 840px; font-size: clamp(3rem, 6vw, 5.25rem); }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
h3 { font-size: 1.18rem; line-height: 1.22; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  padding: .75rem 1rem;
  background: var(--green);
  color: var(--warm);
}

.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid rgba(22, 53, 43, .1);
  background: rgba(255, 253, 248, .965);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: min(100% - 2rem, var(--max));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  min-width: 270px;
}

.brand-crest {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border: 1px solid rgba(176, 141, 87, .42);
  background: #071219;
  box-shadow: 0 8px 22px rgba(15, 23, 19, .08);
}

.brand-crest img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: .22rem;
  color: var(--green);
  line-height: 1;
}

.brand-copy span {
  color: var(--green);
  font-family: var(--heading);
  font-size: 1.45rem;
  font-weight: 760;
  letter-spacing: .045em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-copy small {
  max-width: 260px;
  color: #6C6E67;
  font-size: .62rem;
  font-weight: 760;
  letter-spacing: .085em;
  line-height: 1.25;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(22, 53, 43, .18);
  background: transparent;
  color: var(--green);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.55rem;
  color: #333B35;
  font-size: .92rem;
  font-weight: 520;
}

.site-nav a {
  position: relative;
  padding: .45rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }

.site-nav a[aria-current="page"] { color: var(--green); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .82rem 1.2rem;
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--warm);
  font-weight: 700;
  line-height: 1.1;
}

.button:hover {
  background: var(--green-2);
  color: var(--warm);
  box-shadow: 0 12px 24px rgba(22, 53, 43, .16);
  transform: translateY(-1px);
}

.button.secondary {
  background: transparent;
  color: var(--green);
  border-color: rgba(22, 53, 43, .28);
}

.button.secondary:hover {
  background: rgba(22, 53, 43, .045);
  border-color: var(--gold);
  color: var(--green);
}

.eyebrow { display: none; }

.section {
  padding: clamp(5rem, 8vw, 8rem) 0;
}

.section.compact { padding: clamp(3.5rem, 6vw, 5rem) 0; }

.container {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(280px, .7fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: 2rem;
}

.lead {
  max-width: 760px;
  color: #4F554E;
  font-size: clamp(1.03rem, 1.35vw, 1.22rem);
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  isolation: isolate;
  background: var(--green);
  color: var(--warm);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../images/home-hero-interior.jpg") center / cover no-repeat;
  filter: saturate(.82) contrast(.98);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(15, 29, 24, .94) 0%, rgba(22, 53, 43, .78) 42%, rgba(22, 53, 43, .28) 100%),
    linear-gradient(0deg, rgba(15, 23, 19, .72), rgba(15, 23, 19, .1) 55%);
}

.hero-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 5.5rem 0;
}

.hero h1 {
  max-width: 780px;
  color: #FFFDF8;
  font-size: clamp(3.1rem, 6.6vw, 5.75rem);
  font-weight: 780;
  line-height: .98;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .18);
}

.hero .lead {
  max-width: 610px;
  margin-top: 1.35rem;
  color: rgba(247, 245, 241, .88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}

.hero .button {
  border-color: var(--gold);
  background: var(--gold);
  color: #1F241F;
}

.hero .button.secondary {
  background: rgba(247, 245, 241, .04);
  color: var(--warm);
  border-color: rgba(247, 245, 241, .42);
}

.hero-tail {
  position: absolute;
  left: max(1rem, calc((100vw - var(--max)) / 2));
  bottom: 2rem;
  max-width: 700px;
  color: rgba(247, 245, 241, .66);
  font-size: .92rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  min-height: 170px;
  padding: 1.55rem;
  border: 1px solid rgba(33, 72, 60, .12);
  border-radius: 4px;
  background: rgba(255, 253, 248, .92);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .7), 0 14px 34px rgba(24, 31, 27, .045);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(176, 141, 87, .45);
  box-shadow: var(--shadow);
}

.card h3 { margin-bottom: .7rem; }
.card p { color: var(--muted); margin: 0; }

.number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(176, 141, 87, .65);
  color: var(--green);
  font-weight: 760;
  font-size: .95rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .72fr);
  gap: clamp(2.25rem, 6vw, 5.5rem);
  align-items: center;
}

.media-frame {
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(33, 72, 60, .12);
  background: #E6DFD2;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(.92) contrast(.98);
}

.wide-media img { aspect-ratio: 16 / 10; }

.band {
  background: #EDE7DB;
  border-top: 1px solid rgba(33, 72, 60, .1);
  border-bottom: 1px solid rgba(33, 72, 60, .1);
}

.green-band {
  background: #EDE7DB;
  color: var(--charcoal);
}

.green-band h2,
.green-band h3 { color: var(--green); }

.green-band p { color: #525850; }

.green-band .card {
  background: var(--paper);
  border-color: rgba(176, 141, 87, .28);
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}

.statement {
  padding: 1.4rem 0 1.4rem 1.6rem;
  border-left: 2px solid var(--gold);
}

.statement p {
  color: #424840;
  font-size: clamp(1.03rem, 1.45vw, 1.22rem);
}

.feature-list {
  display: grid;
  gap: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
}

.feature-row h3 {
  color: var(--green);
  font-family: var(--heading);
  font-size: .96rem;
  font-weight: 760;
}

.feature-row p { color: #525850; }

.editorial-panel {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border: 1px solid rgba(33, 72, 60, .12);
  border-radius: 4px;
  background: rgba(255, 253, 248, .94);
  box-shadow: var(--shadow);
}

.process {
  display: grid;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.45rem 0;
  border-top: 1px solid var(--line);
}

.process-step:last-child { border-bottom: 1px solid var(--line); }

.article-card {
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(33, 72, 60, .12);
  border-radius: 4px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-card div { padding: 1.35rem; }

.meta { display: none; }

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid rgba(176, 141, 87, .32);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.page-hero {
  padding: clamp(5rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  background: linear-gradient(180deg, #F7F5F1 0%, #EFE9DD 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 820px;
  color: var(--green);
  font-size: clamp(2.55rem, 5vw, 4.8rem);
}

.form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: .4rem;
  color: #3C453F;
  font-weight: 650;
}

input, textarea {
  width: 100%;
  padding: .95rem 1rem;
  border: 1px solid #CFC7B8;
  border-radius: 3px;
  background: var(--paper);
  color: var(--charcoal);
  font: inherit;
  transition: border-color .18s ease, box-shadow .18s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, .16);
}

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

.contact-list {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
}

.contact-item span {
  display: block;
  color: var(--muted);
  font-size: .9rem;
}

.site-footer {
  background: var(--footer);
  color: rgba(247, 245, 241, .82);
}

.footer-top {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 6rem) 0 2.25rem;
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(150px, .52fr));
  gap: clamp(2rem, 4vw, 4rem);
}

.footer-brand p {
  max-width: 420px;
  margin-top: 1.5rem;
  color: rgba(247, 245, 241, .7);
}

.footer-logo {
  min-width: 0;
  color: var(--warm);
}

.footer-logo .brand-copy span { color: var(--warm); }
.footer-logo .brand-copy small { color: rgba(247, 245, 241, .62); }

.footer-col h2 {
  margin-bottom: 1.1rem;
  color: var(--gold-2);
  font-family: var(--heading);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .55rem;
}

.footer-col a { color: rgba(247, 245, 241, .82); }
.footer-col a:hover { color: var(--gold-2); }

.footer-note {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(176, 141, 87, .28);
  display: grid;
  gap: .8rem;
  color: rgba(247, 245, 241, .64);
  font-size: .88rem;
}

.footer-note p { margin: 0; }

.footer-bottom {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 1.1rem 0 1.6rem;
  border-top: 1px solid rgba(176, 141, 87, .2);
  color: rgba(247, 245, 241, .68);
  font-size: .86rem;
}

@media (max-width: 980px) {
  .nav-wrap { min-height: 74px; }
  .brand { min-width: auto; }
  .brand-copy small { display: none; }
  .brand-copy span { font-size: 1.18rem; }
  .brand-crest { width: 48px; height: 48px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .7rem 1rem 1rem;
    border-bottom: 1px solid rgba(22, 53, 43, .12);
    background: var(--paper);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: .8rem 0; }
  .section-head, .split, .cta, .statement-grid { grid-template-columns: 1fr; }
  .grid, .grid.three, .grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero { min-height: 760px; }
  .hero::after {
    background:
      linear-gradient(90deg, rgba(15, 29, 24, .96) 0%, rgba(22, 53, 43, .84) 68%, rgba(22, 53, 43, .44) 100%),
      linear-gradient(0deg, rgba(15, 23, 19, .75), rgba(15, 23, 19, .08) 55%);
  }
  .hero-inner { padding: 4.5rem 0 6rem; }
  .hero h1 { font-size: clamp(2.85rem, 14vw, 4.25rem); }
  .hero-tail { bottom: 1.25rem; right: 1rem; }
  .grid, .grid.three, .grid.two, .footer-top { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: .35rem; }
  .process-step { grid-template-columns: 48px minmax(0, 1fr); }
  .card { min-height: auto; }
  .footer-logo .brand-copy small { display: block; }
}
