/* =========================================================
   Jones Building Systems — Design System
   Primary: light blue (brand) | Accent: burnt orange | Dark: charcoal
   ========================================================= */

:root {
  --blue: #009BD0;
  --blue-dark: #027596;
  --blue-light: #E7F7FC;
  --orange: #E8622C;
  --orange-dark: #C94F1F;
  --charcoal: #1B222C;
  --charcoal-2: #262F3B;
  --charcoal-3: #333E4D;
  --ink: #1B222C;
  --body-text: #4A4E57;
  --muted: #7A8190;
  --bg: #F7F8FA;
  --bg-alt: #EEF1F4;
  --white: #FFFFFF;
  --border: #E1E5EA;
  --success: #2E9B5A;

  --font-head: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 6px;
  --radius-lg: 8px;
  --shadow-sm: 0 2px 8px rgba(27, 34, 44, 0.06);
  --shadow-md: 0 8px 28px rgba(27, 34, 44, 0.12);
  --shadow-lg: 0 20px 50px rgba(27, 34, 44, 0.18);
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--charcoal);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 0.5em;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1em; }
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.lede {
  font-size: 1.15rem;
  color: var(--body-text);
  max-width: 62ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  padding: 15px 30px;
  border-radius: 3px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(232, 98, 44, 0.35);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(232, 98, 44, 0.42); }
.btn-blue { background: var(--blue); color: var(--white); box-shadow: 0 6px 18px rgba(0,155,208,0.35); }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-outline-dark {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 0.82rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 68px; width: auto; }
.top-bar {
  background: var(--charcoal);
  color: #C7CCD4;
  font-size: 0.82rem;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: #fff; }
.top-bar .top-phone { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.top-bar .top-links { display: flex; gap: 18px; align-items: center; }
.top-bar .top-links a:hover { color: var(--blue); }
@media (max-width: 640px) {
  .top-bar .top-links a { display: none; }
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 10px 14px;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
  color: var(--charcoal);
  border-radius: 6px;
  position: relative;
}
.main-nav a:hover, .main-nav a.active { color: var(--blue); }
.main-nav .has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius);
  padding: 10px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.15s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a { display: block; padding: 10px 14px; font-size: 0.88rem; border-radius: 6px; text-transform: none; letter-spacing: 0; font-weight: 500; }
.dropdown a:hover { background: var(--blue-light); color: var(--blue-dark); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--charcoal);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.2s;
}

@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 100vw);
    height: 100vh;
    background: var(--charcoal);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 22px 30px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { color: #fff; padding: 14px 10px; border-bottom: 1px solid rgba(255,255,255,0.08); border-radius: 0; }
  .main-nav a.active, .main-nav a:hover { color: var(--blue); }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; background: rgba(255,255,255,0.04); display: none; margin-top: 4px;
  }
  .has-dropdown.open .dropdown { display: block; }
  .header-cta .btn-blue-header { display: none; }
  .nav-scrim {
    display: none;
    position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 90;
  }
  .nav-scrim.show { display: block; }
}

/* Keep the logo, quote button, and menu toggle from exceeding narrow screens. */
@media (max-width: 640px) {
  .header-inner { padding: 8px 18px; gap: 10px; }
  .brand img { height: 54px; }
  .header-cta { gap: 6px; }
  .header-cta .btn-primary { display: none; }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  padding: 11px 24px;
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
  color: var(--charcoal-3);
  white-space: nowrap;
}
.trust-strip-item svg { color: var(--blue); flex-shrink: 0; }
.trust-strip-divider { width: 1px; height: 15px; background: var(--border); flex-shrink: 0; }
@media (max-width: 780px) {
  .trust-strip-divider { display: none; }
  .trust-strip .container { gap: 12px 20px; padding: 9px 18px; }
  .trust-strip-item { font-size: 0.72rem; }
}

