@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Barlow+Condensed:wght@600;700;800&display=swap');

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', 'Segoe UI', Arial, sans-serif;
  color: #2b3440;
  background: #fff;
  line-height: 1.6;
}
h1, h2, h3, h4, .hero-title, .section-title, .logo-text strong {
  font-family: 'Barlow Condensed', 'Barlow', 'Segoe UI', sans-serif;
  letter-spacing: .01em;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* =============================================
   DESIGN TOKENS
============================================= */
:root {
  --navy:       #0f1f36;   /* dark headings & medium-dark surfaces */
  --navy-dark:  #0a1626;   /* near-black navy for the darkest bands */
  --blue:       #f0a848;   /* brand ORANGE — primary accent (sampled from logo) */
  --blue-deep:  #d6841f;   /* deeper orange for gradients & hovers */
  --gold:       #f0a848;   /* alias of the brand orange accent */
  --orange-deep:#b56309;   /* dark orange for text/links on LIGHT backgrounds (contrast) */
  --amber:      #f4b740;   /* reserved for star ratings only */
  --gray-light: #f5f2ec;   /* warm off-white background to harmonize with orange */
  --gray-mid:   #6b7280;
  --white:      #ffffff;
  --shadow:     0 10px 34px rgba(15,31,54,.10);
  --radius:     10px;
}

/* =============================================
   UTILITY
============================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-title { font-size: 2.4rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.section-sub   { font-size: 1.05rem; color: var(--gray-mid); margin-bottom: 2rem; }
.btn {
  display: inline-block; padding: 14px 30px; border-radius: var(--radius);
  font-weight: 700; font-size: .95rem; cursor: pointer; border: none;
  transition: opacity .2s, transform .15s;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn-primary   { background: var(--blue);  color: var(--navy-dark); box-shadow: 0 8px 22px rgba(214,132,31,.34); }
.btn-secondary { background: var(--navy);  color: var(--white); }
.btn-outline   { background: transparent; border: 2px solid var(--white); color: var(--white); }
.text-center { text-align: center; }

/* =============================================
   TOP BAR
============================================= */
.top-bar {
  background: var(--navy-dark);
  color: #cdd5e0;
  font-size: .82rem;
  padding: 6px 0;
}
.top-bar .container {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px;
}
.top-bar a { color: var(--gold); }

/* =============================================
   HEADER / NAV
============================================= */
header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: 1200px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 58px; width: auto; display: block; }
.logo-icon {
  width: 50px; height: 50px;
  background: var(--blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--white); font-weight: 900;
  box-shadow: 0 6px 16px rgba(29,109,255,.4);
}
.logo-text { color: var(--white); }
.logo-text strong { font-size: 1.2rem; display: block; }
.logo-text span   { font-size: .78rem; letter-spacing: .5px; color: #aab8cc; }

.header-phone {
  color: var(--gold); font-weight: 700; font-size: 1.15rem;
  display: flex; align-items: center; gap: 8px;
}
.header-phone::before { content: "📞"; font-size: 1rem; }

nav { background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,.08); }
nav ul { list-style: none; display: flex; flex-wrap: wrap; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
nav ul li { position: relative; }
nav ul li a {
  display: block; padding: 13px 15px; color: #cdd5e0; font-size: .86rem;
  font-weight: 600; letter-spacing: .3px; transition: color .2s, background .2s;
}
nav ul li a:hover { color: var(--gold); background: rgba(255,255,255,.05); }

.has-dropdown { position: relative; }
.has-dropdown > a::after { content: " ▾"; font-size: .7rem; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0; min-width: 210px;
  background: var(--navy); box-shadow: var(--shadow); border-top: 3px solid var(--gold);
  z-index: 999;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a { padding: 11px 18px; border-bottom: 1px solid rgba(255,255,255,.06); }
.dropdown li:last-child a { border-bottom: none; }

.nav-hiring { color: var(--gold); }

/* Hamburger toggle — hidden on desktop, shown on mobile */
.nav-toggle { display: none; }
.nav-toggle-label { display: none; }

/* =============================================
   HOMEPAGE HERO
============================================= */
.hero {
  position: relative; overflow: hidden;
  background:
    linear-gradient(100deg, rgba(10,22,38,.95) 0%, rgba(13,32,62,.84) 45%, rgba(17,42,82,.62) 100%),
    url('images/hero-house.jpg') center 65% / cover no-repeat;
  min-height: 560px;
  display: flex; align-items: center;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0, rgba(255,255,255,.02) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.hero .container {
  position: relative; display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: center; padding: 80px 24px;
}
.hero-content { color: var(--white); }
.hero-badge {
  display: inline-block; background: rgba(255,255,255,.12); color: var(--white);
  border: 1px solid rgba(255,255,255,.22);
  font-size: .78rem; font-weight: 700; padding: 5px 14px; border-radius: 20px; margin-bottom: 18px;
  letter-spacing: .5px; text-transform: uppercase;
}
.hero-title { font-size: 3.7rem; font-weight: 800; line-height: 1.08; margin-bottom: 12px; }
.hero-sub    { font-size: 1.2rem; color: #a8c0de; margin-bottom: 10px; }
.hero-tagline{ font-size: 1rem; color: #8dafc8; margin-bottom: 30px; }
.hero-btns   { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-form {
  background: var(--white); border-radius: 12px; padding: 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
}
.hero-form h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 4px; }
.hero-form p  { font-size: .84rem; color: var(--gray-mid); margin-bottom: 18px; }
.form-group { margin-bottom: 14px; }
.form-group input,
.form-group textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid #d1d9e3;
  border-radius: var(--radius); font-size: .9rem; transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 90px; }
.hero-form .btn { width: 100%; text-align: center; padding: 14px; }

/* =============================================
   TRUST BAR
============================================= */
.trust-bar { background: var(--blue); padding: 16px 0; }
.trust-bar .container {
  display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 16px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--navy-dark); font-weight: 700; font-size: .92rem;
}
.trust-item .icon { font-size: 1.5rem; }

/* =============================================
   ABOUT SECTION (homepage)
============================================= */
.about { padding: 80px 0; }
.about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img {
  aspect-ratio: 4/3;
  background: var(--gray-light) url('images/about-home.jpg') center / cover no-repeat;
  border-radius: 12px; overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.about-img .img-placeholder { display: none; }
.img-placeholder { font-size: 5rem; color: #c0ccd8; }
.about-content .eyebrow {
  display: inline-block; background: rgba(240,168,72,.18); color: var(--orange-deep);
  font-size: .75rem; font-weight: 700; padding: 4px 12px; border-radius: 20px;
  margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px;
}
.about-content .section-title { margin-bottom: 8px; }
.about-content h4 { font-size: 1rem; color: var(--orange-deep); margin-bottom: 16px; }
.about-content p { color: #555; margin-bottom: 16px; }
.about-content .btn { margin-top: 8px; }

/* =============================================
   SERVICES CARDS (homepage)
============================================= */
.services { background: var(--gray-light); padding: 80px 0; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px;
}
.service-card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,.16); }
.service-card-img {
  aspect-ratio: 16/9; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 4rem;
}
.service-card-body { padding: 28px; }
.service-card-body h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 10px; }
.service-card-body p  { color: #666; font-size: .93rem; margin-bottom: 20px; line-height: 1.7; }

/* =============================================
   TESTIMONIALS (homepage)
============================================= */
.testimonials { padding: 80px 0; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px;
}
.testi-card {
  background: var(--white); border: 1px solid #e2e8f0;
  border-radius: 12px; padding: 28px; position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.testi-stars { color: var(--amber); font-size: 1.1rem; margin-bottom: 14px; }
.testi-quote { color: #555; font-size: .93rem; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testi-author { font-weight: 700; color: var(--navy); font-size: .9rem; }
.testi-location { font-size: .8rem; color: var(--gray-mid); margin-top: 2px; }
.testi-card::before {
  content: "\201C"; position: absolute; top: 18px; right: 22px;
  font-size: 4rem; color: #e8eef5; font-family: Georgia, serif; line-height: 1;
}

/* =============================================
   OWNER / TRUST SECTION
============================================= */
.owner-trust { background: var(--navy); padding: 80px 0; color: var(--white); }
.owner-trust .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.owner-img {
  aspect-ratio: 3/4;
  background: rgba(255,255,255,.08) url('images/owner-jason.webp') center 22% / cover no-repeat;
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 0;
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
}
.owner-content .eyebrow { color: var(--gold); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; display: block; }
.owner-content .section-title { color: var(--white); margin-bottom: 12px; }
.owner-content h4 { color: #a8c0de; margin-bottom: 20px; font-weight: 400; font-size: 1rem; }
.owner-content p { color: #c0cfe0; margin-bottom: 16px; font-size: .95rem; line-height: 1.75; }
.response-badge {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius); padding: 16px 20px; margin-top: 24px;
  color: #cdd5e0; font-size: .9rem;
}
.response-badge strong { color: var(--white); }

/* =============================================
   SERVICE AREAS (homepage block)
============================================= */
.service-areas { padding: 80px 0; }
.areas-grid {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; justify-content: center;
}
.area-tag {
  background: var(--gray-light); border: 1.5px solid #d1d9e3;
  border-radius: 20px; padding: 8px 18px; font-size: .88rem;
  color: var(--navy); font-weight: 600; transition: all .2s;
}
.area-tag:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* =============================================
   FINANCING SECTION
============================================= */
.financing { background: var(--navy-dark); padding: 80px 0; text-align: center; color: var(--white); }
.financing .section-title { color: var(--white); }
.financing .section-sub { color: #8dafc8; }
.financing p { max-width: 600px; margin: 0 auto 32px; color: #a8c0de; line-height: 1.75; }
.financing-badge {
  display: inline-block; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius);
  padding: 12px 28px; margin-bottom: 32px; color: #cdd5e0; font-size: .88rem;
}

/* =============================================
   BLOG PREVIEW
============================================= */
.blog { background: var(--gray-light); padding: 80px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.blog-card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07); transition: transform .2s;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card-img {
  aspect-ratio: 16/9; background: var(--navy-dark);
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.blog-card-body { padding: 24px; }
.blog-tag {
  background: var(--blue); color: var(--navy-dark);
  font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 12px;
  margin-bottom: 10px; display: inline-block; text-transform: uppercase;
}
.blog-card-body h3 { font-size: 1rem; color: var(--navy); margin-bottom: 10px; line-height: 1.45; }
.blog-card-body a { color: var(--orange-deep); font-size: .88rem; font-weight: 600; }

/* =============================================
   INNER PAGE HERO
============================================= */
.page-hero {
  background:
    linear-gradient(100deg, rgba(10,22,38,.96) 0%, rgba(13,32,62,.9) 55%, rgba(17,42,82,.7) 100%),
    url('images/roof-chimney-dark.jpg') center / cover no-repeat;
  padding: 60px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0, rgba(255,255,255,.02) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 10px; }
.page-hero p { font-size: 1.1rem; color: #a8c0de; max-width: 600px; }
.breadcrumb { font-size: .82rem; color: #8dafc8; margin-bottom: 14px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: #6b87a8; margin: 0 6px; }

/* =============================================
   INNER PAGE LAYOUT (content + sidebar)
============================================= */
.page-section { padding: 60px 0; }
.page-section.bg-light { background: var(--gray-light); }
.page-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.page-content h2 { font-size: 1.6rem; color: var(--navy); margin-bottom: 14px; margin-top: 32px; }
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 10px; margin-top: 24px; }
.page-content p { color: #555; margin-bottom: 16px; line-height: 1.75; }
.page-content ul, .page-content ol { color: #555; margin-bottom: 16px; padding-left: 22px; line-height: 1.75; }
.page-content ul li, .page-content ol li { margin-bottom: 6px; }
.page-content .highlight-box {
  background: var(--gray-light); border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px; margin: 24px 0;
}
.page-content .highlight-box p { margin: 0; color: var(--navy); font-weight: 500; }

.sidebar-form {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  position: sticky;
  top: 90px;
}
.sidebar-form h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 4px; }
.sidebar-form p  { font-size: .84rem; color: var(--gray-mid); margin-bottom: 16px; }
.sidebar-form .form-group { margin-bottom: 12px; }
.sidebar-form input,
.sidebar-form textarea {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid #d1d9e3; border-radius: var(--radius);
  font-size: .88rem; transition: border-color .2s;
}
.sidebar-form input:focus,
.sidebar-form textarea:focus { outline: none; border-color: var(--blue); }
.sidebar-form textarea { min-height: 80px; resize: vertical; }
.sidebar-form .btn { width: 100%; text-align: center; padding: 13px; margin-top: 4px; }

.quick-contact {
  background: var(--navy);
  border-radius: 12px;
  padding: 22px;
  margin-top: 16px;
  color: var(--white);
  text-align: center;
}
.quick-contact p { color: #a8c0de; font-size: .88rem; margin-bottom: 10px; }
.quick-contact .qc-phone { color: var(--gold); font-size: 1.25rem; font-weight: 700; display: block; }
.quick-contact .qc-hours { font-size: .78rem; color: #6b87a8; margin-top: 6px; display: block; }

.related-links {
  background: var(--white); border-radius: 12px; padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06); margin-top: 16px;
}
.related-links h4 { font-size: .9rem; color: var(--navy); font-weight: 700; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid #e2e8f0; }
.related-links ul { list-style: none; }
.related-links ul li { margin-bottom: 8px; }
.related-links ul li a { color: var(--orange-deep); font-size: .88rem; font-weight: 500; }
.related-links ul li a:hover { color: var(--navy); }

/* =============================================
   CTA SECTION
============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  padding: 60px 0; text-align: center;
}
.cta-section h2 { font-size: 2rem; color: var(--navy-dark); margin-bottom: 10px; }
.cta-section p { color: rgba(10,22,38,.82); max-width: 560px; margin: 0 auto 28px; }
.cta-section .btn-secondary { background: var(--navy-dark); color: var(--white); }

/* =============================================
   BENEFITS GRID
============================================= */
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 32px 0;
}
.benefit-card {
  background: var(--white); border-radius: 12px; padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06); text-align: center;
  border-top: 3px solid var(--gold);
}
.benefit-card .icon { font-size: 2.5rem; margin-bottom: 14px; }
.benefit-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.benefit-card p { font-size: .9rem; color: #666; line-height: 1.6; }

/* =============================================
   FAQ ACCORDION
============================================= */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid #e2e8f0; border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-q {
  padding: 18px 24px; font-weight: 700; color: var(--navy); cursor: pointer;
  background: var(--white); display: flex; justify-content: space-between; align-items: center;
  transition: background .2s; user-select: none;
}
.faq-q:hover { background: var(--gray-light); }
.faq-q.open { background: var(--navy); color: var(--white); }
.faq-q .icon { font-size: 1.2rem; transition: transform .25s; flex-shrink: 0; }
.faq-q.open .icon { transform: rotate(45deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .2s; background: #fafbfc; }
.faq-a.open { max-height: 400px; padding: 18px 24px; }
.faq-a p { color: #555; line-height: 1.75; margin: 0; }

/* =============================================
   TESTIMONIALS (full page)
============================================= */
.testi-grid-full {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px;
}

/* =============================================
   CONTACT PAGE
============================================= */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 60px 0;
}
.contact-info h2 { font-size: 1.5rem; color: var(--navy); margin-bottom: 20px; }
.contact-info p { color: #555; margin-bottom: 20px; line-height: 1.75; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-detail .cd-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-detail h4 { color: var(--navy); font-size: .95rem; margin-bottom: 4px; }
.contact-detail p { color: #555; font-size: .9rem; margin: 0; }
.contact-form-full { background: var(--white); border-radius: 12px; padding: 36px; box-shadow: var(--shadow); border-top: 4px solid var(--gold); }
.contact-form-full h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 20px; }
.contact-form-full .form-group { margin-bottom: 16px; }
.contact-form-full label { display: block; font-weight: 600; color: var(--navy); margin-bottom: 6px; font-size: .9rem; }
.contact-form-full input,
.contact-form-full textarea,
.contact-form-full select {
  width: 100%; padding: 12px 14px; border: 1.5px solid #d1d9e3;
  border-radius: var(--radius); font-size: .9rem; transition: border-color .2s;
}
.contact-form-full input:focus,
.contact-form-full textarea:focus,
.contact-form-full select:focus { outline: none; border-color: var(--blue); }
.contact-form-full textarea { min-height: 120px; resize: vertical; }
.contact-form-full .btn { padding: 14px 40px; }

/* =============================================
   BLOG PAGE
============================================= */
.blog-full-grid {
  display: grid; grid-template-columns: 1fr 300px; gap: 48px; padding: 60px 0; align-items: start;
}
.blog-posts { }
.blog-post-item {
  border-bottom: 1px solid #e2e8f0; padding-bottom: 32px; margin-bottom: 32px;
  display: grid; grid-template-columns: 160px 1fr; gap: 24px; align-items: start;
}
.blog-post-item:last-child { border-bottom: none; }
.blog-post-thumb {
  aspect-ratio: 4/3; background: var(--navy-dark);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
}
.blog-post-meta { font-size: .8rem; color: var(--gray-mid); margin-bottom: 8px; }
.blog-post-item h2 { font-size: 1.2rem; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.blog-post-item h2 a { color: var(--navy); }
.blog-post-item h2 a:hover { color: var(--orange-deep); }
.blog-post-item p { color: #666; font-size: .92rem; line-height: 1.7; margin-bottom: 12px; }
.blog-sidebar { }
.blog-sidebar-card { background: var(--white); border-radius: 12px; padding: 24px; box-shadow: var(--shadow); margin-bottom: 20px; }
.blog-sidebar-card h4 { font-size: .95rem; color: var(--navy); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid #e2e8f0; }
.blog-sidebar-card ul { list-style: none; }
.blog-sidebar-card ul li { margin-bottom: 10px; }
.blog-sidebar-card ul li a { font-size: .87rem; color: var(--orange-deep); line-height: 1.4; }
.blog-sidebar-card ul li a:hover { color: var(--navy); }

/* =============================================
   HIRING PAGE
============================================= */
.req-list { list-style: none; }
.req-list li {
  padding: 14px 0; border-bottom: 1px solid #e2e8f0;
  display: flex; gap: 12px; align-items: flex-start; color: #555;
}
.req-list li::before { content: "✓"; color: var(--orange-deep); font-weight: 700; flex-shrink: 0; }
.req-list li:last-child { border-bottom: none; }

/* =============================================
   FOOTER
============================================= */
footer { background: var(--navy-dark); color: #a8bcd0; }
.footer-top { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .logo-text strong { color: var(--white); font-size: 1.1rem; }
.footer-brand .logo-text span  { color: #6b87a8; }
.footer-brand p { margin-top: 16px; font-size: .88rem; line-height: 1.7; }
.footer-contact { margin-top: 20px; font-size: .88rem; }
.footer-contact div { margin-bottom: 8px; }
.footer-contact span { color: var(--gold); margin-right: 8px; }
.footer-hours { margin-top: 14px; font-size: .82rem; }
.footer-hours p { margin-bottom: 4px; }
.footer-col h4 { color: var(--white); font-size: .95rem; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: .86rem; color: #8dafc8; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  transition: background .2s;
}
.social-icon:hover { background: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px; text-align: center; font-size: .8rem;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 20px;
}
.footer-bottom a { color: #6b87a8; }
.footer-bottom a:hover { color: var(--gold); }

/* =============================================
   PHOTO CARDS
   .ph hides the emoji fallback and paints a real
   photo; URLs resolve relative to this stylesheet
   so subdirectory pages work unchanged.
============================================= */
.ph { background-size: cover; background-position: center; font-size: 0; }
.ph-crew      { background-image: url('images/crew-roofing.jpg'); }
.ph-roofer    { background-image: url('images/roofer-install.jpg'); }
.ph-owner     { background-image: url('images/owner-roofer.jpg'); }
.ph-gutter    { background-image: url('images/gutter-corner.jpg'); }
.ph-gutter-edge { background-image: url('images/gutter-edge.jpg'); }
.ph-storm     { background-image: url('images/storm-sky.jpg'); }
.ph-storm-dusk{ background-image: url('images/storm-dusk.jpg'); }
.ph-shingle   { background-image: url('images/shingle-gable.jpg'); }
.ph-dormers   { background-image: url('images/roof-dormers.jpg'); }
.ph-aerial    { background-image: url('images/about-home.jpg'); }
.ph-hood      { background-image: url('images/neighborhood.jpg'); }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-form { max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar-form { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-full-grid { grid-template-columns: 1fr; }
  .blog-post-item { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-title { font-size: 2.1rem; }
  .page-hero h1 { font-size: 1.9rem; }
  .section-title { font-size: 1.6rem; }
  .about .container,
  .owner-trust .container { grid-template-columns: 1fr; }
  .services-grid,
  .testimonials-grid,
  .testi-grid-full,
  .blog-grid,
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  /* ---- Mobile hamburger navigation ---- */
  .nav-toggle-label {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    padding: 14px 24px; cursor: pointer; margin-left: auto;
  }
  .nav-toggle-label span {
    display: block; width: 26px; height: 3px; border-radius: 2px;
    background: var(--white); transition: transform .3s, opacity .2s;
  }
  /* animate to an X when open */
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) { transform: translateY(8px) 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(-8px) rotate(-45deg); }

  nav { display: flex; flex-wrap: wrap; }
  nav ul {
    display: none; flex-direction: column; width: 100%;
    padding: 0; border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav-toggle:checked ~ ul { display: flex; }
  nav ul li { width: 100%; border-bottom: 1px solid rgba(255,255,255,.06); }
  nav ul li a { padding: 14px 24px; font-size: .95rem; }

  /* dropdowns expand inline (no hover on touch) */
  .has-dropdown > a::after { content: ""; }
  .dropdown {
    display: block; position: static; min-width: 0; width: 100%;
    box-shadow: none; border-top: none; background: rgba(0,0,0,.22);
  }
  .dropdown li a { padding: 12px 24px 12px 44px; font-size: .88rem; color: #aebbcc; }
}
