/* =============================================================
   GLASSY COOL — Commercial Window Cleaning
   Premium static site — glassmorphism-modern, navy/white/glass-blue
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --navy:        #0b1c2f;
  --navy-2:      #12283f;
  --navy-3:      #1c3a58;
  --navy-4:      #234668;
  --ink:         #0b1c2f;
  --ink-soft:    #2c3e50;
  --mute:        #5b6b7d;
  --mute-2:      #8695a3;
  --paper:       #ffffff;
  --paper-2:     #f4f8fa;
  --paper-3:     #eaf1f5;
  --line:        rgba(11, 28, 47, 0.1);
  --line-soft:   rgba(11, 28, 47, 0.06);
  --line-dark:   rgba(255, 255, 255, 0.14);

  --accent:       #2f8fc4;
  --accent-2:     #3fa9dd;
  --accent-soft:  #cdeaf7;
  --accent-glow:  rgba(63, 169, 221, 0.35);

  --glass-bg:      rgba(255, 255, 255, 0.6);
  --glass-bg-dark: rgba(255, 255, 255, 0.08);
  --glass-border:  rgba(255, 255, 255, 0.55);
  --glass-border-dark: rgba(255, 255, 255, 0.16);

  --display: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1240px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 4px 14px rgba(11, 28, 47, 0.08), 0 1px 3px rgba(11, 28, 47, 0.06);
  --shadow-md: 0 20px 45px rgba(11, 28, 47, 0.14), 0 6px 16px rgba(11, 28, 47, 0.08);
  --shadow-lg: 0 40px 90px rgba(11, 28, 47, 0.22), 0 12px 30px rgba(11, 28, 47, 0.12);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  font-family: var(--display);
  text-wrap: balance;
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-weight: 800;
}
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--accent-soft); color: var(--navy); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.1rem; background: var(--navy); color: var(--paper);
  z-index: 9999; border-radius: 8px; font-weight: 600; font-size: .9rem;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 720px)  { .container { padding-inline: 2rem; } }
@media (min-width: 1280px) { .container { padding-inline: 2.5rem; } }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--display);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--accent);
  border-radius: 2px;
}
.on-dark .eyebrow { color: var(--accent-2); }

.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-top: .6rem; }
.section-head p { color: var(--mute); font-size: 1.05rem; margin-top: .9rem; }
.on-dark .section-head p { color: rgba(244, 248, 250, 0.72); }

.on-dark { background: var(--navy); color: var(--paper); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--paper); }

.bg-paper-2 { background: var(--paper-2); }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.7rem;
  font-family: var(--display);
  font-weight: 700; font-size: .95rem;
  letter-spacing: .01em;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background-color .3s var(--ease-out), color .3s var(--ease-out);
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }

.btn-primary { background: var(--accent); color: var(--paper); }
.btn-primary:hover { background: var(--accent-2); }

.btn-light { background: var(--paper); color: var(--navy); }

.btn-ghost {
  background: transparent; color: var(--paper);
  border: 1.5px solid rgba(255,255,255,0.5);
  box-shadow: none;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); box-shadow: none; }

.btn-outline-navy {
  background: transparent; color: var(--navy);
  border: 1.5px solid rgba(11,28,47,0.25);
  box-shadow: none;
}
.btn-outline-navy:hover { background: var(--navy); color: var(--paper); box-shadow: var(--shadow-sm); }

.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex: none; }

.magnetic-inner {
  display: inline-flex; align-items: center; justify-content: center; gap: inherit;
  will-change: transform;
  transition: transform .8s var(--ease-soft);
}
.has-magnetic { display: inline-flex; position: relative; isolation: isolate; }

.cta-row { display: flex; flex-wrap: wrap; gap: .9rem; }

/* =============================================================
   5. Glass components
   ============================================================= */
.glass-card {
  position: relative;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(11, 28, 47, 0.08);
  box-shadow: var(--shadow-sm);
}
@supports (backdrop-filter: blur(16px)) {
  .glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid var(--glass-border);
  }
}

.glass-card-dark {
  position: relative;
  border-radius: var(--radius);
  background: rgba(20, 40, 63, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-sm);
}
@supports (backdrop-filter: blur(16px)) {
  .glass-card-dark {
    background: var(--glass-bg-dark);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid var(--glass-border-dark);
  }
}