/* ---------- Hero (full-bleed, regional-scale) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(12,16,21,0.96) 0%, rgba(12,16,21,0.88) 32%, rgba(9,32,42,0.62) 62%, rgba(9,32,42,0.42) 100%),
    linear-gradient(0deg, rgba(9,13,18,0.9) 0%, rgba(9,13,18,0.1) 40%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 96px 0 64px;
  margin-bottom: auto;
  width: 100%;
}
.hero-content { max-width: 780px; }
.hero-content h1 { color: #fff; margin-bottom: 22px; }
.hero-content h1 span { color: var(--blue); }
.hero-content .lede { color: #D7DBE2; font-size: 1.2rem; max-width: 64ch; }
.hero-actions { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.hero-actions .btn svg { flex-shrink: 0; }

.hero-stats {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.14);
  background: rgba(9,13,18,0.6);
  backdrop-filter: blur(10px) saturate(140%);
}
.hero-stats-inner {
  display: flex;
}
.hero-stat {
  flex: 1;
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.hero-stat:last-child { border-right: none; }
.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat span {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #AEB4BF;
}

@media (max-width: 1024px) {
  .hero { min-height: auto; }
  .hero-inner { padding: 90px 0 48px; }
}

@media (max-width: 780px) {
  .hero-stats-inner { flex-wrap: wrap; }
  .hero-stat { flex: 1 1 50%; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 16px 18px; }
  .hero-stat:nth-child(2n) { border-right: none; }
}

@media (max-width: 640px) {
  .hero-inner { padding: 72px 0 32px; }
  .hero-content h1 { font-size: 2.3rem; margin-bottom: 14px; }
  .hero-content .lede { max-width: 100%; font-size: 1.02rem; }
  .hero-eyebrow { display: none; }
  .hero-actions { margin-top: 20px; }
}

.page-hero {
  position: relative;
  background: linear-gradient(120deg, var(--charcoal) 40%, var(--charcoal-2) 100%);
  color: #fff;
  padding: 68px 0 74px;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,155,208,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,155,208,0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.8), transparent 100%);
          mask-image: linear-gradient(180deg, rgba(0,0,0,0.8), transparent 100%);
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -8%; top: -40%;
  width: 46%; height: 160%;
  background: radial-gradient(circle at center, rgba(232,98,44,0.24), transparent 65%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; }
.breadcrumbs { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: #9AA2AF; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.05em; }
.breadcrumbs a:hover { color: var(--blue); }
.page-hero .lede { color: #C7CCD4; max-width: 70ch; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-alt { background: var(--bg); }
.section-dark { background: var(--charcoal); color: #C7CCD4; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-blue { background: linear-gradient(120deg, var(--blue), #0785AF); color: #fff; }
.section-blue h2 { color: #fff; }
.section-head { max-width: 780px; margin: 0 0 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Grids & Cards ---------- */
.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.icon-badge {
  width: 56px; height: 56px;
  border-radius: 6px;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}
.icon-badge.orange { background: var(--charcoal); color: var(--orange); }
.icon-badge.light { background: var(--blue-light); color: var(--blue); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--body-text); margin-bottom: 0; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.04em; color: var(--blue); }
.card-link svg { transition: transform 0.15s ease; }
.card:hover .card-link svg { transform: translateX(4px); }

.service-card { position: relative; overflow: hidden; }
.service-card .tag {
  position: absolute; top: 22px; right: 22px;
  background: var(--charcoal); color: #fff;
  font-family: var(--font-head); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
}

/* ---------- Photo tiles (photo-driven service cards) ---------- */
.photo-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.photo-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s ease;
}
.photo-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27,34,44,0) 28%, rgba(19,24,31,0.94) 100%);
}
.photo-tile-content { position: relative; z-index: 1; padding: 28px 26px; color: #fff; }
.photo-tile-tag {
  display: inline-block;
  font-family: var(--font-head); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); font-weight: 700; margin-bottom: 10px;
}
.photo-tile h3 { color: #fff; margin-bottom: 8px; }
.photo-tile p { color: #C7CCD4; font-size: 0.92rem; margin-bottom: 14px; }
.photo-tile .card-link { color: #fff; }
.photo-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.photo-tile:hover img { transform: scale(1.07); }
.photo-tile-wide { aspect-ratio: 16 / 11; }
.photo-tile-wide .photo-tile-content { padding: 32px; }
.photo-tile-wide p { max-width: 46ch; }

/* ---------- Brand panel (confident placeholder for sections without a photo yet) ---------- */
.brand-panel {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--charcoal-2), var(--charcoal));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.brand-panel::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,155,208,0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,155,208,0.16) 1px, transparent 1px);
  background-size: 34px 34px;
}
.brand-panel::after {
  content: "";
  position: absolute; right: -20%; top: -20%; width: 70%; height: 70%;
  background: radial-gradient(circle at center, rgba(232,98,44,0.22), transparent 70%);
}
.brand-panel svg { position: relative; z-index: 1; color: var(--blue); opacity: 0.95; }

