/* ═══════════════════════════════════════════════════════════════════════════
   Cinedrone — site.css
   Cinematic, dark, technical. Playfair Display × Barlow Condensed.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────────────────────── */
:root {
  --bg:           #0b0d0e;
  --bg-mid:       #101315;
  --bg-card:      #151918;
  --bg-card-hover:#1a1f1e;
  --border:       rgba(220,215,205,0.09);
  --border-hi:    rgba(220,215,205,0.18);
  --text:         #e4ddd2;
  --text-muted:   #8e9599;
  --text-faint:   #4e575c;
  --accent:       #7ab896;     /* sage green — aerial + brand */
  --accent-hi:    #9dd4b4;
  --accent-air:   #68a8d6;     /* sky blue — aerial unit */
  --accent-gnd:   #7ab896;     /* same sage — ground unit */
  --warn:         #d97706;
  --ok:           #10b981;
  --err:          #ef4444;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', system-ui, sans-serif;
  --r:            3px;
  --ease:         cubic-bezier(0.22, 0.8, 0.36, 1);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --shadow:       0 4px 24px rgba(0,0,0,0.4);
  --shadow-card:  0 2px 12px rgba(0,0,0,0.35);
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video, iframe { max-width: 100%; display: block; }

/* ── Scroll reveal ───────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ── Typography ──────────────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); margin: 0 0 0.45em; font-weight: 400; line-height: 1.12; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1em; }
em { font-style: italic; }
strong { font-weight: 500; }
a { color: var(--accent); text-decoration: none; transition: color 0.18s; }
a:hover { color: var(--text); }
code { font-family: ui-monospace, Menlo, monospace; font-size: 0.85em; background: rgba(255,255,255,0.06); padding: 2px 7px; border-radius: 2px; }
ul, ol { padding-left: 1.4em; }
li { margin-bottom: 0.3em; }

.eyebrow {
  display: block;
  font-family: var(--font-cond);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn-primary,
.btn-secondary,
.btn-ghost,
.btn-nav,
.btn-nav-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-cond);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  border-radius: var(--r);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.22s var(--ease), color 0.22s var(--ease),
              border-color 0.22s var(--ease), transform 0.18s var(--ease),
              box-shadow 0.22s var(--ease);
  font-weight: 500;
  text-decoration: none;
}
.btn-primary:active, .btn-secondary:active { transform: translateY(1px); }

.btn-primary  { background: var(--accent); color: #0b0d0e; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hi); border-color: var(--accent-hi); color: #0b0d0e; box-shadow: 0 0 0 4px rgba(122,184,150,0.15); }

.btn-secondary { background: transparent; color: var(--text); border-color: var(--border-hi); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

.btn-ghost { background: rgba(255,255,255,0.05); color: var(--text-muted); border-color: var(--border); }
.btn-ghost:hover { background: rgba(255,255,255,0.09); color: var(--text); }

.btn-nav       { background: var(--accent); color: #0b0d0e; border-color: var(--accent); padding: 8px 18px; font-size: 11px; letter-spacing: 2px; }
.btn-nav:hover { background: var(--accent-hi); color: #0b0d0e; border-color: var(--accent-hi); }

.btn-nav-ghost { background: transparent; color: var(--text-muted); border-color: var(--border); padding: 8px 18px; font-size: 11px; letter-spacing: 2px; }
.btn-nav-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-large { padding: 17px 40px; font-size: 13px; }
.btn-danger { background: rgba(239,68,68,0.1); color: #f87171; border-color: rgba(239,68,68,0.3); }
.btn-danger:hover { background: rgba(239,68,68,0.2); border-color: rgba(239,68,68,0.5); }
.btn-block { display: flex; width: 100%; }

button.btn-primary, button.btn-secondary, button.btn-ghost, button.btn-large {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

/* back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  color: var(--text-faint);
  margin-bottom: 28px;
  transition: color 0.18s;
}
.back-link:hover { color: var(--accent); }

/* ── Header ──────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 64px;
  background: rgba(11,13,14,0.88);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.site-header.scrolled { background: rgba(11,13,14,0.97); }
.site-header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 36px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  margin-right: 36px;
  flex-shrink: 0;
}
.logo-mark {
  color: var(--accent);
  font-size: 13px;
  line-height: 1;
  transition: color 0.2s;
}
.site-logo:hover .logo-mark { color: var(--accent-hi); }
.logo-text {
  font-family: var(--font-cond);
  font-size: 15px;
  letter-spacing: 1.5px;
  font-weight: 300;
}
.logo-text strong { font-weight: 600; }

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  flex: 1;
}
.nav-link {
  font-family: var(--font-cond);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-faint);
  padding: 0 14px;
  height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--text); border-bottom-color: rgba(122,184,150,0.4); }
.nav-link.active { color: var(--text); border-bottom-color: var(--accent); }

.site-header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

/* Burger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r);
  cursor: pointer;
  margin-left: 12px;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text-muted);
  position: absolute;
  transition: transform 0.32s var(--ease), opacity 0.22s, top 0.32s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 19.5px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 19.5px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 19.5px; transform: rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(11,13,14,0.98);
  backdrop-filter: blur(20px);
  z-index: 199;
  flex-direction: column;
  padding: 32px 36px;
  gap: 0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.38s var(--ease-out);
}
.mobile-nav.open {
  transform: none;
}
.mobile-nav .nav-link {
  height: auto;
  padding: 16px 0;
  font-size: 14px;
  letter-spacing: 3px;
  border-bottom: 1px solid var(--border);
  border-left: none;
}
.mobile-nav .mobile-cta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* Grain overlay on hero */
.hero::after {
  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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 130px 36px 90px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
.hero-inner > * {
  max-width: 700px;
}
.hero-h1 {
  color: var(--text);
  margin-bottom: 28px;
  animation: heroIn 1.1s var(--ease-out) both;
}
.hero-h1 em {
  display: block;
  background: linear-gradient(110deg, var(--accent-hi) 0%, var(--accent-air) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: none; }
}
.hero-sub {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
  animation: heroIn 1.1s var(--ease-out) 0.12s both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: heroIn 1.1s var(--ease-out) 0.22s both;
}
.hero-eyebrow {
  animation: heroIn 1.1s var(--ease-out) 0s both;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 52px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-faint);
  animation: heroIn 1.2s var(--ease-out) 0.5s both;
}
.hero-scroll-hint svg {
  width: 12px;
  height: 18px;
  animation: scrollBob 2.2s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* Compact hero (inner pages) */
.hero--compact {
  min-height: 54vh;
}
.hero--compact .hero-inner {
  padding: 140px 36px 70px;
}
.hero--aerial .hero-h1 em,
.hero--aerial .hero-h1 {
  background: linear-gradient(110deg, var(--text) 0%, var(--accent-air) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero--ground .hero-h1 em,
.hero--ground .hero-h1 {
  background: linear-gradient(110deg, var(--text) 0%, var(--accent-gnd) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ──────────────────────────────────────────────────────────────── */
.section { padding: 88px 0; }
.section-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 36px;
}
.section--alt { background: var(--bg-mid); }
.section--cta {
  text-align: center;
  padding: 110px 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(122,184,150,0.06) 0%, transparent 70%);
}

/* ── Unit cards ──────────────────────────────────────────────────────────── */
.units-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.unit-card {
  display: block;
  padding: 44px 40px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg-card);
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.28s, background 0.28s, transform 0.28s var(--ease);
  position: relative;
  overflow: hidden;
}
.unit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.unit-card--aerial::before { background: radial-gradient(ellipse 80% 60% at 90% 10%, rgba(104,168,214,0.08) 0%, transparent 70%); }
.unit-card--ground::before { background: radial-gradient(ellipse 80% 60% at 90% 10%, rgba(122,184,150,0.08) 0%, transparent 70%); }
.unit-card:hover { transform: translateY(-3px); border-color: var(--border-hi); background: var(--bg-card-hover); box-shadow: var(--shadow-card); color: var(--text); }
.unit-card:hover::before { opacity: 1; }
.unit-card--aerial:hover { border-color: rgba(104,168,214,0.35); }
.unit-card--ground:hover { border-color: rgba(122,184,150,0.35); }

.unit-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: var(--accent);
}
.unit-card--aerial .unit-icon { color: var(--accent-air); }

.unit-card h2 { font-size: 1.55rem; margin-bottom: 14px; }
.unit-card p { color: var(--text-muted); font-size: 14px; line-height: 1.65; margin-bottom: 20px; }
.unit-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.unit-specs li {
  font-family: var(--font-cond);
  font-size: 12.5px;
  letter-spacing: 1px;
  color: var(--text-muted);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 8px;
}
.unit-specs li::before { content: '—'; color: var(--text-faint); font-size: 10px; }
.unit-cta {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.unit-card:hover .unit-cta { gap: 10px; }
.unit-card--aerial .unit-cta { color: var(--accent-air); }

/* ── How it works ────────────────────────────────────────────────────────── */
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 18px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hi), var(--border-hi), transparent);
}
.how-step {
  padding: 0 28px 0 0;
  position: relative;
}
.how-step:last-child { padding-right: 0; }
.how-num-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.how-num {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-hi);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--accent);
  flex-shrink: 0;
  background: var(--bg);
  position: relative;
  z-index: 1;
}
.how-step h3 { font-size: 1.15rem; margin-bottom: 10px; }
.how-step p { color: var(--text-muted); font-size: 14px; line-height: 1.65; margin: 0; }

