:root{
  --blue:#1F4E79;
  --blue-100:#D9E6F2;
  --gray-50:#F2F4F7;
  --gray-100:#E6E9EF;
  --text:#0E1B2A;
  --muted:#4B5563;
  --card:#FFFFFF;
  --shadow: 0 8px 24px rgba(16, 24, 40, .08);
  --radius: 16px;
  --max: 1120px;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family:"Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.55;
}

h1,h2,h3{
  font-family:"Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.15;
  margin:0 0 .5rem 0;
}

a{ color:inherit; text-decoration:none; }

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
}

/* Small utility text */
.brand-sub{ font-weight:600; color:var(--muted); font-size:12px; margin-top:2px; }
.note{ margin-top:18px; color:var(--muted); font-size:14px; }
.fineprint{ margin-top:14px; color:var(--muted); font-size:14px; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  font-weight:600;
  border:1px solid transparent;
  transition:transform .05s ease, background .15s ease, border .15s ease;
  cursor:pointer;
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px); }

.btn-primary{ background:var(--blue); color:#fff; }
.btn-primary:hover{ background:#173E61; }

.btn-ghost{ border-color:var(--gray-100); background:#fff; color:var(--text); }
.btn-ghost:hover{ background:var(--gray-50); }

.pill{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(31,78,121,.08);
  color:var(--blue);
  font-weight:600;
  font-size:13px;
}

/* Header */
header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--gray-100);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:72px;
  position:relative; /* needed for mobile dropdown positioning */
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  font-family:"Montserrat", sans-serif;
  letter-spacing:.2px;
}

.logo-box{
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px dashed rgba(31,78,121,.35);
  background:rgba(31,78,121,.05);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--blue);
  font-size:12px;
}

nav ul{
  list-style:none;
  display:flex;
  gap:18px;
  padding:0;
  margin:0;
  align-items:center;
}

nav a{ font-weight:600; color:var(--muted); }
nav a:hover{ color:var(--text); }

.nav-actions{
  display:flex;
  gap:10px;
  align-items:center;
}

/* Mobile toggle button (hidden on desktop) */
.menu-toggle{
  display:none;
  background:none;
  border:none;
  font-size:26px;
  cursor:pointer;
  padding:8px 10px;
  border-radius:10px;
}
.menu-toggle:hover{ background:var(--gray-50); }

/* Hero */
.hero{
  padding:64px 0 32px;
  background:
    radial-gradient(900px 380px at 10% 10%, rgba(31,78,121,.12), transparent 60%),
    radial-gradient(900px 380px at 90% 0%, rgba(31,78,121,.10), transparent 55%);
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  align-items:start;
}

.hero h1{ font-size: clamp(34px, 4vw, 52px); }

.sub{
  font-size:18px;
  color:var(--muted);
  margin:14px 0 20px;
  max-width:56ch;
}

.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

.hero-card{
  background:var(--card);
  border:1px solid var(--gray-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}

.hero-card h3{ font-size:16px; margin-bottom:10px; }

.mini-list{ margin:0; padding-left:18px; color:var(--muted); }
.mini-list li{ margin:6px 0; }

/* Trust bar */
.trust{ padding:18px 0 42px; }

.trust-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}

.trust-item{
  background:var(--gray-50);
  border:1px solid var(--gray-100);
  border-radius:14px;
  padding:14px;
  font-weight:600;
  color:var(--text);
  display:flex;
  gap:10px;
  align-items:flex-start;
}

.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--blue);
  margin-top:5px;
}

.trust-item span{ display:block; font-weight:600; }
.trust-item small{ display:block; font-weight:600; color:var(--muted); margin-top:2px; }

/* Sections */
section{ padding:56px 0; }

.section-title{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:20px;
}
.section-title p{ margin:0; color:var(--muted); max-width:70ch; }

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

.card{
  background:var(--card);
  border:1px solid var(--gray-100);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 10px 26px rgba(16,24,40,.05);
  min-height: 160px;
}

.card h3{ font-size:18px; }

.card ul{ margin:10px 0 0; padding-left:18px; color:var(--muted); }
.card li{ margin:7px 0; }

/* Process */
.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}

.step{
  background:var(--blue-100);
  border:1px solid rgba(31,78,121,.18);
  border-radius: var(--radius);
  padding:16px;
}

.step .num{
  width:34px;
  height:34px;
  border-radius:10px;
  background:rgba(31,78,121,.14);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  color:var(--blue);
  margin-bottom:10px;
  font-family:"Montserrat", sans-serif;
}

.step p{ margin:6px 0 0; color:var(--muted); }

/* Work / samples */
.samples{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

.sample{
  border-radius: var(--radius);
  border:1px solid var(--gray-100);
  overflow:hidden;
  background:#fff;
  box-shadow: 0 10px 26px rgba(16,24,40,.05);
}

.sample .img{
  height:160px;
  background:
    linear-gradient(135deg, rgba(31,78,121,.22), rgba(31,78,121,.06)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.35), rgba(255,255,255,.35) 10px, rgba(255,255,255,.18) 10px, rgba(255,255,255,.18) 20px);
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(14,27,42,.7);
  font-weight:700;
  font-family:"Montserrat", sans-serif;
}

.sample .body{ padding:14px 16px 16px; }
.sample h3{ font-size:16px; margin-bottom:6px; }
.sample p{ margin:0; color:var(--muted); }