.has-tilt {
  --rx: 0deg; --ry: 0deg;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-soft), box-shadow .45s var(--ease-soft);
}
.has-tilt:hover { transition-duration: .15s; box-shadow: var(--shadow-lg); }

.icon-tile {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-soft), #ffffff);
  color: var(--accent);
  flex: none;
}
.icon-tile svg { width: 26px; height: 26px; }
.on-dark .icon-tile, .glass-card-dark .icon-tile {
  background: linear-gradient(135deg, rgba(63,169,221,0.28), rgba(63,169,221,0.06));
  color: var(--accent-2);
}

/* =============================================================
   6. Navigation
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 200;
  padding-block: 1.1rem;
  transition: padding .4s var(--ease-out), background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 34px; width: auto; transition: opacity .3s; }
.nav-logo .logo-light { display: block; }
.nav-logo .logo-dark { display: none; }

.nav-links {
  display: none;
  align-items: center; gap: 2.1rem;
}
.nav-link {
  position: relative;
  font-family: var(--display);
  font-weight: 600; font-size: .93rem;
  color: var(--paper);
  padding: .3rem 0;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: currentColor; border-radius: 2px;
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-link.is-active { color: var(--accent-2); }

.nav-cta { display: none; }

.nav-actions { display: flex; align-items: center; gap: .9rem; }

.nav-burger {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 12px;
  color: var(--paper);
}
.nav-burger span { display: block; width: 20px; height: 2px; background: currentColor; position: relative; border-radius: 2px; }
.nav-burger span::before, .nav-burger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform .3s var(--ease-out);
}
.nav-burger span::before { top: -6px; }
.nav-burger span::after { top: 6px; }

.nav.is-scrolled {
  padding-block: .7rem;
  background: rgba(11, 28, 47, 0.86);
  box-shadow: 0 8px 30px rgba(11,28,47,0.18);
}
@supports (backdrop-filter: blur(14px)) {
  .nav.is-scrolled { backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%); }
}

.page-hero ~ * .nav,
body.subpage .nav { background: rgba(11, 28, 47, 0.92); }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-burger { display: none; }
}

.nav-mobile {
  position: fixed; inset: 0; z-index: 300;
  background: var(--navy);
  display: flex; flex-direction: column;
  padding: 6.5rem 1.5rem 2.5rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
}
.nav-mobile[data-open="true"] { clip-path: inset(0 0 0 0); }
.nav-mobile-close {
  position: absolute; top: 1.3rem; right: 1.3rem;
  width: 44px; height: 44px; display: grid; place-items: center;
  color: var(--paper); border-radius: 12px;
}
.nav-mobile-links { display: flex; flex-direction: column; gap: 1.6rem; }
.nav-mobile-links a {
  font-family: var(--display); font-size: 1.7rem; font-weight: 700; color: var(--paper);
}
.nav-mobile-foot { margin-top: auto; display: flex; flex-direction: column; gap: 1rem; }
.nav-mobile-foot a.btn { width: 100%; }
.nav-mobile-call {
  display: flex; align-items: center; gap: .6rem;
  color: rgba(244,248,250,0.85); font-weight: 600;
}

/* =============================================================
   7. Hero (home)
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 7rem; padding-bottom: 4rem;
  overflow: clip;
  background: var(--navy);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,28,47,0.88) 0%, rgba(11,28,47,0.78) 40%, rgba(11,28,47,0.94) 100%),
    linear-gradient(100deg, rgba(11,28,47,0.75) 10%, rgba(11,28,47,0.25) 60%);
}
.hero-mesh {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(50% 40% at 15% 20%, rgba(63,169,221,0.22), transparent 65%),
    radial-gradient(45% 35% at 85% 75%, rgba(63,169,221,0.14), transparent 65%);
  filter: blur(10px);
  opacity: .9;
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
}
.hero-content { max-width: 700px; }
.hero-content .eyebrow { color: var(--accent-2); }
.hero-title {
  color: var(--paper);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  margin-top: 1rem;
  text-wrap: balance;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--accent-2), var(--accent-soft));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  color: rgba(244, 248, 250, 0.82);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  max-width: 52ch;
  margin-top: 1.4rem;
}
.hero-actions { margin-top: 2.2rem; }

.hero-stats {
  position: relative; z-index: 2;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
  max-width: 560px;
}
@media (min-width: 640px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.hero-stat {
  padding: 1.1rem 1rem;
  text-align: left;
}
.hero-stat .num {
  display: block;
  font-family: var(--display); font-weight: 800; font-size: 1.6rem;
  color: var(--paper);
}
.hero-stat .label {
  display: block; margin-top: .2rem;
  font-size: .8rem; color: rgba(244,248,250,0.68);
}

/* =============================================================
   8. Page hero (interior pages)
   ============================================================= */
