:root {
  --forest: #102b24;
  --deep: #081b17;
  --moss: #355949;
  --sage: #8fa696;
  --cream: #f4f0e6;
  --paper: #fbfaf6;
  --gold: #e9b949;
  --gold-dark: #c89524;
  --ink: #16211d;
  --line: rgba(16, 43, 36, .14);
  --white: #fff;
  --radius: 6px;
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.section { padding: 112px 0; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.17);
}
.site-header.scrolled {
  position: fixed;
  background: rgba(8, 27, 23, .94);
  backdrop-filter: blur(18px);
  animation: headerIn .25s ease;
}
@keyframes headerIn { from { transform: translateY(-100%); } }
.nav-shell {
  width: min(1280px, calc(100% - 48px));
  height: 86px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 46px; height: 46px; }
.brand span { display: flex; flex-direction: column; text-transform: uppercase; line-height: 1; }
.brand strong { font: 800 16px/1 var(--display); letter-spacing: .09em; }
.brand small { margin-top: 6px; font-size: 9px; letter-spacing: .34em; opacity: .78; }
.site-nav { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 600; }
.site-nav > a:not(.nav-cta) { position: relative; }
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .2s ease;
}
.site-nav > a:hover::after { width: 100%; }
.nav-cta { padding: 13px 20px; color: var(--deep); background: var(--gold); border-radius: 3px; }
.menu-toggle { display: none; color: white; background: none; border: 0; }

