/* SoulCraft Systems — soulcraft.io rebuild
   Fonts: Poppins (headings) / Open Sans (body)
   Palette captured from the Jobber-built site 6/2026 */

:root {
  --ink: #233d48;            /* body text — dark slate teal */
  --heading: #333333;
  --gold: #ccbe66;           /* CTA */
  --gold-dark: #b8aa52;
  --navy: #1f3b4d;           /* CTA band */
  --navy-deep: #032b3a;
  --footer-bg: #0e1a22;
  --bg-light: #f5f6f7;
  --white: #ffffff;
  --line: #e3e6e8;
  --radius: 12px;
  --shadow: 0 2px 14px rgba(14, 26, 34, 0.08);
  --maxw: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
}

h1, h2, h3, h4 {
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--heading);
  line-height: 1.25;
}

h1 { font-size: 44px; font-weight: 700; }
h2 { font-size: 36px; font-weight: 700; }
h3 { font-size: 26px; font-weight: 600; }
h4 { font-size: 19px; font-weight: 600; }

p { margin-bottom: 1em; }
img { max-width: 100%; display: block; }
a { color: var(--navy); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 11px 22px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-white { background: var(--white); color: var(--heading); }
.btn-white:hover { background: #eee; }
.btn-outline { background: var(--white); color: var(--heading); border-color: #cfd4d7; }
.btn-outline:hover { border-color: var(--heading); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--white);
  box-shadow: 0 1px 8px rgba(14, 26, 34, 0.07);
}
.header-inner {
  max-width: 1260px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 28px;
  height: 72px;
}
.logo {
  font-family: "Poppins", sans-serif;
  font-weight: 600; font-size: 22px;
  letter-spacing: 0.42em;
  color: var(--heading); text-decoration: none;
  white-space: nowrap;
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > .nav-item { position: relative; }
.main-nav a, .main-nav .nav-toggle {
  display: block; padding: 10px 14px;
  color: var(--heading); text-decoration: none; font-size: 16px;
  background: none; border: 0; font-family: inherit; cursor: pointer;
}
.main-nav a:hover, .main-nav .nav-toggle:hover { color: var(--navy); }
.nav-toggle::after { content: " ▾"; font-size: 11px; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); min-width: 320px;
  box-shadow: var(--shadow); border-radius: 0 0 10px 10px;
  padding: 8px 0;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { display: block; }
.dropdown a { padding: 9px 18px; font-size: 15px; }
.dropdown a:hover { background: var(--bg-light); }
.header-cta { margin-left: auto; display: flex; align-items: center; gap: 12px; white-space: nowrap; }
.header-phone { color: var(--heading); text-decoration: none; font-size: 15px; }
.header-phone:hover { color: var(--navy); }

/* Mobile nav */
.nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--heading); margin: 5px 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: var(--white);
  min-height: 540px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background-size: cover; background-position: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(10, 30, 40, 0.45);
}
.hero-inner { position: relative; max-width: 860px; padding: 80px 24px; }
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero .sub {
  font-family: "Open Sans", sans-serif;
  font-size: 18px; font-weight: 600; line-height: 1.55;
  margin-bottom: 30px;
}

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section.alt { background: var(--bg-light); }
.eyebrow {
  display: inline-block;
  background: var(--navy); color: var(--white);
  font-size: 13px; font-weight: 600;
  padding: 5px 14px; border-radius: 999px;
  margin-bottom: 16px;
}
.section h2 { margin-bottom: 18px; }
.section-head { margin-bottom: 36px; }
.center { text-align: center; }

/* Two-column (image + content) */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.two-col img { border-radius: var(--radius); width: 100%; height: 100%; object-fit: cover; }

/* Why-us style item list */
.feature-list h3 { margin: 26px 0 8px; }
.feature-list h3:first-of-type { margin-top: 0; }

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

/* Image cards w/ overlay title */
.img-card {
  position: relative; display: block;
  border-radius: var(--radius); overflow: hidden;
  min-height: 320px; text-decoration: none;
  background-size: cover; background-position: center;
  box-shadow: var(--shadow);
}
.img-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,26,34,0.05) 30%, rgba(10,26,34,0.78) 100%);
  transition: background 0.2s ease;
}
.img-card:hover::before {
  background: linear-gradient(180deg, rgba(10,26,34,0.25) 30%, rgba(10,26,34,0.88) 100%);
}
.img-card .card-label {
  position: absolute; left: 22px; right: 56px; bottom: 18px;
  color: var(--white); font-family: "Poppins", sans-serif;
  font-size: 22px; font-weight: 600; line-height: 1.3;
}
.img-card .card-arrow {
  position: absolute; right: 20px; bottom: 18px;
  color: var(--white); font-size: 22px;
}
.img-card .card-desc {
  position: absolute; left: 22px; right: 22px; top: 20px;
  color: rgba(255,255,255,0.95); font-size: 14.5px; line-height: 1.5;
  text-shadow: 0 1px 6px rgba(10,26,34,0.8);
  opacity: 0; transition: opacity 0.2s ease;
}
.img-card:hover::before {
  background: linear-gradient(180deg, rgba(10,26,34,0.62) 0%, rgba(10,26,34,0.45) 45%, rgba(10,26,34,0.85) 100%);
}
.img-card:hover .card-desc { opacity: 1; }

