:root {
  --color-bg: #f5f3ef;
  --color-bg-warm: #ece8e1;
  --color-bg-dark: #1a1917;
  --color-bg-deep: #0f0e0d;
  --color-text: #2c2a26;
  --color-text-light: #7a7568;
  --color-text-inv: #f0ece6;
  --color-accent: #a38e6f;
  --color-accent-soft: #c4b49a;
  --color-border: rgba(44, 42, 38, 0.1);
  --color-border-light: rgba(255, 255, 255, 0.08);
  --color-glass: rgba(245, 243, 239, 0.65);
  --color-glass-dark: rgba(26, 25, 23, 0.7);
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-soft: 20px;
  --radius-card: 24px;
  --max-w: 1280px;
  --header-h: 72px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

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

.font-jost { font-family: 'Jost', sans-serif; font-weight: 600; }
.font-vollkorn { font-family: 'Vollkorn', serif; font-weight: 400; font-style: italic; }

h1, h2, h3 { line-height: 1.2; }

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

.video-consent-placeholder__inner p {
	color:black!important;
}

figure { position: relative; }
figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  opacity: 0;
  transition: opacity 0.4s var(--ease-premium);
  pointer-events: none;
  display:none;
}
.hero figure:hover figcaption { opacity: 1; }

.btn-primary {
  display: inline-block;
  padding: 16px 36px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--color-text-inv);
  background: linear-gradient(145deg, #3a3733, #2c2a26);
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), transparent);
  border-radius: 60px;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn-primary:hover::after { opacity: 1; }

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text);
  border: 1.5px solid var(--color-accent-soft);
  border-radius: 60px;
  transition: all 0.4s var(--ease-premium);
  background: transparent;
}
.btn-secondary:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-premium), transform 0.9s var(--ease-premium);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ═══════════ HEADER ═══════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: transform 0.5s var(--ease-premium), background 0.4s, box-shadow 0.4s;
  background: rgba(245, 243, 239, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
}
.site-header.hidden { transform: translateY(-100%); }
.site-header.scrolled {
  background: rgba(245, 243, 239, 0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}
.header-logo img { height: 28px; width: auto; }
.header-nav {
  display: flex;
  gap: 32px;
}
.header-nav a {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-light);
  transition: color 0.3s;
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-accent);
  transition: width 0.4s var(--ease-premium);
}
.header-nav a:hover { color: var(--color-text); }
.header-nav a:hover::after { width: 100%; }
.header-cta {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 24px;
  background: var(--color-bg-dark);
  color: var(--color-text-inv);
  border-radius: 60px;
  transition: all 0.3s var(--ease-premium);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
}
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 60px) 32px 80px;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(163, 142, 111, 0.12), transparent),
    radial-gradient(ellipse 60% 50% at 20% 70%, rgba(196, 180, 154, 0.1), transparent),
    linear-gradient(160deg, #f0ece6 0%, #e8e3db 30%, #f5f3ef 60%, #ece8e1 100%);
  z-index: 0;
}
.hero-bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23a38e6f' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.7;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 24px;
  line-height: 1.15;
}
.hero-sub {
  font-size: 18px;
  color: var(--color-text-light);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-image-wrap {
  position: relative;
}
.hero-image-wrap figure {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.08);
  max-width: 800px;
}
.hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 6s var(--ease-premium);
}
.hero-image-wrap:hover img {
  transform: scale(1.03);
}

/* ═══════════ USP ═══════════ */
.usp {
  padding: 100px 32px;
  background: var(--color-bg-warm);
  position: relative;
}
.usp-inner {
  max-width: 960px;
  margin: 0 auto;
}
.usp h2 { margin-bottom: 48px; text-align: center; }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.usp-item {
  padding: 32px 28px;
  background: var(--color-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-soft);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.6);
  transition: transform 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium);
}
.usp-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.6);
}
.usp-number {
  display: block;
  font-family: 'Vollkorn', serif;
  font-style: italic;
  font-size: 36px;
  color: var(--color-accent);
  margin-bottom: 12px;
  line-height: 1;
}
.usp-item p {
  font-size: 16px;
  line-height: 1.6;
}

