/* =============================================
   Phila Foundation Repair — Main Stylesheet
   ============================================= */

:root {
  --navy: #1a2744;
  --navy-dark: #111b33;
  --navy-light: #253460;
  --gold: #c9a84c;
  --gold-hover: #b8922e;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --light-gray: #e8e6e0;
  --mid-gray: #888;
  --text: #2d2d2d;
  --text-light: #555;
  --border: #ddd;
  --shadow: 0 2px 16px rgba(26,39,68,0.10);
  --shadow-md: 0 4px 24px rgba(26,39,68,0.15);
  --radius: 6px;
  --radius-lg: 12px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-hover); }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Layout ---- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 70px 0;
}
.section--alt {
  background: var(--off-white);
}
.section__header {
  text-align: center;
  margin-bottom: 50px;
}
.section__header h2 {
  margin-bottom: 12px;
}
.section__header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
}
.section__subhead {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  text-align: center;
  line-height: 1.2;
}
.btn:active { transform: scale(0.98); }
.btn--primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn--primary:hover {
  background: var(--gold-hover);
  color: var(--navy-dark);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn--lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}
.btn--full { width: 100%; justify-content: center; }

/* ---- Nav ---- */
.site-nav {
  background: var(--navy-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1140px;
  margin: 0 auto;
  height: 64px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
}
.nav-logo__name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.nav-logo__tagline {
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
}
.nav-cta:hover {
  background: var(--gold-hover) !important;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  padding: 6px 12px !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  background: var(--navy);
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.active { display: block; }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.85);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: var(--white);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}
.hero h1 span { color: var(--gold); }
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-trust-item strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-trust-item span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Form */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-form-card h3 {
  text-align: center;
  margin-bottom: 6px;
  font-size: 1.2rem;
}
.hero-form-card .form-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.hero-form-card .free-tag {
  color: var(--gold);
  font-weight: 700;
}

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--navy-dark);
  padding: 18px 0;
  border-bottom: 3px solid var(--gold);
}
.trust-bar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}
.trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ---- Service Cards ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 54px;
  height: 54px;
  background: rgba(26,39,68,0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--navy);
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 16px; }
.service-card a { font-size: 0.9rem; font-weight: 700; }

/* ---- Why Us ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-icon {
  width: 50px;
  height: 50px;
  background: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy-dark);
}
.why-item h3 { margin-bottom: 6px; }
.why-item p { color: var(--text-light); font-size: 0.93rem; }

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 22px;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  font-family: Georgia, serif;
  opacity: 0.4;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  margin-top: 18px;
  color: var(--gold);
}
.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.testimonial-author strong { display: block; color: var(--navy); font-size: 0.95rem; }
.testimonial-author span { color: var(--mid-gray); font-size: 0.82rem; }

/* ---- Forms ---- */
.form-section {
  background: var(--navy);
  color: var(--white);
  padding: 70px 0;
}
.form-section h2 { color: var(--white); text-align: center; margin-bottom: 10px; }
.form-section .section-sub {
  text-align: center;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  font-size: 1.05rem;
}
.lead-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.8rem;
  margin-top: 12px;
}

/* inline form (for service pages) */
.inline-form {
  background: var(--off-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.inline-form h3 {
  margin-bottom: 6px;
}
.inline-form .form-sub {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* ---- FAQ ---- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: transform 0.3s;
  color: var(--gold);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 20px;
  color: var(--text-light);
  font-size: 0.96rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ---- Footer ---- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.88rem;
}
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ---- Sticky Call Button ---- */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 100px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  animation: pulse-shadow 2.5s infinite;
}
@keyframes pulse-shadow {
  0%, 100% { box-shadow: 0 4px 24px rgba(201,168,76,0.5); }
  50% { box-shadow: 0 8px 40px rgba(201,168,76,0.8); }
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 60px 0 50px;
  text-align: center;
}
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.page-hero .breadcrumb a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.35); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 28px;
}
.page-hero-meta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.page-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.page-hero-meta-item svg { color: var(--gold); }

/* ---- Content Layout (service/about pages) ---- */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: start;
  padding: 70px 0;
}
.content-main h2 { margin-bottom: 16px; margin-top: 40px; }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { margin-bottom: 10px; margin-top: 28px; }
.content-main ul.styled-list {
  list-style: none;
  margin-bottom: 20px;
}
.content-main ul.styled-list li {
  padding: 6px 0 6px 28px;
  position: relative;
  color: var(--text-light);
  font-size: 0.96rem;
}
.content-main ul.styled-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 2px;
  background: var(--gold);
}

.content-sidebar { position: sticky; top: 84px; }
.sidebar-card {
  background: var(--off-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-card h4 {
  margin-bottom: 16px;
  font-size: 1rem;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 10px;
}
.sidebar-card .price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.sidebar-card .price-row:last-child { border-bottom: none; }
.sidebar-card .price-row strong { color: var(--navy); font-weight: 700; }
.sidebar-card .price-val { color: var(--gold); font-weight: 700; font-size: 0.95rem; }
.sidebar-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  text-decoration: none;
  margin-top: 16px;
  transition: background 0.2s;
}
.sidebar-phone:hover { background: var(--navy-light); color: var(--white); }
.sidebar-phone-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy-dark);
}
.sidebar-phone-text strong {
  display: block;
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 800;
}
.sidebar-phone-text span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* ---- Cost Table ---- */
.cost-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.93rem;
}
.cost-table th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cost-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.cost-table tr:nth-child(even) td { background: var(--off-white); }
.cost-table tr:hover td { background: rgba(201,168,76,0.06); }
.cost-highlight { color: var(--gold); font-weight: 700; }

/* ---- Alert / Warning box ---- */
.alert-box {
  background: rgba(201,168,76,0.1);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 0.93rem;
}
.alert-box strong { color: var(--navy); }

/* ---- Neighborhood pages ---- */
.neighborhood-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin: 32px 0;
}
.stat-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.stat-card strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.7; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-form-card { max-width: 520px; }
  .content-layout {
    grid-template-columns: 1fr;
  }
  .content-sidebar { position: static; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 50px 0; }
  .hero { padding: 50px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .lead-form { padding: 24px 18px; }
  .inline-form { padding: 24px 18px; }
  .sticky-call { display: flex; align-items: center; gap: 8px; }
}

@media (min-width: 701px) {
  .sticky-call { display: none !important; }
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0 !important; }
.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 20px;
}