.page-hero {
  position: relative;
  padding-top: 9rem; padding-bottom: 4.5rem;
  overflow: clip;
  background: var(--navy);
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,28,47,0.92) 0%, rgba(11,28,47,0.86) 55%, rgba(11,28,47,0.97) 100%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 720px; }
.page-hero h1 { color: var(--paper); font-size: clamp(2.1rem, 4.4vw, 3.2rem); margin-top: 1rem; }
.page-hero p { color: rgba(244,248,250,0.8); font-size: 1.08rem; margin-top: 1.1rem; max-width: 58ch; }
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .85rem; color: rgba(244,248,250,0.6);
  margin-bottom: 1.4rem;
}
.breadcrumb a { color: rgba(244,248,250,0.85); }
.breadcrumb a:hover { color: var(--accent-2); }

/* =============================================================
   9. Benefits / trust grids
   ============================================================= */
.benefits-grid {
  display: grid; gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }

.benefit-card {
  padding: 1.8rem 1.6rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.benefit-card h3 { font-size: 1.08rem; }
.benefit-card p { color: var(--mute); font-size: .95rem; }

.trust-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
.trust-item {
  display: flex; gap: 1rem;
  padding: 1.5rem;
}
.trust-item h3 { font-size: 1.02rem; color: var(--paper); }
.trust-item p { font-size: .92rem; color: rgba(244,248,250,0.7); margin-top: .35rem; }
.trust-item .icon-tile { width: 44px; height: 44px; border-radius: 12px; }
.trust-item .icon-tile svg { width: 22px; height: 22px; }

/* =============================================================
   10. Services grid & detail
   ============================================================= */
.services-grid {
  display: grid; gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

.service-card {
  padding: 1.9rem;
  display: flex; flex-direction: column; gap: 1.1rem;
}
.service-card h3 { font-size: 1.2rem; }
.service-card p { color: var(--mute); font-size: .96rem; }
.service-points { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .3rem; }
.service-points li {
  font-size: .78rem; font-weight: 600; font-family: var(--display);
  padding: .35rem .75rem; border-radius: 999px;
  background: var(--paper-2); color: var(--navy-2);
  border: 1px solid var(--line);
}

.service-detail {
  padding: 2.2rem;
  display: grid; gap: 1.4rem;
}
@media (min-width: 720px) { .service-detail { grid-template-columns: 76px 1fr; align-items: start; } }
.service-detail .icon-tile { width: 76px; height: 76px; border-radius: 20px; }
.service-detail .icon-tile svg { width: 36px; height: 36px; }
.service-detail h3 { font-size: 1.4rem; }
.service-detail p { color: var(--mute); margin-top: .6rem; }
.service-detail ul { margin-top: 1rem; display: grid; gap: .55rem; }
.service-detail ul li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .96rem; color: var(--ink-soft);
}
.service-detail ul li svg { width: 18px; height: 18px; color: var(--accent); flex: none; }

.service-detail-list { display: grid; gap: 1.3rem; }

/* =============================================================
   11. Steps (how it works)
   ============================================================= */
.steps-grid {
  display: grid; gap: 1.6rem;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 820px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card { position: relative; padding-top: .5rem; }
.step-num {
  font-family: var(--display); font-weight: 800;
  font-size: 3rem; line-height: 1;
  background: linear-gradient(180deg, var(--accent-soft), rgba(255,255,255,0));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
}
.step-card h3 { margin-top: .6rem; font-size: 1.12rem; }
.step-card p { margin-top: .5rem; color: var(--mute); font-size: .95rem; }
.step-connector {
  display: none;
}
@media (min-width: 820px) {
  .step-card:not(:last-child)::after {
    content: ""; position: absolute; top: 1.9rem; left: calc(100% + 0.8rem); width: calc(1.6rem - 0.8rem);
    height: 2px; background: var(--line);
  }
}

/* =============================================================
   12. Before / after slider
   ============================================================= */
.ba-wrap { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 960px) { .ba-wrap { grid-template-columns: 1fr 1fr; } }

.ba-slider {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
  touch-action: pan-y;
}
.ba-slider img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  user-select: none; -webkit-user-drag: none;
}
.ba-after { z-index: 1; }
.ba-before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  filter: saturate(0.35) brightness(0.72) contrast(0.92);
}
.ba-before::after { content: ""; }
.ba-grime {
  position: absolute; inset: 0; z-index: 3;
  clip-path: inset(0 50% 0 0);
  background-image:
    radial-gradient(120px 90px at 20% 30%, rgba(90,80,60,0.35), transparent 70%),
    radial-gradient(160px 110px at 70% 65%, rgba(90,80,60,0.3), transparent 70%),
    radial-gradient(90px 70px at 45% 80%, rgba(90,80,60,0.28), transparent 70%),
    linear-gradient(180deg, rgba(70,65,50,0.22), rgba(70,65,50,0.32));
  mix-blend-mode: multiply;
  pointer-events: none;
}
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; z-index: 4;
  width: 3px; background: var(--paper);
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(11,28,47,0.15);
}
.ba-handle-grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--paper);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  color: var(--navy);
}
.ba-handle-grip svg { width: 20px; height: 20px; }
.ba-tag {
  position: absolute; top: 1rem; z-index: 5;
  font-family: var(--display); font-weight: 700; font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .4rem .8rem; border-radius: 999px;
  background: rgba(11,28,47,0.55); color: var(--paper);
  backdrop-filter: blur(6px);
}
.ba-tag-before { left: 1rem; }
.ba-tag-after { right: 1rem; }
.ba-range {
  position: absolute; inset: 0; z-index: 6;
  width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize;
  -webkit-appearance: none; appearance: none;
}
.ba-range::-webkit-slider-thumb { -webkit-appearance: none; width: 46px; height: 46px; }

