/* ===========================================================
   Blue Mountain Cabinets — Design System (v2)
   Matched to the real live site: dusty steel blue + charcoal,
   Poppins headings, clean white-space layout, thin line icons.
   =========================================================== */

:root {
  --blue: #5c84a8;
  --blue-dark: #4a6e8c;
  --charcoal: #2b2b2b;
  --text: #2b2b2b;
  --text-soft: #6f6f6f;
  --text-faint: #9a9a9a;
  --border: #e3e3e3;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-alt: #f7f7f7;

  --font-heading: "Poppins", "Arial", sans-serif;
  --font-body: "Open Sans", "Helvetica Neue", Arial, sans-serif;

  --container: 1200px;
  --radius: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.5em;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.1rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); text-align: center; }
h3 { font-size: 1.15rem; font-weight: 700; }

p { margin: 0 0 1em; color: var(--text-soft); }

.eyebrow {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-block;
  margin-bottom: 0.8em;
}

.section-sub {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
  color: var(--text-soft);
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--blue); color: #fff; padding: 10px 16px;
  z-index: 999; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.7); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }
.btn-ghost.on-light { color: var(--blue); border-color: var(--blue); }
.btn-ghost.on-light:hover { background: var(--blue); color: #fff; }

/* ---------- Top accent bar ---------- */
.top-bar { height: 8px; background: var(--blue); }

/* ---------- Header ---------- */
.site-header { position: relative; z-index: 100; background: var(--white); border-bottom: 1px solid var(--border); }
.header-bar {
  display: flex; align-items: center;
  padding: 16px 32px; max-width: var(--container); margin: 0 auto; gap: 30px;
}
.logo { display: block; flex-shrink: 0; }
.logo img { height: 56px; width: auto; }

.main-nav { display: flex; align-items: center; }
.main-nav > ul { list-style: none; display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; }
.main-nav > ul > li { position: relative; }
.main-nav a.nav-link {
  display: inline-block; font-family: var(--font-heading); font-size: 0.92rem; font-weight: 600;
  text-decoration: none; color: var(--blue); padding: 8px 9px; border-radius: 4px;
  white-space: nowrap;
}
.main-nav a.nav-link:hover, .main-nav a.nav-link.active { color: var(--charcoal); }

.dropdown-caret {
  position: absolute; left: 50%; bottom: -11px;
  width: 6px; height: 6px;
  border-right: 1.5px solid var(--blue);
  border-bottom: 1.5px solid var(--blue);
  transform: translateX(-50%) rotate(45deg);
  pointer-events: none;
}
.nav-chevron { font-size: 0.7rem; vertical-align: middle; margin-left: 2px; display: inline-block; }
.dropdown {
  list-style: none;
  display: block;
  position: absolute; top: 100%; left: 0;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
  padding: 6px; width: 220px; padding-top: 8px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}
.has-dropdown:hover > .dropdown, .has-dropdown:focus-within > .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li { display: block; width: 100%; }
.dropdown a { display: block; width: 100%; padding: 9px 14px; border-radius: 4px; text-decoration: none; font-size: 0.92rem; color: var(--text-soft); white-space: normal; }
.dropdown a:hover { background: var(--bg-alt); color: var(--blue); }

.header-cta { display: flex; align-items: center; gap: 20px; white-space: nowrap; margin-left: auto; flex-shrink: 0; }
.phone-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; text-decoration: none; color: var(--charcoal); font-size: 0.79rem; }
.phone-link svg { flex-shrink: 0; color: var(--blue); width: 14px; height: 14px; }
.header-cta .btn-primary { padding: 7px 15px; font-size: 0.66rem; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--charcoal); margin: 5px 0; }

@media (min-width: 1150px) {
  .header-bar { flex-wrap: wrap; row-gap: 0; padding: 14px 32px; }
  .logo { order: 1; }
  .nav-row {
    order: 2; flex-basis: 100%; display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid var(--border); margin: 10px -32px 0; padding: 8px 32px 0;
  }
  .main-nav { justify-content: flex-start; }
  .main-nav > ul { flex-wrap: wrap; justify-content: flex-start; margin-left: -9px; }
  .header-cta { align-items: center; }
}

