/* =============================================================
   Liberty General Construction — Master Stylesheet
   =============================================================
   Design Tokens
   Primary:   Deep Navy  #1A2D4F
   Accent:    Orange     #D4611A
   Light BG:  Warm Cream #F4F1EB
   Text:      Near-black #1C1E23
   Muted:     Slate Gray #58627A
   ============================================================= */

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

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:          #1A2D4F;
  --navy-dark:     #111D33;
  --navy-light:    #253D6B;
  --orange:        #D4611A;
  --orange-dark:   #B84E10;
  --orange-light:  #E8741E;
  --cream:         #F4F1EB;
  --cream-dark:    #EAE5DC;
  --white:         #FFFFFF;
  --text:          #1C1E23;
  --text-muted:    #58627A;
  --border:        #D5D0C8;
  --border-light:  #E8E4DC;
  --success:       #2D7D3A;
  --shadow-sm:     0 1px 4px rgba(0,0,0,0.07);
  --shadow:        0 2px 12px rgba(0,0,0,0.09);
  --shadow-md:     0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg:     0 8px 48px rgba(0,0,0,0.15);
  --radius:        4px;
  --radius-md:     8px;
  --radius-lg:     16px;
  --transition:    0.2s ease;
  --font-display:  'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-body:     'Barlow', system-ui, sans-serif;
  --font-ui:       'Inter', system-ui, sans-serif;
  --max-width:     1200px;
  --header-h:      72px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; line-height: 1.7; }

.display-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.section-label {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 0.75rem; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

/* ── LAYOUT ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }
@media (min-width: 1280px) { .container { padding: 0 2.5rem; } }

.section { padding: 5rem 0; }
.section--sm { padding: 3.5rem 0; }
.section--lg { padding: 7rem 0; }
.section--cream { background: var(--cream); }
.section--navy  { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy .section-subtitle { color: rgba(255,255,255,0.7); }

.grid-2 { display: grid; gap: 2rem; }
.grid-3 { display: grid; gap: 1.5rem; }
.grid-4 { display: grid; gap: 1.25rem; }

@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,97,26,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-lg { font-size: 1rem; padding: 1.05rem 2.25rem; }
.btn-sm { font-size: 0.82rem; padding: 0.65rem 1.25rem; }

.btn svg { width: 1em; height: 1em; flex-shrink: 0; }

/* Phone call button */
.btn-call {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 1.5rem;
}
.btn-call:hover {
  background: var(--orange-dark);
  color: var(--white);
}

/* ── HEADER / NAV ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  height: var(--header-h);
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  transition: background var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.logo-mark svg { width: 24px; height: 24px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.logo-tagline {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-nav { display: none; }
.nav-list { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: 0.5rem 0.85rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 100;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: none;
}
.nav-dropdown a {
  display: block;
  padding: 0.55rem 1.1rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
}
.nav-dropdown a:hover { background: var(--cream); color: var(--orange); }

.header-cta { display: none; }
.header-phone {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}
.header-phone svg { width: 14px; height: 14px; color: var(--orange); }

/* Mobile menu toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.mobile-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
.mobile-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-dark);
  z-index: 999;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 1.5rem 1.25rem 3rem;
}
.mobile-menu.is-open { transform: none; }
.mobile-menu-nav a {
  display: block;
  padding: 0.9rem 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.mobile-menu-nav a:hover { color: var(--orange); }
.mobile-menu-sub { padding-left: 1rem; }
.mobile-menu-sub a {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255,255,255,0.75);
}
.mobile-menu-cta { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }

@media (min-width: 1024px) {
  .main-nav { display: flex; align-items: center; }
  .header-cta { display: flex; align-items: center; gap: 1rem; }
  .mobile-toggle { display: none; }
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  /* INSERT: background-image: url('../images/hero-liberty-construction-[city].jpg'); */
  opacity: 0.32;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(17,29,51,0.95) 0%, rgba(17,29,51,0.7) 60%, rgba(17,29,51,0.4) 100%);
}
/* Placeholder for hero until real photo */
.hero-bg-placeholder {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, var(--navy-dark) 0%, var(--navy) 50%, #1F3A5C 100%);
}
.hero-bg-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.015) 40px,
      rgba(255,255,255,0.015) 80px
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 6rem 0 5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(212,97,26,0.15);
  border: 1px solid rgba(212,97,26,0.4);
  color: #F8945A;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 2.25rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 3rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}
