/* EZ Shots — warm & approachable theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --clay: #2563eb;        /* blue accent */
  --clay-dark: #1d4ed8;
  --sand: #f6f8fb;        /* cool light background */
  --sand-2: #eef2f7;      /* deeper cool */
  --cream: #ffffff;       /* card / page white */
  --ink: #0f172a;         /* cool near-black text */
  --muted: #64748b;       /* cool slate grey */
  --line: #e6eaf1;        /* cool hairline */
  --sage: #2563eb;        /* secondary = blue */
  --radius: 14px;
  --shadow: 0 8px 26px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 18px 44px rgba(15, 23, 42, 0.10);
  --max: 1120px;
  --panel-dark: #0f172a;                 /* ticker + footer background */
  --header-bg: rgba(255,255,255,.86);    /* sticky header background */
}

/* Dark theme */
[data-theme="dark"] {
  --clay: #3b82f6;
  --clay-dark: #60a5fa;
  --sand: #0e1626;
  --sand-2: #1b2436;
  --cream: #161d2e;
  --ink: #e8edf5;
  --muted: #9aa7bd;
  --line: #29344c;
  --sage: #3b82f6;
  --shadow: 0 8px 26px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 18px 44px rgba(0, 0, 0, 0.5);
  --panel-dark: #0a0f1c;
  --header-bg: rgba(22,29,46,.88);
}
[data-theme="dark"] body { background: #0b1220; }
[data-theme="dark"] .btn-ghost { color: var(--ink); }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.section { padding: 90px 0; }
.section-soft { background: var(--sand); }

h1, h2, h3 {
  font-family: "Inter", -apple-system, sans-serif;
  color: var(--ink); line-height: 1.14; margin: 0 0 18px; font-weight: 800;
  letter-spacing: -0.025em;
}
h2 { font-size: 40px; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .16em; font-size: 12.5px;
  font-weight: 700; color: var(--clay); margin: 0 0 12px;
}
.lead { color: var(--muted); font-size: 19px; max-width: 620px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-block; background: var(--clay); color: #fff; font-weight: 600;
  padding: 13px 24px; border-radius: 10px; border: none; cursor: pointer;
  font-size: 15px; font-family: inherit;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 6px 18px rgba(37, 99, 235, .22);
}
.btn:hover { background: var(--clay-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37,99,235,.28); }
.btn-ghost {
  background: transparent; color: var(--ink); border: 1.5px solid var(--line); box-shadow: none;
}
.btn-ghost:hover { background: var(--sand); border-color: var(--clay); color: var(--clay-dark); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--header-bg); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { font-family: "Inter", sans-serif; font-weight: 800; font-size: 22px; color: var(--ink); letter-spacing: -.5px; }
.brand span { color: var(--clay); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--muted); font-weight: 600; font-size: 15px; transition: color .18s ease; }
.nav-links a:hover { color: var(--clay); }
.nav-links a.active { color: var(--ink); }
.nav-links .btn { color: #fff; }
.menu-btn { display: none; background: none; border: none; font-size: 26px; color: var(--ink); cursor: pointer; }
.theme-toggle {
  background: transparent; border: 1.5px solid var(--line); border-radius: 999px;
  width: 40px; height: 40px; font-size: 17px; cursor: pointer; color: var(--ink);
  display: grid; place-items: center; margin-left: 18px; transition: border-color .18s ease, background .18s ease;
  flex: none;
}
.theme-toggle:hover { border-color: var(--clay); background: var(--sand); }

/* Page header band */
.page-head { background: var(--sand); border-bottom: 1px solid var(--line); padding: 66px 0 56px; }
.page-head h1 { font-size: 46px; margin-bottom: 8px; }
.page-head .lead { margin: 0; }

/* Top bar */
.ticker {
  background: var(--panel-dark); color: #fff; overflow: hidden; white-space: nowrap;
  padding: 8px 0; font-size: 13px; font-weight: 700; text-align: center; letter-spacing: .02em;
}
.tick { display: inline-block; padding: 0 20px; }

/* Hero */
.hero {
  position: relative; color: #fff; text-align: center;
  background: linear-gradient(rgba(47,42,36,.55), rgba(47,42,36,.62)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1600&q=80") center/cover;
  padding: 140px 0 150px;
}
.hero h1 { color: #fff; font-size: 62px; letter-spacing: -.02em; margin-bottom: 14px; }
.hero p { color: rgba(255,255,255,.92); font-size: 21px; max-width: 620px; margin: 0 auto 32px; font-weight: 600; }
.hero-stat {
  display: block; max-width: 540px; color: #fff !important;
  font-size: 17px !important; font-weight: 600;
  margin: 0 auto 30px !important; line-height: 1.5;
}
.hero-stat a {
  color: var(--clay); font-weight: 700; text-decoration: underline;
  text-underline-offset: 3px; white-space: nowrap;
}
.hero-stat a:hover { color: #fff; }
[data-theme="dark"] .hero-stat a { color: #93c5fd; }
.hero .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.6); }
.hero .btn-ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; color: #fff; }

/* Compact "worked with" badges — single row, scrolls on mobile */
.orgs {
  display: flex; flex-wrap: nowrap; gap: 8px; justify-content: center; align-items: center;
  overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 2px;
  scrollbar-width: none;
}
.orgs::-webkit-scrollbar { display: none; }
.org {
  background: var(--cream); border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 13px; font-size: 12.5px; font-weight: 600; color: var(--muted);
  box-shadow: 0 2px 6px rgba(80,60,40,.05); white-space: nowrap; flex: 0 0 auto;
}
@media (max-width: 700px) {
  .orgs { justify-content: flex-start; }
  .org { font-size: 12px; padding: 6px 12px; }
}

/* Portfolio grid */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease;
  display: block;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card .thumb { aspect-ratio: 4/3; overflow: hidden; }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .thumb img { transform: scale(1.06); }
.card .body { padding: 20px 22px 24px; }
.card .tag { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--clay); font-weight: 700; }
.card h3 { font-size: 21px; margin: 8px 0 6px; }
.card p { color: var(--muted); font-size: 15px; margin: 0; }
.card .more { color: var(--clay); font-weight: 700; font-size: 14px; margin-top: 14px; display: inline-block; }

/* Masonry gallery */
.masonry { column-count: 4; column-gap: 18px; }
.masonry img {
  width: 100%; margin: 0 0 18px; border-radius: var(--radius);
  box-shadow: var(--shadow); break-inside: avoid; display: block;
}
@media (max-width: 900px) { .masonry { column-count: 2; } }
@media (max-width: 520px) { .masonry { column-count: 1; } }

/* Packages */
.pkg-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 380px)); gap: 26px; align-items: stretch; justify-content: center; }
.pkg {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 30px; display: flex; flex-direction: column; box-shadow: var(--shadow);
}
.pkg.featured { border: 2px solid var(--clay); box-shadow: var(--shadow-lg); position: relative; transform: translateY(-6px); }
.pkg.featured .badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--clay); color: #fff; font-size: 11.5px; font-weight: 700;
  padding: 6px 16px; border-radius: 999px; letter-spacing: .06em;
}
.pkg h3 { font-size: 24px; margin-bottom: 4px; }
.pkg .price { font-family: "Inter", sans-serif; font-size: 40px; font-weight: 800; color: var(--ink); margin: 10px 0 2px; }
.pkg .price span { font-size: 15px; font-weight: 500; color: var(--muted); font-family: "Inter", sans-serif; }
.pkg .desc { color: var(--muted); font-size: 15px; margin-bottom: 20px; }
.pkg ul { list-style: none; padding: 0; margin: 0 0 26px; flex: 1; }
.pkg li { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 15px; color: var(--ink); }
.pkg li::before { content: "✓"; color: var(--clay); font-weight: 800; margin-right: 10px; }
.pkg .btn { text-align: center; }
.pkg-cta { display: grid; gap: 8px; }
.pkg-cta .btn { width: 100%; text-align: center; }
.pkg-options { display: none; gap: 8px; }
.pkg-cta.open .pkg-options { display: grid; }
.pkg-cta.open .pkg-book { display: none; }
.pkg-options .hint { font-size: 12.5px; color: var(--muted); text-align: center; margin: 2px 0 0; }
.pkg-note { text-align: center; color: var(--muted); font-size: 14.5px; margin-top: 28px; }