/* ── Packages grid ───────────────────────────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin: 44px 0 0;
}
.packages-grid--full {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.pkg-card {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
}
.pkg-card:hover { border-color: var(--border-hi); background: var(--bg-card-hover); transform: translateY(-2px); }
.pkg-card--bespoke {
  border-color: rgba(122,184,150,0.35);
  background: rgba(122,184,150,0.03);
}
.pkg-card--bespoke:hover { border-color: var(--accent); }
.pkg-card--full { padding: 40px 36px; }

.pkg-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.pkg-card h2, .pkg-card h3 { font-size: 1.35rem; margin: 0; }

.pkg-price { text-align: right; flex-shrink: 0; }
.pkg-price-num {
  display: block;
  font-family: var(--font-cond);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
  line-height: 1;
}
.pkg-price-sub {
  display: block;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 10.5px;
  color: var(--text-faint);
  margin-top: 4px;
}
.pkg-desc { color: var(--text-muted); font-size: 14px; line-height: 1.65; margin: 0; flex: 1; }
.pkg-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.pkg-includes li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 5px 0 5px 22px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  line-height: 1.5;
}
.pkg-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 11px;
  top: 6px;
}
.pkg-turnaround {
  font-family: var(--font-cond);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-faint);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.packages-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 28px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-block { max-width: 780px; margin: 0 auto; }
.faq-block > h2 { margin-bottom: 36px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  user-select: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--text);
  transition: color 0.18s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-cond);
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--accent); }
.faq-item p { color: var(--text-muted); padding-bottom: 20px; margin: 0; font-size: 14.5px; line-height: 1.7; }

/* ── Portfolio / footage grid ────────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}
.portfolio-grid--large { grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); }
.portfolio-grid--featured { gap: 12px; }

.portfolio-card { display: block; color: var(--text); text-decoration: none; group: true; }
.portfolio-card:hover { color: var(--text); }

.portfolio-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 13px;
}
.portfolio-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.32s;
}
.portfolio-card:hover .portfolio-thumb::after { opacity: 1; }
.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.portfolio-card:hover .portfolio-thumb img { transform: scale(1.05); }
.portfolio-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #111816, #0e1210);
}
.portfolio-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.28s;
}
.portfolio-card:hover .portfolio-play { opacity: 1; }
.portfolio-play-icon {
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
}
.portfolio-play-icon svg { width: 16px; height: 16px; fill: white; margin-left: 2px; }

.portfolio-tag {
  position: absolute;
  bottom: 10px; left: 10px;
  font-family: var(--font-cond);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 2px;
  background: rgba(11,13,14,0.75);
  backdrop-filter: blur(6px);
  color: var(--text-muted);
  z-index: 3;
}
.portfolio-tag--aerial { color: var(--accent-air); }
.portfolio-tag--ground { color: var(--accent-gnd); }
.portfolio-tag--both { color: var(--text); }
.portfolio-info h3 { font-size: 1.05rem; margin-bottom: 4px; transition: color 0.18s; }
.portfolio-card:hover .portfolio-info h3 { color: var(--accent-hi); }
.portfolio-region {
  font-family: var(--font-cond);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-faint);
  display: block;
}
.portfolio-spec {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(122,184,150,0.7);
  display: block;
  margin-top: 4px;
}

/* Work item */
.work-item-hero { padding-top: 100px; }
.work-item-head { margin-bottom: 36px; }
.work-item-video { margin-bottom: 44px; }
.video-wrapper { position: relative; aspect-ratio: 16/9; border-radius: var(--r); overflow: hidden; background: var(--bg-card); }
.video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.work-item-body { display: grid; grid-template-columns: 1fr 320px; gap: 52px; }
.work-item-desc p { color: var(--text-muted); font-size: 15px; line-height: 1.75; }
.work-item-location { color: var(--text-muted); font-size: 14px; }
.work-item-spec-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  align-self: start;
  position: sticky;
  top: 80px;
}
.work-item-spec-panel h3 { font-size: 1rem; margin-bottom: 20px; font-family: var(--font-serif); }
.work-item-spec {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 10px 14px;
  margin: 0 0 24px;
  font-size: 13px;
}
.work-item-spec dt { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 1.5px; font-size: 10px; color: var(--text-faint); padding-top: 1px; }
.work-item-spec dd { color: var(--text-muted); margin: 0; }

