/* ==========================================================================
   SkyTop — Design System
   Modern, graphical, dual-audience builder site
   ========================================================================== */

/* --- Reset & base -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { list-style: none; }

/* --- Tokens -------------------------------------------------------------- */
:root {
  /* Palette — deep slate base + SkyTop blue accent (from brand logo #0054E4) */
  --bg:        #f7f6f3;
  --bg-alt:    #ffffff;
  --ink-900:   #14181d;
  --ink-700:   #2a3038;
  --ink-500:   #5a6470;
  --ink-300:   #aab1ba;
  --ink-100:   #e6e8ec;
  --slate-950: #0c1015;
  --slate-900: #161b22;
  --slate-800: #232a33;
  --brand:     #0054E4;
  --brand-dk:  #003DB5;
  --brand-lt:  #DCE7FB;
  --emergency: #d8442e;
  --emergency-dk: #b03422;
  --success:   #2e8b57;

  /* Type scale */
  --fs-xs:   0.78rem;
  --fs-sm:   0.92rem;
  --fs-base: 1rem;
  --fs-lg:   1.18rem;
  --fs-xl:   1.45rem;
  --fs-2xl:  1.9rem;
  --fs-3xl:  2.5rem;
  --fs-4xl:  3.4rem;
  --fs-5xl:  4.6rem;

  /* Spacing */
  --sp-1: .25rem;
  --sp-2: .5rem;
  --sp-3: .75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* Radii & shadows */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 999px;
  --sh-sm:  0 1px 2px rgba(20,24,29,.08);
  --sh-md:  0 6px 18px rgba(20,24,29,.08), 0 2px 4px rgba(20,24,29,.04);
  --sh-lg:  0 24px 48px rgba(20,24,29,.14), 0 4px 8px rgba(20,24,29,.06);
  --sh-glow: 0 0 0 4px rgba(0,84,228,.20);

  /* Layout */
  --container: 1240px;
  --gutter: clamp(1rem, 3vw, 2rem);
  --header-h: 78px;

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* --- Typography ---------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
h1 { font-size: clamp(2.4rem, 5.2vw, var(--fs-5xl)); }
h2 { font-size: clamp(1.9rem, 3.5vw, var(--fs-4xl)); }
h3 { font-size: clamp(1.4rem, 2.2vw, var(--fs-2xl)); }
h4 { font-size: var(--fs-xl); }
p  { color: var(--ink-700); }
.eyebrow {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-dk);
  margin-bottom: var(--sp-3);
}
.lead { font-size: var(--fs-lg); color: var(--ink-500); max-width: 60ch; }

