/* Fort Wayne Plumbing Co. — production stylesheet.
   Layout system derived from the proven exemplar in site-lab/ (see its
   NOTES.md): centered Montserrat headings, Oswald keyword band, alternating
   text/photo sections, open form, outlined buttons. Palette and accents are
   this brand's own. */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Mulish:ital,wght@0,500;0,700;1,500&family=Oswald:wght@400&display=swap');

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

:root {
  --ink: #000;
  --brand: #14538c;
  --brand-dark: #0d3a63;
  --cta: #d97818;
  --cta-dark: #b05f0e;
  --wash: #f2f2f2;      /* testimonial cards + gray bands */
  --hair: #dcdcdc;
}

body {
  font-family: 'Mulish', 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  color: var(--ink);
  background: #fff;
}

/* ---------- header: embossed metallic phone number, hamburger right ---- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 10px 3%;
  border-bottom: 1px solid var(--hair);
}
.phone-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  letter-spacing: 1px;
  text-decoration: none;
  color: var(--brand-dark);
}
.burger { display: flex; flex-direction: column; gap: 6px; cursor: pointer; border: 0; background: none; padding: 6px; }
.burger span { width: 34px; height: 3px; background: #111; transition: transform .2s, opacity .2s; }

/* hamburger dropdown (original keeps ALL nav behind the burger, every width) */
.menu-panel {
  display: none;
  position: fixed;
  top: 62px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--hair);
  box-shadow: 0 12px 24px rgba(0,0,0,.08);
  z-index: 49;
  padding: 28px 0 36px;
  text-align: center;
}
.menu-panel a {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
  padding: 14px;
}
.menu-panel a:hover { text-decoration: underline; }
body.nav-open .menu-panel { display: block; }
body.nav-open .burger span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ---------- subpage layouts ---------- */
.article { max-width: 880px; margin: 0 auto; }
.article .lead-in { font-family: 'Montserrat', sans-serif; font-weight: 700; display: block; margin-top: 26px; }
.split { display: grid; grid-template-columns: 1.15fr 1fr; gap: 3rem; align-items: start; padding-top: 10px; }
.svc-list { list-style: disc; margin: 12px 0 20px 2rem; }
.svc-list li { margin: 8px 0; }
.center { text-align: center; }
@media (max-width: 760px) { .split { grid-template-columns: 1fr; } }

.page { max-width: 1230px; margin: 0 auto; padding: 34px 3% 0; }
/* photos must never stretch: honour their own aspect ratio regardless of
   the width/height attributes on the tag */
.article img, .split img { width: 100%; height: auto; display: block; }

/* ---------- type system ---------------------------------------------- */
h1, .oswald-head {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.15;
  text-align: center;
  margin: 48px 0 24px;
}
h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 22px;
}
p { margin-bottom: 18px; }
a { color: inherit; }
.body-link { font-weight: 700; text-decoration: underline; }

