*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --dk:#211C14; --dk2:#2A2419; --dk3:#362D20; --surf:#413522;
  --acc:#D6A84C; --acc2:#E7BD68; --ww:#F7F4EC; --lt:#DDD4C6; --mt:#AFA18D;
  --brd:rgba(214,168,76,0.24); --ff:Georgia,'Times New Roman',serif; --fb:'Segoe UI',system-ui,sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--dk); color: var(--ww); font-family: var(--fb); font-weight: 300; line-height: 1.75; overflow-x: hidden; }
a { color: inherit; }
nav {
  position: sticky; top: 0; z-index: 20; min-height: 92px; padding: 1rem 2.4rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(33,28,20,0.94); border-bottom: 1px solid var(--brd); backdrop-filter: blur(16px);
}
.brand-logo { width: 205px; height: 66px; object-fit: contain; object-position: left center; display: block; }
.nav-links, .footer-links { display: flex; gap: 1rem; list-style: none; align-items: center; flex-wrap: wrap; }
.nav-links a, footer a {
  color: var(--lt); text-decoration: none; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.nav-links a:hover, footer a:hover { color: var(--acc); }
.nav-cta { background: var(--acc); color: var(--dk) !important; padding: 0.55rem 1.1rem; font-weight: 600; }
.hero {
  position: relative; overflow: hidden;
  min-height: 560px; padding: 8rem 4rem 5rem; display: grid; align-items: end;
  background: linear-gradient(90deg, rgba(33,28,20,0.88), rgba(33,28,20,0.58)), var(--hero-img) center/cover no-repeat;
  border-bottom: 1px solid var(--brd);
}
.hero.has-motion { background: var(--hero-img) center/cover no-repeat; }
.hero.has-motion::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(33,28,20,0.9), rgba(33,28,20,0.58));
}
.hero.has-motion::after {
  content: ""; position: absolute; inset: -4%; z-index: 0;
  background: var(--hero-img) center/cover no-repeat;
  filter: brightness(0.9) saturate(0.95);
  animation: heroDrift 18s ease-in-out infinite alternate;
}
.hero-inner { max-width: 980px; position: relative; z-index: 2; }
.dachreport-hero {
  background-position: center top;
}
.dachreport-hero::before {
  background:
    linear-gradient(90deg, rgba(33,28,20,0.78) 0%, rgba(33,28,20,0.34) 44%, rgba(33,28,20,0.04) 100%),
    linear-gradient(180deg, rgba(33,28,20,0.08), rgba(33,28,20,0.12));
}
.dachreport-hero::after {
  background-position: center top;
  filter: brightness(1.18) saturate(1.12) contrast(1.03);
  animation: none;
  transform: translate3d(0, 215px, 0) scale(1.03);
}
@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(-1.5%, -1%, 0); }
  to { transform: scale(1.1) translate3d(1.5%, 1%, 0); }
}
.eyebrow {
  color: var(--acc); font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase;
  margin-bottom: 1.4rem; display: flex; align-items: center; gap: 1rem;
}
.eyebrow::before { content:""; width: 36px; height: 1px; background: var(--acc); display: block; }
h1, h2, h3 { font-family: var(--ff); font-weight: 600; line-height: 1.02; }
h1 { font-size: clamp(3.2rem, 7vw, 6.5rem); max-width: 980px; }
h1 em, h2 em { color: var(--acc); font-style: italic; }
.hero p { color: var(--lt); max-width: 660px; margin-top: 1.8rem; font-size: 1.05rem; line-height: 1.85; }
.dr-logo { width: min(360px, 75vw); margin-bottom: 2rem; filter: drop-shadow(0 18px 32px rgba(0,0,0,0.35)); }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.2rem; }
.btn-p, .btn-g {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0.9rem 1.8rem;
  text-decoration: none; font-size: 0.74rem; letter-spacing: 0.13em; text-transform: uppercase;
  position: relative; z-index: 3; cursor: pointer; border-radius: 0; font: inherit;
}
.btn-p { border: 1px solid var(--acc); background: var(--acc); color: var(--dk); font-weight: 600; }
.btn-g { border: 1px solid var(--brd); background: rgba(33,28,20,0.55); color: var(--lt); }
.btn-p:hover, .btn-p:focus-visible { background: var(--acc2); border-color: var(--acc2); color: var(--dk); }
.btn-g:hover, .btn-g:focus-visible { border-color: var(--acc); background: rgba(214,168,76,0.09); color: var(--ww); }
section { padding: 5.5rem 4rem; }
.section-head { max-width: 940px; margin: 0 auto 3rem; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(2.5rem, 4.8vw, 4.8rem); margin-bottom: 1rem; }
.section-head p { color: var(--lt); max-width: 720px; margin: 0 auto; font-size: 1rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--brd); max-width: 1180px; margin: 0 auto; }
.card { background: var(--dk2); padding: 2.3rem; min-height: 260px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.card h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.card p { color: var(--lt); font-size: 0.98rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--brd); max-width: 1180px; margin: 0 auto; }
.mini-card { background: var(--dk2); padding: 2rem; text-align: center; min-height: 210px; }
.mini-card strong { display: block; font-family: var(--ff); color: var(--acc); font-size: 2rem; line-height: 1; margin-bottom: 1rem; }
.mini-card h3 { font-size: 1.4rem; margin-bottom: 0.8rem; }
.mini-card p { color: var(--lt); font-size: 0.94rem; line-height: 1.65; }
.split { display: grid; grid-template-columns: minmax(0,0.95fr) minmax(0,1.05fr); gap: 1px; background: var(--brd); max-width: 1180px; margin: 0 auto; }
.split-media { min-height: 440px; background: var(--dk3); overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.92) saturate(0.95); }
.drone-showcase {
  position: relative;
  min-height: 520px;
  background:
    linear-gradient(135deg, rgba(214,168,76,0.2), rgba(33,28,20,0.12)),
    var(--dk3);
}
.drone-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(214,168,76,0.42);
  box-shadow: inset 0 0 80px rgba(33,28,20,0.65);
  pointer-events: none;
}
.drone-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(33,28,20,0.1), rgba(33,28,20,0.3)),
    linear-gradient(180deg, rgba(214,168,76,0.06), rgba(33,28,20,0.12));
  mix-blend-mode: color;
  pointer-events: none;
}
.drone-showcase img {
  object-position: center center;
  filter: brightness(0.78) contrast(1.08) saturate(0.78);
  transform: scale(1.02);
}
.drone-feature {
  grid-template-columns: 1fr;
}
.drone-feature .drone-showcase {
  min-height: auto;
  aspect-ratio: 16 / 8.2;
}
.drone-feature .drone-showcase img {
  object-fit: contain;
  background: #0f1518;
  filter: brightness(0.9) contrast(1.05) saturate(0.86);
  transform: none;
}
.drone-feature .split-copy {
  padding: 3rem 4rem;
}
.split-copy { background: var(--dk2); padding: 3.5rem; display: flex; flex-direction: column; justify-content: center; text-align: center; align-items: center; }
.split-copy h2 { font-size: clamp(2rem, 3.2vw, 3.35rem); margin-bottom: 1.2rem; }
.split-copy p { color: var(--lt); max-width: 640px; margin-bottom: 1rem; }
.list { display: grid; gap: 0.8rem; list-style: none; max-width: 680px; margin-top: 1rem; }
.list li { border-top: 1px solid var(--brd); padding-top: 0.8rem; color: var(--lt); }
.image-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 1px; background: var(--brd); max-width: 1180px; margin: 0 auto; }
.image-grid.triple { grid-template-columns: repeat(3, 1fr); }
.image-tile { min-height: 360px; background: var(--dk3); position: relative; overflow: hidden; }
.image-tile img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.9) saturate(0.95); }
.image-tile-contain img { object-fit: contain; background: #171209; filter: brightness(0.98) saturate(1.02); }
.image-caption { position: absolute; left: 1.4rem; right: 1.4rem; bottom: 1.4rem; padding: 1rem; background: rgba(33,28,20,0.82); border: 1px solid var(--brd); color: var(--lt); font-size: 0.9rem; }
.note { max-width: 980px; margin: 2.5rem auto 0; padding: 1.4rem; border: 1px solid var(--brd); background: rgba(214,168,76,0.06); color: var(--lt); text-align: center; }
.note strong { color: var(--acc); }
.band { background: var(--dk3); border-top: 1px solid var(--brd); border-bottom: 1px solid var(--brd); text-align: center; }
.band h2 { font-size: clamp(2.5rem, 4.8vw, 4.8rem); margin-bottom: 1rem; }
.band p { max-width: 760px; margin: 0 auto; color: var(--lt); }
.contact-strip, .btn-row { position: relative; z-index: 3; }
.contact-strip { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
footer {
  padding: 2.5rem 4rem; border-top: 1px solid var(--brd); display: flex; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap; align-items: center; text-align: center; background:#1A150E;
}
footer .brand-logo { object-position: center center; }
.copy { color: var(--mt); font-size: 0.78rem; }
.cookie-note {
  position: fixed; left: 1.2rem; right: 1.2rem; bottom: 1.2rem; z-index: 300; max-width: 760px; margin: 0 auto;
  display: none; align-items: center; gap: 1rem; padding: 1rem 1.1rem; background: rgba(33,28,20,0.96);
  border: 1px solid var(--brd); box-shadow: 0 18px 48px rgba(0,0,0,0.35);
}
.cookie-note.show { display: flex; }
.cookie-note p { color: var(--lt); font-size: 0.88rem; line-height: 1.55; flex: 1; }
.cookie-note a { color: var(--acc); text-decoration: none; border-bottom: 1px solid rgba(214,168,76,0.45); }
.cookie-note button { border: 1px solid var(--acc); background: var(--acc); color: var(--dk); min-height: 42px; padding: 0 1.2rem; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; }
@media (max-width: 980px) {
  nav, .hero, section, footer { padding-left: 2rem; padding-right: 2rem; }
  nav { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .grid-3, .grid-4, .split, .image-grid, .image-grid.triple { grid-template-columns: 1fr; }
  .split-media { min-height: 300px; }
  .drone-showcase { min-height: 360px; }
  .image-tile { min-height: 300px; }
}
@media (max-width: 560px) {
  nav, .hero, section, footer { padding-left: 1.2rem; padding-right: 1.2rem; }
  h1 { font-size: 2.75rem; }
  .card, .split-copy { padding: 2rem 1.3rem; }
  .btn-p, .btn-g { width: 100%; }
  footer { flex-direction: column; }
  footer > a, .footer-links, .copy { width: 100%; justify-content: center; }
  .cookie-note { flex-direction: column; align-items: stretch; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .hero.has-motion::after { animation: none; transform: none; }
  .hero.has-motion {
    background: linear-gradient(90deg, rgba(33,28,20,0.88), rgba(33,28,20,0.58)), var(--hero-img) center/cover no-repeat;
  }
}
