:root {
  --green-950: #0f1b13;
  --green-900: #173820;
  --green-800: #1f4d2e;
  --green-700: #2f653d;
  --green-100: #e9efe4;
  --cream: #f7f0df;
  --wheat: #d4ae52;
  --gold: #d4ae52;
  --rust: #8d4b2d;
  --soil: #3a281d;
  --white: #ffffff;
  --muted: #6b6f62;
  --text: #1f241b;
  --shadow: 0 24px 70px rgba(16, 26, 18, 0.18);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 240, 223, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16, 26, 18, 0.1);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a {
  color: var(--green-900);
}

.nav-cta {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--green-900);
  color: var(--cream) !important;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 740px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(100deg, rgba(16, 26, 18, 0.94), rgba(16, 26, 18, 0.76) 48%, rgba(16, 26, 18, 0.2)),
    radial-gradient(circle at 78% 20%, rgba(242, 193, 78, 0.34), transparent 30%),
    url('assets/media/drone-hover-above-trailer.webp') center / cover;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -12vw;
  width: 46vw;
  height: 46vw;
  border: 2px solid rgba(242, 193, 78, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 0 0 70px rgba(242, 193, 78, 0.05);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 56px;
  align-items: center;
  padding: 96px 0;
}

.hero-logo {
  width: min(310px, 72vw);
  height: auto;
  display: block;
  margin: 0 0 28px;
  padding: 18px 22px;
  border-radius: 24px;
  background: rgba(247, 240, 223, 0.94);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.22);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--rust);
}

.eyebrow.light {
  color: var(--gold);
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

h1, h2 {
  font-family: Merriweather, Georgia, serif;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.1rem, 7vw, 6.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  font-size: 1.15rem;
}

.lead {
  max-width: 690px;
  margin: 26px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 18px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--gold);
  color: var(--green-950);
  box-shadow: 0 18px 42px rgba(242, 193, 78, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.button.full {
  width: 100%;
}

.status-note {
  max-width: 640px;
  color: rgba(255,255,255,.7);
  font-size: .92rem;
}

.hero-card {
  background: rgba(247, 240, 223, 0.95);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.45);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(49, 83, 50, 0.1);
  color: var(--green-800);
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.hero-card h2 {
  font-size: 2rem;
}

.hero-card ul, .values-card ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.trust-strip {
  background: var(--green-950);
  color: var(--cream);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.12);
}

.trust-grid > div {
  padding: 24px;
  background: var(--green-950);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid span {
  margin-top: 4px;
  color: rgba(247, 240, 223, 0.7);
  font-size: .92rem;
}

.section {
  padding: 104px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
}

.section-intro p,
.two-column p,
.compliance-grid p,
.contact-grid p {
  color: var(--muted);
  font-size: 1.05rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-card,
.values-card,
.contact-card,
.map-card,
.equipment-card {
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(16, 26, 18, 0.1);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 20px 50px rgba(16, 26, 18, 0.08);
}

.service-card h3,
.equipment-card h3 {
  margin-bottom: 10px;
  color: var(--green-900);
}

.service-card p,
.equipment-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.dark-section {
  background: var(--green-950);
  color: var(--cream);
}

.equipment-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(212, 174, 82, 0.18), transparent 28%),
    linear-gradient(180deg, #fffaf0, var(--cream));
}

.equipment-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image:
    linear-gradient(rgba(23, 56, 32, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 56, 32, .07) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.equipment-grid,
.performance-panel {
  position: relative;
  z-index: 1;
}

.equipment-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 42px;
  align-items: center;
}

.equipment-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.equipment-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.equipment-stats div {
  padding: 20px;
  border-radius: 18px;
  background: rgba(23, 56, 32, .08);
  border: 1px solid rgba(23, 56, 32, .12);
}

.equipment-stats strong {
  display: block;
  color: var(--green-900);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1;
  letter-spacing: -.06em;
}

.equipment-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 800;
}

.equipment-card {
  background: rgba(255, 255, 255, .76);
}

.equipment-photo {
  width: 100%;
  display: block;
  margin: -8px 0 22px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(16, 26, 18, 0.14);
}

.equipment-card ul {
  margin-bottom: 0;
  padding-left: 20px;
}

.performance-panel {
  margin-top: 42px;
  padding: 36px;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 36px;
  align-items: start;
  background: linear-gradient(135deg, var(--green-900), var(--green-950));
  color: var(--cream);
  box-shadow: var(--shadow);
}

.performance-panel h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.performance-copy p {
  margin-top: 0;
  color: rgba(247, 240, 223, .78);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: center;
}

.dark-section h2 {
  color: var(--white);
}

.benefit-list {
  display: grid;
  gap: 20px;
}

.benefit {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(247, 240, 223, 0.14);
}

.benefit span {
  font-weight: 900;
  color: var(--gold);
}

.benefit h3 {
  margin-bottom: 6px;
}

.benefit p {
  margin: 0;
  color: rgba(247, 240, 223, 0.72);
}

.map-section {
  background: linear-gradient(180deg, var(--cream), #efe4c9);
}

.map-card {
  min-height: 420px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(242, 193, 78, .26), transparent 28%),
    linear-gradient(135deg, #e7d5aa, #f8f0db);
  overflow: hidden;
}

.map-rings {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 2px solid rgba(49, 83, 50, .42);
  box-shadow: 0 0 0 70px rgba(49, 83, 50, .08), 0 0 0 140px rgba(49, 83, 50, .05);
  display: grid;
  place-items: center;
}

.pin {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-900);
  color: var(--gold);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.county-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.county-list span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(49, 83, 50, 0.1);
  color: var(--green-900);
  font-weight: 800;
  font-size: .88rem;
}

.about-section {
  background: #fffaf0;
}

.values-card {
  background: var(--green-900);
  color: var(--cream);
}

.values-card h3 {
  font-size: 1.55rem;
}

.values-card li {
  margin: 12px 0;
}

.compliance-band {
  padding: 68px 0;
  background: var(--soil);
  color: var(--cream);
}

.compliance-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 46px;
  align-items: center;
}

