/* =========================================
   EQUATORIAL MEDIA — style.css
   Responsive: 320px → 1400px+
   ========================================= */

/* ---- TOKENS ---- */
:root {
  --red:        #c40000;
  --red-dark:   #9b0000;
  --red-glow:   rgba(196,0,0,0.25);
  --gold:       #ffcc00;
  --gold-soft:  rgba(255,204,0,0.15);
  --purple:     #4b2c71;
  --purple-dark:#321c4e;
  --ink:        #0d0d0d;
  --ink-soft:   #1a1a1a;
  --white:      #ffffff;
  --off-white:  #f7f7f5;
  --grey:       #e8e8e4;
  --text-muted: #888;

  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body:    'Inter', Arial, Helvetica, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-pill:50px;

  --max-w: 1140px;
  --section-pad: clamp(56px, 8vw, 100px) clamp(16px, 5vw, 40px);
}

/* ---- RESET ---- */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- REUSABLE ---- */
.section-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad);
}

.section-header { margin-bottom: clamp(32px, 5vw, 60px); }
.center-header { text-align: center; }

.section-eyebrow {
  display: inline-block;
  font-size: clamp(0.65rem, 2vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-eyebrow.light { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.05;
}

.light-title { color: var(--white); }

.section-subtitle {
  margin-top: 12px;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: rgba(255,255,255,0.65);
}

.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--red);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  cursor: pointer;
}
.btn-primary:hover {
  background: #a50000;
  border-color: #a50000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--red-glow);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,0.35);
  transition: border-color 0.25s, color 0.25s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,204,0,0.2);
}

.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.75rem clamp(16px, 4vw, 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  flex-shrink: 0;
}
.header-logo img {
  width: clamp(32px, 5vw, 42px);
}
.header-logo span {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  letter-spacing: 0.05em;
  color: var(--white);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.8rem);
}
.header-nav a {
  position: relative;
  color: rgba(255,255,255,0.85);
  font-size: clamp(0.82rem, 1.5vw, 0.92rem);
  font-weight: 500;
  transition: color 0.25s;
}
.header-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 0; bottom: -5px;
  background: var(--gold);
  transition: width 0.3s;
}
.header-nav a:hover { color: var(--white); }
.header-nav a:hover::after { width: 100%; }

.header-btn {
  background: var(--gold) !important;
  color: var(--ink) !important;
  padding: 0.48rem 1.2rem !important;
  border-radius: var(--radius-pill);
  font-weight: 700 !important;
  transition: background 0.25s, transform 0.2s !important;
}
.header-btn::after { display: none !important; }
.header-btn:hover {
  background: var(--white) !important;
  transform: translateY(-2px);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100svh;
  background: var(--red);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
  padding: clamp(80px, 10vw, 120px) clamp(16px, 5vw, 60px) clamp(48px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}

/* Cinematic noise overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(0,0,0,0.35) 0%, transparent 70%),
    linear-gradient(160deg, rgba(0,0,0,0.18) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-block;
  font-size: clamp(0.65rem, 2vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(10px, 2vw, 18px);
  background: rgba(0,0,0,0.25);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,204,0,0.3);
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  text-shadow: 4px 4px 0 rgba(0,0,0,0.35);
  margin-bottom: clamp(14px, 3vw, 24px);
}

.accent-line { color: var(--gold); text-shadow: none; }

.hero-tagline {
  font-size: clamp(0.9rem, 2.5vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin-bottom: clamp(20px, 3vw, 32px);
  max-width: 38ch;
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.service-pill {
  font-size: clamp(0.78rem, 2vw, 0.85rem);
  font-weight: 600;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: background 0.25s, border-color 0.25s;
}
.service-pill:hover {
  background: rgba(255,204,0,0.2);
  border-color: var(--gold);
  color: var(--gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 16px;
}
.hero-phone {
  font-size: clamp(1rem, 3vw, 1.35rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.hero-location {
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  color: rgba(255,255,255,0.65);
}

/* Hero visuals */
.hero-visual {
  position: relative;
  z-index: 2;
  min-height: clamp(300px, 50vw, 520px);
}

.hero-img-drone {
  position: absolute;
  top: -20px;
  right: 0;
  width: clamp(180px, 45%, 380px);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  animation: float 5s ease-in-out infinite;
}

.hero-img-studio {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: clamp(200px, 70%, 480px);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.hero-glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.06;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* =============================================
   SPECIALTIES
   ============================================= */
.specialties {
  background: var(--off-white);
  color: var(--ink);
}

.specialties .section-title { color: var(--red); }
.specialties .section-eyebrow { color: var(--red); opacity: 0.7; }

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(16px, 3vw, 28px);
}

.specialty-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--grey);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.specialty-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: var(--red);
}

