:root {
  --font-sans: 'Jost', sans-serif;
  --font-serif: 'Vollkorn', serif;
  --font-body: 'Maven Pro', sans-serif;
  --bg-warm: #f5f3ef;
  --bg-light: #faf9f7;
  --bg-dark: #1c1b1a;
  --bg-accent: #e2dcd0;
  --text-dark: #2a2826;
  --text-light: #f5f3ef;
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --spacing-section: 8rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  font-size: 1.125rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.video-consent-placeholder__inner p {
	color:black!important;
}

h1, h2, h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h1 i, h2 i, h3 i {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
}

h1 { font-size: clamp(3rem, 5vw, 2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.5rem, 4vw, 4rem); letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }
.problem-solution h2 {font-size: clamp(2.5rem, 4vw, 2rem)}
p { margin-bottom: 1.5rem; color: rgba(42, 40, 38, 0.8); }
.bg-dark p { color: rgba(245, 243, 239, 0.8); }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.max-w-md { max-width: 800px; margin: 0 auto; }
.max-w-sm { max-width: 600px; margin: 0 auto; }
.text-center { text-align: center; }
.section-padding { padding: var(--spacing-section) 0; }
.mt-8 { margin-top: 2rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.my-12 { margin-top: 3rem; margin-bottom: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.overflow-hidden { overflow: hidden; }

.bg-warm { background-color: var(--bg-warm); }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); color: var(--text-light); }
.bg-accent { background-color: var(--bg-accent); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem; border-radius: 100px; font-family: var(--font-sans);
  font-weight: 600; font-size: 1rem; transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(180deg, #ffffff 0%, #f0ece6 100%);
  color: var(--text-dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,1);
  border: 1px solid rgba(0,0,0,0.05);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,1);
}
.btn-outline {
  border: 1px solid var(--text-dark); color: var(--text-dark);
}
.btn-outline:hover {
  background: var(--text-dark); color: var(--text-light);
}

/* Animations */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* Header */
.glass-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 249, 247, 0.8); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05); transition: transform 0.4s ease;
}
.glass-header.hidden { transform: translateY(-100%); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo img { height: 32px; }
.nav-links { display: flex; gap: 2rem; font-family: var(--font-sans); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; }
.nav-links a { position: relative; opacity: 0.7; transition: opacity 0.3s; }
.nav-links a:hover { opacity: 1; }

/* Hero */
.hero-section { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: slowZoom 20s ease-out forwards; }
@keyframes slowZoom { to { transform: scale(1); } }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(28, 27, 26, 0.8) 0%, rgba(28, 27, 26, 0.2) 100%); }
.hero-content { position: relative; z-index: 1; }
.glass-panel {
  background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1); padding: 4rem;
  border-radius: var(--radius-lg); max-width: 700px; color: var(--text-light);
  box-shadow: 0 24px 48px rgba(0,0,0,0.2);
}
.glass-panel p { color: rgba(245, 243, 239, 0.9); font-size: 1.25rem; margin-bottom: 2.5rem; }