/* ═══════════ LOCAL CONTEXT ═══════════ */
.local-context {
  padding: 120px 32px;
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
}
.local-context-bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background:
    radial-gradient(circle at 20% 50%, rgba(163,142,111,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(196,180,154,0.06) 0%, transparent 50%);
}
.local-context-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 99px, rgba(163,142,111,0.04) 99px, rgba(163,142,111,0.04) 100px),
    repeating-linear-gradient(90deg, transparent, transparent 99px, rgba(163,142,111,0.04) 99px, rgba(163,142,111,0.04) 100px);
  animation: gridFloat 30s linear infinite;
}
@keyframes gridFloat {
  0% { transform: translate(0, 0); }
  100% { transform: translate(100px, 100px); }
}
.local-context-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.local-context h2 { margin-bottom: 28px; }
.local-context p {
  font-size: 18px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ═══════════ GALLERY — DYNAMIC MASONRY ═══════════ */
.gallery {
  width: 100vw;
  padding: 120px 0 140px;
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}
.gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 20%, rgba(163,142,111,0.06), transparent),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(196,180,154,0.04), transparent);
  pointer-events: none;
}
.gallery-header {
  text-align: center;
  padding: 0 32px 56px;
  position: relative;
  z-index: 2;
}
.gallery h2 { color: var(--color-text-inv); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 6px;
  padding: 0 6px;
  position: relative;
  z-index: 1;
}

/* Hero items: span 2 columns and 2 rows */
.gallery-item.gi-hero {
  grid-column: span 2;
  grid-row: span 2;
}
/* Wide items: span 2 columns */
.gallery-item.gi-wide {
  grid-column: span 2;
}
/* Tall items: span 2 rows */
.gallery-item.gi-tall {
  grid-row: span 2;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
  transition: border-color 0.5s var(--ease-premium);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.2) 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-premium);
  pointer-events: none;
  border-radius: 8px;
}
.gallery-item:hover::before {
  border-color: rgba(163,142,111,0.35);
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-premium);
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* ═══════════ YOUTUBE ═══════════ */
.youtube-section {
  padding: 120px 32px;
  position: relative;
  overflow: hidden;
  background: var(--color-bg-warm);
}
.youtube-bg-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(26,25,23,0.06), transparent),
    linear-gradient(180deg, var(--color-bg-warm), var(--color-bg));
}
.youtube-bg-layer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  background-size: 200px;
}
.youtube-inner {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.youtube-inner h2 { margin-bottom: 48px; }
.youtube-embed-wrap {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.youtube-embed-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ═══════════ COMBINED MEDIA ═══════════ */
.combined-media {
  padding: 120px 32px;
  background: var(--color-bg-deep);
  position: relative;
}
.combined-media-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.combined-media h2 {
  color: var(--color-text-inv);
  text-align: center;
  margin-bottom: 60px;
}
.combined-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.before-after-container {
  position: relative;
  width: 100%;
  padding-bottom: 66.667%;
  border-radius: var(--radius-soft);
  overflow: hidden;
  cursor: col-resize;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.ba-after, .ba-before {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-after { z-index: 1; }
.ba-before-wrapper {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}
.ba-before { width: 100%; height: 100%; object-fit: cover; }
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  width: 44px;
}
.ba-handle-line {
  flex: 1;
  width: 2px;
  background: rgba(255,255,255,0.8);
}
.ba-handle-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  flex-shrink: 0;
}
.ba-label {
  position: absolute;
  bottom: 16px;
  z-index: 3;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
  padding: 4px 12px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  border-radius: 30px;
}
.ba-label-before { left: 16px; }
.ba-label-after { right: 16px; }

.timelapse-container {
  position: relative;
  width: 100%;
  padding-bottom: 66.667%;
  border-radius: var(--radius-soft);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.timelapse-container img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ═══════════ PROBLEM SOLUTION ═══════════ */
.problem-solution {
  padding: 120px 32px;
  background: var(--color-bg);
  position: relative;
}
.problem-solution-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: center;
}
.ps-text-block h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  margin-bottom: 32px;
}
.ps-text-block p {
  font-size: 17px;
  color: var(--color-text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}
.ps-deco-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 60px 32px;
}
.ps-deco-large {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--color-accent);
  line-height: 1.1;
}
.ps-deco-small {
  font-size: 24px;
  color: var(--color-accent-soft);
}

blockquote.no-bg {
	color:black!important;
}


