:root {
  --pine: #153b24;
  --pine-2: #225336;
  --moss: #6d7f3f;
  --clay: #a2522b;
  --gold: #d8b45f;
  --ink: #162018;
  --muted: #5c665e;
  --paper: #f8f7f1;
  --field: #eef1df;
  --line: #d9ddce;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(22, 32, 24, 0.16);
  --max: 1160px;
}

* {
  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;
}

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

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

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(238, 241, 223, 0.97);
  border-bottom: 1px solid rgba(21, 59, 36, 0.16);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 212px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav > a,
.nav-dropdown__link {
  padding: 10px 12px;
  border-radius: 6px;
  color: #263428;
  font-weight: 750;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"],
.nav-dropdown:hover .nav-dropdown__link,
.nav-dropdown:focus-within .nav-dropdown__link,
.nav-dropdown.is-open .nav-dropdown__link,
.nav-dropdown__link[aria-current="page"] {
  color: var(--pine);
  background: rgba(21, 59, 36, 0.1);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 6px;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
  display: none;
  width: 276px;
  height: 12px;
}

.nav-dropdown:hover::after,
.nav-dropdown:focus-within::after,
.nav-dropdown.is-open::after {
  display: block;
}

.nav-dropdown__link {
  padding-right: 8px;
}

.nav-dropdown__toggle {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 38px;
  border: 0;
  border-radius: 6px;
  color: #263428;
  background: transparent;
  cursor: pointer;
}

.nav-dropdown__toggle span {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -2px);
  transition: transform 160ms ease;
}

.nav-dropdown:hover .nav-dropdown__toggle span,
.nav-dropdown:focus-within .nav-dropdown__toggle span,
.nav-dropdown.is-open .nav-dropdown__toggle span {
  transform: rotate(225deg) translate(-2px, -1px);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 3;
  width: 276px;
  display: grid;
  gap: 2px;
  padding: 8px;
  border: 1px solid rgba(21, 59, 36, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  color: #263428;
  font-size: 0.94rem;
  font-weight: 780;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a[aria-current="page"] {
  color: var(--pine);
  background: rgba(21, 59, 36, 0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(21, 59, 36, 0.2);
  border-radius: 6px;
  background: var(--white);
  color: var(--pine);
  cursor: pointer;
}

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

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 850;
}

.button {
  color: var(--white);
  background: var(--pine);
  border: 1px solid var(--pine);
  box-shadow: 0 10px 20px rgba(21, 59, 36, 0.16);
}

.button:hover {
  background: #0f2d1a;
}

.header-actions .button {
  color: #132217;
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: none;
}

.header-actions .button:hover {
  color: #132217;
  background: #e5c472;
}

.button--light {
  color: var(--pine);
  background: var(--white);
  border-color: var(--white);
}

.button--clay {
  background: var(--clay);
  border-color: var(--clay);
}

.button--outline {
  color: var(--pine);
  background: transparent;
  border-color: rgba(21, 59, 36, 0.28);
  box-shadow: none;
}

.text-link {
  color: var(--pine);
  padding-inline: 4px;
}

.card-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--pine);
  font-weight: 850;
}

.hero {
  position: relative;
  min-height: clamp(610px, 82vh, 790px);
  color: var(--white);
  overflow: hidden;
  background: var(--pine);
}

.hero--short {
  min-height: 430px;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 20, 13, 0.84), rgba(11, 20, 13, 0.48) 44%, rgba(11, 20, 13, 0.1)),
    linear-gradient(180deg, rgba(11, 20, 13, 0.1), rgba(11, 20, 13, 0.68));
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  min-height: inherit;
  margin: 0 auto;
  display: grid;
  align-content: center;
  padding: 86px 0 112px;
}

.hero__copy {
  max-width: 760px;
}

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.4vw, 6.1rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero--short h1 {
  max-width: 920px;
  font-size: clamp(2.7rem, 4.5vw, 4.9rem);
}