@media (max-width: 1149px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed; top: 0; right: 0; bottom: 0; left: auto; width: min(82vw, 360px); background: var(--white);
    flex-direction: column; align-items: stretch; padding: 90px 22px 22px;
    transform: translateX(100%); transition: transform 0.25s ease; overflow-y: auto; z-index: 250;
  }
  .main-nav.open { transform: translateX(0); box-shadow: -16px 0 40px rgba(0,0,0,0.18); }
  .main-nav > ul { flex-direction: column; gap: 0; width: 100%; }
  .main-nav a.nav-link { padding: 13px 8px; border-bottom: 1px solid var(--border); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--bg-alt); margin: 0 0 6px; display: none; width: 100%; }
  .has-dropdown.nav-open .dropdown { display: block; }
  .header-cta .btn-primary { display: none; }
  .header-bar { flex-wrap: nowrap; padding: 12px 16px; gap: 8px; }
  .logo img { height: 44px; }
  .header-cta { gap: 12px; }
  .phone-text { display: none; }
}

/* ---------- Hero (photo carousel, dark overlay) ---------- */
.hero {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #3a3a3a, #1c1c1c);
  overflow: hidden;
}
.hero-slides { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 0; }
.hero-slide {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero::before {
  content: "";
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 1;
  background: rgba(20,20,20,0.5);
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; padding: 60px 0; overflow: hidden; }
.hero h1 { color: #fff; margin-bottom: 0.4em; transition: opacity 0.3s ease; font-size: clamp(1.6rem, 2.8vw, 2.2rem); }
.hero-lede { color: rgba(255,255,255,0.88); font-size: 1.05rem; max-width: 52ch; transition: opacity 0.3s ease; }
.hero-actions { display: flex; gap: 14px; margin-top: 1.4em; flex-wrap: wrap; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  color: rgba(255,255,255,0.85); font-size: 2.2rem; line-height: 1;
  background: none; border: none; cursor: pointer; padding: 10px 14px;
  transition: color 0.15s ease;
}
.hero-arrow:hover { color: #fff; }
.hero-arrow.left { left: 14px; }
.hero-arrow.right { right: 14px; }

@media (min-width: 769px) {
  .hero { height: 400px; }
}

/* ---------- Stat strip (icon-box row directly under hero) ---------- */
.stat-strip { border-bottom: 1px solid var(--border); }
.stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 26px 22px; text-align: center; border-left: 1px solid var(--border);
}
.stat-item:first-child { border-left: none; }
.stat-item h3 { font-size: 1.05rem; margin-bottom: 4px; }
.stat-item p { margin: 0; font-size: 0.92rem; color: var(--text-soft); }
@media (max-width: 880px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3) { border-left: none; }
}
@media (max-width: 520px) {
  .stat-row { grid-template-columns: 1fr; }
  .stat-item { border-left: none !important; border-top: 1px solid var(--border); }
  .stat-item:first-child { border-top: none; }
}

/* ---------- Section spacing ---------- */
section { padding: 80px 0; }
.section-head-center { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
@media (max-width: 700px) { section { padding: 54px 0; } }

.how-we-work-row { padding-bottom: 20px; }
.services-row { padding-top: 30px; }
@media (max-width: 700px) {
  .how-we-work-row { padding-bottom: 16px; }
  .services-row { padding-top: 24px; }
}

/* ---------- Image-caption grid ("Your Cabinet Design Experts") ---------- */
.imgcap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.imgcap-item .thumb { aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; background: var(--bg-alt); }
.imgcap-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.imgcap-item h3 { margin-bottom: 6px; }
.imgcap-item p { font-size: 0.94rem; margin-bottom: 0; }
@media (max-width: 900px) { .imgcap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .imgcap-grid { grid-template-columns: 1fr; } }

/* ---------- Bordered icon-card grid ("Cabinetry for Every Room" / services) ---------- */
.icon-card-row { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.icon-card { padding: 34px 26px; text-align: center; border-left: 1px solid var(--border); }
.icon-card:first-child { border-left: none; }
.icon-card .ic { color: var(--blue); margin-bottom: 18px; }
.icon-card h3 { color: var(--blue); margin-bottom: 12px; }
.icon-card p { font-size: 0.92rem; margin-bottom: 10px; }
.icon-card-row.clamped .icon-card p {
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.icon-card a.more { font-size: 0.88rem; color: var(--text-faint); }
.icon-card a.more:hover { color: var(--blue); }
@media (max-width: 900px) {
  .icon-card-row { grid-template-columns: repeat(2, 1fr); }
  .icon-card:nth-child(3) { border-left: none; border-top: 1px solid var(--border); }
  .icon-card:nth-child(4) { border-top: 1px solid var(--border); }
}
@media (max-width: 560px) {
  .icon-card-row { grid-template-columns: 1fr; }
  .icon-card { border-left: none !important; border-top: 1px solid var(--border); }
  .icon-card:first-child { border-top: none; }
}

/* ---------- Room link cards (Cabinets by room, used on service/home pages) ---------- */
.room-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.room-card {
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  text-decoration: none; display: block; transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.room-card:hover { box-shadow: 0 14px 28px rgba(0,0,0,0.08); transform: translateY(-2px); }
.room-card .thumb { aspect-ratio: 4/3; background: linear-gradient(135deg, #cdd9e3, #aebfcf); }
.room-card .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.room-card .body { padding: 18px 20px 22px; }
.room-card h3 { color: var(--charcoal); margin-bottom: 6px; font-size: 1.05rem; }
.room-card p { font-size: 0.92rem; margin-bottom: 8px; }
.room-card .cta-text { font-family: var(--font-heading); color: var(--blue); font-weight: 600; font-size: 0.88rem; }
@media (max-width: 900px) { .room-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .room-grid { grid-template-columns: 1fr; } }

/* ---------- Photo gallery (Recent Cabinet Projects) ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-item {
  aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg, #d7ccb8, #b9ab8e);
  position: relative; display: flex; align-items: center; justify-content: center;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.gallery-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-item:hover { box-shadow: 0 14px 28px rgba(0,0,0,0.08); transform: translateY(-2px); }
.room-card .gallery-item { aspect-ratio: 4/3; }
.room-card .gallery-item:hover { box-shadow: none; transform: none; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }

.lightbox-overlay {
  display: none; position: fixed; inset: 0; background: rgba(20,18,15,0.9);
  z-index: 1000; align-items: center; justify-content: center; padding: 40px;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img { max-width: 100%; max-height: 100%; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 20px; right: 28px; color: #fff; font-size: 2rem;
  line-height: 1; background: none; border: none; cursor: pointer;
}
.lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  color: rgba(255,255,255,0.85); font-size: 2.6rem; line-height: 1;
  background: none; border: none; cursor: pointer; padding: 10px 14px;
  transition: color 0.15s ease;
}
.lightbox-arrow:hover { color: #fff; }
.lightbox-arrow.lightbox-prev { left: 8px; }
.lightbox-arrow.lightbox-next { right: 8px; }
.lightbox-counter {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.85); font-size: 0.85rem; letter-spacing: 0.05em;
}
.lightbox-grid .gallery-item.has-lightbox { cursor: pointer; }
.lightbox-grid .room-card.has-lightbox { cursor: pointer; }

/* ---------- Process steps (kept, used on interior pages) ---------- */
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.process-step { text-align: center; }
.process-step .step-mark { font-family: var(--font-heading); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.1em; color: var(--blue); display: block; margin-bottom: 10px; text-transform: uppercase; }
@media (max-width: 880px) { .process-steps { grid-template-columns: 1fr; } }

.section-dark { background: var(--charcoal); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.78); }
.section-dark .eyebrow { color: #9fc0db; }

/* ---------- Contact section ---------- */
.contact-tab { display: inline-block; padding-bottom: 12px; border-bottom: 3px solid var(--blue); font-family: var(--font-heading); font-weight: 700; color: var(--charcoal); margin-bottom: 2.5rem; }
.contact-wrap { display: grid; grid-template-columns: 0.85fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 880px) { .contact-wrap { grid-template-columns: 1fr; } }

.contact-rows { display: grid; gap: 28px; }
.contact-row { display: flex; gap: 18px; align-items: flex-start; }
.contact-row .ic { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.contact-row h3 { margin-bottom: 4px; font-size: 1.05rem; }
.contact-row p { margin-bottom: 0; font-size: 0.95rem; }
.contact-row a { font-weight: 700; color: var(--charcoal); text-decoration: underline; }
.contact-row a:hover { color: var(--blue); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--charcoal); }
input, select, textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; padding: 12px 14px;
  border: 1px solid var(--border); border-radius: 4px; background: var(--white); color: var(--text);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(92,132,168,0.15); }
textarea { resize: vertical; min-height: 130px; }
.form-actions { display: flex; align-items: center; gap: 16px; margin-top: 18px; flex-wrap: wrap; }
.file-btn { font-family: var(--font-heading); font-weight: 600; font-size: 0.88rem; padding: 12px 18px; border: 1.5px solid var(--charcoal); border-radius: 4px; background: #fff; color: var(--charcoal); cursor: pointer; }

/* ---------- Map + partner logos band ---------- */
.map-embed { width: 100%; aspect-ratio: 21/6; border: 0; filter: grayscale(0.3); display: block; }
.partner-row {
  display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap;
  padding: 48px 32px; filter: grayscale(1); opacity: 0.6;
}
.partner-row span { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: var(--text-faint); }

.partner-logos { background: #f7f7f7; padding: 40px 0; text-align: center; }
.partner-logos-label { text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.15em; color: #777; margin: 0 0 20px; }
.partner-logos-row { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.partner-logos-row img { max-height: 50px; width: auto; }

/* ---------- Footer ---------- */
.footer-contact-band { background: var(--blue); color: #fff; }
.footer-contact-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 30px 32px; max-width: var(--container); margin: 0 auto; }
.footer-contact-item { display: flex; gap: 14px; align-items: flex-start; }
.footer-contact-item .ic { flex-shrink: 0; margin-top: 2px; }
.footer-contact-item strong { display: block; font-family: var(--font-heading); font-size: 0.98rem; }
.footer-contact-item span, .footer-contact-item a { color: rgba(255,255,255,0.9); font-size: 0.92rem; text-decoration: none; }
.footer-contact-item a:hover { color: #fff; text-decoration: underline; }
@media (max-width: 760px) { .footer-contact-row { grid-template-columns: 1fr; } }

.footer-band { background: var(--blue); color: #fff; }
.footer-band-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding: 40px 32px; }
.footer-col-heading { color: #fff; text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.15em; margin-bottom: 12px; }
.footer-band-grid .footer-nav-col a { color: rgba(255,255,255,0.85); font-size: 0.92rem; text-decoration: none; display: block; line-height: 2; }
.footer-band-grid .footer-nav-col a:hover { color: #fff; }
@media (max-width: 980px) { .footer-band-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) { .footer-band-grid { grid-template-columns: 1fr; } }

.footer-legal-band { background: var(--charcoal); color: rgba(255,255,255,0.75); }
.footer-legal-row {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  padding: 18px 32px; max-width: var(--container); margin: 0 auto; font-size: 0.85rem;
}
.footer-legal-row a { color: rgba(255,255,255,0.75); text-decoration: underline; }
.footer-legal-row a:hover { color: #fff; }
.footer-legal-row button.linklike {
  background: none; border: none; cursor: pointer; font-family: var(--font-body);
  color: rgba(255,255,255,0.75); font-size: 0.85rem; padding: 0; text-decoration: underline;
}
.footer-legal-row button.linklike:hover { color: #fff; }
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Interior page hero (simple photo-band style) ---------- */
.page-hero {
  position: relative; height: 560px; display: flex; align-items: center;
  background: linear-gradient(135deg, #3a3a3a, #1c1c1c); color: #fff;
  background-size: cover; background-position: center;
}
@media (min-width: 769px) {
  .page-hero { height: 400px; }
}
.page-hero::before { content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: rgba(20,20,20,0.45); }
.page-hero.darker::before { background: rgba(15,15,15,0.68); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(1.6rem, 2.8vw, 2.2rem); }
.page-hero p.lede { color: rgba(255,255,255,0.88); font-size: 1.05rem; max-width: 60ch; }
.breadcrumbs { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 18px; }
.breadcrumbs a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumbs a:hover { color: #fff; }

/* ---------- Misc ---------- */
.kv-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.kv-list li { display: flex; gap: 10px; padding-left: 0; }
.kv-list li::before { content: "\2022"; color: var(--blue); font-weight: 700; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}

/* ---------- FAQ page ---------- */
.faq-list { display: grid; gap: 0; }
.faq-item { padding: 22px 0; border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 1.08rem; margin-bottom: 10px; color: var(--charcoal); }
.faq-item p { margin-bottom: 0; }

/* ---------- Article body ---------- */
.article-body h2 { font-size: 1.5rem; margin-top: 2rem; text-align: left; }
.article-body ol, .article-body ul { color: var(--text-soft); line-height: 1.8; }

/* ---------- Projects page hero (5-panel diagonal composite) ---------- */
.projects-hero {
  overflow: hidden;
}

.projects-hero .panel {
  position: absolute;
  top: 0;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.projects-hero .panel-1 {
  left: -5%;
  width: 25%;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
  background-image: url('images/hero-slide-1.jpg');
}

.projects-hero .panel-2 {
  left: 18%;
  width: 25%;
  clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
  background-image: url('images/hero-slide-4.jpg');
}

.projects-hero .panel-3 {
  left: 37%;
  width: 25%;
  clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
  background-image: url('images/hero-slide-3.jpg');
}

.projects-hero .panel-4 {
  left: 56%;
  width: 25%;
  clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
  background-image: url('images/hero-slide-2.jpg');
}

.projects-hero .panel-5 {
  left: 75%;
  width: 30%;
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
  background-image: url('images/projects/outdoor/grill-cabinets-at-cottage-beside-lake-on-deck.jpg');
}