/* --- Layout primitives --------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(4rem, 9vw, var(--sp-10)); }
.section--tight { padding-block: clamp(3rem, 6vw, var(--sp-9)); }
.section--dark { background: var(--slate-950); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255,255,255,.78); }
.section--alt { background: var(--bg-alt); }

.grid { display: grid; gap: var(--sp-6); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.95rem 1.6rem;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: var(--fs-base);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--ink-900);
  color: #fff;
  box-shadow: var(--sh-md);
}
.btn--primary:hover { background: var(--slate-800); box-shadow: var(--sh-lg); }
.btn--accent {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,84,228,.28), 0 2px 4px rgba(20,24,29,.06);
}
.btn--accent:hover { background: var(--brand-dk); color: #fff; }
.btn--emergency {
  background: var(--emergency);
  color: #fff;
  box-shadow: 0 6px 14px rgba(216,68,46,.35);
}
.btn--emergency:hover { background: var(--emergency-dk); }
.btn--ghost {
  background: transparent;
  color: var(--ink-900);
  border: 2px solid var(--ink-900);
}
.btn--ghost:hover { background: var(--ink-900); color: #fff; }
.btn--light {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}
.btn--light:hover { background: rgba(255,255,255,.2); }
.btn--sm { padding: .6rem 1rem; font-size: var(--fs-sm); }
.btn--lg { padding: 1.1rem 2rem; font-size: var(--fs-lg); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* --- Header / nav -------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,246,243,.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(20,24,29,.06);
}
.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.nav__logo img {
  height: 46px;
  width: auto;
  display: block;
}
@media (max-width: 480px) {
  .nav__logo img { height: 38px; }
}
.footer__brand .nav__logo img { height: 50px; }
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.5vw, 1.4rem);
}
.nav__links a {
  font-weight: 600;
  font-size: var(--fs-base);
  color: var(--ink-700);
  padding: .5rem .25rem;
  position: relative;
  transition: color .2s var(--ease);
}
.nav__links a:hover { color: var(--ink-900); }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }
.nav__cta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.nav__call {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 700;
  color: var(--ink-900);
  background: var(--brand-lt);
  padding: .55rem 1rem;
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  transition: background .2s var(--ease);
}
.nav__call:hover { background: var(--brand); }
.nav__call::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(46,139,87,.4);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(46,139,87,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(46,139,87,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,139,87,0); }
}
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 8px;
  background: var(--ink-100);
  align-items: center; justify-content: center;
}
.nav__toggle span {
  width: 20px; height: 2px;
  background: var(--ink-900);
  position: relative;
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 20px; height: 2px;
  background: var(--ink-900);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top:  6px; }

@media (max-width: 900px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__cta .nav__call { display: inline-flex; }
  .nav__toggle { display: inline-flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: var(--header-h); left: 0; right: 0;
    background: #fff;
    padding: var(--sp-5);
    border-bottom: 1px solid var(--ink-100);
    box-shadow: var(--sh-md);
    gap: .25rem;
  }
  .nav__links.open a { padding: .8rem .25rem; }
}

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 4rem);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 4vw, var(--sp-8));
  align-items: center;
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
}
.hero__title {
  font-size: clamp(2.3rem, 5.8vw, 4.6rem);
  margin-bottom: var(--sp-5);
}
.hero__title em {
  font-style: normal;
  color: var(--brand-dk);
  position: relative;
  white-space: nowrap;
}
.hero__title em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 8px;
  background: var(--brand-lt);
  z-index: -1;
  border-radius: 4px;
}
.hero__sub {
  font-size: var(--fs-lg);
  color: var(--ink-500);
  max-width: 52ch;
  margin-bottom: var(--sp-6);
}
.hero__ctas { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: var(--ink-100);
}
.hero__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12,16,21,.55));
}
.hero__badge {
  position: absolute;
  bottom: var(--sp-5); left: var(--sp-5);
  background: rgba(255,255,255,.94);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
  backdrop-filter: blur(8px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.hero__badge .stars { color: var(--brand); font-size: var(--fs-lg); letter-spacing: 2px; }
.hero__badge .label { font-size: var(--fs-sm); font-weight: 600; color: var(--ink-700); }
.hero__badge .num   { font-weight: 800; font-size: var(--fs-base); color: var(--ink-900); }

/* Decorative dots */
.hero::before {
  content: '';
  position: absolute;
  right: -200px; top: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--brand-lt) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

/* --- Audience cards ------------------------------------------------------ */
.audience-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin-top: var(--sp-7);
}
@media (max-width: 700px) {
  .audience-cards { grid-template-columns: 1fr; }
}
.aud-card {
  position: relative;
  display: block;
  padding: var(--sp-6);
  border-radius: var(--r-lg);
  background: var(--bg-alt);
  border: 1px solid var(--ink-100);
  box-shadow: var(--sh-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  overflow: hidden;
  min-height: 200px;
}
.aud-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--brand);
}
.aud-card__tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-dk);
  margin-bottom: var(--sp-3);
}
.aud-card__title {
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-2);
  color: var(--ink-900);
}
.aud-card__desc {
  font-size: var(--fs-base);
  color: var(--ink-500);
  margin-bottom: var(--sp-5);
  max-width: 38ch;
}
.aud-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 700;
  color: var(--ink-900);
  transition: gap .25s var(--ease);
}
.aud-card:hover .aud-card__arrow { gap: var(--sp-3); }
.aud-card__icon {
  position: absolute;
  right: var(--sp-5); top: var(--sp-5);
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--brand-lt);
  display: grid; place-items: center;
  color: var(--brand-dk);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.aud-card:hover .aud-card__icon { background: var(--brand); color: #fff; }

/* --- Trust strip --------------------------------------------------------- */
.trust-strip {
  background: var(--slate-950);
  color: #fff;
  padding-block: var(--sp-5);
  border-block: 1px solid rgba(255,255,255,.06);
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--sp-5);
  align-items: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
  padding: var(--sp-2);
}
.trust-item:last-child { border-right: none; }
.trust-item__num {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.trust-item__label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.6);
}
@media (max-width: 700px) {
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding-block: var(--sp-3); }
}

