/* ===================================================================
   McNeill Construction LLC — styles.css
   Mobile-first, responsive, no JavaScript required.

   COLOR PALETTE
     --charcoal   #1a1a1a   dark base
     --charcoal-2 #2a2a2a   raised dark surfaces
     --white      #ffffff
     --beige      #f4f0e9   warm light background
     --gray       #e7e7e7   light gray
     --accent     #e67e22   construction orange (primary CTA)
     --accent-dk  #cf6f17   orange hover
   =================================================================== */

/* ----------------------- Design tokens ----------------------- */
:root {
  --charcoal: #1a1a1a;
  --charcoal-2: #2a2a2a;
  --charcoal-3: #333333;
  --white: #ffffff;
  --beige: #f4f0e9;
  --gray: #e7e7e7;
  --gray-text: #6b6b6b;
  --accent: #e67e22;
  --accent-dk: #cf6f17;
  --text: #222222;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 14px 40px rgba(0, 0, 0, 0.18);
  --maxw: 1140px;
  --gutter: 20px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ----------------------- Reset / base ----------------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 88px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dk); }

h1, h2, h3 { line-height: 1.2; font-weight: 800; color: var(--charcoal); letter-spacing: -0.01em; }
h1 { font-size: 2rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.2rem; }

address { font-style: normal; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: 64px 0; }

.center { text-align: center; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: #fff; padding: 10px 16px; z-index: 1000;
}
.skip-link:focus { left: 8px; top: 8px; border-radius: var(--radius-sm); }

/* ----------------------- Eyebrow + section heads ----------------------- */
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.eyebrow-dark { color: var(--accent-dk); }

.section-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.section-intro { color: var(--gray-text); margin-top: 14px; font-size: 1.05rem; }
.section-intro-light { color: rgba(255, 255, 255, 0.75); }

/* ----------------------- Buttons ----------------------- */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background-color .15s ease, color .15s ease, box-shadow .15s ease;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 16px rgba(230, 126, 34, 0.35); }
.btn-primary:hover { background: var(--accent-dk); color: #fff; }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.8); }
.btn-outline:hover { background: #fff; color: var(--charcoal); }
.btn-sm { padding: 9px 16px; font-size: 0.92rem; }
.btn-lg { padding: 16px 32px; font-size: 1.08rem; }
.btn-block { display: block; width: 100%; }

/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  color: var(--charcoal);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
  border-bottom: 3px solid var(--accent);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; min-height: 76px; flex-wrap: wrap;
}

.brand { display: flex; align-items: center; }
.brand-logo {
  width: clamp(156px, 15vw, 180px);
  height: auto;
  max-width: min(64vw, 220px);
  aspect-ratio: 3 / 1;
  object-fit: contain;
  display: block;
}

/* Nav */
.site-nav ul { list-style: none; display: flex; gap: 2px; flex-wrap: wrap; }
.site-nav a {
  color: var(--charcoal);
  font-weight: 600; font-size: 0.95rem;
  padding: 8px 9px; border-radius: var(--radius-sm); display: block;
}
.site-nav a:hover { color: var(--accent-dk); background: var(--beige); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.phone-link { color: var(--charcoal); font-weight: 800; font-size: 1.02rem; white-space: nowrap; }
.phone-link:hover { color: var(--accent-dk); }
.phone-icon { color: var(--accent); }
.header-social { display: none; }   /* shown only inside the mobile dropdown */

/* Mobile menu toggle (CSS-only checkbox hack) */
.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  width: 44px; height: 44px;
  cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
  border-radius: var(--radius-sm); background: var(--beige); border: 1px solid var(--gray);
}
.nav-toggle-label span {
  display: block; width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  color: #fff;
  background: var(--charcoal) url("images/hero-construction.jpg") center/cover no-repeat;
  min-height: 560px;
  display: flex; align-items: center;
  padding: 80px 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(20, 20, 20, 0.86) 0%, rgba(20, 20, 20, 0.62) 55%, rgba(20, 20, 20, 0.45) 100%);
}
.hero-content { position: relative; max-width: 760px; }
.hero .eyebrow { color: var(--accent); }
.hero h1 { color: #fff; font-size: 2.3rem; margin-bottom: 18px; }
.hero-sub { font-size: 1.12rem; color: rgba(255, 255, 255, 0.92); max-width: 620px; margin-bottom: 28px; }

.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-buttons .btn-outline {
  background: #fff;
  color: var(--charcoal);
  border-color: #fff;
}
.hero-buttons .btn-outline:hover {
  background: var(--gray);
  color: #000;
  border-color: var(--gray);
}

.hero-badges { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; }
.hero-badges li {
  font-size: 0.92rem; font-weight: 600; color: #fff;
  padding-left: 24px; position: relative;
}
.hero-badges li::before {
  content: "\2714"; position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 700;
}

/* ===================================================================
   LAYOUT GRIDS
   =================================================================== */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }

.card-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }

/* ===================================================================
   ABOUT
   =================================================================== */
.about { background: var(--beige); }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.about-copy p { margin-bottom: 16px; color: #3a3a3a; }

.stat-row { list-style: none; display: flex; flex-wrap: wrap; gap: 24px; margin: 24px 0 28px; }
.stat-row li { display: flex; flex-direction: column; }
.stat-row strong { font-size: 1.9rem; color: var(--accent-dk); font-weight: 800; line-height: 1; }
.stat-row span { font-size: 0.85rem; color: var(--gray-text); text-transform: uppercase; letter-spacing: 0.05em; }

/* ===================================================================
   SERVICES
   =================================================================== */
.services { background: var(--white); }
.service-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
  transition: transform .15s ease, box-shadow .15s ease;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--gray-text); margin-bottom: 18px; flex-grow: 1; }
.card-link { font-weight: 700; font-size: 0.95rem; }

/* ===================================================================
   WHY CHOOSE US
   =================================================================== */
.why { background: var(--charcoal); color: #fff; }
.why .eyebrow { color: var(--accent); }
.why h2 { color: #fff; }
.why-card {
  background: var(--charcoal-2);
  border: 1px solid var(--charcoal-3);
  border-radius: var(--radius);
  padding: 26px 24px;
  text-align: left;
}
.why-card h3 { color: #fff; margin: 12px 0 8px; font-size: 1.12rem; }
.why-card p { color: rgba(255, 255, 255, 0.72); font-size: 0.96rem; }
.why-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(230, 126, 34, 0.15); color: var(--accent);
  font-size: 1.3rem;
}

/* ===================================================================
   PORTFOLIO
   =================================================================== */
.portfolio { background: var(--beige); }
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--charcoal);
}
.portfolio-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .35s ease;
}
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(20, 20, 20, 0.85), rgba(20, 20, 20, 0));
  color: #fff; font-weight: 700; font-size: 0.98rem;
  padding: 30px 16px 14px;
}

/* ===================================================================
   REFERRAL
   =================================================================== */