/* ---------- hero ------------------------------------------------------ */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  padding-top: 44px;
  align-items: start;
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5.2vw, 3.6rem);
  line-height: 1.18;
  text-align: center;
  margin-bottom: 34px;
}
.framed { border: 1px solid #111; padding: 0; display: block; width: 100%; height: auto; }

/* primary call buttons: filled for conversion (deliberate exemplar
   deviation: callers are the product, the button earns its color) */
.btn-call {
  display: inline-block;
  border: 0;
  background: var(--cta);
  color: #fff;
  font-family: 'Mulish', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 4px;
  cursor: pointer;
}
.btn-call:hover { background: var(--cta-dark); }

.btn-outline {
  display: inline-block;
  border: 1px solid #111;
  background: transparent;
  color: #111;
  font-family: 'Mulish', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 36px;
  cursor: pointer;
}
.btn-outline:hover { background: #111; color: #fff; }
.hero-cta { text-align: center; margin: 26px 0; }

/* quote form: OPEN layout, no box (the green box in v1 was wrong) */
.quote-form .req-note {
  font-style: italic;
  font-size: .85rem;
  letter-spacing: .5px;
  margin: 18px 0 6px;
}
.quote-form .req-note::before { content: "* "; color: #c00; }
.quote-form label {
  display: block;
  font-size: .95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 18px 0 6px;
}
.quote-form label .req { color: #c00; }
.name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.name-row input { width: 100%; }
.quote-form input, .quote-form textarea {
  width: 100%;
  border: 1px solid #999;
  padding: 12px 10px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
}
.quote-form input:focus, .quote-form textarea:focus { outline: 2px solid #333; }
.quote-form .submit-row { text-align: center; margin-top: 26px; }
.badge { display: block; width: 78%; max-width: 430px; height: auto; }

/* ---------- alternating service sections ------------------------------ */
.svc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.4rem;
  align-items: center;
  padding: 56px 0;
}
.svc h2 { font-size: 30px; }
.svc img { width: 100%; height: auto; display: block; }
.svc .txt { text-align: left; }
/* flip: photo first on even sections */
.svc.flip .media { order: -1; }
@media (min-width: 761px) {
  .svc:not(.flip) .media { order: 2; }
}

/* ---------- FAQ: hr rules + centered Oswald head + link list ---------- */
.faq { border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); padding: 34px 0 42px; margin: 30px 0; }
.faq ul { list-style: disc; margin-left: 2.2rem; }
.faq li { margin: 16px 0; }
.faq a { font-weight: 700; }

/* ---------- gray bands ------------------------------------------------- */
.band { background: var(--wash); padding: 44px 0 56px; margin: 0; }
.band-inner { max-width: 1230px; margin: 0 auto; padding: 0 3%; }

/* mobile service area: map + two columns of city links */
/* map moved to the footer, so the neighbourhood lists now centre on their own */
.area-grid { display: grid; grid-template-columns: 1fr; justify-items: center; gap: 3rem; align-items: start; margin-top: 34px; }
.area-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 4rem; }
.area-lists ul { list-style: disc; margin-left: 1.6rem; }
.area-lists li { margin: 14px 0; }
.area-lists a { font-weight: 700; }
.map-embed { width: 100%; height: 420px; border: 1px solid #ccc; display: block; }

/* ---------- contact band + photo strip + testimonials ----------------- */
.contact-band { padding: 52px 0 30px; }
.contact-band p { max-width: 100%; }

.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.6rem;
  padding: 44px 0;
}
.photo-strip img { width: 100%; height: auto; display: block; }

.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.6rem;
  padding: 30px 0 60px;
  align-items: start;
}
.t-card { background: var(--wash); padding: 40px 30px; display: flex; gap: 14px; }
.t-card .qmark { font-size: 2rem; font-weight: 700; line-height: 1; }
.t-card blockquote { font-style: italic; font-size: 1.25rem; line-height: 2; }

.sponsor-note { font-style: italic; padding: 40px 0; }

/* ---------- footer ----------------------------------------------------- */
footer { background: var(--wash); padding: 54px 0 70px; }
.footer-inner { max-width: 1230px; margin: 0 auto; padding: 0 3%; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 2.4rem;
  justify-content: center;
  margin-bottom: 34px;
}
.footer-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(.95rem, 1.2vw, 1.05rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
}
/* the footer is now the single home for the map: one embed per page, and it
   fills the column that was otherwise empty next to the NAP block */
.footer-cols { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
.footer-cols .maps { display: grid; gap: 1.4rem; }
.footer-cols .map-embed { height: 300px; }
.footer-brand { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: start; }
.footer-brand h3 { font-family: 'Mulish', sans-serif; font-weight: 500; font-size: 1.5rem; line-height: 1.4; margin-bottom: 10px; }
.footer-brand .logo { width: 220px; height: auto; border: 1px solid #ccc; background: #fff; }
.serving { margin: 22px 0; }
.serving div { margin: 6px 0; }
.legal { margin: 22px 0; }
.disclosure { margin-top: 18px; }

/* ---------- responsive ------------------------------------------------- */
@media (max-width: 760px) {
  .hero, .svc, .area-grid, .footer-cols, .footer-brand { grid-template-columns: 1fr; }
  .photo-strip, .testimonials { grid-template-columns: 1fr; }
  .svc .media, .svc.flip .media { order: -1; }
  .phone-logo { font-size: 1.6rem; }
}

/* ---------- v2 revisions: own-flavor pass ---------- */

/* header: wordmark + real desktop nav; burger becomes mobile-only */
.wordmark {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--brand-dark);
  text-decoration: none;
  white-space: nowrap;
}
.top-nav { display: flex; gap: 1.6rem; }
.top-nav a {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: .98rem;
  color: #222;
  text-decoration: none;
}
.top-nav a:hover { color: var(--brand); text-decoration: underline; }
.header-call { padding: 10px 20px; font-size: .95rem; white-space: nowrap; }
header { gap: 1.2rem; }
.burger { display: none; }
@media (max-width: 920px) {
  .top-nav { display: none; }
  .burger { display: flex; }
  .header-call { display: none; }
}
@media (max-width: 920px) and (min-width: 761px) {
  .header-call { display: inline-block; }
}

/* own-flavor: short orange rule under section headings */
.svc h2::after, .contact-band h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: var(--cta);
  margin: 12px auto 0;
}

/* trust badge row */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem 1.6rem;
  padding: 6px 0 2px;
  font-weight: 700;
  color: var(--brand-dark);
}
.badge-row span { white-space: nowrap; }

/* coupon: the dashed-border local classic */
.coupon {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  max-width: 620px;
  margin: 44px auto 8px;
  padding: 18px 22px;
  border: 3px dashed var(--brand);
  background: #f6f9fc;
}
.coupon-amt {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--cta);
  white-space: nowrap;
}

/* footer hours */
.hours { margin: 20px 0 14px; max-width: 340px; }
.hours div { display: flex; justify-content: space-between; gap: 1rem; padding: 3px 0; border-bottom: 1px dotted #cfcfcf; }
.hours span:first-child { font-weight: 700; }
.serving-line { margin-bottom: 8px; }

iframe.map-embed { border: 1px solid #ccc; }