/* ── Spec sections ───────────────────────────────────────────────────────── */
.spec-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.spec-table dl {
  display: grid;
  grid-template-columns: 156px 1fr;
  gap: 11px 16px;
  margin: 28px 0 0;
  font-size: 14px;
}
.spec-table dt { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 1.5px; font-size: 10.5px; color: var(--text-faint); padding-top: 2px; }
.spec-table dd { color: var(--text-muted); margin: 0; }

.spec-moves {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
}
.moves-list { list-style: none; padding: 0; margin: 18px 0 0; }
.moves-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}
.moves-list li:last-child { border-bottom: none; }
.moves-list li strong { color: var(--text); display: block; margin-bottom: 2px; font-weight: 500; }

/* Turnaround / full specs block */
.turnaround-block { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.turnaround-block > div > p { color: var(--text-muted); line-height: 1.75; }
.turnaround-specs {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 36px;
}
.turnaround-specs h3 { margin-bottom: 24px; }
.spec-group { margin-bottom: 28px; }
.spec-group:last-child { margin-bottom: 0; }
.spec-group h4 {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 10px;
  color: var(--accent);
  margin: 0 0 14px;
}
.spec-group dl { display: grid; grid-template-columns: 120px 1fr; gap: 9px 12px; margin: 0; font-size: 13px; }
.spec-group dt { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 1px; font-size: 10px; color: var(--text-faint); padding-top: 1px; }
.spec-group dd { color: var(--text-muted); margin: 0; }

/* CTA block */
.cta-block { max-width: 620px; margin: 0 auto; }
.cta-block h2 { margin-bottom: 18px; }
.cta-block p { color: var(--text-muted); margin-bottom: 32px; font-size: 1.05rem; line-height: 1.7; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Library filters */
.library-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.filter-btn {
  font-family: var(--font-cond);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 7px 15px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-muted);
  background: none;
  text-decoration: none;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
  cursor: pointer;
  display: inline-block;
}
.filter-btn:hover { border-color: var(--border-hi); color: var(--text); }
.filter-btn.active { border-color: var(--accent); color: var(--accent); background: rgba(122,184,150,0.06); }
.filter-btn--region { border-style: dashed; }
.filter-count { font-size: 9px; opacity: 0.5; margin-left: 2px; }

/* Locations */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  margin-bottom: 52px;
}
.location-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg-card);
  transition: border-color 0.22s, transform 0.22s var(--ease);
}
.location-card:hover { border-color: var(--border-hi); transform: translateY(-2px); }
.location-emoji { font-size: 22px; margin-bottom: 14px; }
.location-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.location-card p { color: var(--text-muted); font-size: 13px; line-height: 1.6; margin-bottom: 14px; }
.location-link { font-family: var(--font-cond); font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); transition: color 0.18s; }
.location-link:hover { color: var(--accent-hi); }
.locations-note {
  padding: 28px 32px;
  background: var(--bg-card);
  border-left: 2px solid var(--accent);
  border-radius: 0 var(--r) var(--r) 0;
  max-width: 740px;
}
.locations-note h3 { font-size: 1.1rem; margin-bottom: 10px; }
.locations-note p { color: var(--text-muted); font-size: 14px; margin: 0 0 0.6em; line-height: 1.65; }
.locations-note p:last-child { margin: 0; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 300px; gap: 64px; align-items: start; }
.about-text h2 { font-size: 1.55rem; margin: 36px 0 14px; }
.about-text h2:first-child { margin-top: 0; }
.about-text p { color: var(--text-muted); font-size: 15px; line-height: 1.75; }
.about-spec-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  margin-bottom: 16px;
}
.about-spec-card h3 { font-size: 1rem; margin-bottom: 16px; }
.about-spec-card dl { display: grid; grid-template-columns: 80px 1fr; gap: 7px 10px; margin: 0; font-size: 13px; }
.about-spec-card dt { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 1px; font-size: 10px; color: var(--text-faint); padding-top: 1px; }
.about-spec-card dd { color: var(--text-muted); margin: 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 300px; gap: 64px; }
.contact-aside h3 { font-size: 1.1rem; margin: 28px 0 10px; }
.contact-aside h3:first-child { margin-top: 0; }
.contact-aside p { color: var(--text-muted); font-size: 14px; line-height: 1.65; }

