@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap");

:root {
  --green: #1f3431;
  --green2: #294640;
  --gold: #e6c200;
  --ink: #15201e;
  --muted: #63706d;
  --paper: #f7f7f3;
  --line: #d9dfdc;
  --white: #fff;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}
a {
  color: inherit;
}
.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin: auto;
}
.narrow {
  max-width: 820px;
}
.site-header {
  height: 76px;
  padding: 0 max(20px, calc((100% - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--green);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 5;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  line-height: 1.1;
}
.brand-logo {
  width: 120px;
  height: auto;
  object-fit: contain;
}
.brand strong,
.brand small {
  display: block;
}
.brand-descriptor small {
    display: block;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #d5ddda;
    white-space: nowrap;
}
.brand small {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 5px;
  color: #c8d1ce;
}
.site-header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.site-header nav a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}
.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 9px 14px;
}
.section-dark {
  background: var(--green);
  color: #fff;
}
.section-light {
  background: #fff;
}
.section-muted {
  background: #f1f2ee;
}
.hero {
  min-height: 650px;
  padding: 96px 0 104px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green);
}
.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("images/little-fort-hero.webp");
  background-size: cover;
  background-position: center 48%;
  transform: scale(1.01);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(20, 40, 36, 0.82) 0%,
    rgba(20, 40, 36, 0.67) 30%,
    rgba(20, 40, 36, 0.28) 55%,
    rgba(20, 40, 36, 0.06) 76%,
    rgba(20, 40, 36, 0) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-copy {
  max-width: 670px;
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin: 0 0 18px;
}
.eyebrow.dark {
  color: #53655f;
}
.hero h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
  margin: 0 0 24px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}
.lead {
  font-size: 1.12rem;
  color: #eef2f0;
  max-width: 650px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 32px 0 22px;
}
.button {
  display: inline-block;
  padding: 13px 19px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  border: 1px solid transparent;
}
.button-gold {
  background: var(--gold);
  color: #1d2523;
}
.button-outline {
  border-color: #aebbb7;
  color: #fff;
  background: rgba(20, 40, 36, 0.18);
}
section:not(.hero) {
  padding: 88px 0;
}
h2 {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.13;
  letter-spacing: -0.035em;
  margin: 0 0 22px;
}
.section-intro {
  font-size: 1.12rem;
  color: #53605d;
}
blockquote {
  margin: 40px 0 0;
  padding: 22px 0 22px 28px;
  border-left: 4px solid var(--gold);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.45;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.cards article {
  background: #fff;
  border-top: 3px solid var(--green);
  padding: 30px;
}
.cards article > span {
  font-size: 0.7rem;
  font-weight: 700;
  color: #84918d;
}
.cards h3 {
  margin: 12px 0 8px;
}
.cards p {
  color: #596662;
  font-size: 0.92rem;
}
.case-study {
  background: #203834;
}
.case-grid,
.credibility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.case-note {
  color: #b9c6c2;
  border-left: 2px solid var(--gold);
  padding-left: 18px;
}
.case-visual {
  display: block;
  position: relative;
  text-decoration: none;
  background: #172a27;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.case-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200/630;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.case-visual span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: rgba(20, 40, 36, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 8px 11px;
  font-size: 0.78rem;
  font-weight: 700;
}
.case-visual:hover img {
  transform: scale(1.015);
}
.pricing-context {
  max-width: 760px;
  margin: 28px 0 0;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green);
}
.credibility-image {
  width: min(100%, 520px);
  height: auto;
  object-fit: contain;
  margin: auto;
  display: block;
}
.text-link {
  font-weight: 700;
  color: var(--green);
}
.cta {
  text-align: center;
}
.cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto;
  color: #d1dad7;
}
.centered {
  justify-content: center;
}
footer {
  background: #162724;
  color: #c9d2cf;
  text-align: center;
  padding: 42px 20px 34px;
  font-size: 0.78rem;
}
.footer-brand strong,
.footer-brand span {
  display: block;
}
.footer-brand strong {
  color: #fff;
  font-size: 1rem;
}
.footer-brand span {
  margin-top: 4px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin: 16px 0;
}
.footer-links a {
  color: #e0e5e3;
}
footer small {
  color: #85948f;
}
@media (max-width: 800px) {
  .site-header {
    height: auto;
    padding: 12px 18px;
  }
  .site-header nav > a:first-child {
    display: none;
  }
  .brand small {
    display: none;
  }
  .brand-logo {
    width: 90px;
    height: auto;
  }
  .hero {
    min-height: 620px;
    padding: 68px 0 76px;
    align-items: flex-end;
  }
  .hero-image {
    background-position: 60% center;
  }
  .hero-shade {
    background: linear-gradient(
      90deg,
      rgba(18, 36, 33, 0.84) 0%,
      rgba(18, 36, 33, 0.62) 58%,
      rgba(18, 36, 33, 0.16) 100%
    );
  }
  .case-grid,
  .credibility-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  section:not(.hero) {
    padding: 64px 0;
  }
  .case-grid > div:first-child {
    order: 1;
  }
  .credibility {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .wrap {
    width: min(calc(100% - 28px), var(--max));
  }
  .site-header nav{display:none}

  .nav-cta {
    padding: 8px 10px;
    font-size: 0.75rem;
  }
  .hero {
    min-height: 610px;
  }
  .hero-image {
    background-position: 58% center;
  }
  .hero-shade {
    background: linear-gradient(
      90deg,
      rgba(18, 36, 33, 0.86) 0%,
      rgba(18, 36, 33, 0.66) 64%,
      rgba(18, 36, 33, 0.2) 100%
    );
  }
  .hero h1 {
    font-size: 2.4rem;
  }
  .lead {
    font-size: 1rem;
  }
  .actions {
    display: grid;
  }
  .button {
    text-align: center;
  }
  blockquote {
    font-size: 1.18rem;
  }
  .case-visual span {
    font-size: 0.7rem;
  }
}