/* --- Service grid -------------------------------------------------------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-5);
}
.svc-card {
  position: relative;
  padding: var(--sp-6);
  border-radius: var(--r-lg);
  background: var(--bg-alt);
  border: 1px solid var(--ink-100);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  min-height: 220px;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.svc-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--brand-lt);
  display: grid; place-items: center;
  color: var(--brand-dk);
  margin-bottom: var(--sp-2);
}
.svc-card h3 { font-size: var(--fs-xl); }
.svc-card p { font-size: var(--fs-sm); color: var(--ink-500); }
.svc-card__more {
  margin-top: auto;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--ink-900);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}

/* --- Drone feature ------------------------------------------------------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, var(--sp-8));
  align-items: center;
}
@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; }
}
.feature__visual {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.feature__visual img { width: 100%; height: 100%; object-fit: cover; }
.feature__points {
  margin-top: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.feature__point {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}
.feature__point-mark {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: var(--fs-sm);
}
.feature--reverse .feature__visual { order: 2; }
@media (max-width: 900px) {
  .feature--reverse .feature__visual { order: 0; }
}

/* --- Projects gallery preview ------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-4);
}
.proj-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-100);
  transition: transform .3s var(--ease);
}
.proj-card:hover { transform: translateY(-4px); }
.proj-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.proj-card:hover img { transform: scale(1.06); }
.proj-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12,16,21,.85));
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.proj-card__tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--sp-2);
}
.proj-card h3 {
  color: #fff;
  font-size: var(--fs-xl);
}

/* --- Why-us pillars ------------------------------------------------------ */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-5);
}
.pillar {
  padding: var(--sp-5);
  border-radius: var(--r-md);
  background: var(--bg-alt);
  border-left: 4px solid var(--brand);
}
.pillar h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-2); }
.pillar p { font-size: var(--fs-sm); }

/* --- Final CTA block ---------------------------------------------------- */
.cta-block {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, var(--sp-9));
  background: var(--slate-950);
  color: #fff;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-7);
  align-items: center;
}
@media (max-width: 800px) {
  .cta-block { grid-template-columns: 1fr; }
}
.cta-block h2 { color: #fff; margin-bottom: var(--sp-4); }
.cta-block p { color: rgba(255,255,255,.78); max-width: 50ch; margin-bottom: var(--sp-5); }
.cta-block__actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.cta-block::before {
  content: '';
  position: absolute;
  right: -140px; top: -140px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(232,155,28,.25) 0%, transparent 60%);
  pointer-events: none;
}
.cta-block__phone-card {
  position: relative;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  text-align: center;
  z-index: 1;
}
.cta-block__phone-card .label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--brand);
  margin-bottom: var(--sp-2);
}
.cta-block__phone-card .num {
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-3);
  display: block;
}
.cta-block__phone-card .sub {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.7);
}

/* --- Footer -------------------------------------------------------------- */
.site-footer {
  background: var(--slate-950);
  color: rgba(255,255,255,.7);
  padding-block: var(--sp-8) var(--sp-5);
  font-size: var(--fs-sm);
}
.site-footer h4 {
  color: #fff;
  font-size: var(--fs-base);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: var(--sp-4);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--sp-7);
  margin-bottom: var(--sp-7);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: var(--sp-6); }
}
.footer-grid a { color: rgba(255,255,255,.7); display: block; padding-block: 4px; transition: color .2s var(--ease); }
.footer-grid a:hover { color: var(--brand); }
.footer__brand { display: flex; flex-direction: column; gap: var(--sp-3); }
/* Footer logo handled via .footer__brand .nav__logo img above */
.footer__brand p { color: rgba(255,255,255,.6); font-size: var(--fs-sm); margin-top: var(--sp-2); }
.footer__emergency {
  background: rgba(216,68,46,.12);
  border: 1px solid rgba(216,68,46,.3);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  margin-top: var(--sp-3);
}
.footer__emergency .label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--emergency);
  font-weight: 700;
  margin-bottom: 4px;
}
.footer__emergency .num {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: #fff;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: var(--sp-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.5);
}

