/* ============================================
   MI GENERATORS — Site Stylesheet
   Bright green + dark black theme
   ============================================ */

:root {
  --green: #a855f7;
  --green-bright: #c084fc;
  --green-dark: #7c3aed;
  --green-glow: rgba(168, 85, 247, 0.35);
  --black: #0b0a0d;
  --charcoal: #151318;
  --charcoal-2: #1d1a21;
  --charcoal-3: #29252e;
  --white: #f7f5f8;
  --grey: #aca8b3;
  --grey-dark: #6f6b75;
  --radius: 14px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.35, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--green); text-decoration: none; }

h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; letter-spacing: -0.02em; }

.container { width: min(1180px, 92%); margin: 0 auto; }

section { padding: 90px 0; }

/* ---------- Utility ---------- */
.accent { color: var(--green); }

.section-label {
  display: inline-block;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}

.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 18px; }

.section-sub { color: var(--grey); max-width: 640px; font-size: 1.05rem; }

.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
}

.btn-green {
  background: var(--green);
  color: #160423;
}
.btn-green:hover {
  background: var(--green-bright);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px var(--green-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(248, 245, 248, 0.35);
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(168, 85, 247, 0.15);
}

.btn-dark {
  background: var(--charcoal-3);
  color: var(--white);
  border-color: var(--charcoal-3);
}
.btn-dark:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-3px);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11, 10, 13, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(168, 85, 247, 0.12);
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(11, 10, 13, 0.97); box-shadow: 0 4px 24px rgba(0,0,0,0.5); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo .bolt {
  width: 38px; height: 38px;
  background: var(--green);
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  color: #160423;
  box-shadow: 0 0 18px var(--green-glow);
}
.logo span.mi { color: var(--green); }

.logo-img { height: 52px; width: auto; display: block; }
footer .logo-img { height: 46px; }
.logo-fallback { display: none; align-items: center; gap: 10px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links a {
  color: var(--grey);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 8px;
  display: block;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--green); }

/* dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: var(--charcoal-2);
  border: 1px solid rgba(168, 85, 247, 0.18);
  border-radius: 12px;
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a { padding: 10px 14px; border-radius: 8px; }
.dropdown-menu a:hover { background: rgba(168, 85, 247, 0.08); }

.nav-cta { margin-left: 10px; }
.nav-cta .btn { padding: 11px 24px; font-size: 0.9rem; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px; height: 3px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 3px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 150px 0 100px;
  background:
    linear-gradient(105deg, rgba(11,10,13,0.96) 35%, rgba(11,10,13,0.72) 65%, rgba(11,10,13,0.55)),
    var(--hero-img, url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?auto=format&fit=crop&w=1200&q=60')) center/cover no-repeat;
  background-color: var(--charcoal);
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--black));
}

.hero-content { position: relative; z-index: 2; max-width: 720px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 26px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--green-glow); }
  50% { box-shadow: 0 0 0 7px rgba(168,85,247,0); }
}

.hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.7rem); margin-bottom: 22px; }
.hero p.sub { color: var(--grey); font-size: 1.15rem; max-width: 600px; margin-bottom: 36px; }

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-strip {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 64px;
  color: var(--grey);
  font-weight: 600;
  font-size: 0.93rem;
}
.hero-strip .item { display: flex; align-items: center; gap: 9px; }
.hero-strip .item .tick { color: var(--green); font-weight: 900; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 170px 0 90px;
  background:
    linear-gradient(110deg, rgba(11,10,13,0.95) 40%, rgba(11,10,13,0.7)),
    var(--hero-img, url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&w=1200&q=60')) center/cover no-repeat;
  background-color: var(--charcoal);
  border-bottom: 1px solid rgba(168, 85, 247, 0.12);
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.1rem); margin-bottom: 16px; }
.page-hero p { color: var(--grey); max-width: 640px; font-size: 1.1rem; }
.breadcrumb { color: var(--grey-dark); font-size: 0.88rem; font-weight: 600; margin-bottom: 18px; display: block; }
.breadcrumb a { color: var(--grey); }
.breadcrumb a:hover { color: var(--green); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--charcoal-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}
.card:hover::before { transform: scaleX(1); }

.card .icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  transition: var(--transition);
}
.card:hover .icon { background: var(--green); box-shadow: 0 0 22px var(--green-glow); }

.card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.card p { color: var(--grey); font-size: 0.97rem; }
.card .card-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
  font-size: 0.92rem;
}
.card .card-link:hover { text-decoration: underline; }

/* image cards */
.img-card { padding: 0; }
.img-card .img-wrap { height: 200px; overflow: hidden; background: var(--charcoal-3); }
.img-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.img-card:hover .img-wrap img { transform: scale(1.07); }
.img-card .body { padding: 26px; }