/* How it works steps */
.steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.step-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 32px; box-shadow: var(--shadow); }
.step-card h3 { font-size: 22px; margin-bottom: 2px; }
.step-sub { color: var(--clay); font-weight: 600; font-size: 14px; margin: 0 0 18px; }
.step-card ol { margin: 0; padding-left: 20px; }
.step-card li { padding: 7px 0; font-size: 15px; color: var(--muted); line-height: 1.6; }
.step-card li strong { color: var(--ink); }
@media (max-width: 800px) { .steps-grid { grid-template-columns: 1fr; } }

/* Stats / drone */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 44px; }
.stat {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 16px; text-align: center; box-shadow: var(--shadow);
}
.stat b { display: block; font-family: "Inter", sans-serif; font-size: 27px; font-weight: 800; color: var(--clay); }
.stat span { color: var(--muted); font-size: 14px; }
.drone-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.drone-grid img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
@media (max-width: 900px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .drone-grid { grid-template-columns: 1fr; }
}

/* About */
.about-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 52px; align-items: center; }
.about-photo img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; }
.about-text .lead { margin-bottom: 16px; }
@media (max-width: 900px) { .about-wrap { grid-template-columns: 1fr; } }

/* Contact */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 52px; align-items: start; }
.contact-info p { color: var(--muted); }
.contact-item { display: flex; gap: 14px; align-items: center; margin: 20px 0; }
.contact-item .ic {
  width: 46px; height: 46px; border-radius: 12px; background: var(--sand);
  display: grid; place-items: center; font-size: 20px; flex: none;
}
.contact-item b { color: var(--ink); display: block; font-size: 15px; }
.contact-item span { color: var(--muted); font-size: 15px; }
form { display: grid; gap: 16px; }
.field label { font-size: 14px; font-weight: 700; color: var(--ink); display: block; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  font-size: 15px; font-family: inherit; background: var(--cream); color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--clay); box-shadow: 0 0 0 3px rgba(37,99,235,.15); }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { color: var(--muted); font-size: 13.5px; }