/* --- Section header ------------------------------------------------------ */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--sp-7);
}
.section-head--left { text-align: left; margin-inline: 0; }
.section-head p { margin-top: var(--sp-3); color: var(--ink-500); font-size: var(--fs-lg); }

/* --- Subhero (for inner pages) ------------------------------------------ */
.subhero {
  position: relative;
  padding-block: clamp(4rem, 8vw, 7rem);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  overflow: hidden;
}
.subhero::before {
  content: '';
  position: absolute;
  right: -180px; top: -100px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, var(--brand-lt) 0%, transparent 60%);
  pointer-events: none;
}
.subhero .container { position: relative; z-index: 1; }
.subhero__title { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: var(--sp-4); max-width: 18ch; }
.subhero__sub { font-size: var(--fs-lg); color: var(--ink-500); max-width: 55ch; }
.subhero__crumbs {
  font-size: var(--fs-sm);
  color: var(--ink-500);
  margin-bottom: var(--sp-5);
  display: flex; gap: var(--sp-2);
}
.subhero__crumbs a:hover { color: var(--brand-dk); }

/* --- Service bucket ------------------------------------------------------ */
.bucket {
  padding-block: var(--sp-7);
  border-top: 1px solid var(--ink-100);
}
.bucket:first-of-type { border-top: 0; }
.bucket__head {
  max-width: 680px;
  margin-bottom: var(--sp-6);
}
.bucket__head h2 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-3);
}
.bucket__head p { color: var(--ink-500); }
.bucket__head .eyebrow { color: var(--brand-dk); }
.bucket__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}
@media (min-width: 640px) {
  .bucket__items { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1100px) {
  .bucket__items { grid-template-columns: repeat(3, 1fr); }
}
.bucket__item {
  padding: 0;
  background: var(--bg-alt);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.bucket__item:hover {
  transform: translateY(-3px);
  border-color: var(--brand);
  box-shadow: var(--sh-md);
}
.bucket__item-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-100);
}
.bucket__item-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.bucket__item:hover .bucket__item-img img { transform: scale(1.05); }
.bucket__item-img--emergency::after {
  content: '24/7';
  position: absolute;
  top: var(--sp-3); right: var(--sp-3);
  background: var(--emergency);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: .1em;
}
.bucket__item-body {
  padding: var(--sp-4) var(--sp-5);
}
.bucket__item h4 { font-size: var(--fs-base); margin-bottom: 4px; }
.bucket__item p { font-size: var(--fs-sm); color: var(--ink-500); margin: 0; }
/* Legacy: kept so any items not yet converted still display reasonably */
.bucket__item-mark {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--brand-lt);
  color: var(--brand-dk);
  display: grid; place-items: center;
  flex: 0 0 36px;
}

/* --- Property manager specific blocks ----------------------------------- */
.pm-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-4);
  background: var(--slate-900);
  color: #fff;
  border-radius: var(--r-lg);
  padding: var(--sp-6);
}
.pm-banner__stat .num {
  font-size: var(--fs-3xl);
  color: var(--brand);
  font-weight: 800;
  display: block;
  line-height: 1.05;
}
.pm-banner__stat .label {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.7);
}