/* ---------- Why choose ---------- */
.dark-band {
  background: var(--charcoal);
  border-top: 1px solid rgba(168, 85, 247, 0.1);
  border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

.feature-row { display: flex; gap: 18px; align-items: flex-start; }
.feature-row .num {
  min-width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: var(--green);
  font-weight: 800;
  display: grid;
  place-items: center;
}
.feature-row h4 { margin-bottom: 6px; font-size: 1.08rem; }
.feature-row p { color: var(--grey); font-size: 0.95rem; }

/* ---------- Split sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split .img-side { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--charcoal-3); }
.split .img-side img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; }

/* ---------- Check list ---------- */
.checklist { list-style: none; margin-top: 24px; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--grey); }
.checklist li strong { color: var(--white); }
.checklist .tick {
  color: var(--green);
  font-weight: 900;
  background: rgba(168, 85, 247, 0.1);
  min-width: 26px; height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  margin-top: 2px;
}

/* ---------- Service areas ---------- */
.area-card {
  background: var(--charcoal-2);
  border: 1px solid rgba(168, 85, 247, 0.18);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  transition: var(--transition);
}
.area-card:hover { transform: translateY(-6px); border-color: var(--green); }
.area-card .pin { font-size: 2.2rem; margin-bottom: 12px; }
.area-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.area-card p { color: var(--grey); font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    linear-gradient(105deg, rgba(11, 10, 14, 0.94), rgba(11, 10, 14, 0.8)),
    url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?auto=format&fit=crop&w=1200&q=60') center/cover no-repeat;
  background-color: var(--charcoal);
  border-top: 1px solid rgba(168, 85, 247, 0.15);
  border-bottom: 1px solid rgba(168, 85, 247, 0.15);
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 16px; }
.cta-band p { color: var(--grey); max-width: 560px; margin: 0 auto 34px; font-size: 1.08rem; }
.cta-band .hero-btns { justify-content: center; }

/* ---------- Meet the Owner ---------- */
.owner-section {
  background: var(--charcoal);
  border-top: 1px solid rgba(168, 85, 247, 0.12);
  border-bottom: 1px solid rgba(168, 85, 247, 0.12);
}
.owner-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.owner-photo-wrap { position: relative; }
.owner-photo {
  width: 100%;
  border-radius: 18px;
  border: 2px solid var(--green);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(168, 85, 247, 0.12);
  object-fit: cover;
  aspect-ratio: 4 / 4.6;
  object-position: center 20%;
  filter: brightness(1.04) contrast(1.05) saturate(1.02);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.owner-photo:hover {
  transform: scale(1.025);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65), 0 0 55px rgba(168, 85, 247, 0.22);
}
.owner-photo-fallback {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  border-radius: 18px;
  border: 2px dashed rgba(168, 85, 247, 0.5);
  background: var(--charcoal-3);
  display: none;
  place-items: center;
  text-align: center;
  color: var(--grey);
  padding: 30px;
  font-size: 0.95rem;
}
.owner-tag {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #160423;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 9px 22px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 8px 24px var(--green-glow);
}
.owner-info h2 { font-size: clamp(1.9rem, 4vw, 2.5rem); margin-bottom: 10px; }
.owner-info h3 { color: var(--green); font-size: 1.4rem; margin-bottom: 4px; }
.owner-info .role { color: var(--grey); font-weight: 700; font-size: 0.98rem; margin-bottom: 22px; }
.owner-info p.bio { color: var(--grey); margin-bottom: 18px; font-size: 1.02rem; }

.owner-quote {
  border-left: 4px solid var(--green);
  background: rgba(168, 85, 247, 0.06);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 26px 0;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 600;
  color: var(--white);
}

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.stat-card {
  background: var(--charcoal-2);
  border: 1px solid rgba(168, 85, 247, 0.18);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-6px); border-color: var(--green); box-shadow: 0 14px 34px rgba(0,0,0,0.45); }
.stat-card .stat-icon { font-size: 1.5rem; margin-bottom: 10px; }
.stat-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.stat-card p { color: var(--grey); font-size: 0.85rem; }

/* ---------- Process steps ---------- */
.step {
  display: flex;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.step:last-child { border-bottom: none; }
.step .step-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
  min-width: 60px;
  opacity: 0.9;
}
.step h4 { font-size: 1.15rem; margin-bottom: 6px; }
.step p { color: var(--grey); font-size: 0.97rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: start; }

