:root {
  --bg: #F8F6F1;
  --fg: #1A1A1A;
  --accent: #E8A849;
  --accent-dark: #1A3A2A;
  --muted: #7A7A72;
  --surface: #EDEAE2;
  --border: #D5D0C8;
  --white: #FFFFFF;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  line-height: 1.15;
}

/* HERO */
.hero {
  padding: 80px 48px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-inner {}
.hero-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  color: var(--accent-dark);
  margin-bottom: 20px;
  line-height: 1.05;
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 28px;
  line-height: 1.65;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  background: var(--surface);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-frame {
  width: 100%;
  max-width: 480px;
}
.drone-silhouette {
  text-align: center;
  margin-bottom: 16px;
}
.drone-silhouette svg {
  width: 120px;
  height: 72px;
}
.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 40px rgba(26,58,42,0.12);
}
.placeholder-overlay {
  text-align: center;
}
.placeholder-line {
  height: 3px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
  margin: 0 auto;
}
.placeholder-tag {
  font-size: 12px;
  color: rgba(26,58,42,0.5);
  margin-top: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* SHOWCASE */
.showcase {
  background: var(--white);
  padding: 80px 48px;
}
.showcase-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.showcase-tag, .packages-tag, .areas-tag, .difference-tag, .closing-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.showcase h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  color: var(--accent-dark);
  margin-bottom: 16px;
}
.showcase-body {
  color: var(--muted);
  max-width: 560px;
  font-size: 16px;
  margin-bottom: 40px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-item {}
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-img {
  height: 200px;
  border-radius: 10px;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.gallery-item--tall .gallery-img { height: 412px; }
.gallery-caption {
  font-size: 11px;
  font-weight: 600;
  color: rgba(26,58,42,0.7);
  padding: 10px 12px;
  background: rgba(255,255,255,0.85);
  border-radius: 0 0 10px 0;
  width: 100%;
}
.gallery-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* PACKAGES */
.packages {
  padding: 80px 48px;
}
.packages-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.packages h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  color: var(--accent-dark);
  margin-bottom: 16px;
}
.packages-body {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 40px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.2s ease;
}
.pricing-card:hover {
  transform: translateY(-3px);
}
.pricing-card--featured {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
}
.pricing-card--featured .pricing-label,
.pricing-card--featured .pricing-price,
.pricing-card--featured .pricing-per,
.pricing-card--featured .pricing-features li {
  color: var(--white);
}
.pricing-card--featured .pricing-features li::before {
  background: rgba(255,255,255,0.5);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.pricing-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-dark);
  line-height: 1;
}
.pricing-per {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--fg);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.pricing-cta {
  text-align: center;
  background: var(--accent-dark);
  color: var(--white);
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}
.pricing-card--featured .pricing-cta {
  background: var(--accent);
  color: var(--accent-dark);
}
.packages-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* AREAS */
.areas {
  background: var(--accent-dark);
  padding: 80px 48px;
}
.areas-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.areas-text .areas-tag { color: var(--accent); }
.areas-text h2 {
  font-size: clamp(28px, 3vw, 44px);
  color: var(--white);
  margin-bottom: 16px;
}
.areas-text > p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin-bottom: 28px;
  line-height: 1.65;
}
.areas-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.areas-list li {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.areas-note {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  margin-top: 20px;
}
.areas-map {}
.map-illustration {
  position: relative;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.map-pin--main {}
.map-pin span {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  background: rgba(26,58,42,0.9);
  padding: 3px 8px;
  border-radius: 4px;
}
.map-circles {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,168,73,0.3);
}
.map-circle-1 { width: 180px; height: 180px; }
.map-circle-2 { width: 280px; height: 280px; }
.map-circle-3 { width: 380px; height: 380px; }
.map-label {
  position: absolute;
  bottom: 0;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

/* DIFFERENCE */
.difference {
  padding: 80px 48px;
  background: var(--white);
}
.difference-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.difference h2 {
  font-size: clamp(28px, 3vw, 44px);
  color: var(--accent-dark);
  margin-bottom: 48px;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
}
.diff-item {}
.diff-number {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 8px;
  line-height: 1;
}
.diff-item h3 {
  font-size: 20px;
  color: var(--accent-dark);
  margin-bottom: 10px;
}
.diff-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: 100px 48px;
  text-align: center;
}
.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}
.closing h2 {
  font-size: clamp(32px, 4vw, 56px);
  color: var(--accent-dark);
  margin-bottom: 20px;
}
.closing p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.closing-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cta-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-dark);
}
.cta-email {
  font-size: 15px;
  color: var(--accent);
  font-weight: 600;
}
.closing-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
}

/* FOOTER */
.footer {
  background: var(--surface);
  padding: 40px 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-name {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
}
.footer-meta {
  text-align: right;
}
.footer-location, .footer-license {
  font-size: 12px;
  color: var(--muted);
}
.footer-copy {
  width: 100%;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 24px 40px;
    gap: 32px;
  }
  .hero h1 { font-size: 42px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--tall { grid-row: auto; }
  .gallery-item--wide { grid-column: auto; }
  .gallery-img { height: 150px; }
  .gallery-item--tall .gallery-img { height: 150px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; gap: 32px; }
  .diff-grid { grid-template-columns: 1fr; }
  .showcase, .packages, .difference, .closing, .footer { padding: 60px 24px; }
  .areas { padding: 60px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .areas-list { grid-template-columns: 1fr; }
}