.hero { position: relative; min-height: 780px; height: 100vh; max-height: 980px; color: white; overflow: hidden; }
.hero-image {
  position: absolute;
  inset: 0;
  background: url("assets/ohio-drone-hero.jpg") center / cover;
  animation: heroZoom 14s ease-out both;
}
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1); } }
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,18,15,.87) 0%, rgba(4,18,15,.62) 40%, rgba(4,18,15,.05) 72%),
    linear-gradient(0deg, rgba(4,18,15,.45), transparent 50%);
}
.hero-content { position: relative; z-index: 2; padding-top: clamp(190px, 24vh, 260px); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 24px;
  color: var(--moss);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow.light { color: rgba(255,255,255,.78); }
.eyebrow span { width: 28px; height: 2px; background: var(--gold); }
h1, h2, h3 { margin: 0; font-family: var(--display); }
h1 { max-width: 830px; font-size: clamp(58px, 7vw, 104px); line-height: .98; letter-spacing: -.06em; }
h1 em { color: var(--gold); font-style: normal; }
.hero-content > p { max-width: 610px; margin: 30px 0 34px; color: rgba(255,255,255,.82); font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 3px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { color: var(--deep); background: var(--gold); }
.button.primary:hover { background: #f1c85f; }
.text-link { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.5); font-size: 14px; font-weight: 700; }
.text-link span { margin-left: 14px; color: var(--gold); }
.hero-proof {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 180px);
  background: rgba(8,27,23,.9);
  backdrop-filter: blur(12px);
}
.hero-proof div { padding: 23px 25px; border-left: 1px solid rgba(255,255,255,.1); }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { color: var(--gold); font: 700 15px var(--display); }
.hero-proof span { margin-top: 6px; color: rgba(255,255,255,.56); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

.intro { background: var(--cream); }
.intro-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 100px; align-items: end; }
h2 { font-size: clamp(42px, 5vw, 68px); line-height: 1.06; letter-spacing: -.05em; }
.intro-copy { padding-bottom: 4px; }
.intro-copy p { margin: 0 0 17px; color: #4e5d56; font-size: 17px; line-height: 1.75; }

.services { background: var(--paper); }
.section-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 50px; }
.section-heading p { max-width: 410px; margin: 0 0 5px; color: #637069; line-height: 1.65; }
.feature-grid { display: grid; grid-template-columns: 1.18fr .82fr; grid-template-rows: repeat(2, 330px); gap: 18px; }
.feature-card { position: relative; overflow: hidden; min-height: 330px; color: white; border-radius: var(--radius); }
.feature-card.thermal { grid-row: 1 / 3; }
.feature-card img { height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.feature-card:hover img { transform: scale(1.035); }
.card-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,15,12,.93), rgba(3,15,12,0) 72%); }
.card-number { position: absolute; top: 24px; right: 26px; color: rgba(255,255,255,.7); font: 700 12px var(--display); letter-spacing: .15em; }
.card-copy { position: absolute; left: 30px; right: 30px; bottom: 28px; }
.card-tag { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.card-copy h3 { margin-top: 8px; font-size: 27px; letter-spacing: -.03em; }
.thermal .card-copy h3 { font-size: 36px; }
.card-copy p { max-width: 520px; margin: 12px 0 18px; color: rgba(255,255,255,.72); line-height: 1.55; }
.card-copy a { font-size: 13px; font-weight: 700; }
.card-copy a span { margin-left: 7px; color: var(--gold); }
.real-estate .card-copy p, .mapping .card-copy p { display: none; }
.service-strips { margin-top: 18px; border-top: 1px solid var(--line); }
.service-strips article {
  display: grid;
  grid-template-columns: 70px 1.1fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 30px 10px;
  border-bottom: 1px solid var(--line);
}
.strip-icon { display: grid; place-items: center; width: 54px; height: 54px; color: var(--forest); background: #e9eee8; border-radius: 50%; }
.strip-icon svg { width: 29px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-strips span { color: var(--moss); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.service-strips h3 { margin-top: 5px; font-size: 23px; }
.service-strips p { margin: 0; color: #68746e; line-height: 1.6; }

.why { color: white; background: var(--deep); overflow: hidden; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.why-visual { position: relative; min-height: 580px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.1); overflow: hidden; background: radial-gradient(circle, rgba(233,185,73,.08), transparent 55%); }
.radar-ring { position: absolute; border: 1px solid rgba(233,185,73,.28); border-radius: 50%; }
.ring-one { width: 180px; height: 180px; }
.ring-two { width: 340px; height: 340px; }
.ring-three { width: 510px; height: 510px; }
.ring-three::before, .ring-three::after { content: ""; position: absolute; background: rgba(233,185,73,.16); }
.ring-three::before { left: 50%; top: -60px; bottom: -60px; width: 1px; }
.ring-three::after { top: 50%; left: -60px; right: -60px; height: 1px; }
.drone-line { position: relative; z-index: 2; width: 190px; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 12px rgba(233,185,73,.3)); }
.coordinate { position: absolute; top: 28px; left: 28px; color: rgba(255,255,255,.35); font: 600 10px/1.6 var(--display); letter-spacing: .12em; }
.scan-label { position: absolute; right: 28px; bottom: 28px; color: var(--gold); font: 600 9px var(--display); letter-spacing: .18em; }
.why-copy > p { max-width: 550px; margin: 26px 0 37px; color: rgba(255,255,255,.62); font-size: 17px; line-height: 1.7; }
.check-list { padding: 0; margin: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.14); }
.check-list li { display: flex; gap: 22px; padding: 21px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.check-list > li > span { color: var(--gold); font: 700 11px var(--display); }
.check-list div { display: flex; flex-direction: column; gap: 5px; }
.check-list strong { font: 700 16px var(--display); }
.check-list small { color: rgba(255,255,255,.5); font-size: 13px; }

.area { background: var(--cream); }
.area-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: center; }
.area-copy > p { margin: 28px 0; color: #56635d; font-size: 17px; line-height: 1.7; }
.area-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.area-pills span { padding: 9px 13px; color: var(--moss); border: 1px solid #cbd2c8; border-radius: 30px; font-size: 12px; }
.radius-map { position: relative; min-height: 490px; overflow: hidden; background-color: #e5e8dd; background-image: radial-gradient(#aeb9ad 1px, transparent 1px); background-size: 17px 17px; border-radius: var(--radius); }
.radius-circle { position: absolute; width: 360px; height: 360px; left: 50%; top: 50%; transform: translate(-50%,-50%); border: 1px solid rgba(16,43,36,.32); border-radius: 50%; background: rgba(53,89,73,.06); }
.radius-circle::before, .radius-circle::after { content: ""; position: absolute; inset: 11%; border: 1px solid rgba(16,43,36,.12); border-radius: 50%; }
.radius-circle::after { inset: 32%; }
.radius-circle span { position: absolute; right: -12px; top: 50%; padding: 5px 8px; color: white; background: var(--moss); font: 700 9px var(--display); letter-spacing: .1em; }
.map-pin { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); display: flex; flex-direction: column; align-items: center; }
.map-pin i { width: 18px; height: 18px; margin-bottom: 9px; background: var(--gold); border: 5px solid var(--forest); border-radius: 50%; box-shadow: 0 0 0 6px rgba(16,43,36,.12); }
.map-pin strong { font: 800 14px var(--display); letter-spacing: .12em; }
.map-pin small { margin-top: 4px; color: var(--moss); font: 700 8px var(--display); letter-spacing: .16em; }
.map-town { position: absolute; color: #53635c; font-size: 11px; font-weight: 600; }
.map-town::before { content: ""; display: inline-block; width: 5px; height: 5px; margin-right: 6px; background: var(--moss); border-radius: 50%; vertical-align: middle; }
.granville { left: 69%; top: 51%; }.heath { left: 54%; top: 69%; }.pataskala { left: 18%; top: 65%; }.johnstown { left: 20%; top: 26%; }
.map-line { position: absolute; height: 2px; background: rgba(255,255,255,.8); transform-origin: left; }
.line-a { width: 120%; left: -10%; top: 44%; transform: rotate(8deg); }
.line-b { width: 100%; left: 9%; top: 72%; transform: rotate(-28deg); }
.line-c { width: 80%; left: 40%; top: 10%; transform: rotate(64deg); }

.contact { color: white; background: var(--forest); }
.contact-shell { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.contact-copy p { max-width: 460px; margin: 28px 0 38px; color: rgba(255,255,255,.62); font-size: 17px; line-height: 1.7; }
.contact-note { display: flex; gap: 14px; align-items: center; max-width: 420px; padding: 18px; background: rgba(255,255,255,.06); border-left: 2px solid var(--gold); }
.contact-note svg { flex: 0 0 30px; width: 30px; fill: none; stroke: var(--gold); stroke-width: 1.5; stroke-linecap: round; }
.contact-note span { color: rgba(255,255,255,.6); font-size: 12px; line-height: 1.55; }
.contact-note strong { display: block; color: white; font-size: 13px; }
.contact-form { padding: 38px; color: var(--ink); background: white; border-radius: var(--radius); }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: block; margin-bottom: 18px; color: #3c4843; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: #f5f5f1;
  border: 1px solid transparent;
  border-radius: 3px;
  outline: 0;
  text-transform: none;
  transition: border .2s, background .2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { background: white; border-color: var(--moss); }
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form .button { width: 100%; margin-top: 3px; }
.form-status { min-height: 18px; margin: 14px 0 0; color: var(--moss); font-size: 13px; text-align: center; }

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  color: white;
  background:
    linear-gradient(90deg, rgba(4,18,15,.9), rgba(4,18,15,.65)),
    url("assets/ohio-drone-hero.jpg") center / cover;
}
.thanks-card {
  width: min(620px, 100%);
  padding: clamp(36px, 7vw, 72px);
  text-align: center;
  background: rgba(8,27,23,.92);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}
.thanks-card .brand { margin-bottom: 45px; text-align: left; }
.thanks-card h1 { font-size: clamp(43px, 8vw, 68px); }
.thanks-card > p { margin: 24px auto 32px; color: rgba(255,255,255,.68); font-size: 17px; line-height: 1.7; }
.thanks-card .button { min-width: 210px; }

footer { padding: 55px 0 25px; color: white; background: var(--deep); }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 50px; }
.footer-brand { color: white; }
.footer-line { color: rgba(255,255,255,.35); font-size: 12px; text-align: center; }
.back-top { color: var(--gold); font-size: 12px; font-weight: 700; }
.legal { display: flex; justify-content: space-between; margin-top: 42px; padding-top: 22px; color: rgba(255,255,255,.3); border-top: 1px solid rgba(255,255,255,.1); font-size: 10px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .section { padding: 85px 0; }
  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: var(--deep);
    font-size: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s;
  }
  .site-nav.open { opacity: 1; visibility: visible; }
  .nav-cta { font-size: 16px; }
  .menu-toggle { position: relative; z-index: 2; display: block; width: 44px; height: 44px; }
  .menu-toggle span { position: absolute; left: 9px; width: 26px; height: 2px; background: currentColor; transition: .25s; }
  .menu-toggle span:first-child { top: 16px; }.menu-toggle span:last-child { top: 25px; }
  .menu-toggle.active span:first-child { top: 21px; transform: rotate(45deg); }.menu-toggle.active span:last-child { top: 21px; transform: rotate(-45deg); }
  .hero-proof { grid-template-columns: repeat(3, 1fr); width: 100%; }
  .intro-grid, .why-grid, .area-grid, .contact-shell { grid-template-columns: 1fr; gap: 55px; }
  .feature-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 510px 350px; }
  .feature-card.thermal { grid-column: 1 / 3; grid-row: auto; }
  .why-visual { min-height: 500px; order: 2; }
  .area-copy { max-width: 600px; }
}

@media (max-width: 640px) {
  .container, .nav-shell { width: min(100% - 30px, 1180px); }
  .nav-shell { height: 72px; }
  .brand-mark { width: 39px; }
  .brand strong { font-size: 13px; }
  .brand small { font-size: 7px; }
  .hero { min-height: 760px; height: 100svh; max-height: none; }
  .hero-content { padding-top: 175px; }
  h1 { font-size: clamp(48px, 15vw, 68px); }
  .hero-content > p { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 12px; }
  .hero-proof { display: none; }
  .section { padding: 72px 0; }
  h2 { font-size: 40px; }
  .intro-grid { gap: 32px; }
  .section-heading { display: block; }
  .section-heading p { margin-top: 20px; }
  .feature-grid { display: block; }
  .feature-card { height: 430px; margin-bottom: 14px; }
  .feature-card.thermal { height: 500px; }
  .real-estate .card-copy p, .mapping .card-copy p { display: block; }
  .thermal .card-copy h3, .card-copy h3 { font-size: 27px; }
  .service-strips article { grid-template-columns: 55px 1fr; gap: 15px; }
  .service-strips article p { grid-column: 2; }
  .why-grid { gap: 40px; }
  .why-visual { min-height: 390px; }
  .ring-two { width: 280px; height: 280px; }.ring-three { width: 410px; height: 410px; }
  .radius-map { min-height: 380px; }
  .radius-circle { width: 290px; height: 290px; }
  .contact-form { padding: 24px 18px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 25px; text-align: left; }
  .footer-line { text-align: left; line-height: 1.6; }
  .legal { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