/* ── Order form ──────────────────────────────────────────────────────────── */
.section--order-head { padding-top: 100px; }
.order-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; margin: 16px 0 40px; flex-wrap: wrap; }
.order-package-desc { color: var(--text-muted); font-size: 15px; }
.order-price-badge { text-align: right; flex-shrink: 0; }
.order-price-num { display: block; font-family: var(--font-cond); font-size: 2.4rem; font-weight: 600; color: var(--accent); line-height: 1; }
.order-price-sub { display: block; font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 1.5px; font-size: 11px; color: var(--text-faint); margin-top: 6px; }
.order-layout { display: grid; grid-template-columns: 1fr 360px; gap: 52px; align-items: start; }
.order-shots-col h2 { font-size: 1.55rem; display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.shots-counter { font-family: var(--font-cond); font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--text-faint); }
.order-shot-intro { color: var(--text-muted); font-size: 14px; margin-bottom: 28px; line-height: 1.65; }

.shot-row {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  margin-bottom: 16px;
  background: var(--bg-card);
  transition: border-color 0.2s;
}
.shot-row:focus-within { border-color: var(--border-hi); }
.shot-row--hidden { display: none; }
.shot-row-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.shot-num { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 2.5px; font-size: 11px; color: var(--accent); }
.shot-remove { background: none; border: none; cursor: pointer; color: var(--text-faint); font-size: 11px; font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 1.5px; transition: color 0.18s; padding: 4px; }
.shot-remove:hover { color: var(--err); }
.shot-map { border-radius: 2px; margin: 14px 0 8px; background: var(--bg-mid); border: 1px solid var(--border); }
.shot-map-hint { font-size: 12px; color: var(--text-faint); margin: 6px 0 16px; font-style: italic; }