.ba-copy h2 { margin-top: .6rem; }
.ba-copy p { color: var(--mute); margin-top: 1rem; font-size: 1.02rem; }
.ba-copy .cta-row { margin-top: 1.6rem; }

/* =============================================================
   13. Areas served
   ============================================================= */
.areas-wrap { display: grid; gap: 2.5rem; }
@media (min-width: 960px) { .areas-wrap { grid-template-columns: 1.1fr 1fr; align-items: center; } }

.areas-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem;
}
@media (min-width: 480px) { .areas-list { grid-template-columns: repeat(3, 1fr); } }
.area-chip {
  display: flex; align-items: center; gap: .55rem;
  padding: .9rem 1rem;
  border-radius: var(--radius-sm);
}
.area-chip svg { width: 18px; height: 18px; color: var(--accent-2); flex: none; }
.area-chip span { font-family: var(--display); font-weight: 700; font-size: .92rem; }

.areas-map-graphic {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  background: #18324a;
  display: grid; place-items: center;
  overflow: hidden;
}
.areas-map-graphic svg { width: 86%; height: 86%; }

/* ---- GTA service-area illustration ---- */
.gta-map-svg { overflow: visible; }

.gta-outline {
  fill: rgba(255, 255, 255, 0.025);
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1.2;
  stroke-linejoin: round;
}

.gta-link line {
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1;
  stroke-linecap: round;
}

.gta-glow { opacity: 0.55; }

.gta-marker circle {
  fill: #ffffff;
  stroke: #18324a;
  stroke-width: 1.1;
  transform-box: fill-box;
  transform-origin: 50% 50%;
  transition: transform .35s var(--ease-soft);
}
.gta-marker-hq circle {
  fill: #39a9e8;
  stroke: rgba(255, 255, 255, 0.85);
  stroke-width: 1.4;
}
.areas-map-graphic:hover .gta-marker circle,
.areas-map-graphic:focus-within .gta-marker circle {
  transform: scale(1.25);
}

.gta-label {
  font-family: var(--display);
  font-size: 6.2px;
  font-weight: 600;
  letter-spacing: .05em;
  fill: rgba(255, 255, 255, 0.9);
}
.gta-label-hq {
  font-size: 7.6px;
  font-weight: 800;
  letter-spacing: .03em;
}
.gta-label-tag {
  font-family: var(--display);
  font-size: 5px;
  font-weight: 600;
  letter-spacing: .16em;
  fill: rgba(255, 255, 255, 0.5);
}