/* CTA band */
.cta-band{
  background:linear-gradient(135deg, rgba(31,78,121,.12), rgba(31,78,121,.04));
  border-top:1px solid var(--gray-100);
  border-bottom:1px solid var(--gray-100);
}

.cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:22px 0;
  flex-wrap:wrap;
}

/* Banded section helper (used for process) */
.band{
  background:var(--gray-50);
  border-top:1px solid var(--gray-100);
  border-bottom:1px solid var(--gray-100);
}

/* Footer */
footer{
  padding:36px 0;
  background:#0E1B2A;
  color:#D6E2F0;
}

footer a{ color:#D6E2F0; text-decoration:underline; }

.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
}

.small{ color: rgba(214,226,240,.8); font-size:14px; }
.footer-links{ display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-end; }

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .trust-grid{ grid-template-columns: repeat(2, 1fr); }
  .cards{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .samples{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-links{ justify-content:flex-start; }

  /* Show hamburger */
  .menu-toggle{ display:block; }

  /* Hide desktop action buttons */
  .nav-actions{ display:none; }

  /* Mobile dropdown nav */
  #mainNav{
    display:none;
    position:absolute;
    top:72px;
    left:0;
    width:100%;
    background:#fff;
    border-bottom:1px solid var(--gray-100);
  }

  #mainNav ul{
    display:flex;
    flex-direction:column;
    padding:20px;
    gap:16px;
  }

  #mainNav.active{ display:block; }
}

/* ===== Premium Hero Upgrade ===== */

.hero-premium{
  padding:72px 0 34px;
}

.hero-grid-premium{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap:22px;
  align-items:start;
}

.hero-left h1{
  letter-spacing:-.3px;
}

.hero-badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

.badge{
  background:rgba(255,255,255,.85);
  border:1px solid var(--gray-100);
  border-radius:14px;
  padding:10px 12px;
  box-shadow: 0 10px 26px rgba(16,24,40,.05);
  min-width: 180px;
}

.badge-title{
  font-weight:800;
  font-family:"Montserrat", sans-serif;
  font-size:13px;
}

.badge-sub{
  color:var(--muted);
  font-size:13px;
  margin-top:2px;
}

.hero-right{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.hero-visual{
  border-radius: var(--radius);
  border:1px solid rgba(31,78,121,.18);
  background:
    radial-gradient(800px 300px at 20% 20%, rgba(31,78,121,.22), transparent 60%),
    radial-gradient(800px 300px at 90% 10%, rgba(31,78,121,.14), transparent 55%),
    linear-gradient(135deg, rgba(31,78,121,.08), rgba(31,78,121,.03));
  overflow:hidden;
  padding:14px;
  box-shadow: 0 12px 30px rgba(16,24,40,.06);
  min-height: 250px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.visual-top{
  display:flex;
  gap:8px;
  justify-content:flex-start;
  flex-wrap:wrap;
}

.visual-chip{
  display:inline-flex;
  align-items:center;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(31,78,121,.14);
  font-weight:700;
  font-size:12px;
  color:var(--text);
}

.visual-chip.ghost{
  background:rgba(255,255,255,.55);
  font-weight:700;
  color:var(--muted);
}

.visual-center{
  padding:10px 0 8px;
}

.visual-title{
  font-family:"Montserrat", sans-serif;
  font-weight:800;
  font-size:16px;
}

.visual-sub{
  color:var(--muted);
  margin-top:4px;
  font-size:13px;
}

.visual-stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}

.stat{
  background:rgba(255,255,255,.86);
  border:1px solid rgba(31,78,121,.14);
  border-radius:14px;
  padding:10px 12px;
}

.stat-num{
  font-family:"Montserrat", sans-serif;
  font-weight:900;
  font-size:18px;
}

.stat-label{
  color:var(--muted);
  font-size:12px;
  margin-top:2px;
}

.hero-card.compact{
  padding:16px;
}

.trust-tight{
  padding:14px 0 40px;
}

@media (max-width: 980px){
  .hero-grid-premium{
    grid-template-columns: 1fr;
  }
  .badge{
    min-width: 0;
    width:100%;
  }
  .visual-stats{
    grid-template-columns: 1fr;
  }
}

/* ===== Downtown Retail Photo Hero ===== */

.hero-photo{
  /* Replace the existing gradient background with a real image */
  background-image:
    linear-gradient(135deg, rgba(14,27,42,.62), rgba(31,78,121,.28)),
    url("../img/hero/downtown-retail-hero.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,.18);
}

.hero-photo-overlay{
  min-height: 250px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:14px;
}

/* Make chips + stats readable on top of photo */
.hero-photo .visual-chip,
.hero-photo .stat{
  background: rgba(255,255,255,.90);
}

/* Featured services micro-row */
.featured-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  margin-top:14px;
  color: rgba(14,27,42,.80);
  font-weight:700;
  font-size:13px;
}

.featured-item{
  background: rgba(255,255,255,.85);
  border: 1px solid var(--gray-100);
  border-radius: 999px;
  padding: 7px 10px;
  box-shadow: 0 10px 26px rgba(16,24,40,.04);
}

.featured-dot{
  color: rgba(14,27,42,.35);
}

/* Testimonial line */
.hero-testimonial{
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  max-width: 70ch;
}

.hero-testimonial-name{
  color: rgba(14,27,42,.75);
  font-weight: 800;
}