.order-sticky { position: sticky; top: 80px; }
.order-sticky h2 { font-size: 1.35rem; margin-bottom: 20px; }

.order-delivery-prefs {
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 16px;
  overflow: hidden;
}
.order-delivery-prefs summary {
  padding: 13px 16px;
  cursor: pointer;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 11px;
  color: var(--text-muted);
  user-select: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.18s;
}
.order-delivery-prefs summary::-webkit-details-marker { display: none; }
.order-delivery-prefs summary::after { content: '+'; color: var(--text-faint); transition: transform 0.2s; }
.order-delivery-prefs[open] summary::after { content: '−'; }
.order-delivery-prefs summary:hover { color: var(--text); }
.order-delivery-prefs .form-field { padding: 0 16px 14px; }

.order-total { border-top: 1px solid var(--border); margin: 20px 0; padding-top: 18px; }
.order-total-row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 14px; color: var(--text-muted); }
.order-total-vat { font-size: 13px; }
.order-total-gross { border-top: 1px solid var(--border); margin-top: 10px; padding-top: 13px; color: var(--text); font-size: 17px; }
.order-payment-note { font-size: 12px; color: var(--text-faint); text-align: center; margin-top: 14px; line-height: 1.6; }

/* ── Portal ──────────────────────────────────────────────────────────────── */
.portal-head { padding-top: 100px; padding-bottom: 48px; border-bottom: 1px solid var(--border); margin-bottom: 48px; }
.portal-head h1 { margin-bottom: 6px; }
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th, .data-table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.data-table thead th { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 1.5px; font-size: 10.5px; color: var(--text-faint); background: rgba(0,0,0,0.15); }
.data-table tbody tr:hover td { background: rgba(255,255,255,0.015); }