.hero-trust-item svg {
  width: 15px;
  height: 15px;
  color: var(--orange);
  flex-shrink: 0;
}

/* ── TRUST / CREDENTIAL BAR ───────────────────────────────── */
.trust-bar {
  background: var(--orange);
  padding: 0.85rem 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}
.trust-item svg { width: 15px; height: 15px; flex-shrink: 0; }
.trust-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.35);
}
@media (max-width: 639px) { .trust-divider { display: none; } }

/* ── SERVICE CARDS ────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
  color: inherit;
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--transition);
}
.service-icon svg { width: 26px; height: 26px; color: var(--orange); }
.service-card:hover .service-icon { background: var(--orange); }
.service-card:hover .service-icon svg { color: var(--white); }
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); flex: 1; line-height: 1.6; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.service-card-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.service-card:hover .service-card-link svg { transform: translateX(3px); }

/* ── PROJECT CARDS ────────────────────────────────────────── */
.project-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.project-media {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  overflow: hidden;
}
.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.project-card:hover .project-media img { transform: scale(1.04); }
.project-media-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--cream-dark);
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
}
.project-media-placeholder svg { width: 32px; height: 32px; opacity: 0.4; }
.project-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 99px;
}
.project-city-tag {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(17,29,51,0.85);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 99px;
  backdrop-filter: blur(4px);
}
.project-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.project-info h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.project-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}
.project-meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}
.project-meta-item svg { width: 13px; height: 13px; color: var(--orange); flex-shrink: 0; }

/* Gallery filter */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: 99px;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ── REVIEW CARDS ─────────────────────────────────────────── */
.review-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}
.review-stars { display: flex; gap: 2px; }
.review-stars svg { width: 18px; height: 18px; color: #F5A623; fill: #F5A623; }
.review-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  flex: 1;
}
.review-quote::before { content: '\201C'; }
.review-quote::after  { content: '\201D'; }
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.review-name {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.review-detail {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.review-platform {
  margin-left: auto;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── STATS ROW ────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-item { text-align: center; padding: 1.5rem 1rem; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
}
.section--navy .stat-label { color: rgba(255,255,255,0.65); }

/* ── FAQ ACCORDION ────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-item:first-child { border-top: 1px solid var(--border-light); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.25rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.faq-icon svg { width: 12px; height: 12px; color: var(--navy); }
.faq-item.is-open .faq-icon {
  background: var(--orange);
  transform: rotate(45deg);
}
.faq-item.is-open .faq-icon svg { color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}
.faq-answer-inner {
  padding-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.is-open .faq-answer { max-height: 400px; }

/* ── FORM ─────────────────────────────────────────────────── */
.form-grid {
  display: grid;
  gap: 1.25rem;
}
.form-grid-2 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .form-grid-2 { grid-template-columns: repeat(2, 1fr); }
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}
.form-label span { color: var(--orange); }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(212,97,26,0.1);
}
.form-input.error,
.form-select.error { border-color: #C0392B; }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2358627A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-error {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: #C0392B;
  display: none;
}
.form-group.has-error .form-error { display: block; }
.form-success {
  background: #EBF7EE;
  border: 1px solid #A8D5B0;
  border-radius: var(--radius);
  padding: 1.25rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--success);
  display: none;
  align-items: center;
  gap: 0.65rem;
}
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── BEFORE / AFTER ───────────────────────────────────────── */
.before-after {
  display: grid;
  gap: 2px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (min-width: 640px) {
  .before-after { grid-template-columns: repeat(2, 1fr); }
}
.ba-panel { position: relative; aspect-ratio: 4/3; }
.ba-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(17,29,51,0.85);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 99px;
}
.ba-panel:last-child .ba-label { background: rgba(212,97,26,0.9); }

