/* ==========================================================
   Beveridge Roofing & Construction
   Design system: rugged trade-pro · navy + gold
   Mobile-first · trust-first · scannable
   ========================================================== */

:root {
  --navy: #0a1d36;
  --navy-2: #142c4e;
  --navy-3: #061427;
  --gold: #d6a64a;
  --gold-2: #f0c466;
  --red: #c8341e;
  --concrete: #f1efe9;
  --concrete-2: #e6e3d9;
  --line: #d8d4c7;
  --line-2: #ececec;
  --text: #161b22;
  --muted: #5a6471;
  --white: #ffffff;
  --bg: #ffffff;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.08);
  --shadow: 0 6px 18px rgba(10,29,54,.12);

  --radius: 4px;
  --radius-lg: 8px;

  --header-h: 56px;
  --maxw: 1180px;
  --ease: cubic-bezier(.2,.7,.2,1);

  --display: 'Barlow Condensed', 'Oswald', system-ui, sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-bottom: 76px; /* clearance for mobile call bar */
}
@media (min-width: 900px) { body { padding-bottom: 0; } }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.005em;
  text-transform: uppercase;
  margin: 0 0 .4em;
}
h1 { font-size: clamp(2rem, 8vw, 4.5rem); }
h2 { font-size: clamp(1.6rem, 6vw, 3rem); }
h3 { font-size: clamp(1.05rem, 4vw, 1.4rem); letter-spacing: 0; }
h4 { font-size: 1rem; }

p { margin: 0 0 .9em; }
.lede {
  font-size: 1rem;
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.55;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.1rem;
}

.section { padding: 2.5rem 0; }
.section-tight { padding: 1.75rem 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .55rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: .5rem;
  margin-bottom: 3px;
}

/* ==========================================================
   HEADER (mobile-first: 56px, just brand + call icon + menu)
   ========================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  color: var(--white);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.brand {
  display: flex; align-items: center; gap: .55rem;
  color: var(--white);
  line-height: 1;
}
.brand-mark {
  width: 32px; height: 32px;
  background: var(--gold);
  color: var(--navy);
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.2rem;
  border-radius: 3px;
}
.brand-text {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.brand-text small {
  display: block;
  font-family: var(--body);
  font-weight: 600;
  font-size: .58rem;
  letter-spacing: .18em;
  color: var(--gold);
  margin-top: 1px;
}

.nav-actions { display: flex; align-items: center; gap: .25rem; }
.nav-call-icon {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  color: var(--gold);
  border-radius: 3px;
  transition: background .2s;
}
.nav-call-icon:hover { background: rgba(255,255,255,.08); }
.nav-call-icon svg { width: 22px; height: 22px; }

.nav-links {
  display: none;
  list-style: none; padding: 0; margin: 0;
  gap: 1.5rem;
}
.nav-links a {
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .25rem 0;
  position: relative;
}
.nav-links a:hover, .nav-links a.is-active { color: var(--gold); }
.nav-links a.is-active::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--gold);
}

.nav-cta { display: none; }

.menu-toggle {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  color: var(--white);
  border-radius: 3px;
}
.menu-toggle:hover { background: rgba(255,255,255,.08); }
.menu-toggle svg { width: 24px; height: 24px; }

.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0;
  z-index: 99;
  background: var(--navy);
  color: var(--white);
  padding: 1.25rem 1.1rem 6rem;
  transform: translateX(100%);
  transition: transform .28s var(--ease);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav li {
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.05rem .25rem;
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.mobile-nav a span { color: var(--gold); }
.mobile-nav .mobile-cta {
  margin-top: 1.25rem;
  display: grid; gap: .6rem;
}
.mobile-contact {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
}
.mobile-contact a { color: var(--gold-2); display: block; }

body.menu-open { overflow: hidden; }

/* ==========================================================
   BUTTONS (call-first)
   ========================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .55rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
  border: 2px solid transparent;
  transition: transform .15s var(--ease), background .15s, color .15s, border-color .15s, box-shadow .15s;
  min-height: 52px;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-call {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 3px 0 #a07a25;
}
.btn-call:hover { background: var(--gold-2); }
.btn-call:active { box-shadow: 0 1px 0 #a07a25; transform: translateY(2px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-ghost:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-block { width: 100%; }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ==========================================================
   HERO (trust-first, call-first)
   Mobile: short, dense, scannable. Big trust strip + headline + huge call button.
   ========================================================== */
