/* GC Property Restoration — design system (Fraunces + Inter, navy/orange) */

:root {
  --navy-950: hsl(220 60% 8%);
  --navy-900: hsl(220 55% 13%);
  --navy-800: hsl(220 55% 18%);
  --navy-700: hsl(220 58% 25%);
  --navy-600: hsl(220 55% 32%);
  --navy-500: hsl(220 50% 42%);
  --navy-100: hsl(220 40% 94%);
  --navy-50: hsl(215 35% 97%);
  --orange-600: hsl(28 80% 45%);
  --orange-500: hsl(32 87% 53%);
  --orange-100: hsl(32 70% 92%);
  --cream: hsl(32 38% 96%);
  --paper: hsl(210 25% 99%);
  --ink: hsl(220 20% 13%);
  --ink-muted: hsl(220 10% 38%);
  --border: hsl(215 15% 87%);
  --white: #fff;
  --shadow-sm: 0 1px 2px hsl(220 30% 10% / .06), 0 1px 1px hsl(220 30% 10% / .04);
  --shadow-md: 0 8px 24px hsl(220 30% 10% / .10);
  --shadow-lg: 0 16px 48px hsl(220 30% 10% / .16);
  --radius: 10px;
  --radius-lg: 16px;
  --container: 1180px;
  --font-head: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* legacy aliases used across existing page markup */
  --navy: var(--navy-900);
  --navy-2: var(--navy-800);
  --navy-tint: var(--navy-100);
  --orange: var(--orange-500);
  --orange-dark: var(--orange-600);
  --bg: #fff;
  --bg-alt: var(--navy-50);
  --text: var(--ink);
  --text-muted: var(--ink-muted);
  --shadow: var(--shadow-md);
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-900);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 600;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; color: var(--ink-muted); }
a { color: var(--orange-600); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { padding-left: 1.2em; }
img { max-width: 100%; display: block; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  color: var(--navy-900);
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus { left: 10px; top: 10px; }

/* Top bar */
.top-bar {
  background: var(--navy-950);
  color: hsl(220 15% 88%);
  font-size: 0.85rem;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px 16px;
}
.top-bar-phone { color: var(--orange-500); font-weight: 800; display: inline-flex; align-items: center; gap: 6px; }
.top-bar-phone:hover { color: #fff; text-decoration: none; }

/* Icons */
.icon-svg { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-logo { height: 60px; width: auto; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy-900);
  font-size: 1.1rem;
}
.brand-tagline {
  font-size: 0.7rem;
  color: var(--orange-600);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.main-nav > ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
}
.main-nav > ul > li > a {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 10px 13px;
  border-radius: 6px;
}
.main-nav > ul > li > a:hover { color: var(--navy-700); background: var(--navy-50); text-decoration: none; }

.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 440px;
  padding: 10px;
  list-style: none;
  z-index: 200;
  column-count: 2;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--ink);
  break-inside: avoid;
}
.dropdown li a:hover { background: var(--navy-50); color: var(--navy-700); text-decoration: none; }

.nav-cta { white-space: nowrap; }

@media (min-width: 721px) {
  .main-nav > ul { flex: 1; justify-content: center; }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.96rem;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary { background: var(--orange-500); color: var(--navy-950); }
.btn-primary:hover { background: var(--orange-600); color: var(--navy-950); }
.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--navy-800);
}
.btn-outline:hover { background: var(--navy-800); color: #fff; }
.btn-outline-light {
  background: transparent;
  border-color: hsl(0 0% 100% / .5);
  color: #fff;
}
.btn-outline-light:hover { background: #fff; color: var(--navy-900); border-color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }
.btn-block { display: flex; width: 100%; }

/* Hero */
.hero {
  position: relative;
  color: #fff;
  padding: 110px 0 90px;
  overflow: hidden;
  background-color: var(--navy-900);
  background-image: linear-gradient(180deg, hsl(220 55% 10% / .82), hsl(220 60% 8% / .93)), var(--hero-photo, none);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 620px) {
  .hero { padding: 0 0 48px; }
  /* Photo fills a full-bleed band behind the headline; the rest of the hero
     (where the lead form sits) is a plain navy panel so the form stays easy to read */
  .hero { background-image: none; }
  .hero-inner,
  .hero-grid .hero-inner {
    background-image: linear-gradient(180deg, hsl(220 55% 10% / .35), hsl(220 60% 8% / .78)), var(--hero-photo-mobile, var(--hero-photo, none));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 -18px 24px;
    padding: 95px 18px 56px;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.hero-inner { max-width: 720px; }
.hero .eyebrow { color: var(--orange-500); }
.hero h1 { color: #fff; }
.hero p.lead { color: hsl(220 15% 90%); font-size: 1.15rem; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.hero-trust {
  display: flex;
  gap: 26px;
  margin-top: 36px;
  flex-wrap: wrap;
  color: hsl(220 15% 90%);
  font-size: 0.9rem;
}
.hero-trust span { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.hero-trust .icon-svg { color: var(--orange-500); }

.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: start; }
.hero-grid .hero-inner { max-width: none; padding-top: 8px; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-card, .quote-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.hero-card h3, .quote-card h3 { margin-bottom: 4px; }
.hero-card > p, .quote-card > p.lede { font-size: 0.95rem; margin-bottom: 16px; }
.hero-card ul { list-style: none; padding: 0; margin: 16px 0; }
.hero-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-card ul li:last-child { border-bottom: none; }
.hero-card ul li .icon-svg { color: var(--orange-600); }

.page-hero {
  background: linear-gradient(180deg, hsl(220 55% 10% / .84), hsl(220 60% 8% / .94)), var(--navy-900) center / cover no-repeat;
  color: #fff;
  padding: 64px 0 56px;
}
@media (max-width: 620px) { .page-hero { padding: 44px 0 36px; } }
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: hsl(220 15% 90%); font-size: 1.1rem; max-width: 700px; margin-bottom: 0; }
.breadcrumbs { font-size: 0.85rem; margin-bottom: 14px; color: hsl(32 45% 78%); }
.breadcrumbs a { color: hsl(32 45% 78%); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { color: hsl(220 20% 60%); }

/* Sections */
section, .section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.section-alt { background: var(--navy-50); }
.section-dark { background: var(--navy-950); color: hsl(220 15% 90%); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .eyebrow { color: var(--orange-500); }
.section-header { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-header p { color: var(--ink-muted); font-size: 1.05rem; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange-600);
  margin-bottom: 10px;
}
@media (max-width: 620px) {
  section, .section { padding: 48px 0; }
  .section-tight { padding: 32px 0; }
  .container { padding: 0 18px; }
}

/* Grids */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.team-grid { max-width: 820px; margin: 0 auto; }
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.team-photo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  margin: 0 auto 16px;
}
.team-card h3 { margin-bottom: 2px; }
.team-title {
  color: var(--orange-600);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.team-card p:last-child { color: var(--ink-muted); margin-bottom: 0; }
.card .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--navy-100);
  color: var(--navy-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 16px;
}
.card .icon .icon-svg { display: block; }
.card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.card a.card-link { font-weight: 700; font-size: 0.9rem; color: var(--navy-700); display: inline-flex; align-items: center; gap: 6px; }
.card a.card-link:hover { color: var(--orange-600); }

.service-card { display: flex; flex-direction: column; }
.service-card ul { margin: 12px 0; padding-left: 1.1em; }
.service-card ul li { margin-bottom: 6px; color: var(--text-muted); }

/* Why choose us / trust badges */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.why-item .icon-badge {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange-500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item .icon-badge::before {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.why-item h4 { margin: 0 0 4px; font-size: 1rem; }
.why-item p { margin: 0; font-size: 0.9rem; }

.badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.badge { text-align: center; padding: 28px 16px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); }
.badge .icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 11px;
  background: var(--navy-100);
  color: var(--navy-700);
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge h3 { font-size: 1rem; margin-bottom: 4px; }
.badge p { font-size: 0.86rem; color: var(--ink-muted); margin: 0; }
@media (max-width: 860px) { .badges { grid-template-columns: repeat(2, 1fr); } }

/* Photos */
.placeholder-img {
  background: repeating-linear-gradient(135deg, var(--navy-100), var(--navy-100) 10px, hsl(220 30% 90%) 10px, hsl(220 30% 90%) 20px);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  min-height: 220px;
  border: 1px dashed hsl(220 25% 78%);
  text-align: center;
  padding: 20px;
}

.project-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}
.gallery-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: block;
}
@media (max-width: 720px) { .project-photo { height: 240px; } }

/* Gallery grid (reference style) */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-grid figure { margin: 0; }
.gallery-grid a, .gallery-grid .gallery-item { display: block; overflow: hidden; border-radius: 10px; aspect-ratio: 4/3; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.gallery-grid a:hover img { transform: scale(1.06); }
@media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* About split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { width: 100%; height: auto; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split.reverse { direction: ltr; } }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.step { text-align: center; }
.step .num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--navy-700); color: #fff; font-family: var(--font-head);
  font-weight: 700; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.step h3 { font-size: 1rem; margin-bottom: 6px; }
.step p { font-size: 0.85rem; color: var(--ink-muted); margin: 0; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* Quote / lead-gen section */
.quote-section { background: var(--navy-900); color: #fff; }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: stretch; }
.quote-section h2 { color: #fff; }
.quote-section p.lede { color: hsl(220 15% 88%); font-size: 1.05rem; }
.quote-list { margin-top: 22px; display: grid; gap: 14px; list-style: none; padding: 0; }
.quote-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.quote-list .icon-svg { flex-shrink: 0; margin-top: 3px; color: var(--orange-500); }
.quote-card-photos { padding: 12px; }
.quote-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; height: 100%; }
.quote-photo-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
@media (max-width: 860px) { .quote-grid { grid-template-columns: 1fr; } }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--navy-800), var(--navy-950));
  color: #fff;
  padding: 44px 0;
}
.cta-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { color: hsl(220 15% 88%); margin: 0; }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Footer */
.site-footer { background: var(--navy-950); color: hsl(220 12% 78%); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid hsl(220 30% 22%);
}
.footer-col h3 { color: #fff; font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 16px; }
.footer-col .brand-name { color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; margin-bottom: 6px; }
.footer-badges { color: var(--orange-500); font-weight: 600; font-size: 0.85rem; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-list li { font-size: 0.9rem; }
.footer-list a { color: hsl(220 12% 78%); }
.footer-list a:hover { color: var(--orange-500); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px 0;
  font-size: 0.82rem;
  color: hsl(220 12% 60%);
}

/* List with check icons */
.check-list { list-style: none; padding: 0; margin: 8px 0 28px; }
.check-list li {
  padding-left: 1.6em;
  position: relative;
  margin-bottom: 10px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 13px;
  height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d8760f' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.tag-list li {
  background: var(--navy-100);
  color: var(--navy-900);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}
.tag-list li a { color: inherit; }

/* Service area chips */
.area-chip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.area-chip {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; text-align: center; font-weight: 700;
  color: var(--navy-800); display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.area-chip .icon-svg { color: var(--navy-600); }
.area-chip:hover { border-color: var(--navy-600); background: var(--navy-50); text-decoration: none; }
.area-chip small { font-weight: 500; color: var(--ink-muted); }
@media (max-width: 860px) { .area-chip-grid { grid-template-columns: repeat(2, 1fr); } }

/* FAQ accordion */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 6px 22px; }
.faq summary { cursor: pointer; font-weight: 700; font-family: var(--font-head); font-size: 1.05rem; padding: 16px 0; list-style: none; display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--orange-600); font-weight: 400; flex-shrink: 0; }
.faq details[open] summary::after { content: "\2212"; }
.faq p { padding-bottom: 18px; margin: 0; color: var(--ink-muted); }

.form-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 30px;
}
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.9rem; color: var(--navy-900); }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
}
.form-row textarea { resize: vertical; min-height: 120px; }

.contact-info-list { list-style: none; padding: 0; }
.contact-info-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-info-list .icon-badge {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--navy-100);
  color: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

table.pricing-table, table.areas-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
table.pricing-table th, table.pricing-table td,
table.areas-table th, table.areas-table td {
  border: 1px solid var(--border);
  padding: 12px 14px;
  text-align: left;
}
table.pricing-table th, table.areas-table th { background: var(--navy-100); color: var(--navy-900); }

.lead-form-embed {
  width: 100%;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
}
.lead-form-embed iframe {
  width: 100%;
  height: 708px;
  min-height: 708px;
  border: none;
  display: block;
}
.careers-form-embed {
  width: 100%;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
}
.careers-form-embed iframe {
  width: 100%;
  height: 899px;
  min-height: 899px;
  border: none;
  display: block;
}

/* Responsive */
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; margin-left: auto; }
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border: 3px solid var(--navy-900);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 130px 20px 24px;
    display: none;
    overflow: auto;
    z-index: 99;
  }
  .main-nav.open { display: flex; }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .main-nav > ul > li { border-bottom: 1px solid var(--border); }
  .main-nav > ul > li > a { display: block; padding: 14px 4px; }
  .dropdown { position: static; box-shadow: none; border: none; display: none; padding: 0 0 12px 12px; column-count: 1; }
  .has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .nav-cta { margin: 20px 0 0; width: 100%; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .badges { grid-template-columns: repeat(2, 1fr); }
  .area-chip-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   Mobile refinement pass (round 1) — additive only, desktop untouched.
   Everything below only takes effect at <=620px / <=480px.
   ========================================================================== */
@media (max-width: 620px) {
  /* Bigger phone-number bar and logo/menu bar on phones */
  .top-bar { font-size: 0.92rem; }
  .top-bar-inner { padding-top: 38px; padding-bottom: 38px; }
  .header-inner { padding-top: 60px; padding-bottom: 60px; }
  .brand-logo { height: 78px; }
  .nav-toggle span { width: 30px; height: 3px; }

  /* Tighter, more readable headline sizing on phones */
  .hero h1 { font-size: 1.85rem; }
  .page-hero h1 { font-size: 1.6rem; }
  h2 { font-size: 1.5rem; }

  .hero .eyebrow { margin-bottom: 16px; }
  .hero h1 { margin-bottom: 18px; }
  .hero p.lead { font-size: 1rem; margin-bottom: 8px; }
  .hero-trust { gap: 14px 20px; margin-top: 30px; font-size: 0.85rem; }
  .hero-actions { margin-top: 28px; }

  /* Reduce large gaps once layouts collapse to a single column */
  .hero-grid { gap: 28px; }
  .quote-grid { gap: 28px; }
  .split { gap: 28px; }
  .two-col { gap: 28px; }

  /* Card / panel padding felt oversized on narrow screens */
  .card { padding: 22px; }
  .hero-card, .quote-card { padding: 22px; }
  .why-item { padding: 16px; }
  .form-box { padding: 22px; }
  .badge { padding: 22px 14px; }

  /* Section headers/eyebrows take up less vertical room */
  .section-header { margin-bottom: 28px; }

  /* Contact info list icons/text felt cramped edge-to-edge */
  .contact-info-list li { margin-bottom: 18px; }

  /* Two-photo grid in the quote section — keep side-by-side but tighten gap */
  .quote-photo-grid { gap: 6px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero h1 { font-size: 1.6rem; }
  .hero .eyebrow, .page-hero .breadcrumbs { font-size: 0.72rem; }
  .hero-inner,
  .hero-grid .hero-inner { margin: 0 -16px 24px; padding: 78px 16px 46px; }

  /* Trim to the two most important trust points so the hero reads less crowded */
  .hero-trust span:nth-child(n+3) { display: none; }

  /* Simplify the top bar to just the phone number so it doesn't wrap awkwardly */
  .top-bar-inner { justify-content: center; text-align: center; }
  .top-bar-inner > span { display: none; }

  /* Full-width, easier-to-tap buttons where they appear in groups */
  .hero-actions .btn,
  .cta-band-actions .btn { width: 100%; }

  /* Stack the quote-section photo pair instead of squeezing two side by side */
  .quote-photo-grid { grid-template-columns: 1fr; }
  .quote-photo-grid img { aspect-ratio: 4/3; height: auto; }

  .project-photo { height: 200px; }
  .gallery-photo { height: 180px; }
}