/* ═══════════ BENEFITS ═══════════ */
.benefits {
  padding: 120px 32px;
  background: var(--color-bg-warm);
}
.benefits-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.benefits h2 { text-align: center; margin-bottom: 64px; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.benefit-card {
  padding: 44px 36px;
  background: linear-gradient(145deg, rgba(255,255,255,0.7), rgba(245,243,239,0.5));
  backdrop-filter: blur(12px);
  border-radius: var(--radius-card);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.7);
  transition: transform 0.5s var(--ease-premium), box-shadow 0.5s var(--ease-premium);
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.7);
}
.benefit-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--color-bg-warm), var(--color-bg));
  border-radius: 16px;
  margin-bottom: 24px;
  color: var(--color-accent);
  box-shadow: inset 0 -2px 4px rgba(0,0,0,0.04), inset 0 2px 4px rgba(255,255,255,0.6);
}
.benefit-card h3 {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 12px;
  line-height: 1.35;
}
.benefit-card p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ═══════════ FEATURES ═══════════ */
.features {
  padding: 120px 32px;
  background: var(--color-bg-dark);
}
.features-inner {
  max-width: 800px;
  margin: 0 auto;
}
.features h2 {
  color: var(--color-text-inv);
  margin-bottom: 64px;
}
.features-list { display: flex; flex-direction: column; gap: 0; }
.feature-item {
  display: flex;
  align-items: baseline;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border-light);
  transition: padding-left 0.4s var(--ease-premium);
}
.feature-item:hover { padding-left: 12px; }
.feature-num {
  font-family: 'Vollkorn', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--color-accent);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.feature-item p {
  font-size: 17px;
  color: var(--color-text-inv);
  line-height: 1.6;
  opacity: 0.85;
}

/* ═══════════ SOCIAL PROOF ═══════════ */
.social-proof {
  padding: 100px 32px;
  background: var(--color-bg);
  text-align: center;
}
.social-proof-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.social-proof h2 { margin-bottom: 24px; }
.sp-text {
  font-size: 18px;
  color: var(--color-text-light);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width:700px;
  margin-left:auto;
  margin-right:auto;
}
#googleReviewsBlock { margin-bottom: 32px; }

/* ═══════════ ABOUT ME ═══════════ */
.about-me {
  padding: 120px 32px;
  background: var(--color-bg-warm);
}
.about-me-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius-card);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.about-text-wrap h2 { margin-bottom: 28px; }
.about-text-wrap p {
  font-size: 17px;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-charm {
  font-family: 'Vollkorn', serif;
  font-style: italic;
  color: var(--color-accent) !important;
  font-size: 18px !important;
  margin-top: 8px;
}

/* ═══════════ DRONE — CINEMATIC SHOWCASE ═══════════ */
.drone-section {
  padding: 140px 32px;
  background: var(--color-bg-deep);
  position: relative;
  overflow: hidden;
}
.drone-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 30%, rgba(163,142,111,0.07), transparent),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(26,25,23,0.5), transparent);
  pointer-events: none;
}
.drone-bg-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  background-size: 200px;
}
.drone-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.drone-header {
  max-width: 640px;
  margin-bottom: 56px;
}
.drone-header h2 {
  color: var(--color-text-inv);
  margin-bottom: 20px;
}
.drone-header p {
  font-size: 17px;
  color: rgba(240, 236, 230, 0.6);
  line-height: 1.8;
}

.drone-showcase {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 16px;
  align-items: stretch;
}

.drone-feature {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 16px 60px rgba(0,0,0,0.4);
}
.drone-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-premium), opacity 0.6s var(--ease-premium);
}
.drone-feature:hover img { transform: scale(1.03); }
.drone-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,14,13,0.4) 100%);
  pointer-events: none;
}

.drone-filmstrip {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 100%;
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent-soft) transparent;
}
.drone-filmstrip::-webkit-scrollbar { width: 3px; }
.drone-filmstrip::-webkit-scrollbar-track { background: transparent; }
.drone-filmstrip::-webkit-scrollbar-thumb { background: var(--color-accent-soft); border-radius: 3px; }

.drone-thumb {
  position: relative;
  flex-shrink: 0;
  max-width: 200px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.4s var(--ease-premium);
  opacity: 0.5;
}
.drone-thumb.active {
  border-color: var(--color-accent);
  opacity: 1;
  box-shadow: 0 4px 20px rgba(163,142,111,0.25);
}
.drone-thumb:hover {
  opacity: 0.85;
  transform: translateX(-4px);
}
.drone-thumb.active:hover {
  opacity: 1;
}
.drone-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.drone-thumb-num {
  position: absolute;
  bottom: 4px;
  right: 6px;
  font-family: 'Vollkorn', serif;
  font-style: italic;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  pointer-events: none;
}