.hero p {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero__actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero__facts li {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  font-weight: 800;
}

.section {
  padding: 84px 0;
}

.section--field {
  background: var(--field);
}

.section--pine {
  color: var(--white);
  background: var(--pine);
}

.section--tight {
  padding: 56px 0;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section--pine .eyebrow,
.hero .eyebrow {
  color: var(--gold);
}

h2,
.page-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.18;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section--pine .lead {
  color: rgba(255, 255, 255, 0.78);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.service-card,
.proof-card,
.contact-panel,
.video-card,
.project-card,
.story-panel {
  border: 1px solid rgba(21, 59, 36, 0.14);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.service-card img,
.proof-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.service-card__body,
.proof-card__body,
.project-card__body,
.story-panel__body {
  padding: 22px;
}

.service-card p,
.proof-card p,
.project-card p,
.story-panel p,
.video-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.service-card ul,
.split-list,
.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.split-list li,
.check-list li {
  position: relative;
  margin-top: 9px;
  padding-left: 18px;
  color: var(--muted);
}

.service-card li::before,
.split-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: var(--clay);
  border-radius: 50%;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: stretch;
}

.proof-card--large img {
  height: 420px;
}

.comparison {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 300px;
  overflow: hidden;
  background: #d7d9ce;
}

.comparison__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison__after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 50%);
}

.comparison__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(21, 59, 36, 0.3);
  pointer-events: none;
}

.comparison__handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
}

.comparison input {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.comparison__tag {
  position: absolute;
  top: 14px;
  z-index: 3;
  padding: 6px 9px;
  border-radius: 4px;
  color: var(--white);
  background: rgba(21, 59, 36, 0.86);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison__tag--before {
  left: 14px;
}

.comparison__tag--after {
  right: 14px;
  background: rgba(162, 82, 43, 0.9);
}

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

.project-card__body span {
  display: inline-flex;
  margin-top: 16px;
  color: var(--pine);
  font-weight: 850;
}

.band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.band img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.stat {
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
}

.stat strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
}

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

.service-detail {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 0;
  min-height: 320px;
  border: 1px solid rgba(21, 59, 36, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.service-detail img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.service-detail div {
  padding: 28px;
}

.service-detail p {
  color: var(--muted);
}

.service-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.feature-panel {
  padding: 28px;
  border: 1px solid rgba(21, 59, 36, 0.14);
  border-radius: 8px;
  background: var(--white);
}

.feature-panel p {
  color: var(--muted);
}

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

.photo-tile {
  overflow: hidden;
  border: 1px solid rgba(21, 59, 36, 0.14);
  border-radius: 8px;
  background: var(--white);
}

.photo-tile img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.photo-tile div {
  padding: 18px;
}

.photo-tile p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #101811;
}

.video-card div {
  padding: 20px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: start;
}

.story-panel img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contact-panel {
  padding: 28px;
}

.contact-panel h2,
.contact-panel h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.contact-panel h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
}

.contact-panel p {
  color: var(--muted);
}

.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.service-area {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.service-area span {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--pine);
  background: rgba(109, 127, 63, 0.16);
  font-weight: 850;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #0e2215;
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner strong {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a:hover {
  color: var(--white);
}

@media (max-width: 980px) {
  .header-actions .button {
    display: none;
  }

  .service-grid,
  .service-detail-grid,
  .project-grid,
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid,
  .band,
  .story-grid,
  .contact-grid,
  .service-page-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .band img {
    height: 420px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 162px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 16px 18px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(238, 241, 223, 0.98);
    border-bottom: 1px solid rgba(21, 59, 36, 0.14);
  }

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

  .site-nav > a,
  .nav-dropdown__link {
    padding: 13px 12px;
  }

  .nav-dropdown {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav-dropdown::after {
    content: none;
    display: none;
  }

  .nav-dropdown__toggle {
    width: 46px;
    height: 46px;
  }

  .nav-dropdown__menu {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    gap: 2px;
    margin: 0 0 8px;
    padding: 0 0 0 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .nav-dropdown:hover .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu {
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    display: grid;
  }

  .nav-dropdown__menu a {
    padding: 10px 12px;
  }

  .hero,
  .hero--short {
    min-height: 560px;
  }

  .hero__content {
    padding: 72px 0 86px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .hero--short h1 {
    font-size: clamp(2.1rem, 10vw, 3.15rem);
  }

  .section {
    padding: 64px 0;
  }

  .service-grid,
  .service-detail-grid,
  .project-grid,
  .video-grid,
  .photo-strip,
  .stats {
    grid-template-columns: 1fr;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail img {
    min-height: 260px;
    height: 260px;
  }

  .comparison {
    min-height: 260px;
  }

  .proof-card--large img,
  .band img,
  .story-panel img {
    height: 320px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .header-inner,
  .wrap,
  .hero__content,
  .footer-inner {
    width: min(100% - 24px, var(--max));
  }

  .button,
  .text-link {
    width: 100%;
  }

  .hero__actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero p,
  .lead {
    font-size: 1rem;
  }
}
