:root {
  --green: #213c2a;
  --green-2: #31573c;
  --gold: #c8a84b;
  --cream: #f5f1e8;
  --ink: #17231b;
  --muted: #657268;
  --white: #fffdf7;
  --line: rgba(23, 35, 27, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: white;
  background: linear-gradient(180deg, rgba(8, 15, 10, .78), rgba(8, 15, 10, .08));
}
.brand {
  text-decoration: none;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.brand span { display: block; font-size: 18px; letter-spacing: .08em; }
.brand small { display: block; margin-top: 4px; font-size: 11px; letter-spacing: .2em; color: #efe5c4; }
nav { display: flex; align-items: center; gap: 18px; font-size: 14px; font-weight: 700; }
nav a { text-decoration: none; }
.facebook-link { color: #fff1ba; }
.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.44);
  background: rgba(255,255,255,.12);
}

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
}
.hero picture, .hero img, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero img { object-fit: cover; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 15, 9, .9), rgba(6, 15, 9, .5) 46%, rgba(6, 15, 9, .18)),
    linear-gradient(0deg, rgba(6, 15, 9, .72), rgba(6, 15, 9, 0) 45%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 132px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
}
h1 { max-width: 820px; font-size: clamp(46px, 8vw, 108px); }
h2 { font-size: clamp(34px, 4.6vw, 64px); }
h3 { font-size: 25px; }
.hero-copy {
  max-width: 640px;
  margin: 26px 0 0;
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(255,255,255,.88);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button, form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 4px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.primary, form button { background: var(--gold); color: #151006; }
.secondary { background: rgba(255,255,255,.14); color: white; border: 1px solid rgba(255,255,255,.5); }
.dark-button { background: var(--green); color: white; }
.trust-strip {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(245, 241, 232, .96);
  color: var(--green);
  font-weight: 800;
  text-align: center;
}
.trust-strip span { padding: 18px 12px; border-left: 1px solid var(--line); }

.wrap { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
section { padding: 96px 0; }
.band { background: var(--cream); }
.dark { background: var(--green); color: white; }
.two-col { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(32px, 7vw, 86px); align-items: start; }
.lead-copy { font-size: 19px; color: #38443b; }
.lead-copy p:first-child { margin-top: 0; }

.section-head { max-width: 780px; margin-bottom: 38px; }
.section-head h2 { color: var(--green); }
.dark .section-head h2 { color: white; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-grid article {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}
.service-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.service-grid h3, .service-grid p { padding: 0 20px; }
.service-grid h3 { margin-top: 20px; color: var(--green); }
.service-grid p { margin: 10px 0 22px; color: var(--muted); }

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: rgba(255,255,255,.2);
}
.steps li {
  min-height: 250px;
  padding: 26px;
  background: #274832;
  counter-increment: step;
}
.steps li::before {
  content: "0" counter(step);
  display: block;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 42px;
}
.steps strong { display: block; font-size: 20px; margin-bottom: 12px; }
.steps span { color: rgba(255,255,255,.78); }

.gallery { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; }
.gallery img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; border-radius: 6px; }
.gallery img:first-child { grid-row: span 2; }

.social-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(30px, 7vw, 86px);
  align-items: center;
}
.social-grid p { color: #38443b; font-size: 18px; }
.social-actions { margin-top: 26px; }
.facebook-embed {
  min-height: 520px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.facebook-embed iframe { width: 100%; min-height: 520px; }

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.post-card {
  display: grid;
  gap: 13px;
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  text-decoration: none;
}
.post-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.post-card h3 { color: var(--green); }
.post-card p { margin: 0; color: var(--muted); }

.page-shell .site-header {
  position: sticky;
  background: var(--green);
}
.page-hero {
  padding: 88px 0 66px;
  background: var(--green);
  color: white;
}
.page-hero h1 { max-width: 980px; font-size: clamp(42px, 6vw, 86px); }
.page-hero p { max-width: 760px; font-size: 19px; color: rgba(255,255,255,.82); }
.content-page { padding: 70px 0 96px; }
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}
.article-body {
  max-width: 820px;
  font-size: 18px;
}
.article-body h2 {
  margin-top: 42px;
  font-size: clamp(28px, 3.2vw, 42px);
  color: var(--green);
}
.article-body h3 {
  margin-top: 28px;
  color: var(--green);
}
.article-body p, .article-body li { color: #38443b; }
.article-body a { color: var(--green); font-weight: 800; }
.article-body ul { padding-left: 22px; }
.side-panel {
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.side-panel h2, .side-panel h3 {
  font-family: Manrope, system-ui, sans-serif;
  font-size: 20px;
  line-height: 1.2;
  color: var(--green);
}
.side-panel a {
  display: block;
  margin-top: 12px;
  color: var(--green);
  font-weight: 800;
}
.legal-list {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}
.legal-list a {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
}
.settings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 28px 0;
}
.setting-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}
.setting-card code {
  display: block;
  margin-top: 8px;
  padding: 10px;
  background: var(--cream);
  overflow-wrap: anywhere;
}

.about-grid { align-items: center; }
.about-grid > img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 6px; }
.about-grid p { color: #38443b; font-size: 18px; }
.quote-card { margin-top: 26px; padding: 26px; background: #fff; border-left: 5px solid var(--gold); border-radius: 4px; }
.quote-card p { margin-top: 0; font-style: italic; }
.quote-card span { color: var(--green); font-weight: 800; }

.quote { background: var(--green); color: white; }
.quote h2 { color: white; }
.quote-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 7vw, 88px); align-items: start; }
.contact-links { display: grid; gap: 12px; margin-top: 28px; }
.contact-links a { color: #fff7d8; font-weight: 800; }
form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
}
label { display: grid; gap: 7px; font-size: 14px; font-weight: 800; }
input, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 4px;
  padding: 13px 14px;
  font: inherit;
  color: white;
  background: rgba(8, 15, 10, .36);
}
textarea { resize: vertical; }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.5); }
.honeypot { display: none; }
.form-status { margin: 0; min-height: 24px; color: #fff1ba; font-weight: 700; }

footer { padding: 42px 0; background: #101811; color: rgba(255,255,255,.78); }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; }
footer strong { display: block; color: white; margin-bottom: 6px; }
footer p { margin: 0; max-width: 600px; }
footer a { display: block; color: #fff1ba; font-weight: 700; text-align: right; }

@media (max-width: 900px) {
  .site-header { align-items: flex-start; }
  nav { display: none; }
  .hero-content { padding: 120px 0 150px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .two-col, .quote-grid, .social-grid, .content-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .post-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps li { min-height: 0; }
  .steps li::before { margin-bottom: 22px; }
}

@media (max-width: 620px) {
  section { padding: 68px 0; }
  .hero { min-height: 100svh; }
  .hero-content { width: calc(100% - 28px); padding-bottom: 170px; }
  .button { width: 100%; }
  .trust-strip { font-size: 12px; }
  .trust-strip span { padding: 12px 8px; }
  .service-grid, .gallery, .settings-grid { grid-template-columns: 1fr; }
  .gallery img:first-child { grid-row: auto; }
  .footer-grid { display: grid; }
  footer a { text-align: left; }
}