.contact-info-card {
  background: var(--charcoal-2);
  border: 1px solid rgba(168, 85, 247, 0.18);
  border-radius: var(--radius);
  padding: 36px;
}
.contact-info-card h3 { margin-bottom: 20px; font-size: 1.35rem; }
.info-row { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.info-row:last-of-type { border-bottom: none; }
.info-row .icon {
  min-width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}
.info-row h4 { font-size: 0.98rem; margin-bottom: 2px; }
.info-row p, .info-row a { color: var(--grey); font-size: 0.94rem; }
.info-row a:hover { color: var(--green); }

.contact-form {
  background: var(--charcoal-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 40px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-weight: 700; font-size: 0.9rem; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.97rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-success {
  display: none;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid var(--green);
  border-radius: 12px;
  padding: 22px;
  text-align: center;
  margin-top: 22px;
  animation: fadeUp 0.5s ease both;
}
.form-success.visible { display: block; }
.form-success h4 { color: var(--green); font-size: 1.15rem; margin-bottom: 6px; }
.form-success p { color: var(--grey); font-size: 0.95rem; }

/* ---------- Footer ---------- */
footer {
  background: #080709;
  border-top: 1px solid rgba(168, 85, 247, 0.15);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 44px;
  padding-bottom: 50px;
}
.footer-grid h4 {
  font-size: 1rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
}
.footer-grid p, .footer-grid a, .footer-grid li { color: var(--grey); font-size: 0.93rem; }
.footer-grid ul { list-style: none; display: grid; gap: 10px; }
.footer-grid a:hover { color: var(--green); }
.footer-about .logo { margin-bottom: 16px; font-size: 1.2rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--grey-dark);
  font-size: 0.85rem;
}

/* ---------- Scroll reveal animations ---------- */
html.js-anim .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
html.js-anim .reveal.in { opacity: 1; transform: translateY(0); }
html.js-anim .reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
html.js-anim .reveal-left.in { opacity: 1; transform: translateX(0); }
html.js-anim .reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
html.js-anim .reveal-right.in { opacity: 1; transform: translateX(0); }

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  section { padding: 64px 0; }

  .hamburger { display: block; }
  .nav-links {
    position: fixed;
    top: 74px;
    left: 0; right: 0;
    background: rgba(11, 10, 13, 0.98);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 6%;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    transform: translateY(-130%);
    opacity: 0;
    transition: var(--transition);
    max-height: calc(100vh - 74px);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-links a { padding: 14px 8px; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .dropdown-menu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 18px;
    min-width: 0;
  }
  .dropdown-menu a { font-size: 0.95rem; color: var(--grey-dark); }
  .nav-cta { margin: 14px 0 4px; }
  .nav-cta .btn { display: block; }

  .split, .owner-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero { min-height: 0; padding: 130px 0 80px; }
  .hero-strip { gap: 18px; }
}

@media (max-width: 540px) {
  .grid-3, .grid-4, .stat-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns .btn { width: 100%; }
  .contact-form { padding: 26px; }
}

/* ---------- Home page banner ---------- */
.site-banner { margin-top: 74px; background: var(--black); overflow: hidden; }
.site-banner img { width: 100%; height: auto; display: block; }
.site-banner + .hero, body.has-banner .hero { min-height: 0; padding-top: 80px; }

@media (max-width: 820px) {
  .site-banner { margin-top: 74px; }
  .site-banner img { width: 100%; height: auto; }
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .page-hero { padding: 130px 0 60px; }
  .btn { padding: 14px 26px; }
  .owner-quote { font-size: 1.02rem; }
}

/* ---------- Brand wordmark (matches banner logo style) ---------- */
.logo-text {
  font-family: 'Exo 2', 'Inter', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: baseline;
  background: linear-gradient(180deg, #ffffff 30%, #b9b9c8 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
}
.logo-text .mi {
  background: linear-gradient(180deg, #c084fc 15%, #8b5cf6 55%, #6d28d9 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-right: 2px;
  font-weight: 800;
}
footer .logo-text { font-size: 1.15rem; }
@media (max-width: 400px) { .logo-text { font-size: 1.05rem; } }

/* ---------- Themed SVG service icons ---------- */
.card .icon { color: var(--green); }
.card .icon svg { width: 26px; height: 26px; display: block; }
.card:hover .icon { color: #160423; }

/* Emergency badge is a link to contact */
a.hero-badge { cursor: pointer; transition: var(--transition); }
a.hero-badge:hover {
  background: var(--green);
  color: #160423;
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px var(--green-glow);
}
a.hero-badge:hover .dot { background: #160423; }

/* Info-row SVG icon sizing (contact page) */
.info-row .icon { color: var(--green); }
.info-row .icon svg { width: 22px; height: 22px; display: block; }
