/* ─────────────────────────────────────────────────────────
   MG Electric Inc. — main stylesheet
   Type: Oxanium (display, uppercase) + Geist (body)
   Palette: sage-olive, yellow, warm off-white, charcoal
   ───────────────────────────────────────────────────────── */

@import url("https://fonts.googleapis.com/css2?family=Oxanium:wght@500;600;700;800&family=Geist:wght@300;400;500;600;700&display=swap");

:root {
  --green:      #0815f1;
  --green-700:  #060fb5;
  --green-900:  #050a82;
  --yellow:     #ede34a;
  --yellow-700: #c8be2e;

  --paper:      #f6f7f8;
  --paper-2:    #ebedf0;
  --line:       #d9dce0;
  --ink:        #1a1b1e;
  --ink-2:      #2c2d31;
  --muted:      #6a6c72;

  --radius:     6px;
  --radius-lg:  10px;
  --shadow-sm:  0 1px 2px rgba(28,28,26,.06), 0 2px 6px rgba(28,28,26,.04);
  --shadow-md:  0 8px 24px rgba(28,28,26,.10), 0 2px 6px rgba(28,28,26,.06);

  --container:  1240px;
  --gutter:     clamp(20px, 4vw, 40px);

  --t-display:  "Oxanium", "Geist", system-ui, sans-serif;
  --t-body:     "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 100px; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--t-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; }

/* Accessibility */
.skip-link {
  position: absolute; left: -9999px; top: 8px;
  background: var(--ink); color: var(--paper);
  padding: 10px 14px; border-radius: var(--radius); z-index: 200;
}
.skip-link:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; border-radius: 4px; }

/* Layout primitives */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 880px; }

/* Type system */
h1, h2, h3, h4 {
  font-family: var(--t-display);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.04;
  font-weight: 700;
  text-wrap: balance;
}
.eyebrow {
  font-family: var(--t-display);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--green-700);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--green);
}

h1 { font-size: clamp(40px, 6.4vw, 88px); font-weight: 800; letter-spacing: -0.01em; }
h2 { font-size: clamp(30px, 4.2vw, 56px); }
h3 { font-size: clamp(20px, 1.6vw, 24px); letter-spacing: 0.02em; }

p { text-wrap: pretty; }
.lede { font-size: clamp(17px, 1.4vw, 20px); color: var(--ink-2); max-width: 60ch; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-family: var(--t-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
  transition: background .15s ease, color .15s ease, transform .15s ease, box-shadow .15s ease;
  min-height: 48px;
  white-space: nowrap;
}
.btn--primary   { background: var(--yellow);  color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--primary:hover   { background: var(--yellow-700); }
.btn--dark      { background: var(--ink);     color: var(--paper); }
.btn--dark:hover{ background: var(--green-900); }
.btn--green     { background: var(--green);   color: #fff; }
.btn--green:hover{ background: var(--green-700); }
.btn--outline   { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--paper); }
.btn--ghost     { background: transparent; color: var(--paper); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.5); }
.btn--ghost:hover { background: rgba(255,255,255,.1); }

.btn .arrow { font-family: var(--t-body); font-weight: 400; transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ─────────────────────────────────────────
   HEADER & NAV
   ───────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 247, 248, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; gap: 24px;
  min-height: 92px;
}
.nav__logo { display: flex; align-items: center; gap: 12px; padding: 8px 0; }
.nav__logo img { width: 82px; height: 82px; }
.nav__logo-text {
  font-family: var(--t-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 18px;
  color: var(--ink);
  line-height: 1;
}
.nav__logo-text span { display: block; font-size: 10px; letter-spacing: 0.22em; color: var(--muted); font-weight: 600; margin-top: 4px; }

.nav__links {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.nav__links a {
  font-family: var(--t-display);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: color .15s ease, background .15s ease;
}
.nav__links a:hover { color: var(--green-700); background: var(--paper-2); }

.nav__phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--t-display);
  font-weight: 700; letter-spacing: 0.04em;
  font-size: 15px;
  color: var(--ink);
  padding: 10px 14px;
}
.nav__phone svg { width: 16px; height: 16px; color: var(--green); }
.nav__phone:hover { color: var(--green-700); }

.nav__cta { margin-left: 8px; }

.nav__mobile-actions {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav__phone-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--ink);
  transition: background .15s ease;
}
.nav__phone-icon svg { width: 20px; height: 20px; }
.nav__phone-icon:hover { background: var(--yellow-700); }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--radius);
  align-items: center; justify-content: center;
  color: var(--ink);
}
.nav__toggle svg { width: 24px; height: 24px; }
.nav__toggle[aria-expanded="true"] { background: var(--ink); color: var(--paper); }