.hero {
  position: relative;
  margin-top: var(--header-h);
  color: var(--white);
  isolation: isolate;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-image: url('../assets/hero.jpg');
  background-size: cover;
  background-position: center right;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,29,54,.55) 0%, rgba(10,29,54,.82) 70%, rgba(10,29,54,.95) 100%),
    linear-gradient(90deg, rgba(10,29,54,.45) 0%, rgba(10,29,54,0) 60%);
}
@media (min-width: 900px) {
  .hero-bg { background-position: center; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(10,29,54,.35) 0%, rgba(10,29,54,.55) 60%, rgba(10,29,54,.85) 100%),
      linear-gradient(90deg, rgba(10,29,54,.7) 0%, rgba(10,29,54,.2) 55%, rgba(10,29,54,0) 75%);
  }
}

.hero-inner {
  padding-top: 1rem;
  padding-bottom: 1.25rem;
  display: flex; flex-direction: column; gap: .85rem;
}

.hero-trust {
  display: flex; flex-wrap: wrap; gap: .3rem .35rem;
  margin-bottom: .15rem;
}
.hero-trust span, .hero-trust a {
  font-family: var(--body);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  padding: .25rem .45rem;
  border-radius: 2px;
  display: inline-flex; align-items: center; gap: .25rem;
  line-height: 1;
  text-decoration: none;
}
.hero-trust a:hover { border-color: var(--gold); color: var(--gold-2); }
.hero-trust span svg, .hero-trust a svg { width: 10px; height: 10px; color: var(--gold); }

.hero h1 {
  color: var(--white);
  margin: 0;
  font-size: clamp(2.1rem, 9vw, 4.75rem);
  line-height: .92;
}
.hero h1 .accent { color: var(--gold); display: block; }

.hero-sub {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  line-height: 1.45;
  max-width: 42ch;
  margin: 0;
}

.hero-cta {
  display: flex; flex-direction: column; gap: .55rem;
  margin-top: .15rem;
}
.hero-cta .btn-call { font-size: 1.2rem; padding: 1rem 1.25rem; min-height: 56px; }
.hero-cta .btn-ghost { min-height: 44px; padding: .65rem 1rem; font-size: .92rem; }
.hero-cta-sub {
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  margin: 0;
  letter-spacing: .04em;
}
.hero-cta-sub b { color: var(--white); }

.hero-rating {
  display: flex; align-items: center; gap: .55rem;
  padding-top: .75rem;
  margin-top: .15rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-rating-stars {
  color: var(--gold);
  font-size: .9rem;
  letter-spacing: .08em;
  line-height: 1;
}
.hero-rating-text {
  font-size: .72rem;
  color: rgba(255,255,255,.75);
  line-height: 1.3;
}
.hero-rating-text b { color: var(--white); }
.hero-rating-text a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.hero-rating-text a:hover { color: var(--gold-2); }

/* ==========================================================
   STATS BAR (concrete trust strip under hero)
   ========================================================== */
.stats {
  background: var(--navy-3);
  color: var(--white);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.stat {
  padding: 1.1rem .75rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.stat:nth-child(2n) { border-right: 0; }
.stat:nth-last-child(-n+2) { border-bottom: 0; }
.stat b {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.85rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .25rem;
}
.stat span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  line-height: 1.2;
  display: block;
}

/* ==========================================================
   SECTION HEADER (small, scannable)
   ========================================================== */
.section-head { margin-bottom: 1.5rem; }
.section-head h2 { color: var(--navy); margin-bottom: .35rem; }

/* ==========================================================
   SERVICES (compact, scannable, no fluff)
   Mobile: tight rows. Desktop: photo cards.
   ========================================================== */
.services-list {
  display: grid;
  gap: .55rem;
}
.service-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: .85rem;
  align-items: center;
  padding: .9rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  transition: border-color .15s, transform .15s var(--ease);
}
.service-row:hover { border-color: var(--navy); border-left-color: var(--gold); }
.service-row:active { transform: translateY(1px); }
.service-row-icon {
  width: 48px; height: 48px;
  background: var(--concrete);
  display: grid; place-items: center;
  border-radius: 3px;
  color: var(--navy);
}
.service-row-icon svg { width: 26px; height: 26px; }
.service-row-text h3 {
  margin: 0 0 .15rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--navy);
}
.service-row-text p {
  margin: 0;
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.4;
}
.service-row-arrow {
  color: var(--navy);
  font-size: 1.5rem;
  font-family: var(--display);
  font-weight: 800;
  line-height: 1;
}

/* ==========================================================
   CLAIMS / PROCESS (dark, gold-accented)
   ========================================================== */
.claims {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.claims::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(214,166,74,.15), transparent 60%);
  pointer-events: none;
}
.claims .container { position: relative; }
.claims h2 { color: var(--white); }
.claims .lede { color: rgba(255,255,255,.78); }
.claims .eyebrow { color: var(--gold-2); }
.claims .eyebrow::before { background: var(--gold-2); }