/* =============================================================
   14. Property managers section
   ============================================================= */
.pm-wrap { display: grid; gap: 2.5rem; }
@media (min-width: 960px) { .pm-wrap { grid-template-columns: 1fr 1fr; align-items: center; } }
.pm-media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-lg);
}
.pm-media img { width: 100%; height: 100%; object-fit: cover; }
.pm-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,28,47,0) 40%, rgba(11,28,47,0.55) 100%);
}
.pm-badge {
  position: absolute; left: 1.4rem; bottom: 1.4rem; z-index: 2;
  padding: 1rem 1.2rem;
  display: flex; align-items: center; gap: .8rem;
}
.pm-badge .num { font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: var(--paper); }
.pm-badge .lbl { font-size: .78rem; color: rgba(244,248,250,0.75); max-width: 14ch; }

.pm-points { display: grid; gap: 1.1rem; margin-top: 1.8rem; }
.pm-point { display: flex; gap: 1rem; }
.pm-point h3 { font-size: 1rem; }
.pm-point p { font-size: .93rem; color: var(--mute); margin-top: .3rem; }

/* =============================================================
   15. Final CTA banner
   ============================================================= */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: clip;
  padding: clamp(2.6rem, 6vw, 4.5rem);
  background:
    radial-gradient(60% 90% at 15% 20%, rgba(63,169,221,0.32), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  text-align: center;
}
.cta-banner h2 { color: var(--paper); font-size: clamp(1.8rem, 3.6vw, 2.7rem); max-width: 20ch; margin-inline: auto; }
.cta-banner p { color: rgba(244,248,250,0.78); margin-top: 1rem; max-width: 52ch; margin-inline: auto; }
.cta-banner .cta-row { justify-content: center; margin-top: 2rem; }

/* =============================================================
   16. Contact / quote form
   ============================================================= */
.contact-wrap { display: grid; gap: 2.5rem; }
@media (min-width: 960px) { .contact-wrap { grid-template-columns: 0.85fr 1.15fr; align-items: start; } }

.contact-info-card { padding: 2rem; display: flex; flex-direction: column; gap: 1.6rem; }
.contact-info-row { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-row h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--mute); font-family: var(--display); }
.contact-info-row p, .contact-info-row a { font-size: 1.02rem; font-weight: 600; margin-top: .25rem; }
.contact-info-row a:hover { color: var(--accent); }

.form-card { padding: clamp(1.6rem, 4vw, 2.6rem); }
.form-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid.cols-2 { grid-template-columns: 1fr 1fr; } }