/* --- Contact form -------------------------------------------------------- */
.form-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-7);
  align-items: flex-start;
}
@media (max-width: 900px) { .form-grid { grid-template-columns: 1fr; } }
.contact-form {
  background: var(--bg-alt);
  padding: var(--sp-6);
  border-radius: var(--r-lg);
  border: 1px solid var(--ink-100);
  box-shadow: var(--sh-sm);
}
.field { margin-bottom: var(--sp-4); }
.field label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: var(--sp-2);
  color: var(--ink-700);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  border: 1px solid var(--ink-300);
  border-radius: var(--r-md);
  background: #fff;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--brand);
  box-shadow: var(--sh-glow);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.contact-card {
  padding: var(--sp-5);
  border-radius: var(--r-lg);
  background: var(--bg-alt);
  border: 1px solid var(--ink-100);
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}
.contact-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--brand-lt);
  color: var(--brand-dk);
  display: grid; place-items: center;
  flex: 0 0 48px;
}
.contact-card h4 { font-size: var(--fs-base); margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: var(--fs-sm); color: var(--ink-500); }
.contact-card a:hover { color: var(--brand-dk); }
.contact-card.contact-card--emergency {
  background: var(--slate-950);
  border-color: transparent;
  color: #fff;
}
.contact-card--emergency h4 { color: #fff; }
.contact-card--emergency p { color: rgba(255,255,255,.7); }
.contact-card--emergency a { color: var(--brand); font-weight: 800; font-size: var(--fs-xl); }
.contact-card--emergency .contact-card__icon { background: var(--emergency); color: #fff; }

/* --- About / team -------------------------------------------------------- */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, var(--sp-8));
  align-items: center;
}
@media (max-width: 900px) { .story { grid-template-columns: 1fr; } }
.story__visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.story__visual img { width: 100%; height: 100%; object-fit: cover; }

.accred-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--sp-4);
  align-items: center;
  padding: var(--sp-5);
  background: var(--bg-alt);
  border-radius: var(--r-md);
  border: 1px solid var(--ink-100);
}
.accred-item {
  text-align: center;
  padding: var(--sp-3);
  border-right: 1px solid var(--ink-100);
}
.accred-item:last-child { border-right: 0; }
.accred-item__mark {
  font-weight: 800;
  font-size: var(--fs-base);
  color: var(--ink-900);
  margin-bottom: 2px;
}
.accred-item__label {
  font-size: var(--fs-xs);
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: .1em;
}
@media (max-width: 700px) {
  .accred-item { border-right: 0; border-bottom: 1px solid var(--ink-100); padding-block: var(--sp-3); }
}

/* --- Sticky mobile call bar --------------------------------------------- */
.sticky-call {
  display: none;
  position: fixed;
  bottom: var(--sp-3);
  left: var(--sp-3);
  right: var(--sp-3);
  z-index: 40;
  box-shadow: var(--sh-lg);
}
@media (max-width: 700px) {
  .sticky-call { display: flex; gap: var(--sp-2); }
  .sticky-call .btn { flex: 1; justify-content: center; }
  body { padding-bottom: 70px; }
}

/* --- Project filter chips ----------------------------------------------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: center;
  margin-bottom: var(--sp-6);
}
.chip {
  padding: 0.55rem 1.1rem;
  border-radius: var(--r-full);
  background: var(--bg-alt);
  border: 1px solid var(--ink-100);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink-700);
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--brand); color: var(--ink-900); }
.chip.is-active {
  background: var(--ink-900);
  color: #fff;
  border-color: var(--ink-900);
}

/* --- Reveal on scroll --------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Utility ------------------------------------------------------------- */
.mt-0 { margin-top: 0; }
.mt-3 { margin-top: var(--sp-3); }
.mt-5 { margin-top: var(--sp-5); }
.center { text-align: center; }
.muted { color: var(--ink-500); }

/* ==========================================================================
   v2 — Imagery overhaul
   ========================================================================== */