.process-list {
  display: grid; gap: .65rem;
  margin-top: 1.5rem;
}
.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,.04);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
}
.step-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.step h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin: 0 0 .25rem;
}
.step p {
  margin: 0;
  font-size: .88rem;
  color: rgba(255,255,255,.78);
  line-height: 1.45;
}

/* ==========================================================
   PROOF / WORK BANNER (photo + caption)
   ========================================================== */
.proof {
  background: var(--concrete);
}
.proof-grid {
  display: grid;
  gap: 1.5rem;
}
.proof-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}
.proof-image img { width: 100%; height: 100%; object-fit: cover; }
.proof-image .since {
  position: absolute;
  bottom: .85rem; left: .85rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--display);
  font-weight: 800;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .5rem .75rem;
  border-radius: 2px;
}
.proof-image .since b { font-size: 1.4rem; display: inline-block; line-height: 1; vertical-align: middle; margin-right: .25rem; }

.feature-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.feature-list li {
  display: flex; gap: .7rem; align-items: flex-start;
  padding: .65rem 0;
  border-bottom: 1px solid var(--line);
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list svg {
  flex: 0 0 18px; width: 18px; height: 18px;
  color: var(--gold);
  margin-top: 4px;
}
.feature-list b {
  color: var(--navy);
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  display: block;
}
.feature-list p {
  margin: .15rem 0 0;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.45;
}

/* ==========================================================
   CERTIFICATIONS
   ========================================================== */
.certs {
  background: var(--navy-3);
  color: var(--white);
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255,255,255,.05);
}
.certs-head {
  text-align: center;
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.certs-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem 1.5rem;
  align-items: center;
}
.certs-row img {
  max-height: 42px;
  width: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  opacity: .65;
  transition: opacity .2s;
}
.certs-row img:hover { opacity: 1; }

/* ==========================================================
   TESTIMONIAL (single, prominent)
   ========================================================== */
.testimonials-grid { display: grid; gap: 1rem; }
@media (min-width: 700px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
.testimonial-block {
  background: var(--white);
  padding: 1.75rem 1.1rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
}
.testimonial-block .stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: .1em;
  margin-bottom: .65rem;
}
.testimonial-block p {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--navy);
  margin: 0 0 .85rem;
  text-transform: none;
  letter-spacing: 0;
}
.testimonial-block cite {
  font-style: normal;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* ==========================================================
   FINAL CTA
   ========================================================== */
.final-cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('../assets/texas.jpg');
  background-size: cover; background-position: center;
  opacity: .1;
}
.final-cta .container { position: relative; }
.final-cta h2 { color: var(--white); }
.final-cta p { color: rgba(255,255,255,.85); max-width: 50ch; margin: 0 auto 1.5rem; }
.final-cta-btns { display: grid; gap: .6rem; max-width: 360px; margin: 0 auto; }

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: var(--navy-3);
  color: rgba(255,255,255,.65);
  padding: 2rem 0 5rem;
  font-size: .88rem;
  border-top: 2px solid var(--gold);
}
.footer-grid {
  display: grid;
  gap: 1.75rem;
}
.footer-grid h4 {
  color: var(--gold);
  font-family: var(--body);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin: 0 0 .65rem;
  font-weight: 700;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .35rem; }
.footer-grid a { color: rgba(255,255,255,.7); }
.footer-grid a:hover { color: var(--gold); }
.footer-brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .4rem;
}
.footer-brand small { display: block; font-size: .65rem; color: var(--gold); letter-spacing: .18em; font-weight: 600; }
.footer-bottom {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; flex-wrap: wrap; gap: .75rem;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}

/* ==========================================================
   STICKY MOBILE CALL BAR (single dominant CTA)
   ========================================================== */
.mobile-call-bar {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 95;
  background: var(--gold);
  border-top: 3px solid var(--navy);
  box-shadow: 0 -4px 16px rgba(0,0,0,.18);
  padding: .55rem .75rem calc(.55rem + env(safe-area-inset-bottom));
}
.mobile-call-bar a {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  height: 52px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: var(--radius);
}
.mobile-call-bar a svg { width: 22px; height: 22px; color: var(--gold); }
.mobile-call-bar a span { color: var(--gold-2); font-size: .72rem; font-weight: 600; letter-spacing: .12em; margin-left: .35rem; }

/* ==========================================================
   SERVICES GRID (photo-card layout, services.html)
   ========================================================== */