/* ── CTA BAND ─────────────────────────────────────────────── */
.cta-band {
  background: var(--orange);
  padding: 4.5rem 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

.cta-band--navy {
  background: var(--navy);
}

/* ── WHY US / FEATURE LIST ────────────────────────────────── */
.feature-list {
  display: grid;
  gap: 2rem;
}
@media (min-width: 640px) { .feature-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-list { grid-template-columns: repeat(2, 1fr); } }

.feature-item { display: flex; gap: 1.1rem; align-items: flex-start; }
.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(212,97,26,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 22px; height: 22px; color: var(--orange); }
.feature-text h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; }
.feature-text p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ── MAP SECTION ──────────────────────────────────────────── */
.map-embed {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 0.88rem;
}
.map-placeholder svg { width: 40px; height: 40px; opacity: 0.4; }

/* ── SERVICE AREAS GRID ───────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 480px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .areas-grid { grid-template-columns: repeat(4, 1fr); } }
.area-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: all var(--transition);
}
.area-item:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.area-item svg { width: 13px; height: 13px; color: var(--orange); flex-shrink: 0; }
.area-item:hover svg { color: var(--orange-light); }

/* ── BLOG CARDS ───────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--cream-dark);
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-cat {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}
.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--navy);
  line-height: 1.3;
}
.blog-card h3 a { color: inherit; text-decoration: none; }
.blog-card h3 a:hover { color: var(--orange); }
.blog-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── BREADCRUMBS ──────────────────────────────────────────── */
.breadcrumbs {
  background: var(--cream);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-light);
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.breadcrumb-list a { color: var(--text-muted); text-decoration: none; }
.breadcrumb-list a:hover { color: var(--orange); }
.breadcrumb-list li:not(:last-child)::after { content: '/'; margin-left: 0.35rem; opacity: 0.5; }
.breadcrumb-list li:last-child { color: var(--text); font-weight: 500; }

/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 60px,
    rgba(255,255,255,0.018) 60px,
    rgba(255,255,255,0.018) 120px
  );
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 0.65rem; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 600px; }

/* ── SPLIT LAYOUT ─────────────────────────────────────────── */
.split {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .split { grid-template-columns: repeat(2, 1fr); }
  .split.split-reverse > *:first-child { order: 2; }
}
.split-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-image-placeholder {
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 0.82rem;
}
.split-image-placeholder svg { width: 36px; height: 36px; opacity: 0.35; }

/* ── TEAM CARDS ───────────────────────────────────────────── */
.team-card {
  text-align: center;
}
.team-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--cream-dark);
  margin: 0 auto 1rem;
  overflow: hidden;
  border: 3px solid var(--border-light);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.team-role {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}
.team-bio { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ── CONTACT INFO BLOCK ───────────────────────────────────── */
.contact-info-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(212,97,26,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-icon svg { width: 18px; height: 18px; color: var(--orange); }
.contact-info-text strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.contact-info-text a, .contact-info-text p {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}
.contact-info-text a:hover { color: var(--orange); }

/* ── CERTIFICATIONS / BADGES ──────────────────────────────── */
.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}
.cert-badge svg { width: 16px; height: 16px; color: var(--orange); }

/* ── VIDEO EMBED ──────────────────────────────────────────── */
.video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--navy-dark);
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  font-family: var(--font-ui);
  font-size: 0.88rem;
}
.video-play-btn {
  width: 68px;
  height: 68px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}
.video-play-btn:hover { transform: scale(1.08); background: var(--orange-dark); }
.video-play-btn svg { width: 28px; height: 28px; color: var(--white); margin-left: 3px; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
}
.footer-main {
  display: grid;
  gap: 2.5rem;
  padding: 4rem 0 2.5rem;
}
@media (min-width: 640px)  { .footer-main { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-main { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand .site-logo { margin-bottom: 1.1rem; }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}
.footer-social {
  display: flex;
  gap: 0.6rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--orange); }
.footer-social svg { width: 16px; height: 16px; color: var(--white); }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.75rem;
}
.footer-contact-item svg { width: 14px; height: 14px; color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-contact-item a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--orange); }
.footer-license {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.25rem;
}