.field { position: relative; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 1.35rem 1rem .55rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  transition: border-color .25s var(--ease-out);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field label {
  position: absolute; left: 1rem; top: 1.05rem;
  pointer-events: none; transition: all .22s var(--ease-out);
  color: var(--mute); font-size: .98rem;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field.has-value label,
.field select:focus + label,
.field.select-filled label {
  top: .5rem; font-size: .68rem; letter-spacing: .07em; text-transform: uppercase; color: var(--accent);
}
.field select { appearance: none; padding-right: 2.2rem; }
.field-select-arrow {
  position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; color: var(--mute); pointer-events: none;
}

.form-note { font-size: .82rem; color: var(--mute-2); margin-top: 1rem; }

.cta-success {
  display: none;
  text-align: center; padding: 2.4rem 1rem;
}
.cta-success.is-visible { display: block; }
.cta-success .check-circle {
  width: 60px; height: 60px; border-radius: 50%; margin-inline: auto 1rem;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
}
.cta-success h3 { margin-top: 1rem; }
.cta-success p { color: var(--mute); margin-top: .5rem; }

.cta-form.is-sending { pointer-events: none; opacity: .7; }
.cta-form.is-sent { display: none; }

/* =============================================================
   17. Footer
   ============================================================= */
.footer {
  background: var(--navy);
  color: rgba(244,248,250,0.75);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer-top {
  display: grid; gap: 2.4rem;
  grid-template-columns: 1fr;
  padding-bottom: 2.6rem;
  border-bottom: 1px solid var(--line-dark);
}
@media (min-width: 780px) { .footer-top { grid-template-columns: 1.3fr repeat(3, 0.9fr); } }
.footer-brand img { height: 32px; }
.footer-brand p { margin-top: 1rem; font-size: .92rem; max-width: 32ch; color: rgba(244,248,250,0.6); }
.footer-social {
  display: inline-flex; align-items: center; gap: .6rem; margin-top: 1.2rem;
  font-size: .88rem; font-weight: 600; color: rgba(244,248,250,0.75);
}
.footer-social svg { width: 18px; height: 18px; }
.footer-social:hover { color: var(--accent-2); }

.footer-col h4 {
  font-family: var(--display); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(244,248,250,0.5); margin-bottom: 1rem;
}
.footer-col ul { display: grid; gap: .65rem; }
.footer-col a { font-size: .94rem; }
.footer-col a:hover { color: var(--accent-2); }

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: space-between;
  padding-top: 1.6rem;
  font-size: .82rem; color: rgba(244,248,250,0.5);
}
.footer-bottom a:hover { color: var(--accent-2); }

/* =============================================================
   18. Mobile conversion bar (click-to-call)
   ============================================================= */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  display: flex; gap: .6rem;
  padding: .7rem .8rem calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(11,28,47,0.94);
  border-top: 1px solid var(--line-dark);
}
@supports (backdrop-filter: blur(14px)) {
  .mobile-bar { backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%); }
}
.mobile-bar a { flex: 1; font-size: .88rem; padding: .85rem 1rem; }
@media (min-width: 960px) { .mobile-bar { display: none; } }
body { padding-bottom: 76px; }
@media (min-width: 960px) { body { padding-bottom: 0; } }

/* =============================================================
   19. Reveal / scroll effects
   ============================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(32px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal-stagger] > * {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s var(--ease-soft), transform .7s var(--ease-soft);
}
[data-reveal-stagger].is-revealed > * { opacity: 1; transform: none; }
[data-reveal-stagger].is-revealed > *:nth-child(1) { transition-delay: 0ms; }
[data-reveal-stagger].is-revealed > *:nth-child(2) { transition-delay: 80ms; }
[data-reveal-stagger].is-revealed > *:nth-child(3) { transition-delay: 160ms; }
[data-reveal-stagger].is-revealed > *:nth-child(4) { transition-delay: 240ms; }
[data-reveal-stagger].is-revealed > *:nth-child(5) { transition-delay: 320ms; }
[data-reveal-stagger].is-revealed > *:nth-child(6) { transition-delay: 400ms; }

.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 250;
  background: transparent; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform-origin: 0 0; transform: scaleX(0);
}

/* =============================================================
   20. Misc components
   ============================================================= */
.divider-glow {
  position: relative; height: 1px; background: var(--line-soft); overflow: visible;
}

.badge-row { display: flex; flex-wrap: wrap; gap: .7rem; }
.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem .9rem; border-radius: 999px;
  font-size: .8rem; font-weight: 600; font-family: var(--display);
  background: var(--paper-2); color: var(--navy-2);
  border: 1px solid var(--line);
}

.two-col { display: grid; gap: 2.5rem; }
@media (min-width: 960px) { .two-col { grid-template-columns: 1fr 1fr; align-items: center; } }

.story-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-lg); }
.story-media img { width: 100%; height: 100%; object-fit: cover; }

.founder-card { display: flex; align-items: center; gap: 1rem; padding: 1.3rem 1.5rem; margin-top: 1.6rem; }
.founder-card .avatar {
  width: 54px; height: 54px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--navy-3), var(--navy));
  display: grid; place-items: center; color: var(--accent-2);
  font-family: var(--display); font-weight: 800;
}
.founder-card h4 { font-size: 1rem; }
.founder-card span { font-size: .85rem; color: var(--mute); }

.values-list { display: grid; gap: 1rem; margin-top: 1.8rem; }
.values-list li { display: flex; gap: .8rem; align-items: flex-start; font-size: .98rem; color: var(--ink-soft); }
.values-list li svg { width: 20px; height: 20px; color: var(--accent); flex: none; margin-top: 2px; }

/* =============================================================
   21. Responsive type scale safety
   ============================================================= */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }

/* =============================================================
   22. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bg img { animation: none !important; }
}
