:root {
  --ink: #1f2528;
  --muted: #5c666b;
  --line: #d8dedf;
  --paper: #f7f8f5;
  --white: #ffffff;
  --green: #2d6a4f;
  --green-dark: #1b4332;
  --gold: #b88746;
  --steel: #70818a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 248, 245, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

nav a:hover,
.site-footer a:hover {
  color: var(--green);
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #1f2528;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 24, 26, 0.78), rgba(18, 24, 26, 0.22) 58%, rgba(18, 24, 26, 0.08));
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(48px, 9vh, 96px) clamp(18px, 6vw, 84px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3.3vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.lead {
  max-width: 610px;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.hero-actions,
.document-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid currentColor;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.document-actions .button.secondary {
  color: var(--green-dark);
  background: var(--white);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-facts div {
  min-height: 106px;
  padding: 22px clamp(18px, 3vw, 34px);
  background: var(--white);
}

.quick-facts span {
  display: block;
  font-weight: 900;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
}

.quick-facts small {
  color: var(--muted);
}

.section {
  padding: clamp(52px, 8vw, 100px) clamp(18px, 5vw, 72px);
}

.two-column,
.terms-preview,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.check-list {
  padding-left: 20px;
  color: var(--muted);
}

.check-list li + li {
  margin-top: 8px;
}

.note {
  margin-top: 22px;
  padding: 16px 18px;
  background: #fff7e8;
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  color: #4f4436;
  font-weight: 700;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

figure {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.price-band {
  background: var(--green-dark);
  color: var(--white);
}

.price-band .eyebrow {
  color: #e7c894;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.price-grid article {
  min-height: 174px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.price {
  margin-bottom: 8px;
  color: #e7c894;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1;
}

.document-links {
  display: grid;
  gap: 14px;
}

.document-links a {
  display: grid;
  gap: 8px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
}

.document-links a:hover {
  border-color: var(--green);
}

.document-links strong {
  font-size: 1.25rem;
}

.document-links span,
address {
  color: var(--muted);
}

.contact {
  background: #e9efea;
}

address {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-style: normal;
}

.site-footer {
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: var(--ink);
  font-size: 0.9rem;
}

.site-footer p {
  max-width: 960px;
  margin-bottom: 8px;
}

.document-page {
  background: #e8ece8;
}

.document-shell {
  width: min(980px, calc(100% - 28px));
  margin: 28px auto;
  padding: clamp(26px, 5vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.document-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 36px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
}

.document-header a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.document-shell h1 {
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.document-shell h2 {
  margin-top: 34px;
  font-size: 1.45rem;
}

.document-shell h3 {
  margin-top: 22px;
}

.document-shell table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 26px;
}

.document-shell th,
.document-shell td {
  padding: 10px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.field-line {
  display: inline-block;
  min-width: 220px;
  border-bottom: 1px solid var(--ink);
}

.signature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.signature-box {
  padding-top: 44px;
  border-top: 1px solid var(--ink);
  text-align: center;
}

@media (max-width: 900px) {
  .quick-facts,
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-column,
  .terms-preview,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(18, 24, 26, 0.86), rgba(18, 24, 26, 0.2));
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 76vh;
  }

  .hero-copy {
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-bottom: 36px;
  }

  .quick-facts,
  .price-grid,
  .signature-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}

@media print {
  body {
    background: #fff;
  }

  .site-header,
  .site-footer,
  .document-actions {
    display: none;
  }

  .document-shell {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
  }

  a {
    text-decoration: none;
  }
}