/* --- Image-backed audience cards (homepage hero) ------------------------ */
.aud-card--image {
  min-height: 340px;
  padding: 0;
  background: var(--ink-900);
  border-color: transparent;
  isolation: isolate;
  overflow: hidden;
}
.aud-card--image .aud-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transition: transform .7s var(--ease);
}
.aud-card--image:hover .aud-card__bg { transform: scale(1.05); }
.aud-card--image .aud-card__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(12,16,21,0) 0%, rgba(12,16,21,.45) 55%, rgba(12,16,21,.92) 100%);
}
.aud-card--image .aud-card__content {
  position: relative;
  z-index: 2;
  padding: var(--sp-6);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.aud-card--image .aud-card__tag {
  background: var(--brand);
  color: #fff;
  padding: .3rem .7rem;
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  align-self: flex-start;
  margin-bottom: var(--sp-3);
  letter-spacing: .12em;
}
.aud-card--image .aud-card__title { color: #fff; margin-bottom: var(--sp-2); }
.aud-card--image .aud-card__desc  { color: rgba(255,255,255,.85); margin-bottom: var(--sp-4); }
.aud-card--image .aud-card__arrow { color: #fff; }
.aud-card--image:hover { border-color: transparent; }
.aud-card--image .aud-card__icon { display: none; }

/* --- Image-led service cards -------------------------------------------- */
.svc-card--image {
  padding: 0;
  overflow: hidden;
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
}
.svc-card--image .svc-card__thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink-100);
}
.svc-card--image .svc-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.svc-card--image:hover .svc-card__thumb img { transform: scale(1.06); }
.svc-card--image .svc-card__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(12,16,21,.25));
}
.svc-card--image .svc-card__body {
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
}
.svc-card--image .svc-card__body h3 { font-size: var(--fs-xl); }
.svc-card--image .svc-card__body p  { font-size: var(--fs-sm); color: var(--ink-500); flex: 1; }
.svc-card--image .svc-card__more { margin-top: var(--sp-3); }

/* --- "SkyTop at work" photo strip -------------------------------------- */
.atwork {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-2);
  margin-top: var(--sp-5);
}
@media (max-width: 1000px) {
  .atwork { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .atwork { grid-template-columns: repeat(2, 1fr); }
}
.atwork__cell {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--ink-100);
}
.atwork__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.atwork__cell:hover img { transform: scale(1.05); }
.atwork__cell::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12,16,21,.7));
}
.atwork__cell .label {
  position: absolute;
  left: var(--sp-3);
  bottom: var(--sp-3);
  z-index: 2;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
}
/* Make the first cell on wide screens stretch wider (2 cols) */
@media (min-width: 1001px) {
  .atwork__cell:first-child { grid-column: span 2; aspect-ratio: 6 / 4; }
}

/* --- Subhero with image (Property Managers) ----------------------------- */
.subhero--image {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--slate-950);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.subhero--image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--subhero-bg, none);
  background-size: cover;
  background-position: center;
  opacity: .5;
  z-index: 0;
}
.subhero--image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12,16,21,.85) 0%, rgba(12,16,21,.55) 60%, rgba(12,16,21,.2) 100%);
  z-index: 1;
}
.subhero--image .container { position: relative; z-index: 2; }
.subhero--image .subhero__title { color: #fff; }
.subhero--image .subhero__sub   { color: rgba(255,255,255,.85); }
.subhero--image .subhero__crumbs { color: rgba(255,255,255,.6); }
.subhero--image .subhero__crumbs a { color: rgba(255,255,255,.8); }
.subhero--image .eyebrow { color: var(--brand-lt); }

/* PM mid-page block: big image with overlay stats */
.work-feature {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 380px;
  background: var(--ink-100);
  color: #fff;
}
.work-feature img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.work-feature__overlay {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(90deg, rgba(12,16,21,.86) 0%, rgba(12,16,21,.55) 60%, rgba(12,16,21,.25) 100%);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.work-feature__overlay .eyebrow { color: var(--brand-lt); }
.work-feature__overlay h2 { color: #fff; max-width: 18ch; margin-bottom: var(--sp-4); }
.work-feature__overlay p  { color: rgba(255,255,255,.85); max-width: 50ch; }

/* ==========================================================================
   v3 — Warmth + confidence (homeowners page)
   ========================================================================== */

/* --- Testimonials ------------------------------------------------------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-5);
}
.tcard {
  background: var(--bg-alt);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.tcard:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.tcard__stars { color: var(--brand); font-size: var(--fs-lg); letter-spacing: 2px; }
.tcard__quote {
  font-size: var(--fs-lg);
  line-height: 1.45;
  color: var(--ink-900);
  font-weight: 500;
}
.tcard__quote::before { content: '“'; color: var(--brand); font-size: 2.4rem; line-height: 0; vertical-align: -0.4em; margin-right: 2px; }
.tcard__person {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--ink-100);
}
.tcard__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-lt);
  color: var(--brand-dk);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: var(--fs-base);
  flex: 0 0 44px;
}
.tcard__name { font-weight: 700; color: var(--ink-900); font-size: var(--fs-base); }
.tcard__where { font-size: var(--fs-sm); color: var(--ink-500); }

/* --- First-call reassurance block --------------------------------------- */
.first-call {
  background: var(--brand-lt);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 4vw, var(--sp-7));
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-6);
  align-items: center;
}
@media (max-width: 800px) { .first-call { grid-template-columns: 1fr; } }
.first-call__head h2 { color: var(--ink-900); margin-bottom: var(--sp-2); }
.first-call__head p  { color: var(--ink-700); }
.first-call__items {
  display: grid;
  gap: var(--sp-4);
}
.fc-item {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}
.fc-item__tick {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid; place-items: center;
  flex: 0 0 32px;
}
.fc-item h4 { font-size: var(--fs-base); margin-bottom: 2px; }
.fc-item p { font-size: var(--fs-sm); color: var(--ink-700); margin: 0; }

/* --- Promise block ------------------------------------------------------ */
.promise {
  background: var(--slate-950);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(2rem, 4vw, var(--sp-7));
}
.promise__head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-6);
  align-items: end;
  margin-bottom: var(--sp-6);
}
@media (max-width: 800px) { .promise__head { grid-template-columns: 1fr; } }
.promise h2 { color: #fff; max-width: 18ch; }
.promise__head p { color: rgba(255,255,255,.78); }
.promise__head .eyebrow { color: var(--brand-lt); }

.promise__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--sp-4);
  padding-block: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.promise__stat .num {
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--brand-lt);
  display: block;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.promise__stat .label {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.7);
  margin-top: 4px;
  display: block;
}