/* mobile + tablet nav */
@media (max-width: 980px) {
  .nav {
    flex-wrap: wrap;
    min-height: 78px;
    padding-block: 10px;
    row-gap: 0;
  }
  .site-header.is-open {
    background: var(--paper);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .site-header.is-open .nav { padding-bottom: 0; }
  .nav__logo img { width: 70px; height: 70px; }
  .nav__logo-text { font-size: 16px; }
  .nav__links, .nav__phone, .nav__cta { display: none; }
  .nav__mobile-actions { display: inline-flex; }
  .nav__toggle { display: inline-flex; }

  /* Drawer — full viewport-width panel below the header row */
  .site-header.is-open .nav__links {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    padding: 0;
    gap: 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
  }
  .site-header.is-open .nav__links li { display: block; }
  .site-header.is-open .nav__links a {
    display: block;
    padding: 18px var(--gutter);
    font-size: 16px;
    letter-spacing: 0.10em;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .site-header.is-open .nav__phone {
    display: flex;
    flex-basis: 100%;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 18px var(--gutter);
    background: var(--paper);
    font-size: 16px;
    letter-spacing: 0.10em;
    justify-content: center;
  }
  .site-header.is-open .nav__phone svg { width: 18px; height: 18px; }

  .site-header.is-open .nav__cta {
    display: inline-flex;
    flex-basis: 100%;
    max-width: 260px;
    width: auto;
    margin: 18px auto 24px;
    padding: 14px 26px;
    background: var(--yellow);
    color: var(--ink);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    font-size: 14px;
    letter-spacing: 0.10em;
    justify-content: center;
    align-self: center;
    min-height: 48px;
    transform: none;
    left: auto;
    position: static;
  }
  .site-header.is-open .nav__cta:hover { background: var(--yellow-700); }
}

/* ─────────────────────────────────────────
   HERO
   ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: clamp(440px, 62vh, 640px);
  color: #fff;
  background: #0e0e0c;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
  opacity: 0.72;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(14,14,12,0.65) 0%, rgba(14,14,12,0.15) 35%, rgba(14,14,12,0.85) 100%),
    linear-gradient(90deg, rgba(14,14,12,0.75) 0%, rgba(14,14,12,0.05) 60%);
}
.hero .container {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: center;
  min-height: inherit;
  padding-top: clamp(48px, 6vw, 88px);
  padding-bottom: clamp(64px, 8vw, 108px);
  gap: 40px;
}
.hero__eyebrow {
  font-family: var(--t-display);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  font-weight: 600;
  color: var(--yellow);
  display: inline-flex; align-items: center; gap: 12px;
}
.hero__eyebrow::before { content: ""; width: 32px; height: 2px; background: var(--yellow); }
.hero h1 {
  color: #fff;
  max-width: 18ch;
  margin-top: 22px;
}
.hero h1 .accent { color: var(--yellow); }
.hero__sub {
  margin-top: 26px;
  max-width: 50ch;
  font-size: clamp(16px, 1.3vw, 19px);
  color: rgba(255,255,255,0.78);
}
.hero__ctas {
  margin-top: 36px;
  display: flex; gap: 14px; flex-wrap: wrap;
}
.hero__foot {
  display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 56px);
  align-items: end;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero__fact {
  flex: 1 1 180px;
  max-width: 240px;
}
.hero__fact-num {
  font-family: var(--t-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  color: var(--yellow);
  display: block;
  margin-bottom: 6px;
}
.hero__fact-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

/* ─────────────────────────────────────────
   SECTIONS
   ───────────────────────────────────────── */
.section {
  padding-block: clamp(72px, 9vw, 130px);
  position: relative;
}
.section--alt { background: var(--paper-2); }

/* Photo background section (contact) */
.section--photo {
  position: relative;
  isolation: isolate;
  color: #fff;
  background-color: #0a0a18;
  background-size: cover;
  background-position: center;
}
.section--photo::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(135deg, rgba(8,21,241,0.32) 0%, rgba(10,10,24,0.78) 55%, rgba(10,10,24,0.92) 100%);
}
.section--photo h2 { color: #fff; }
.section--photo .eyebrow { color: var(--yellow); }
.section--photo .eyebrow::before { background: var(--yellow); }
.section--photo .contact-info > p { color: rgba(255,255,255,0.82); }
.section--photo .contact-list__label { color: rgba(255,255,255,0.55); }
.section--photo .contact-list__value { color: #fff; }
.section--photo .contact-list__value a { color: #fff; }
.section--photo .contact-list__value a:hover { color: var(--yellow); }
.section--photo .contact-list__icon { background: var(--yellow); color: var(--ink); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink h2 { color: #fff; }
.section--ink .eyebrow { color: var(--yellow); }
.section--ink .eyebrow::before { background: var(--yellow); }

.section--blue { background: var(--green); color: #fff; }
.section--blue h2 { color: #fff; }
.section--blue .eyebrow { color: var(--yellow); }
.section--blue .eyebrow::before { background: var(--yellow); }
.section--blue .lede { color: rgba(255,255,255,0.85) !important; }
.section--blue .about-bullets li::before {
  background: var(--yellow);
  box-shadow: 0 0 0 2px #fff;
}

.section__head { margin-bottom: clamp(40px, 5vw, 64px); }
.section__head .eyebrow { margin-bottom: 18px; }
.section__head h2 { max-width: 22ch; }
.section__head .lede { margin-top: 18px; }
.section__head-row {
  display: flex; align-items: end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.about-grid h2 { margin-bottom: 14px; }
.about-grid > div > .eyebrow { margin-bottom: 12px; }
.about-grid p { color: var(--ink-2); }
.about-grid p + p { margin-top: 10px; }
.about-bullets {
  margin-top: 20px; display: grid; gap: 10px;
}
.about-bullets li {
  display: flex; gap: 12px; align-items: flex-start;
  font-weight: 500;
}
.about-bullets li::before {
  content: ""; flex: none;
  width: 22px; height: 22px; margin-top: 2px;
  background: var(--yellow);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 14px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 14px no-repeat;
  border-radius: 4px;
  box-shadow: 0 0 0 2px var(--ink);
}
.about-actions { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; }

.about-media {
  position: relative;
  aspect-ratio: 4/5;
  min-height: 420px;
}
.about-media__a, .about-media__b {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-media__a { width: 72%; height: 78%; top: 0; left: 0; }
.about-media__b { width: 60%; height: 60%; bottom: 0; right: 0; }
.about-media__a img, .about-media__b img { width: 100%; height: 100%; object-fit: cover; }
.about-media__badge {
  position: absolute;
  top: 14%; right: 4%;
  background: var(--ink); color: var(--paper);
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  text-align: left;
  z-index: 2;
  min-width: 160px;
}
.about-media__badge strong {
  font-family: var(--t-display);
  font-size: 28px;
  font-weight: 800;
  display: block;
  color: var(--yellow);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.about-media__badge span { font-size: 12px; line-height: 1.4; color: rgba(255,255,255,0.78); }

.about-media__badge--logo {
  background: #fff;
  padding: 18px 22px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  min-width: 140px;
}
.about-media__badge--logo img {
  width: 100px;
  height: auto;
  display: block;
}

.about-media__badge--iowa {
  background: #fff;
  color: var(--ink);
  padding: 16px 20px 14px;
  min-width: 150px;
  display: grid;
  place-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.about-media__badge--iowa img {
  width: 110px;
  height: auto;
  display: block;
  object-fit: contain;
}
.about-media__badge--iowa .iowa-label {
  font-family: var(--t-display);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.20em;
  font-weight: 700;
  color: var(--ink);
}

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { aspect-ratio: 1/1; min-height: 360px; max-width: 520px; }
}

/* SERVICES — feature rows w/ image + FAQ accordion */
.service-features {
  display: grid;
  gap: 0;
}
.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(40px, 5vw, 72px);
  border-top: 1px solid var(--line);
}
.service-feature:first-child { border-top: 0; padding-top: 0; }
.service-feature:nth-child(even) .service-feature__media { order: 2; }

.service-feature__media {
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--paper);
}
.service-feature__media img,
.service-feature__media .photo-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
}

.photo-placeholder {
  background:
    repeating-linear-gradient(45deg, rgba(8,21,241,0.05) 0 10px, transparent 10px 20px),
    var(--paper);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  position: relative;
}
.photo-placeholder::before {
  content: "";
  position: absolute; inset: 12px;
  border: 1px dashed rgba(8,21,241,0.25);
  border-radius: var(--radius);
  pointer-events: none;
}
.photo-placeholder span {
  font-family: ui-monospace, "SF Mono", Menlo, Monaco, monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--muted);
  background: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 4px;
  text-transform: uppercase;
  max-width: 80%;
  line-height: 1.4;
}

.service-feature__body {
  display: flex; flex-direction: column;
}
.service-feature__num {
  font-family: var(--t-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--green);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.service-feature h3 {
  font-size: clamp(26px, 2.6vw, 38px);
  margin-bottom: 14px;
  letter-spacing: 0;
}
.service-feature__lede {
  color: var(--ink-2);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.55;
  margin-bottom: 24px;
  max-width: 50ch;
}

.faq-list {
  border-top: 1px solid var(--line);
  display: grid;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-family: var(--t-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink);
  padding-right: 4px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--t-body);
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  color: var(--green);
  flex: none;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 100%;
  background: rgba(8,21,241,0.08);
  transition: transform .2s ease, background .2s ease;
}
.faq-list details[open] summary::after {
  content: "−";
  background: var(--green);
  color: #fff;
}
.faq-list details p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  padding-right: 36px;
}

@media (max-width: 880px) {
  .service-feature {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .service-feature:nth-child(even) .service-feature__media { order: 0; }
}

/* Services CTA strip at the bottom */
.services-cta {
  margin-top: clamp(48px, 5vw, 72px);
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.services-cta h3 {
  color: #fff;
  font-size: clamp(22px, 2vw, 28px);
  margin: 0;
}
.services-cta p {
  color: rgba(255,255,255,0.85);
  margin-top: 6px;
  font-size: 15px;
  max-width: 52ch;
}
@media (max-width: 720px) {
  .services-cta { grid-template-columns: 1fr; }
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.section--ink .testimonial {
  background: #262624;
  border-color: #353531;
}
.testimonial__stars {
  color: var(--yellow);
  letter-spacing: 4px;
  font-size: 18px;
}
.testimonial p {
  font-size: 17px;
  line-height: 1.5;
  flex: 1;
  font-style: normal;
}
.testimonial__author {
  font-family: var(--t-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: inherit;
  margin-top: 4px;
}
.section--ink .testimonial__author { color: rgba(255,255,255,0.95); }
.testimonial__author span {
  display: block;
  font-family: var(--t-body);
  text-transform: none;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--muted);
  margin-top: 2px;
}
.section--ink .testimonial__author span { color: rgba(255,255,255,0.55); }

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.contact-info {
  position: sticky; top: 110px;
}
.contact-info h2 { margin-bottom: 18px; }
.contact-info > p { color: var(--muted); margin-bottom: 32px; max-width: 40ch; }
.contact-list { display: grid; gap: 22px; }
.contact-list li {
  display: grid; grid-template-columns: 44px 1fr; gap: 16px;
  align-items: start;
}
.contact-list__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--paper);
  display: grid; place-items: center;
}
.contact-list__icon svg { width: 20px; height: 20px; }
.contact-list__label {
  font-family: var(--t-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-list__value {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
}
.contact-list__value a:hover { color: var(--green-700); }

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid; gap: 18px; margin-bottom: 18px;
}
.form-row--2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 620px) { .form-row--2 { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--t-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}
.field label .req { color: #b04444; }
.field input, .field select, .field textarea {
  font: inherit;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }

.form-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 6px; }
.form-actions .btn { flex: none; }
.form-note { font-size: 13px; color: var(--muted); }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
}

/* ─────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  padding-top: 80px;
}
.footer-map {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: 0;
  display: block;
  border-radius: var(--radius-lg);
  filter: grayscale(0.2) contrast(0.95);
}
.footer-map-col { display: flex; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: 56px;
  align-items: stretch;
}
.footer-col h3 {
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--yellow);
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.78); transition: color .15s ease; }
.footer-col a:hover { color: var(--yellow); }
.footer-brand .nav__logo-text { color: #fff; }
.footer-brand .nav__logo-text span { color: rgba(255,255,255,0.6); }
.footer-brand p { margin-top: 18px; max-width: 38ch; font-size: 15px; color: rgba(255,255,255,0.65); }

.footer-hours {
  display: grid; grid-template-columns: auto auto; gap: 6px 18px;
  font-size: 15px;
}
.footer-hours dt { color: rgba(255,255,255,0.55); }
.footer-hours dd { margin: 0; color: rgba(255,255,255,0.9); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 22px 0;
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.75); }
.footer-bottom a:hover { color: var(--yellow); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

/* ─────────────────────────────────────────
   TABLET / MOBILE FINE-TUNING
   ───────────────────────────────────────── */

/* Tablet (under 980px) — already has the burger nav; refine spacing */
@media (max-width: 980px) {
  html { scroll-padding-top: 86px; }
  .section { padding-block: clamp(64px, 8vw, 100px); }
  h1 { font-size: clamp(38px, 7.4vw, 72px); }
  h2 { font-size: clamp(28px, 5vw, 46px); }
  .section__head { margin-bottom: clamp(32px, 4vw, 48px); }
  .about-grid h2 { font-size: clamp(28px, 5vw, 40px); }
  .service-feature h3 { font-size: clamp(22px, 3.6vw, 30px); }
}

/* Smaller tablets / large phones */
@media (max-width: 720px) {
  :root { --gutter: clamp(18px, 4.5vw, 28px); }
  .hero { min-height: clamp(420px, 70vh, 560px); }
  .hero h1 { max-width: 14ch; }
  .hero__sub { margin-top: 18px; }
  .hero__ctas { margin-top: 26px; gap: 10px; }
  .hero__ctas .btn { flex: 1 1 auto; justify-content: center; }
  .section__head-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section__head-row .lede { max-width: none; }
  .about-media { min-height: 320px; max-width: 100%; }
  .about-media__badge--logo img { width: 86px; }
  .about-media__badge--iowa img { width: 96px; }
  .testimonial { padding: 24px 22px; }
  .contact-form { padding: 24px 22px; }
  .form-actions { gap: 12px; }
  .form-actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* Phones */
@media (max-width: 480px) {
  .section { padding-block: 56px; }
  h1 { font-size: clamp(34px, 9vw, 50px); }
  h2 { font-size: clamp(26px, 7.6vw, 36px); }
  .nav { gap: 12px; }
  .nav__logo img { width: 62px; height: 62px; }
  .nav__mobile-actions { gap: 6px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .about-bullets li { font-size: 15px; }
  .service-feature { padding-block: 36px; }
  .services-cta { padding: 24px; }
  .contact-list li { grid-template-columns: 40px 1fr; gap: 12px; }
  .contact-list__icon { width: 40px; height: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
}