.compliance-grid p {
  color: rgba(247, 240, 223, .78);
  margin: 0;
}

.contact-section {
  background: var(--cream);
}

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

.contact-card {
  padding: 34px;
}

.contact-line {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(16, 26, 18, .1);
}

.contact-line span {
  color: var(--muted);
  font-weight: 800;
}

.contact-line strong {
  text-align: right;
  color: var(--green-900);
}

.contact-card .button {
  margin-top: 24px;
}

.site-footer {
  padding: 42px 0;
  background: var(--green-950);
  color: var(--cream);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.footer-grid p,
.footer-grid span {
  color: rgba(247, 240, 223, .68);
}

.footer-grid span {
  display: block;
  text-align: right;
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .hero-grid,
  .section-grid,
  .two-column,
  .equipment-grid,
  .performance-panel,
  .contact-grid,
  .compliance-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 72px 0;
  }

  .trust-grid,
  .card-grid,
  .equipment-stats {
    grid-template-columns: 1fr;
  }

  .reverse-mobile .map-card {
    order: 2;
  }

  .footer-grid,
  .contact-line {
    display: block;
  }

  .footer-grid span,
  .contact-line strong {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .hero-card,
  .service-card,
  .values-card,
  .contact-card,
  .map-card,
  .equipment-card {
    padding: 22px;
  }
}


.media-section {
  background: linear-gradient(180deg, #fffaf0, var(--cream));
  padding: 76px 0;
}

.media-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.photo-carousel {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  margin-top: -2px;
  padding: 4px 0 10px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
}

.carousel-track {
  display: flex;
  align-items: stretch;
  width: max-content;
  min-width: max-content;
  gap: 0;
  animation: none;
  will-change: transform;
}

.carousel-set {
  display: flex;
  align-items: stretch;
  flex: 0 0 auto;
  gap: 0;
  padding-right: 0;
}

@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333333%); }
}

.gallery-card {
  position: relative;
  flex: 0 0 clamp(260px, 32vw, 390px);
  width: clamp(260px, 32vw, 390px);
  height: 205px;
  margin: 0 24px 0 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid rgba(247, 240, 223, .96);
  background: var(--cream);
  box-shadow: 0 18px 44px rgba(16, 26, 18, 0.16);
  cursor: zoom-in;
  transition: transform .2s ease, box-shadow .2s ease;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(16, 26, 18, 0.18);
  outline: none;
}

.gallery-card img,
.media-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gallery-card img {
  position: absolute;
  inset: 0;
}

.gallery-card::after,
.media-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15, 27, 19, .78));
  pointer-events: none;
}

.gallery-card.portrait img {
  object-position: center 24%;
}

.gallery-card span {
  display: none;
}

.media-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.media-checklist,
.quote-list ul {
  padding-left: 20px;
}

.media-checklist li,
.quote-list li {
  margin: 8px 0;
}

.media-preview {
  display: block;
}

.media-video {
  width: 100%;
  height: clamp(240px, 28vw, 330px);
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: var(--green-950);
  box-shadow: var(--shadow);
}

.media-tile {
  position: relative;
  min-height: 160px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(247, 240, 223, .22);
  background:
    linear-gradient(135deg, rgba(15, 27, 19, .32), rgba(15, 27, 19, .62)),
    var(--green-950);
  box-shadow: var(--shadow);
  margin: 0;
}

.media-tile.large {
  grid-row: span 2;
}

.media-tile span {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 27, 19, .78);
  color: var(--cream);
  font-weight: 900;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.quote-list {
  margin-top: 28px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(16, 26, 18, 0.1);
}

.quote-list h3 {
  margin-bottom: 10px;
  color: var(--green-900);
}

.quote-card {
  background: #fffaf0;
  border-top: 7px solid var(--gold);
}

.quote-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: .95rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 34px;
  background: rgba(15, 27, 19, .9);
}

.lightbox.is-open {
  display: grid;
}

.lightbox-image {
  max-width: min(1120px, 92vw);
  max-height: 82vh;
  display: block;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .45);
}

.lightbox-caption {
  margin: 16px 0 0;
  color: var(--cream);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(247, 240, 223, .38);
  border-radius: 50%;
  background: rgba(247, 240, 223, .12);
  color: var(--cream);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-open {
  overflow: hidden;
}

@media (max-width: 920px) {
  .media-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .media-video {
    min-height: 240px;
  }

  .media-tile.large {
    grid-row: auto;
  }

  .gallery-card {
    flex-basis: 250px;
    height: 175px;
  }
}