.referral {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dk) 100%);
  color: #fff;
}
.referral-inner { max-width: 880px; margin: 0 auto; text-align: center; }
.referral .eyebrow { color: rgba(255, 255, 255, 0.9); }
.referral h2 { color: #fff; font-size: 2rem; }
.referral .cash {
  background: var(--charcoal); color: #fff;
  padding: 2px 12px; border-radius: var(--radius-sm); display: inline-block;
}
.referral-sub { color: rgba(255, 255, 255, 0.92); margin: 14px auto 36px; max-width: 620px; font-size: 1.08rem; }

.steps { list-style: none; display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; }
.steps li {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  padding: 28px 22px;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; color: var(--accent-dk);
  font-weight: 800; font-size: 1.25rem; margin-bottom: 14px;
}
.steps h3 { color: #fff; margin-bottom: 6px; }
.steps p { color: rgba(255, 255, 255, 0.9); font-size: 0.98rem; }
.referral .btn-primary { background: var(--charcoal); box-shadow: none; }
.referral .btn-primary:hover { background: #000; }

/* ===================================================================
   FINANCING — Hearth banner (clickable)
   =================================================================== */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.financing { background: var(--beige); }
.hearth-banner {
  display: flex; align-items: center; gap: 18px;
  max-width: 860px; margin: 0 auto;
  background: linear-gradient(90deg, #163f78 0%, #1d4f93 100%);
  border-radius: var(--radius);
  padding: 18px 24px 18px 18px;
  box-shadow: var(--shadow-lg);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform .15s ease, box-shadow .15s ease;
}
.hearth-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  color: #fff;
}
.hearth-icon {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  background: #0d0d0d; border-radius: 10px;
}
.hearth-text { display: flex; flex-direction: column; gap: 3px; flex-grow: 1; min-width: 0; }
.hearth-brand {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.92);
}
.hearth-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 5px;
  background: #fff; color: #163f78;
  font-weight: 900; font-size: 0.8rem; line-height: 1;
  letter-spacing: 0; text-transform: lowercase;
}
.hearth-headline {
  font-size: 1.5rem; font-weight: 800; line-height: 1.1; color: #fff;
  text-transform: uppercase; letter-spacing: 0.01em;
}
.hearth-sub { font-size: 0.9rem; color: rgba(255, 255, 255, 0.82); }
.hearth-cta {
  flex-shrink: 0;
  background: #c0392b; color: #fff;
  font-weight: 800; font-size: 0.98rem; text-transform: uppercase; letter-spacing: 0.03em;
  padding: 13px 24px; border-radius: var(--radius-sm);
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(192, 57, 43, 0.4);
  transition: background-color .15s ease;
}
.hearth-banner:hover .hearth-cta { background: #a93226; }

@media (max-width: 620px) {
  .hearth-banner { flex-wrap: wrap; justify-content: center; text-align: center; padding: 22px 18px; gap: 14px; }
  .hearth-icon { order: 1; }
  .hearth-text { order: 2; flex-basis: 100%; align-items: center; }
  .hearth-cta { order: 3; flex-basis: 100%; padding: 14px; }
  .hearth-headline { font-size: 1.3rem; }
}

/* Slim financing ribbon (under the hero) */
.finance-strip { background: linear-gradient(90deg, #163f78 0%, #1d4f93 100%); }
.finance-strip-link {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 10px 16px;
  max-width: var(--maxw); margin: 0 auto;
  padding: 13px 20px; color: #fff; text-align: center;
}
.finance-strip-link:hover { color: #fff; }
.finance-strip .hearth-mark { width: 22px; height: 22px; font-size: 1rem; flex-shrink: 0; }
.finance-strip-text { font-size: 0.96rem; color: rgba(255, 255, 255, 0.92); }
.finance-strip-text strong { color: #fff; font-weight: 800; }
.finance-strip-cta {
  flex-shrink: 0;
  background: #c0392b; color: #fff;
  font-weight: 800; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.03em;
  padding: 9px 18px; border-radius: var(--radius-sm); white-space: nowrap;
  transition: background-color .15s ease;
}
.finance-strip-link:hover .finance-strip-cta { background: #a93226; }
@media (max-width: 680px) {
  .finance-strip-text { flex-basis: 100%; order: 2; }
  .finance-strip .hearth-mark { order: 1; }
  .finance-strip-cta { order: 3; }
}

/* ===================================================================
   CONTACT / FORM
   =================================================================== */
.contact { background: var(--white); }
.contact-grid { align-items: start; }
.contact-info p { color: var(--gray-text); margin-bottom: 24px; }

.contact-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; flex-direction: column; }
.contact-label {
  font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent-dk); font-weight: 700; margin-bottom: 2px;
}
.contact-list a, .contact-list address, .contact-list span { font-size: 1.08rem; color: var(--text); font-weight: 600; }
.contact-list a:hover { color: var(--accent); }

/* Form */
.form-wrap {
  background: var(--beige);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 16px; display: flex; flex-direction: column; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 0 16px; }
.quote-form label { font-weight: 700; font-size: 0.9rem; margin-bottom: 6px; color: var(--charcoal); }
.quote-form input,
.quote-form select,
.quote-form textarea {
  font-family: inherit; font-size: 1rem; color: var(--text);
  padding: 12px 14px;
  border: 1px solid #cfcabf;
  border-radius: var(--radius-sm);
  background: #fff;
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.18);
}
.quote-form textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-note { font-size: 0.82rem; color: var(--gray-text); margin-top: 12px; text-align: center; }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
  background: #fff;
  color: var(--charcoal);
  border-top: 3px solid var(--accent);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  padding: 56px var(--gutter);
}
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  background: var(--accent); color: #fff;
  font-weight: 800; border-radius: var(--radius-sm); font-size: 1.05rem; letter-spacing: 0.02em;
}
.footer-logo {
  width: clamp(220px, 24vw, 280px);
  max-width: 100%;
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: contain;
  display: block;
  margin-bottom: 18px;
}
.footer-brand p { font-size: 0.95rem; max-width: 320px; color: var(--gray-text); }

.footer-col h3 { color: var(--charcoal); font-size: 1rem; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a, .footer-contact address { color: var(--charcoal); font-size: 0.96rem; }
.footer-col a:hover { color: var(--accent-dk); }

.footer-bottom { background: var(--beige); padding: 16px 0; border-top: 1px solid var(--gray); }
.footer-bottom-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: var(--gray-text); }
.footer-bottom .credit { color: var(--gray-text); }
.footer-bottom .credit a { color: var(--accent-dk); font-weight: 700; }
.footer-bottom .credit a:hover { color: var(--charcoal); }
.footer-bottom .heart { font-style: normal; }
@media (min-width: 760px) {
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ===================================================================
   RESPONSIVE — TABLET (>= 640px)
   =================================================================== */
@media (min-width: 640px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 2rem; }
}

/* ===================================================================
   RESPONSIVE — DESKTOP (>= 900px)
   =================================================================== */
@media (min-width: 900px) {
  body { font-size: 18px; }
  .section { padding: 84px 0; }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .hero-content {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .hero h1 { font-size: 3rem; }
  .hero-sub {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons { justify-content: center; }
  .hero { min-height: 620px; }
}

/* ===================================================================
   RESPONSIVE — MOBILE NAV (<= 860px)
   Collapses nav + CTA into a toggleable panel.
   =================================================================== */
@media (max-width: 860px) {
  .header-inner { min-height: 64px; }
  .brand-logo {
    width: clamp(176px, 58vw, 220px);
    max-width: calc(100vw - 104px);
  }
  .nav-toggle-label { display: flex; order: 3; }
  .site-nav,
  .header-cta {
    flex-basis: 100%;
    order: 4;
    display: none;
  }
  .site-nav ul { flex-direction: column; gap: 2px; padding-bottom: 8px; }
  .site-nav a { padding: 13px 10px; border-bottom: 1px solid var(--gray); }
  .header-cta {
    flex-direction: column; align-items: stretch; gap: 12px;
    padding: 14px 0 18px; text-align: center;
    border-top: 1px solid var(--gray);
  }
  .header-cta .btn { width: 100%; }
  .phone-link { text-align: center; font-size: 1.25rem; padding: 4px 0; }

  /* Social icons inside the dropdown, above the Get a Free Quote button */
  .header-social {
    display: flex; justify-content: center; gap: 12px;
    list-style: none; padding: 2px 0;
  }
  .header-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--beige); color: var(--charcoal);
    border: 1px solid var(--gray);
    transition: background-color .15s ease, color .15s ease, border-color .15s ease;
  }
  .header-social a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
  .header-social svg { width: 20px; height: 20px; fill: currentColor; }

  /* Checkbox hack: reveal panels when toggle is checked */
  .nav-toggle:checked ~ .site-nav,
  .nav-toggle:checked ~ .header-cta { display: block; }

  /* Animate hamburger into an X */
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ===================================================================
   FOOTER SOCIAL ICONS
   =================================================================== */
.footer-social { list-style: none; display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; color: var(--charcoal);
  border: 1px solid var(--gray);
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.footer-social a:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-2px); }
.footer-social svg { width: 19px; height: 19px; fill: currentColor; }

/* ===================================================================
   MOBILE — center content for a clean, balanced layout
   =================================================================== */
@media (max-width: 700px) {
  .hero-content,
  .about-copy,
  .contact-info,
  .footer-brand,
  .footer-col,
  .service-card,
  .why-card { text-align: center; }

  .hero-buttons,
  .stat-row,
  .contact-list,
  .contact-list li,
  .footer-col ul,
  .footer-social { justify-content: center; align-items: center; }

  .footer-logo,
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .quote-form label { text-align: center; }
}

/* ===================================================================
   ACCESSIBILITY — reduced motion
   =================================================================== */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
  .portfolio-item:hover img { transform: none; }
}