/* ── UTILITY ──────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.text-orange { color: var(--orange); }
.text-navy  { color: var(--navy); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }
.font-ui { font-family: var(--font-ui); }
.divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 2.5rem 0;
}
.card-shadow { box-shadow: var(--shadow); border-radius: var(--radius-md); overflow: hidden; }

/* ── SKIP LINK ────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--orange);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: 0; }

/* ── SCROLL ANIMATIONS ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── BANNER (floating phone) ──────────────────────────────── */
.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 0.85rem 1.25rem;
  background: var(--navy);
  border-top: 2px solid var(--orange);
  display: flex;
  gap: 0.75rem;
}
.mobile-call-bar .btn { flex: 1; justify-content: center; }
@media (min-width: 768px) { .mobile-call-bar { display: none; } }

/* ── PRINT ────────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .cta-band, .mobile-call-bar { display: none; }
  body { font-size: 11pt; color: #000; }
  a { color: #000; text-decoration: underline; }
}

/* ═══════════════════════════════════════════════════════════
   ADDITIONS — logo image, hero photo, emergency bar, commercial
   ═══════════════════════════════════════════════════════════ */
.logo-img{height:46px;width:auto;display:block;background:#fff;border-radius:9px;padding:5px 9px;box-shadow:0 2px 8px rgba(0,0,0,0.18);}
.site-footer .logo-img{height:58px;}
@media(max-width:640px){.logo-img{height:38px;padding:4px 7px;}}

/* Real hero background photo */
.hero-bg{position:absolute;inset:0;background-size:cover;background-position:center 30%;z-index:0;}
.hero-bg::after{content:"";position:absolute;inset:0;background:linear-gradient(100deg,rgba(26,45,79,0.92) 0%,rgba(26,45,79,0.78) 45%,rgba(26,45,79,0.45) 100%);}
.hero .container{position:relative;z-index:2;}

/* 24/7 Emergency storm repair bar */
.emergency-bar{background:var(--orange,#D4611A);color:#fff;font-family:var(--font-ui,sans-serif);font-size:0.85rem;}
.emergency-bar .container{display:flex;align-items:center;justify-content:center;gap:0.75rem;flex-wrap:wrap;padding:0.5rem 1rem;text-align:center;}
.emergency-bar strong{font-weight:700;}
.emergency-bar a{color:#fff;font-weight:700;text-decoration:underline;white-space:nowrap;}
.emergency-bar a:hover{opacity:0.85;}
@media(max-width:640px){.emergency-bar{font-size:0.78rem;}}

/* Service CTA card */
.service-card--cta{background:var(--navy,#1A2D4F);color:#fff;}
.service-card--cta h3,.service-card--cta p{color:#fff;}
.service-card--cta .service-icon{background:rgba(255,255,255,0.12);color:#fff;}
.service-card--cta .service-card-link{color:var(--orange,#D4611A);}

/* Commercial / badge strip */
.badge-strip{display:flex;gap:0.6rem;flex-wrap:wrap;margin-top:1rem;}
.badge-pill{display:inline-flex;align-items:center;gap:0.4rem;background:rgba(212,97,26,0.12);color:var(--orange,#D4611A);font-family:var(--font-ui,sans-serif);font-size:0.8rem;font-weight:600;padding:0.35rem 0.8rem;border-radius:999px;}

/* Project/service images fill their media boxes */
.project-media img{width:100%;height:100%;object-fit:cover;display:block;}
.split-image img{width:100%;height:100%;object-fit:cover;display:block;border-radius:var(--radius-lg,14px);}

/* Featured promo video */
.promo-video{max-width:880px;margin:0 auto;border-radius:14px;overflow:hidden;box-shadow:0 24px 60px rgba(0,0,0,0.45);background:#000;}
.promo-video video{display:block;width:100%;height:auto;}

/* Meet the Crew */
.crew-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem;margin-top:2rem;}
.crew-card{border-radius:12px;overflow:hidden;box-shadow:0 8px 24px rgba(0,0,0,0.10);background:#fff;}
.crew-card img{width:100%;height:260px;object-fit:cover;display:block;}
.crew-card .crew-cap{padding:1rem 1.1rem;font-family:var(--font-ui,sans-serif);font-size:0.9rem;color:var(--text,#1C1E23);}

/* ════════════════════════════════════════════════════════════
   SUMMER PROMO — homepage offer band + popup
   ════════════════════════════════════════════════════════════ */
.promo-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.promo-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(212,97,26,0.28), transparent 45%);
  pointer-events: none;
}
.promo-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  align-items: center; position: relative; z-index: 1;
}
@media (min-width: 860px) { .promo-grid { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; } }
.promo-tag {
  display: inline-block; background: var(--orange); color: var(--white);
  font-family: var(--font-ui); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.35rem 0.85rem; border-radius: 999px; margin-bottom: 1rem;
}
.promo-copy h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.1; margin-bottom: 1rem; }
.promo-highlight { color: var(--orange-light); }
.promo-copy p { color: rgba(255,255,255,0.85); font-size: 1.02rem; line-height: 1.7; margin-bottom: 1.5rem; }
.promo-copy p strong { color: var(--white); }
.promo-call { display: flex; flex-wrap: wrap; align-items: center; gap: 0.85rem; }
.promo-call span { font-family: var(--font-ui); font-size: 0.95rem; color: rgba(255,255,255,0.75); }
.promo-form {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.75rem; box-shadow: 0 18px 50px rgba(0,0,0,0.25); position: relative;
}
.promo-form h3 { color: var(--navy); margin-bottom: 0.25rem; font-size: 1.4rem; }
.promo-form-sub { color: var(--text-muted); font-family: var(--font-ui); font-size: 0.9rem; margin-bottom: 1rem; }
.promo-form label { display: block; font-family: var(--font-ui); font-size: 0.8rem; font-weight: 600; color: var(--navy); margin-bottom: 0.75rem; }
.promo-form input {
  display: block; width: 100%; margin-top: 0.3rem; padding: 0.7rem 0.85rem;
  border: 1px solid var(--border); border-radius: var(--radius-md);
  font-family: var(--font-ui); font-size: 0.95rem; color: var(--text); background: var(--white);
}
.promo-form input:focus { outline: 2px solid var(--orange); outline-offset: 1px; border-color: var(--orange); }
.promo-form button[type="submit"] { width: 100%; margin-top: 0.5rem; }
.promo-form small { display: block; margin-top: 0.85rem; color: var(--text-muted); font-family: var(--font-ui); font-size: 0.72rem; line-height: 1.5; }
.promo-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Popup */
.promo-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.promo-modal[hidden] { display: none; }
.promo-modal-overlay { position: absolute; inset: 0; background: rgba(17,29,51,0.72); }
.promo-modal-card {
  position: relative; z-index: 1;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white); border-radius: var(--radius-lg);
  padding: 2rem 1.75rem; max-width: 440px; width: 100%;
  max-height: 92vh; overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5); text-align: center;
}
.promo-modal-card h2 { color: var(--white); font-size: 1.55rem; line-height: 1.15; margin-bottom: 0.6rem; }
.promo-modal-card > p { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin-bottom: 1.1rem; }
.promo-modal-card .promo-form { text-align: left; padding: 1.25rem; margin-bottom: 0.25rem; }
.promo-modal-close { position: absolute; top: 0.5rem; right: 0.75rem; background: none; border: none; color: rgba(255,255,255,0.7); font-size: 1.9rem; line-height: 1; cursor: pointer; padding: 0.2rem 0.4rem; }
.promo-modal-close:hover { color: var(--white); }
.promo-modal-or { font-family: var(--font-ui); font-size: 0.78rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; margin: 0.85rem 0; }
.promo-modal-card .btn-secondary { width: 100%; }
.promo-modal-card small { display: block; margin-top: 0.9rem; color: rgba(255,255,255,0.55); font-family: var(--font-ui); font-size: 0.7rem; }

/* Promo — dropdown + image */
.promo-form select {
  display: block; width: 100%; margin-top: 0.3rem; padding: 0.7rem 0.85rem;
  border: 1px solid var(--border); border-radius: var(--radius-md);
  font-family: var(--font-ui); font-size: 0.95rem; color: var(--text); background: var(--white);
}
.promo-form select:focus { outline: 2px solid var(--orange); outline-offset: 1px; border-color: var(--orange); }
.promo-figure { margin: 0 0 1.5rem; }
.promo-figure img { width: 100%; height: auto; border-radius: var(--radius-md); display: block; box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.promo-figure figcaption { font-family: var(--font-ui); font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 0.5rem; }