.specialty-icon {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  margin-bottom: 14px;
}

.specialty-card h3 {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  color: var(--red);
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--red);
}

.specialty-card ul { list-style: none; }
.specialty-card li {
  padding: 6px 0 6px 22px;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  color: #444;
  position: relative;
  font-weight: 500;
  border-bottom: 1px solid var(--grey);
}
.specialty-card li:last-child { border-bottom: none; }
.specialty-card li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
}

/* =============================================
   PROCESS
   ============================================= */
.process-section {
  background: var(--purple-dark);
  color: var(--white);
}

.process-section .section-title { color: var(--white); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(14px, 2.5vw, 24px);
  margin-bottom: clamp(40px, 6vw, 64px);
}

.process-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: clamp(20px, 3vw, 28px);
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.3s;
}
.process-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.process-num {
  position: absolute;
  top: 12px; right: 16px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: rgba(255,255,255,0.08);
  line-height: 1;
  pointer-events: none;
}

.process-card h3 {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}
.process-card p {
  font-size: clamp(0.82rem, 2vw, 0.92rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}

.service-tags-block {
  text-align: center;
  background: rgba(0,0,0,0.25);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
}
.service-tags-block h3 {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(8px, 1.5vw, 12px);
}
.service-tags span {
  background: var(--white);
  color: var(--purple-dark);
  font-size: clamp(0.75rem, 2vw, 0.88rem);
  font-weight: 700;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  transition: background 0.25s, color 0.25s;
}
.service-tags span:hover {
  background: var(--gold);
  color: var(--ink);
}

/* =============================================
   PRICING
   ============================================= */
.pricing-section {
  background: var(--off-white);
  color: var(--ink);
}
.pricing-section .section-title { color: var(--red); }
.pricing-section .section-eyebrow { color: var(--red); opacity: 0.7; }
.pricing-subtext {
  margin-top: 8px;
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: #666;
}

/* Scroll hint — only visible on narrow screens */
.table-scroll-hint {
  display: none;
  text-align: center;
  font-size: 0.78rem;
  color: #888;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.pricing-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: clamp(32px, 5vw, 56px);
}

.pricing-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  background: var(--white);
  font-size: clamp(0.82rem, 2vw, 0.95rem);
}

.pricing-table thead tr {
  background: var(--purple);
  color: var(--white);
}
.pricing-table th {
  padding: clamp(10px, 2vw, 16px) clamp(12px, 2.5vw, 20px);
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.pricing-table td {
  padding: clamp(10px, 2vw, 15px) clamp(12px, 2.5vw, 20px);
  border-bottom: 1px solid var(--grey);
  color: #333;
  line-height: 1.45;
}
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover { background: #fff9f9; }
.pricing-table td strong { color: var(--ink); }

/* ---- Stacked "card" table on very small screens ---- */
@media (max-width: 540px) {
  .table-scroll-hint { display: block; }

  .pricing-table,
  .pricing-table thead,
  .pricing-table tbody,
  .pricing-table th,
  .pricing-table td,
  .pricing-table tr { display: block; }

  .pricing-table thead tr { display: none; }

  .pricing-table tbody tr {
    background: var(--white);
    border: 1px solid var(--grey);
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    padding: 4px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    min-width: unset;
  }

  .pricing-table td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--grey);
    font-size: 0.88rem;
  }
  .pricing-table td:last-child { border-bottom: none; }

  .pricing-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--purple);
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 90px;
  }
  .pricing-table-wrapper {
    overflow-x: visible;
    box-shadow: none;
  }
  .pricing-table { min-width: unset; }
}