/* ═══════════ FAQ ═══════════ */
.faq {
  padding: 120px 32px;
  background: var(--color-bg-warm);
}
.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}
.faq h2 { margin-bottom: 56px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 17px;
  text-align: left;
  color: var(--color-text);
  transition: color 0.3s;
}
.faq-question:hover { color: var(--color-accent); }
.faq-icon {
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-premium);
  color: var(--color-accent);
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-premium), padding 0.5s var(--ease-premium);
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq-answer p {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ═══════════ CTA ═══════════ */
.cta-block {
  padding: 140px 32px;
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg-anim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 30% 50%, rgba(163,142,111,0.08), transparent),
    radial-gradient(ellipse 40% 40% at 70% 40%, rgba(196,180,154,0.06), transparent);
}
.cta-bg-anim::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.cta-block h2 {
  color: var(--color-text-inv);
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.cta-block p {
  color: rgba(240, 236, 230, 0.7);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* ═══════════ CONTACT ═══════════ */
.contact {
  padding: 120px 32px;
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
  text-align: center;
}
.contact-bg-anim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(163,142,111,0.06), transparent 50%);
}
.contact-bg-anim::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 79px, rgba(163,142,111,0.03) 79px, rgba(163,142,111,0.03) 80px);
  animation: diagFloat 40s linear infinite;
}
@keyframes diagFloat {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-113px, 0); }
}
.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 0 auto;
}
.contact h2 { margin-bottom: 40px; }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.contact-link {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--color-text);
  transition: color 0.3s;
  position: relative;
}
.contact-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-accent);
  transition: width 0.4s var(--ease-premium);
}
.contact-link:hover { color: var(--color-accent); }
.contact-link:hover::after { width: 100%; }

/* ═══════════ FOOTER ═══════════ */
.site-footer {
  padding: 48px 32px;
  background: var(--color-bg-dark);
  border-top: 1px solid var(--color-border-light);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.footer-contact {
  display: flex;
  gap: 32px;
}
.footer-contact a {
  font-family: 'Maven Pro', sans-serif;
  font-size: 14px;
  color: rgba(240, 236, 230, 0.5);
  transition: color 0.3s;
}
.footer-contact a:hover { color: var(--color-text-inv); }
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-family: 'Maven Pro', sans-serif;
  font-size: 13px;
  color: rgba(240, 236, 230, 0.4);
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--color-text-inv); }

/* ═══════════ LIGHTBOX ═══════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(15, 14, 13, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-premium);
}
.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.4);
  transition: transform 0.4s var(--ease-premium);
}
.lightbox.active .lightbox-img { transform: scale(1); }
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.2);
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-text { text-align: center; }
  .hero-sub { margin: 0 auto 32px; }
  .hero-text .btn-primary { margin: 0 auto; }
  .hero-image-wrap { max-width: 600px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; }
  .combined-media-grid { grid-template-columns: 1fr; }
  .problem-solution-inner { grid-template-columns: 1fr; gap: 40px; }
  .ps-deco { display: none; }
  .about-me-inner { grid-template-columns: 220px 1fr; gap: 48px; }
  .drone-showcase { grid-template-columns: 1fr 160px; }
  .drone-thumb { height: 60px; max-width: 160px; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-cta { display: none; }
  .mobile-toggle { display: flex; }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(245, 243, 239, 0.98);
    backdrop-filter: blur(16px);
    padding: 24px 32px;
    gap: 20px;
    border-bottom: 1px solid var(--color-border);
  }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 40px); padding-bottom: 60px; }
  .usp-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gallery-item.gi-hero { grid-column: span 2; grid-row: span 2; }
  .gallery-item.gi-wide { grid-column: span 2; }
  .gallery-item.gi-tall { grid-row: span 1; }
  .benefits-grid { grid-template-columns: 1fr; }
  .about-me-inner { grid-template-columns: 1fr; text-align: center; }
  .about-image-wrap { max-width: 240px; margin: 0 auto; }
  .drone-showcase { grid-template-columns: 1fr; gap: 12px; }
  .drone-filmstrip { flex-direction: row; overflow-x: auto; overflow-y: hidden; max-height: none; gap: 8px; padding-bottom: 8px; }
  .drone-thumb { width: 120px; max-width: 120px; height: 72px; }
  .drone-thumb:hover { transform: translateY(-4px) translateX(0); }
  .footer-inner { flex-direction: column; text-align: center; gap: 20px; }
  .footer-contact { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .gallery-grid { grid-auto-rows: 120px; }
  .drone-thumb { width: 100px; height: 60px; }
}