.services-grid {
  display: grid;
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s var(--ease);
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.service-card-img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--concrete); }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; }
.service-card-body { padding: 1.15rem 1.25rem 1.35rem; }
.service-card-body h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: .4rem;
}
.service-card-body p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
  margin-bottom: .9rem;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: .85rem;
  color: var(--navy);
}
.service-card-link::after { content: '→'; color: var(--gold); }
.service-card-link:hover { color: var(--gold); }

@media (min-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================
   PAGE HEADER (subpages)
   ========================================================== */
.page-header {
  margin-top: var(--header-h);
  background: var(--navy);
  color: var(--white);
  padding: 2.25rem 0 2rem;
  position: relative;
  border-bottom: 2px solid var(--gold);
}
.page-header h1 { color: var(--white); margin: 0 0 .35rem; }
.page-header .crumbs {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: .55rem;
}
.page-header .crumbs a { color: var(--gold); }
.page-header .lede { color: rgba(255,255,255,.78); margin: 0; }

/* ==========================================================
   GALLERY
   ========================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .35rem;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  background: var(--concrete);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.94);
  display: none;
  align-items: center; justify-content: center;
  z-index: 200;
  padding: 1rem;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 88vh; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: var(--gold);
  color: var(--navy);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.5rem;
  font-weight: 800;
}
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev { left: .75rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: .75rem; top: 50%; transform: translateY(-50%); }

/* ==========================================================
   CONTACT
   ========================================================== */
.contact-grid {
  display: grid;
  gap: 1.25rem;
}
.contact-info {
  background: var(--navy);
  color: var(--white);
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
}
.contact-info h2 { color: var(--white); margin-bottom: .85rem; }
.contact-row {
  display: flex; gap: .85rem; align-items: flex-start;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.contact-row:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-row svg { flex: 0 0 20px; width: 20px; height: 20px; color: var(--gold); margin-top: 3px; }
.contact-row b {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  margin-bottom: .15rem;
}
.contact-row a, .contact-row p {
  color: rgba(255,255,255,.92);
  margin: 0;
  font-size: .95rem;
  line-height: 1.45;
}
.contact-row a:hover { color: var(--gold-2); }

.contact-form {
  background: var(--white);
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-form h2 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--navy); }
.field { margin-bottom: .9rem; }
.field label {
  display: block;
  font-family: var(--display);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .25rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: .8rem .85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  background: var(--white);
  font-size: 16px;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214,166,74,.18);
}
.field textarea { min-height: 110px; resize: vertical; }
.form-status { margin-top: .85rem; font-size: .9rem; }
.form-status.success { color: #1a7f43; }

/* ==========================================================
   ANIMATION HELPERS
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (min-width: 600px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat { border-bottom: 0; }
  .stat:last-child { border-right: 0; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .certs-row { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .hero-cta { flex-direction: row; }
  .hero-cta .btn { flex: 1; }
  .hero-cta .btn-call { flex: 1.5; }
  .final-cta-btns { display: flex; gap: .65rem; max-width: none; justify-content: center; flex-wrap: wrap; }
  .final-cta-btns .btn { width: auto; }
}

@media (min-width: 900px) {
  :root { --header-h: 72px; }
  .container { padding: 0 1.75rem; }
  .section { padding: 5rem 0; }
  .menu-toggle, .nav-call-icon { display: none; }
  .nav-links { display: flex; }
  .nav-cta {
    display: inline-flex;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--display);
    font-weight: 800;
    font-size: 1rem;
    padding: .6rem 1rem;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: .04em;
    align-items: center;
    gap: .4rem;
    min-height: 0;
    border: 0;
  }
  .nav-cta:hover { background: var(--gold-2); }
  .nav-cta svg { width: 16px; height: 16px; }
  .mobile-call-bar { display: none; }
  .site-footer { padding-bottom: 3rem; }

  .hero-inner { padding-top: 4rem; padding-bottom: 4.5rem; gap: 1.75rem; max-width: 760px; }
  .hero-sub { font-size: 1.15rem; max-width: 50ch; }
  .hero-cta { max-width: 580px; }

  .services-list { grid-template-columns: repeat(2, 1fr); gap: .85rem; }
  .service-row { padding: 1.15rem 1.25rem; }

  .process-list { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .proof-grid { grid-template-columns: 1fr 1.1fr; align-items: center; gap: 3rem; }

  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: .65rem; }

  .contact-grid { grid-template-columns: 1fr 1.4fr; gap: 2rem; }

  .page-header { padding: 4rem 0 3.5rem; }

  .testimonial-block { padding: 2.5rem 2rem; }
  .testimonial-block p { font-size: 1.55rem; }
}

@media (min-width: 1100px) {
  .process-list { grid-template-columns: repeat(4, 1fr); }
  .services-list { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