/* Cost factors */
.cost-factors {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  border-left: 5px solid var(--red);
}
.cost-factors h3 {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 20px;
}
.factors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(16px, 3vw, 24px);
}
.factor-card {
  padding: clamp(14px, 2vw, 20px);
  border-radius: var(--radius-md);
  background: var(--off-white);
  border: 1px solid var(--grey);
}
.factor-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.factor-card strong {
  display: block;
  color: var(--red);
  font-size: clamp(0.9rem, 2vw, 1rem);
  margin-bottom: 6px;
}
.factor-card p {
  font-size: clamp(0.8rem, 2vw, 0.88rem);
  color: #666;
  line-height: 1.55;
}

/* =============================================
   ABOUT
   ============================================= */
.about-section { background: var(--purple-dark); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.about-text .section-eyebrow { color: var(--gold); }
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.about-intro {
  font-size: clamp(0.88rem, 2vw, 1rem);
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  line-height: 1.6;
}

.check-list { list-style: none; }
.check-list li {
  font-size: clamp(0.88rem, 2vw, 0.98rem);
  color: rgba(255,255,255,0.85);
  padding: 9px 0 9px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  line-height: 1.5;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
}

/* Guarantee box */
.guarantee-box {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}
.guarantee-box h3 {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 700;
  color: var(--red);
  margin-bottom: 24px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(12px, 2vw, 16px) 0;
  border-bottom: 1px solid var(--grey);
}
.benefit-item:last-child { border-bottom: none; }
.benefit-icon {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  flex-shrink: 0;
  margin-top: 2px;
}
.benefit-item strong {
  display: block;
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: var(--purple);
  margin-bottom: 4px;
}
.benefit-item p {
  font-size: clamp(0.8rem, 2vw, 0.88rem);
  color: #666;
  line-height: 1.5;
}

/* =============================================
   CONTACT
   ============================================= */
.contact-section {
  background: var(--red-dark);
  color: var(--white);
}
.contact-section .section-title { color: var(--white); }
.contact-section .section-eyebrow { color: rgba(255,204,0,0.9); }
.contact-section .section-subtitle { color: rgba(255,255,255,0.75); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(14px, 3vw, 24px);
  margin-bottom: clamp(40px, 6vw, 64px);
}

.contact-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  text-align: center;
  transition: background 0.3s, transform 0.3s;
}
.contact-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}
.contact-card-icon { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 12px; }
.contact-card h3 {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.contact-card p {
  font-size: clamp(0.82rem, 2vw, 0.92rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  margin: 4px 0;
}
.contact-phone {
  display: block;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-email {
  display: block;
  font-size: clamp(0.78rem, 2vw, 0.9rem);
  color: var(--white);
  word-break: break-all;
  margin-bottom: 8px;
}
.contact-addr {
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 600;
  color: var(--white);
}

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 48px);
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.contact-form-wrap h3 {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--red);
  margin-bottom: 24px;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form .form-group { margin-bottom: 16px; }
.contact-form label {
  display: block;
  font-size: clamp(0.78rem, 2vw, 0.85rem);
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: clamp(10px, 2vw, 13px) 14px;
  border: 1.5px solid var(--grey);
  border-radius: var(--radius-sm);
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.25s;
  -webkit-appearance: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
}
.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.submit-btn {
  width: 100%;
  padding: clamp(12px, 2vw, 15px);
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
}

/* =============================================
   FOOTER
   ============================================= */
.main-footer {
  background: var(--ink-soft);
  color: var(--white);
  border-top: 1px solid rgba(255,204,0,0.2);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) clamp(16px, 5vw, 40px) clamp(32px, 4vw, 48px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
}


.footer-logo {
  width: clamp(36px, 5vw, 48px);
  margin-bottom: 12px;
}
.footer-brand h4 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: clamp(0.78rem, 2vw, 0.88rem);
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.footer-col h4 {
  font-size: clamp(0.8rem, 2vw, 0.92rem);
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.footer-col p,
.footer-col a {
  display: block;
  font-size: clamp(0.78rem, 2vw, 0.88rem);
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 6px;
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  background: var(--ink);
  text-align: center;
  padding: clamp(14px, 2vw, 20px) clamp(16px, 5vw, 40px);
  font-size: clamp(0.72rem, 2vw, 0.82rem);
  color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* =============================================
   RESPONSIVE BREAKPOINTS
   Starting from 320px, working up
   ============================================= */

/* 320px → 479px: smallest phones */
@media (max-width: 479px) {
  /* Header */
  .menu-toggle { display: flex; }
  .header-nav {
    position: absolute;
    top: 58px; left: 0; right: 0;
    background: rgba(13,13,13,0.97);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .header-nav.active { max-height: 400px; padding: 1rem 0 1.5rem; gap: 0; }
  .header-nav a {
    padding: 12px 20px;
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
  }
  .header-nav a::after { display: none; }
  .header-btn {
    margin: 8px auto 0 !important;
    padding: 10px 28px !important;
  }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    padding: 80px 16px 36px;
    min-height: auto;
  }
  .hero-visual { display: none; } /* hide complex layered images on tiny screens */
  .hero-title { font-size: clamp(3rem, 14vw, 4rem); }

  /* About */
  .about-grid { grid-template-columns: 1fr; }

  /* Form row stacks */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }
  .footer-logo { margin: 0 auto 10px; }
}

/* 480px → 767px: larger phones */
@media (min-width: 480px) and (max-width: 767px) {
  .menu-toggle { display: flex; }
  .header-nav {
    position: absolute;
    top: 62px; left: 0; right: 0;
    background: rgba(13,13,13,0.97);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .header-nav.active { max-height: 400px; padding: 1rem 0 1.5rem; gap: 0; }
  .header-nav a {
    padding: 12px 20px;
    width: 100%;
    text-align: center;
  }
  .header-nav a::after { display: none; }
  .header-btn { margin: 8px auto 0 !important; }

  .hero {
    grid-template-columns: 1fr;
    padding: 88px 24px 40px;
  }
  .hero-visual {
    display: block;
    min-height: 240px;
    margin-top: 24px;
  }
  .hero-img-drone { width: clamp(120px, 35%, 200px); }
  .hero-img-studio { width: clamp(160px, 60%, 280px); }

  .about-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
  .footer-brand { grid-column: 1 / -1; }
}

/* 768px → 1023px: tablets */
@media (min-width: 768px) and (max-width: 1023px) {
  .menu-toggle { display: flex; }
  .header-nav {
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: rgba(13,13,13,0.97);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .header-nav.active { max-height: 400px; padding: 1rem 0 1.5rem; gap: 0; }
  .header-nav a {
    padding: 12px 24px;
    width: 100%;
    text-align: center;
  }
  .header-nav a::after { display: none; }
  .header-btn { margin: 8px auto 0 !important; }

  .hero { grid-template-columns: 1fr 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* 1024px+: desktop — all defaults apply */
@media (min-width: 1024px) {
  .menu-toggle { display: none; }
  .header-nav { display: flex !important; max-height: unset !important; position: static !important; }
}

/* ---- Accessibility: reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .hero-img-drone { animation: none; }
  .reveal { transition: none; }
  * { transition-duration: 0.01ms !important; }
}