/* ---------- Stats ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
@media (max-width: 780px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }
.stat-strip .num {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--blue);
  font-weight: 700;
  line-height: 1;
}
.stat-strip .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9AA2AF;
  margin-top: 8px;
}

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.testimonial .stars { color: var(--orange); letter-spacing: 3px; margin-bottom: 14px; font-size: 1.1rem; }
.testimonial p { font-size: 1.04rem; color: var(--charcoal); font-style: italic; }
.testimonial .who { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--blue); margin-top: 16px; }

/* ---------- Values ---------- */
.value-item { display: flex; gap: 18px; }
.value-item .icon-badge { flex-shrink: 0; margin-bottom: 0; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--orange), var(--orange-dark));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: #fff; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.9); margin-bottom: 0; }

/* ---------- Forms ---------- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field label { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.05em; color: var(--charcoal); }
.field input, .field select, .field textarea {
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,155,208,0.18);
}
.field input:invalid.touched, .field textarea:invalid.touched, .field select:invalid.touched { border-color: #D4483A; }
.field .hint { font-size: 0.8rem; color: var(--muted); }
.radio-group { display: flex; gap: 20px; flex-wrap: wrap; }
.radio-group label { display: flex; align-items: center; gap: 8px; font-family: var(--font-body); text-transform: none; font-weight: 500; font-size: 0.95rem; }
.form-success, .form-error {
  display: none;
  padding: 16px 18px; border-radius: 8px; margin-bottom: 20px; font-weight: 600;
}
.form-success { background: #E6F6EC; color: var(--success); }
.form-error { background: #FCE9E7; color: #B23327; }
.form-success.show, .form-error.show { display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: #9AA2AF; padding: 76px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 20px; }
.site-footer .brand img { height: 46px; margin-bottom: 16px; }
.site-footer li { margin-bottom: 10px; }
.site-footer a:hover { color: var(--blue); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { flex-shrink: 0; margin-top: 3px; color: var(--blue); }
.social-row { display: flex; gap: 12px; margin-top: 20px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { background: var(--blue); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; font-size: 0.82rem; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a:hover { color: var(--blue); }

/* ---------- Location grid / map ---------- */
.location-card {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border: 1px solid var(--border); border-radius: var(--radius);
  transition: all 0.15s ease;
}
.location-card:hover { border-color: var(--blue); background: var(--blue-light); }
.location-card .drive { font-size: 0.82rem; color: var(--muted); }
.location-card:hover .drive { color: var(--blue-dark); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-item summary {
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em;
  font-size: 1.05rem; color: var(--charcoal); cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.6rem; color: var(--orange); flex-shrink: 0; line-height: 1; font-family: var(--font-body); font-weight: 400;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin-top: 14px; margin-bottom: 0; }

/* ---------- Misc ---------- */
.badge-row { display: flex; gap: 12px; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-alt); color: var(--charcoal);
  padding: 7px 14px; border-radius: 20px; font-size: 0.82rem; font-weight: 600;
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 34px; } }
.img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--charcoal-2), var(--charcoal));
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px;
  color: #8590A0; text-align: center; padding: 30px;
}
.img-placeholder svg { opacity: 0.5; }
.img-placeholder span { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--blue); color: #fff; padding: 12px 20px; z-index: 999;
}
.skip-link:focus { left: 10px; top: 10px; }

.divider-orange { width: 60px; height: 4px; background: var(--orange); border-radius: 2px; margin-bottom: 22px; }

.list-check { display: flex; flex-direction: column; gap: 14px; }
.list-check li { display: flex; gap: 12px; align-items: flex-start; }
.list-check svg { flex-shrink: 0; margin-top: 3px; color: var(--success); }

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .cta-banner { padding: 36px 26px; text-align: center; justify-content: center; }
}

@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .stat-strip { grid-template-columns: 1fr 1fr; gap: 26px 14px; }
}

/* ---------- Honeypot (spam trap, hidden from real users) ---------- */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- File upload field ---------- */
.field input[type="file"] {
  padding: 10px 12px;
  border: 1.5px dashed var(--border);
  background: var(--bg);
  cursor: pointer;
}
.field input[type="file"]::file-selector-button {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  margin-right: 12px;
  border: none;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  transition: background 0.15s ease;
}
.field input[type="file"]::file-selector-button:hover { background: var(--blue-dark); }