.promise__badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--sp-4);
  margin-top: var(--sp-5);
  text-align: center;
}
.promise__badge {
  padding: var(--sp-3);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
}
.promise__badge .mark {
  font-weight: 800;
  font-size: var(--fs-base);
  color: #fff;
  display: block;
}
.promise__badge .sub {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 2px;
  display: block;
}

/* --- Soften .pillar headings on light bg with no number prefix ---------- */
.pillar--soft h3 { font-size: var(--fs-lg); color: var(--brand-dk); margin-bottom: var(--sp-2); }
.pillar--soft h3 small {
  display: block;
  font-size: var(--fs-xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-dk);
  font-weight: 700;
  margin-bottom: 4px;
}


/* ==========================================================================
   v4 — Case Study (Before / During / After)
   ========================================================================== */
.casestudy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
}
@media (max-width: 800px) {
  .casestudy { grid-template-columns: 1fr; }
}
.cs-stage {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-100);
  aspect-ratio: 4 / 5;
  box-shadow: var(--sh-sm);
  transition: transform .25s var(--ease);
}
.cs-stage:hover { transform: translateY(-3px); }
.cs-stage img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cs-stage__label {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
}
.cs-stage--before .cs-stage__label { background: var(--ink-700); }
.cs-stage--during .cs-stage__label { background: #c47e0c; }
.cs-stage--after  .cs-stage__label { background: var(--success); }

.casestudy-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--sp-4);
  padding: var(--sp-5);
  background: var(--bg-alt);
  border-radius: var(--r-lg);
  border: 1px solid var(--ink-100);
}
.csm-item h4 {
  font-size: var(--fs-xs);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-dk);
  margin-bottom: 2px;
  font-weight: 700;
}
.csm-item p {
  font-size: var(--fs-base);
  color: var(--ink-900);
  font-weight: 600;
  margin: 0;
}

/* --- v5: image focal-point fixes ------------------------------------- */
/* Drone-survey image has the drone at the top — anchor crops there */
.svc-card__thumb img[src*="drone-survey"],
.bucket__item-img img[src*="drone-survey"],
.feature__visual img[src*="drone-survey"] {
  object-position: center top;
}
/* Callout shows the van — keep roof + van both visible by anchoring slightly low */
.atwork__cell img[src*="Callout"],
.story__visual img[src*="Callout"] {
  object-position: center 35%;
}