.orders-list { display: flex; flex-direction: column; gap: 12px; }
.order-row-card {
  display: block;
  padding: 22px 26px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg-card);
  color: var(--text);
  transition: border-color 0.22s, background 0.22s, transform 0.22s var(--ease);
  text-decoration: none;
}
.order-row-card:hover { border-color: var(--border-hi); background: var(--bg-card-hover); transform: translateX(3px); color: var(--text); }
.order-row-ref { display: flex; align-items: center; gap: 12px; margin-bottom: 7px; }
.order-row-pkg { font-size: 15px; margin-bottom: 5px; font-weight: 400; }
.order-row-meta { font-size: 13px; color: var(--text-muted); }

.order-show-head { display: flex; justify-content: space-between; align-items: flex-start; margin: 0 0 36px; flex-wrap: wrap; gap: 16px; }
.order-show-grid { display: grid; grid-template-columns: 1fr 270px; gap: 44px; }

.shot-card {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px;
  margin-bottom: 13px;
  background: var(--bg-card);
}
.shot-card-head { display: flex; gap: 10px; align-items: center; margin-bottom: 13px; flex-wrap: wrap; }
.shot-card-num { font-family: var(--font-cond); font-size: 10px; text-transform: uppercase; letter-spacing: 2px; color: var(--text-faint); }
.shot-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.shot-unit-tag { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 1.5px; font-size: 10px; padding: 3px 9px; border-radius: 2px; }
.shot-unit-aerial { background: rgba(104,168,214,0.1); color: var(--accent-air); border: 1px solid rgba(104,168,214,0.3); }
.shot-unit-ground { background: rgba(122,184,150,0.1); color: var(--accent-gnd); border: 1px solid rgba(122,184,150,0.3); }
.shot-status-tag { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 1.5px; font-size: 10px; color: var(--text-faint); }
.shot-status-delivered { color: var(--accent); }

.order-info-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px;
  align-self: start;
  position: sticky;
  top: 80px;
}
.order-info-panel h3 { font-size: 1.1rem; margin-bottom: 18px; }
.order-info-dl { display: grid; grid-template-columns: 80px 1fr; gap: 9px 12px; margin: 0 0 18px; font-size: 13px; }
.order-info-dl dt { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 1px; font-size: 10px; color: var(--text-faint); padding-top: 1px; }
.order-info-dl dd { color: var(--text-muted); margin: 0; }
.order-price-line { font-family: var(--font-cond); font-size: 20px; color: var(--accent); padding-top: 14px; border-top: 1px solid var(--border); letter-spacing: 0.5px; }