/* White info cards (builder services) */
.info-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 38px 30px;
  text-align: center;
}
.info-card .check {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 18px;
}
.info-card h3 { font-size: 24px; margin-bottom: 14px; }
.info-card .learn { font-weight: 600; }

/* ---------- Testimonials ---------- */
.review-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 30px 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; }
.review-card blockquote { font-size: 15.5px; flex: 1; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Poppins", sans-serif; font-weight: 600;
}
.reviewer .name { font-weight: 700; font-size: 15px; color: var(--heading); }
.reviewer .meta { font-size: 13.5px; color: #6b7a82; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy); color: var(--white);
  text-align: center; padding: 84px 24px;
}
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band .sub { font-size: 18px; font-weight: 600; margin-bottom: 28px; }

/* ---------- Service areas ---------- */
.areas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin: 36px 0; }
.area { display: flex; gap: 12px; align-items: flex-start; }
.area .check {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; margin-top: 3px;
}
.area h4 { font-size: 18px; }
.area .towns { font-size: 15px; color: #5a6a72; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
details.faq {
  border-bottom: 1px solid var(--line); padding: 18px 4px;
}
details.faq summary {
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: 17px;
  color: var(--heading); cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "▾"; font-size: 13px; color: #6b7a82; transition: transform 0.15s; }
details.faq[open] summary::after { transform: rotate(180deg); }
details.faq .answer { padding-top: 12px; }

/* ---------- Estimate form ---------- */
.form-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  max-width: 980px; margin: 0 auto;
}
.form-card iframe { width: 100%; border: 0; min-height: 1200px; display: block; }

/* ---------- Service plans ---------- */
.plan-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 38px 30px;
  display: flex; flex-direction: column;
}
.plan-card.popular { border: 2px solid var(--gold); position: relative; }
.plan-card .badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--white);
  font-size: 12.5px; font-weight: 700; padding: 4px 14px; border-radius: 999px;
  white-space: nowrap;
}
.plan-card h3 { font-size: 22px; margin-bottom: 6px; letter-spacing: 0.04em; }
.plan-card .tagline { color: #5a6a72; font-size: 15px; margin-bottom: 20px; }
.plan-card ul { list-style: none; flex: 1; }
.plan-card li { padding: 9px 0 9px 30px; position: relative; font-size: 15px; border-bottom: 1px solid var(--bg-light); }
.plan-card li::before {
  content: "✓"; position: absolute; left: 0; top: 9px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  font-size: 11px; display: inline-flex; align-items: center; justify-content: center;
}
.plan-card .fit { font-size: 14px; color: #5a6a72; font-style: italic; margin-top: 18px; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px 24px; }
.step .num {
  font-family: "Poppins", sans-serif; font-weight: 700; font-size: 15px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { font-size: 15px; margin: 0; }

/* ---------- Prose (About) ---------- */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { margin: 44px 0 18px; }
.prose h2:first-child { margin-top: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer-bg); color: #b7c2c8; padding: 64px 0 36px; font-size: 15px; }
.site-footer .footer-grid {
  display: grid; grid-template-columns: 1.2fr 2fr; gap: 56px; margin-bottom: 40px;
}
.site-footer .logo { color: var(--white); display: inline-block; margin-bottom: 18px; }
.site-footer h4 { color: var(--white); font-size: 16px; margin-bottom: 14px; }
.site-footer a { color: #b7c2c8; text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 28px; }
.footer-links a { display: block; padding: 3px 0; }
.footer-contact p { margin-bottom: 8px; }
.footer-social { display: flex; gap: 16px; margin: 14px 0 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px; font-size: 13.5px; color: #8696a0;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-assoc { font-size: 13.5px; color: #8696a0; margin-top: 10px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  .grid-3, .steps, .areas { grid-template-columns: 1fr; }
  .two-col, .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  .main-nav {
    display: none;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); flex-direction: column; align-items: stretch;
    box-shadow: 0 12px 18px rgba(14,26,34,0.12);
    padding: 10px 0 18px;
  }
  .main-nav.open { display: flex; }
  .dropdown { position: static; display: block; box-shadow: none; padding-left: 16px; min-width: 0; }
  .nav-toggle { display: none; }
  .dropdown::before {
    content: attr(data-label);
    display: block; padding: 10px 14px 2px;
    font-weight: 700; color: var(--heading); font-family: "Poppins", sans-serif;
  }
  .nav-burger { display: block; }
  .header-cta .header-phone, .header-cta .btn-outline { display: none; }
}

/* ---------- Brand cards ---------- */
.brand-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px 28px; }
.brand-card .cat {
  display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--gold-dark); text-transform: uppercase; margin-bottom: 10px;
}
.brand-card .wordmark {
  font-family: "Poppins", sans-serif; font-size: 30px; line-height: 1.1;
  color: var(--heading); margin-bottom: 14px; display: block;
}
.brand-card p { font-size: 15px; margin: 0; }
.wm-caps { text-transform: uppercase; font-weight: 700; letter-spacing: 0.12em; }
.wm-lower { text-transform: lowercase; font-weight: 700; letter-spacing: 0.02em; }
.wm-wide { text-transform: uppercase; font-weight: 600; letter-spacing: 0.3em; }
.wm-book { font-weight: 600; letter-spacing: 0.01em; }

/* ---------- Hero association badges ---------- */
.hero-badges {
  position: absolute; bottom: 16px; left: 0; right: 0; z-index: 1;
  display: flex; flex-direction: row; gap: 10px; align-items: center; justify-content: center;
}
.hero-badges img {
  height: 40px; width: auto; max-width: 110px; object-fit: contain;
  background: rgba(255,255,255,0.93);
  padding: 5px 9px; border-radius: 8px;
}

/* brand tiles as links */
a.brand-card { display: block; text-decoration: none; color: inherit; transition: transform 0.15s ease, box-shadow 0.15s ease; }
a.brand-card:hover { transform: translateY(-3px); box-shadow: 0 6px 22px rgba(14, 26, 34, 0.14); }
a.brand-card:hover .wordmark { color: var(--navy); }
.brand-card p a { text-decoration: none; font-weight: 600; }
.brand-card p a:hover { color: var(--gold-dark); }

.brand-ico { float: right; width: 42px; height: 42px; border-radius: 9px; margin-left: 12px; }