/* USP */
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; }
.usp-card {
  background: var(--bg-light); padding: 3rem; border-radius: var(--radius-md);
  box-shadow: 0 4px 24px rgba(0,0,0,0.03); transition: transform 0.4s ease;
  border: 1px solid rgba(0,0,0,0.02);
}
.usp-card:hover { transform: translateY(-8px); }
.usp-card p { margin: 0; font-family: var(--font-sans); font-size: 1.25rem; font-weight: 600; line-height: 1.4; color: var(--text-dark); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; padding: 1rem; }
.gallery-item { position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/5; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:nth-child(7n+1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-item:nth-child(5n+3) { grid-column: span 2; aspect-ratio: 16/9; }

/* Video */
.video-wrapper {     
	position: relative;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 16 / 9;
    height: auto;
    margin: 0 auto;
	}
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* Combined Media */
.media-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 4rem; }
.ba-container { position: relative; overflow: hidden; border-radius: var(--radius-md); aspect-ratio: 3/2; cursor: ew-resize; box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.ba-after, .ba-before-wrapper img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-before-wrapper { position: absolute; top: 0; left: 0; width: 50%; height: 100%; overflow: hidden; }
.ba-before-wrapper img { width: 200%; max-width: none; }
.ba-handle { position: absolute; top: 0; left: 50%; bottom: 0; width: 2px; background: #fff; transform: translateX(-50%); pointer-events: none; }
.ba-handle-circle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 48px; height: 48px; background: rgba(255,255,255,0.2); backdrop-filter: blur(8px); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; border: 1px solid rgba(255,255,255,0.4); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.timelapse-container { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 3/2; box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.timelapse-container img { width: 100%; height: 100%; object-fit: cover; }

/* Problem Solution */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.decorative-typographic { display: flex; flex-direction: column; gap: 1rem; }
.huge-serif { font-family: var(--font-serif); font-size: clamp(4rem, 8vw, 8rem); font-style: italic; line-height: 0.9; color: var(--bg-accent); opacity: 0.5; }

/* Benefits */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; }
.skeuo-card {
  background: linear-gradient(145deg, #ffffff, #f0ece6); padding: 3rem; border-radius: var(--radius-md);
  box-shadow: 8px 8px 16px rgba(0,0,0,0.03), -8px -8px 16px rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.5);
}
.skeuo-card .icon { width: 48px; height: 48px; margin-bottom: 2rem; color: var(--text-dark); }

/* Features */
.feature-list { margin-top: 3rem; }
.feature-list li { position: relative; padding-left: 2.5rem; margin-bottom: 1.5rem; font-size: 1.25rem; }
.feature-list li::before { content: ''; position: absolute; left: 0; top: 0.5rem; width: 8px; height: 8px; border-radius: 50%; background: var(--bg-accent); }

/* About */
.align-center { align-items: center; }
.about-image img { border-radius: var(--radius-md); box-shadow: 0 24px 48px rgba(0,0,0,0.1); }

/* Drone */
.drone-carousel { display: flex; gap: 1rem; overflow-x: auto; padding: 2rem 0; scroll-snap-type: x mandatory; scrollbar-width: none; }
.drone-carousel::-webkit-scrollbar { display: none; }
.drone-track { display: flex; gap: 1.5rem; padding: 0 2rem; }
.drone-track img { width: 80vw; max-width: 400px; border-radius: var(--radius-md); scroll-snap-align: center; object-fit: cover; aspect-ratio: 4/5; cursor: pointer; }
.drone-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.drone-arrow {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(245, 243, 239, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  backdrop-filter: blur(10px);
}

.drone-arrow:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(245, 243, 239, 0.45);
}

.drone-arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.drone-arrow svg {
  pointer-events: none;
}

@media (max-width: 600px) {
  .drone-nav {
    margin-top: 1.5rem;
  }

  .drone-arrow {
    width: 48px;
    height: 48px;
  }
}

/* FAQ */
.faq-accordion { margin-top: 3rem; border-top: 1px solid rgba(0,0,0,0.1); }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
.faq-question { width: 100%; text-align: left; padding: 1.5rem 0; background: none; border: none; font-family: var(--font-sans); font-size: 1.25rem; font-weight: 600; color: var(--text-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question .icon { font-weight: 400; font-size: 1.5rem; transition: transform 0.3s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-answer p { padding-bottom: 1.5rem; }

/* Contact */
.contact-links { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.contact-link { font-family: var(--font-sans); font-size: 2rem; font-weight: 600; transition: color 0.3s; }
.contact-link:hover { color: rgba(42, 40, 38, 0.6); }

/* Footer */
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; gap: 4rem; align-items: center; padding: 4rem 2rem; }
.footer-logo { height: 24px; filter: brightness(0) invert(1); opacity: 0.8; }
.footer-contact, .footer-legal { display: flex; gap: 2rem; font-size: 0.875rem; opacity: 0.7; }
.footer-contact a:hover, .footer-legal a:hover { opacity: 1; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 1000; display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; cursor: pointer; padding: 2rem; }
.lightbox.active { display: flex; opacity: 1; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 8px; object-fit: contain; }

@media (max-width: 1024px) {
  .split-layout, .media-split { grid-template-columns: 1fr; gap: 3rem; }
  .usp-grid, .benefits-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; justify-content: center; }
  .footer-contact, .footer-legal { justify-content: center; flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; aspect-ratio: 4/3; }
  .glass-panel { padding: 2rem; }
  .nav-links { display: none; }
}