/* ── Status tags ─────────────────────────────────────────────────────────── */
.status-tag {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 9.5px;
  padding: 4px 10px;
  border-radius: 2px;
  display: inline-block;
  white-space: nowrap;
}
.status-pending_payment { background: rgba(217,119,6,0.1); color: #f59e0b; border: 1px solid rgba(217,119,6,0.3); }
.status-paid { background: rgba(16,185,129,0.1); color: #34d399; border: 1px solid rgba(16,185,129,0.3); }
.status-in_production { background: rgba(104,168,214,0.1); color: var(--accent-air); border: 1px solid rgba(104,168,214,0.3); }
.status-delivered { background: rgba(122,184,150,0.1); color: var(--accent-hi); border: 1px solid rgba(122,184,150,0.3); }
.status-cancelled { background: rgba(239,68,68,0.1); color: #f87171; border: 1px solid rgba(239,68,68,0.3); }
.status-new { background: rgba(217,119,6,0.1); color: #fbbf24; border: 1px solid rgba(217,119,6,0.3); }
.status-pending { color: var(--text-faint); border: 1px solid var(--border); }
.status-shot { background: rgba(104,168,214,0.1); color: var(--accent-air); border: 1px solid rgba(104,168,214,0.3); }
.status-scheduled { background: rgba(167,139,250,0.1); color: #a78bfa; border: 1px solid rgba(167,139,250,0.3); }

/* ── Forms ───────────────────────────────────────────────────────────────── */
.form-card { max-width: 840px; }
.form-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-field label {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 10.5px;
  color: var(--text-faint);
}
.form-row { display: flex; gap: 16px; flex-wrap: wrap; }
.form-row .form-field { flex: 1; min-width: 180px; }

input[type=text], input[type=email], input[type=url], input[type=password],
input[type=date], input[type=number], input[type=tel], textarea, select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  width: 100%;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(122,184,150,0.04);
  box-shadow: 0 0 0 3px rgba(122,184,150,0.1);
}
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6065' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 12px; padding-right: 36px; }
select option { background: #151918; }
textarea { resize: vertical; min-height: 100px; }
::placeholder { color: var(--text-faint); }
.checkbox-label { display: flex !important; flex-direction: row !important; align-items: center; gap: 9px; font-weight: 300 !important; text-transform: none !important; letter-spacing: 0 !important; font-size: 14px !important; color: var(--text) !important; cursor: pointer; }
.checkbox-label input[type=checkbox] { width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--accent); }
.form-actions { display: flex; gap: 12px; align-items: center; margin-top: 28px; flex-wrap: wrap; }

.flash { padding: 14px 18px; border-radius: var(--r); margin-bottom: 22px; font-size: 14px; line-height: 1.5; }
.flash-success { background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.25); color: #6ee7b7; }
.flash-error   { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.25); color: #fca5a5; }
.empty-state { text-align: center; padding: 72px 0; color: var(--text-muted); font-size: 15px; }

/* ── Auth pages ──────────────────────────────────────────────────────────── */
.auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: radial-gradient(ellipse 70% 70% at 50% 0%, rgba(122,184,150,0.05) 0%, transparent 60%);
}
.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 44px;
  box-shadow: var(--shadow);
}
.auth-card h1 { font-size: 2rem; margin-bottom: 10px; }
.auth-sub { color: var(--text-muted); font-size: 14.5px; margin-bottom: 28px; line-height: 1.6; }
.auth-meta { margin-top: 22px; display: flex; justify-content: space-between; font-size: 13px; color: var(--text-faint); flex-wrap: wrap; gap: 8px; }
.auth-meta a { color: var(--text-muted); transition: color 0.18s; }
.auth-meta a:hover { color: var(--accent); }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  padding: 72px 36px 32px;
  margin-top: 100px;
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-brand .site-logo { margin-bottom: 16px; margin-right: 0; }
.footer-brand p { color: var(--text-muted); font-size: 13.5px; line-height: 1.65; max-width: 240px; margin: 0; }
.footer-col h4 {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 10px;
  color: var(--text-faint);
  margin: 0 0 16px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--text-muted); transition: color 0.18s; }
.footer-col a:hover { color: var(--accent); }
.footer-base {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--text-faint);
  font-family: var(--font-cond);
  letter-spacing: 1px;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Canvas hero ─────────────────────────────────────────────────────────── */
#heroCanvas { background: var(--bg); }

/* ── Leaflet ──────────────────────────────────────────────────────────────── */
.leaflet-container { background: #1a2a1a; font-family: var(--font-body); }
.leaflet-tile { filter: none; }
.leaflet-bar a { background: var(--bg-card); border-color: var(--border); color: var(--text-muted); }
.leaflet-bar a:hover { background: var(--bg-card-hover); color: var(--text); }

/* ── Section-specific ────────────────────────────────────────────────────── */
.section--library-head { padding: 100px 0 40px; }
.section--library-head h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 14px; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .units-grid        { grid-template-columns: 1fr; }
  .how-steps         { grid-template-columns: 1fr 1fr; gap: 32px; }
  .how-steps::before { display: none; }
  .turnaround-block  { grid-template-columns: 1fr; }
  .spec-section      { grid-template-columns: 1fr; }
  .work-item-body    { grid-template-columns: 1fr; }
  .about-grid        { grid-template-columns: 1fr; }
  .contact-grid      { grid-template-columns: 1fr; }
  .order-layout      { grid-template-columns: 1fr; }
  .order-show-grid   { grid-template-columns: 1fr; }
  .footer-inner      { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .site-nav, .site-header-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: flex; }

  .hero-inner { padding: 110px 24px 64px; }
  .hero--compact .hero-inner { padding: 120px 24px 56px; }
  .section { padding: 56px 0; }
  .section-inner { padding: 0 22px; }
  .section--cta { padding: 72px 0; }
  .how-steps { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }
  .site-footer { padding: 48px 22px 28px; margin-top: 64px; }
  .auth-card { padding: 32px 28px; }
  .order-head { flex-direction: column; }
  .order-sticky { position: static; }
}
@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .portfolio-grid, .portfolio-grid--large { grid-template-columns: 1fr; }
  .packages-grid--full { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .hero-scroll-hint { display: none; }
}

/* ── Terms page ──────────────────────────────────────────────────────────── */
.terms-body {
  max-width: 760px;
}
.terms-body h2 {
  font-size: 1.45rem;
  margin: 40px 0 14px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.terms-body h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.terms-body h3 {
  font-size: 1.1rem;
  margin: 28px 0 10px;
  color: var(--text-muted);
}
.terms-body p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.78;
}
.terms-body strong { color: var(--text); }
.terms-version {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-family: var(--font-cond);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-faint);
}
.terms-cta {
  margin-top: 40px;
}