/* Promo bar */
.promo-bar { background: var(--clay); color: #fff; padding: 14px 0; }
.promo-bar .container { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; text-align: center; }
.promo-text { font-size: 15px; font-weight: 600; }
.promo-code {
  display: inline-block; background: #fff; color: var(--clay-dark); font-weight: 800;
  letter-spacing: .08em; font-size: 15px; padding: 5px 14px; border-radius: 8px;
  border: 2px dashed rgba(255,255,255,.6);
}

/* Legal pages */
.legal { max-width: 760px; }
.legal p, .legal li { color: var(--muted); font-size: 16px; }
.legal h2 { font-size: 24px; margin: 34px 0 12px; }
.legal h2:first-child { margin-top: 0; }
.legal a { color: var(--clay); font-weight: 600; }
.legal .updated { font-size: 14px; color: var(--muted); margin-bottom: 8px; }

/* Footer */
.footer { background: var(--panel-dark); color: rgba(255,255,255,.6); padding: 64px 0 30px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand { max-width: 320px; }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer .brand span { color: #60a5fa; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: 14.5px; margin: 0 0 14px; line-height: 1.6; }
.footer-email { color: #60a5fa; font-weight: 600; font-size: 14.5px; }
.footer-col h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; margin: 0 0 16px; font-weight: 700; }
.footer-col a { display: block; color: rgba(255,255,255,.6); font-size: 14.5px; padding: 5px 0; transition: color .18s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { margin: 0; font-size: 13px; color: rgba(255,255,255,.5); }
.footer-source a { color: #60a5fa; }
@media (max-width: 800px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; max-width: none; }
  .footer-bottom { justify-content: flex-start; }
}

/* Project detail */
.detail-hero { padding-top: 44px; }
.back { color: var(--clay); font-weight: 700; font-size: 14px; display: inline-block; margin-bottom: 20px; }
.detail-meta { color: var(--muted); margin-bottom: 6px; font-size: 15px; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0 8px; }
.chip { background: var(--sand); border: 1px solid var(--line); color: var(--muted); font-size: 13px; padding: 6px 14px; border-radius: 999px; }
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 34px; }
.gallery img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.gallery img:first-child { grid-column: 1 / -1; }

@media (max-width: 900px) {
  .grid, .pkg-grid { grid-template-columns: 1fr; }
  .pkg.featured { transform: none; }
  .contact-wrap { grid-template-columns: 1fr; }
  .menu-btn { display: block; }
  .nav-links {
    display: none; position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--cream);
    border-bottom: 1px solid var(--line); padding: 8px 28px 18px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav-links .btn { margin-top: 12px; text-align: center; }
  .hero h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  .gallery { grid-template-columns: 1fr; }
}