/* ── Terms accept block in order form ────────────────────────────────────── */
.terms-accept-block {
  padding: 18px 0 4px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.terms-checkbox {
  font-size: 13px !important;
  line-height: 1.5;
  align-items: flex-start !important;
  gap: 12px !important;
}
.terms-checkbox input[type=checkbox] {
  margin-top: 2px;
  flex-shrink: 0;
}
.terms-checkbox a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.terms-checkbox a:hover { color: var(--accent-hi); }
.auth-hint {
  font-size: 12px;
  color: var(--text-faint);
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: -4px 0 16px;
}

/* ── Portal invoices ─────────────────────────────────────────────────────── */
.invoices-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.invoice-card {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 28px;
  background: var(--bg-card);
  transition: border-color 0.22s;
}
.invoice-card:hover { border-color: var(--border-hi); }
.invoice-card--paid { opacity: 0.7; }
.invoice-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.invoice-number {
  font-family: var(--font-cond);
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--text);
  margin-right: 10px;
}
.invoice-amount {
  font-family: var(--font-cond);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent);
  text-align: right;
}
.invoice-amount-sub {
  font-size: 11px;
  color: var(--text-faint);
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
  margin-top: -2px;
}
.invoice-desc {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 10px;
}
.invoice-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-cond);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-faint);
}

/* Invoice pay page */
.invoice-pay-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 52px;
  align-items: start;
}
.invoice-pay-summary h2 { font-size: 1.5rem; margin-bottom: 24px; }
.invoice-dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px 16px;
  font-size: 14px;
  margin: 0 0 28px;
}
.invoice-dl dt {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 10px;
  color: var(--text-faint);
  padding-top: 2px;
}
.invoice-dl dd { color: var(--text-muted); margin: 0; }
.invoice-breakdown {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.invoice-breakdown-row {
  display: flex;
  justify-content: space-between;
  padding: 13px 18px;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.invoice-breakdown-row:last-child { border-bottom: none; }
.invoice-breakdown-total {
  color: var(--text);
  font-size: 16px;
  background: rgba(122,184,150,0.04);
}
.invoice-pay-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
  position: sticky;
  top: 80px;
}
.invoice-pay-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.invoice-pay-card p { color: var(--text-muted); font-size: 14px; line-height: 1.65; margin-bottom: 20px; }
.invoice-pay-note {
  font-size: 12px !important;
  color: var(--text-faint) !important;
  text-align: center;
  margin: 12px 0 0 !important;
}

@media (max-width: 768px) {
  .invoice-pay-grid { grid-template-columns: 1fr; }
  .invoice-pay-card { position: static; }
}

/* ── Geocode status indicator ────────────────────────────────────────────── */
.geocode-status {
  display: block;
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 1px;
  min-height: 18px;
  margin-top: 5px;
  transition: color 0.2s;
}
.geocode-searching { color: var(--text-faint); }
.geocode-ok        { color: var(--accent); }
.geocode-error     { color: var(--err); }

/* ── Shot coordinates row ────────────────────────────────────────────────── */
.shot-coords-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: 8px;
}
.shot-coords-field {
  flex: 1;
  margin-bottom: 0 !important;
}
.coords-input {
  font-family: var(--font-cond) !important;
  font-size: 13px !important;
  letter-spacing: 1px;
  color: var(--accent) !important;
  cursor: default;
}
.coords-input::placeholder {
  color: var(--text-faint) !important;
  font-size: 12px;
  letter-spacing: 0;
}
.shot-clear-pin {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text-faint);
  font-family: var(--font-cond);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 10px 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.18s, border-color 0.18s;
  flex-shrink: 0;
}
.shot-clear-pin:hover {
  color: var(--err);
  border-color: rgba(239,68,68,0.4);
}
