/* ============================================================
   DOUBLE A PROS — Master Stylesheet
   Brand: Bold. Honest. Texan.
   ============================================================ */

/* ─── Reset + Base ─────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { overflow-x: hidden; }
img,svg,video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Brand Tokens ─────────────────────────────────────────── */
:root {
  /* Color */
  --navy: #0E1B2C;
  --navy-deep: #070E18;
  --navy-rule: #1A2940;
  --copper: #E0531F;
  --copper-deep: #B83C0F;
  --bone: #F5F0E6;
  --paper: #FAF6EE;
  --cream: #EFE6D2;
  --steel: #3B485B;
  --star: #C8102E;
  --ink: #0A0F18;
  --muted: #6b7588;

  /* Type */
  --display: 'Anton', Impact, 'Arial Narrow', sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --mono: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, Menlo, monospace;

  /* Layout */
  --max: 1280px;
  --pad: clamp(20px, 4vw, 48px);
  --radius: 4px;
  --shadow-card: 0 1px 0 rgba(14,27,44,0.06), 0 8px 24px -12px rgba(14,27,44,0.18);
  --shadow-deep: 0 40px 80px -30px rgba(7,14,24,0.5);

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

html, body {
  font-family: var(--body);
  color: var(--navy);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* When the mobile drawer is open, lock body scroll */
body.menu-open { overflow: hidden; }

/* ─── Typography ──────────────────────────────────────────── */
.display, h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: none;
}
h1 { font-size: clamp(2.5rem, 7vw, 5.75rem); }
h2 { font-size: clamp(2rem, 5vw, 3.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }

.eyebrow, .mono {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
}
.eyebrow .star { color: var(--copper); }

.lead { font-size: 1.125rem; line-height: 1.6; max-width: 60ch; color: var(--steel); }
strong { font-weight: 700; }

/* ─── Layout primitives ───────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding: clamp(44px, 6.5vw, 84px) 0; }
.section-tight { padding: clamp(32px, 4.5vw, 64px) 0; }
.hero + .section, .ticker + .section { padding-top: clamp(32px, 4.5vw, 56px); }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  font-family: var(--mono);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 2px solid var(--navy);
  background: var(--navy); color: var(--bone);
  transition: transform .25s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--copper); border-color: var(--copper); transform: translateY(-2px); box-shadow: 0 8px 0 -2px var(--navy); }
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.btn-ghost { background: transparent; color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--bone); border-color: var(--navy); }

.btn-copper { background: var(--copper); border-color: var(--copper); color: var(--navy); }
.btn-copper:hover { background: var(--navy); color: var(--bone); border-color: var(--navy); }

/* ─── Top utility bar ─────────────────────────────────────── */
.topbar {
  background: var(--navy); color: var(--bone);
  font-family: var(--mono); font-size: 0.7rem;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 8px var(--pad); max-width: var(--max); margin: 0 auto; }
.topbar a { color: var(--copper); }
.topbar .pulse { display: inline-flex; align-items: center; gap: 8px; }
.topbar .pulse::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%; background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,.7); animation: pulse 1.8s infinite;
}
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(74,222,128,.7)} 70%{box-shadow:0 0 0 8px rgba(74,222,128,0)} 100%{box-shadow:0 0 0 0 rgba(74,222,128,0)} }
.topbar-mobile-hide { display: none; }
@media (min-width: 768px) { .topbar-mobile-hide { display: inline-flex; } }

/* ─── Header / Nav ───────────────────────────────────────── */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid rgba(14,27,44,0.08);
  position: sticky; top: 0; z-index: 200;
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px var(--pad); max-width: var(--max); margin: 0 auto; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; min-width: 0; }
.brand-mark { width: 44px; height: 44px; flex-shrink: 0; }
.brand-text { font-family: var(--display); font-size: 1.5rem; line-height: 1; letter-spacing: 0.02em; }
.brand-text .a { color: var(--copper); }
.brand-tag { font-family: var(--mono); font-size: 0.55rem; letter-spacing: 0.22em; color: var(--steel); margin-top: 3px; }

.nav-links { display: none; align-items: center; gap: 28px; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links > li { position: relative; }
.nav-links a {
  font-family: var(--mono); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 8px 0; border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
.nav-links a:hover, .nav-links a.active { border-color: var(--copper); color: var(--copper); }

/* dropdown */
.has-drop > a::after { content: ' ▾'; opacity: .5; font-size: .7em; }
.drop {
  position: absolute; top: 100%; left: -16px;
  background: var(--copper); color: var(--paper);
  min-width: 280px; padding: 8px 0;
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity .2s, transform .2s;
  box-shadow: var(--shadow-deep);
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; pointer-events: auto; transform: translateY(0); }
.drop a { display: block; padding: 14px 22px; font-size: 0.72rem; border: none; color: var(--paper); }
.drop a:hover { background: var(--copper-deep); color: var(--paper); border: none; }

.nav-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-phone { display: none; font-family: var(--display); font-size: 1.25rem; letter-spacing: 0.04em; color: var(--navy); }
.nav-phone:hover { color: var(--copper); }
@media (min-width: 768px) { .nav-phone { display: block; } }
.nav-book { padding: 12px 20px; font-size: 0.72rem; }

/* mobile menu trigger */
.menu-toggle {
  display: flex; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; padding: 4px;
  align-items: center; justify-content: center;
  position: relative; z-index: 301; flex-shrink: 0;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle span { display: block; width: 22px; height: 2.5px; background: var(--navy); transition: transform .25s, opacity .25s, background .2s; }
.menu-toggle[aria-expanded="true"] span { background: var(--bone); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* mobile slide-in drawer — left side, full height */
.mobile-nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(7,14,24,0.55);
  opacity: 0; visibility: hidden;
  transition: opacity .28s var(--ease), visibility 0s linear .28s;
  z-index: 290;
}
.mobile-nav-backdrop.show {
  opacity: 1; visibility: visible;
  transition: opacity .28s var(--ease);
}
.mobile-nav {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: min(86vw, 360px);
  background: var(--navy); color: var(--bone);
  padding: 88px var(--pad) 36px;
  border-right: 2px solid var(--copper);
  transform: translateX(-100%);
  transition: transform .32s var(--ease);
  z-index: 295;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: var(--shadow-deep);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block; padding: 14px 0;
  font-family: var(--mono); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-bottom: 1px solid var(--navy-rule);
  color: var(--bone);
}
.mobile-nav a:hover, .mobile-nav a:focus { color: var(--copper); }
.mobile-nav .mobile-cta { display: flex; gap: 10px; margin-top: 24px; }
.mobile-nav .mobile-cta .btn { flex: 1; justify-content: center; padding: 14px; font-size: 0.7rem; }

/* ─── Hero — Homepage ─────────────────────────────────────── */
.hero {
  background: var(--paper);
  position: relative; overflow: hidden;
  padding: clamp(16px, 2.5vw, 36px) 0 0;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 0;
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
}
@media (min-width: 968px) { .hero-grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 24px; align-items: stretch; } }

.hero-copy { padding: 16px 0 32px; display: flex; flex-direction: column; justify-content: center; }
.hero-eyebrow { color: var(--copper); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.hero-eyebrow::before { content: '★'; }
.hero h1 { font-size: clamp(3rem, 9vw, 7.5rem); line-height: 0.86; }
.hero h1 .copper { color: var(--copper); }
.hero-sub { margin: 26px 0 32px; max-width: 540px; font-size: 1.06rem; line-height: 1.55; color: var(--steel); }
.hero-sub em { font-style: italic; color: var(--navy); font-weight: 500; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding-top: 28px; border-top: 1px solid rgba(14,27,44,0.12);
  max-width: 540px;
}
.stat-num { font-family: var(--display); font-size: clamp(1.75rem, 4vw, 2.5rem); line-height: 1; }
.stat-num .star { color: var(--copper); }
.stat-label { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--steel); margin-top: 8px; }

.hero-art {
  position: relative; background: var(--navy); color: var(--bone);
  min-height: 420px;
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 24px;
}
.hero-art::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 28px, rgba(224,83,31,.06) 28px 30px);
}
.hero-art-tag {
  position: absolute; top: 18px; left: 18px;
  background: var(--copper); color: var(--navy);
  padding: 8px 14px;
  font-family: var(--mono); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.hero-badge {
  position: absolute; bottom: 24px; right: 24px; opacity: 0.92;
}
.hero-art-text {
  position: relative;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.92;
  max-width: 60%;
}
.hero-art-text small {
  display: block; margin-top: 14px;
  font-family: var(--mono); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--copper);
}
@media (min-width: 968px) { .hero-art { min-height: 560px; } }

/* hero ticker */
.ticker {
  background: var(--navy); color: var(--bone);
  border-top: 2px solid var(--copper);
  padding: 14px 0; overflow: hidden;
  font-family: var(--mono); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  white-space: nowrap;
}
.ticker-inner { display: inline-flex; animation: marquee 40s linear infinite; }
.ticker span { padding: 0 24px; }
.ticker .dot { color: var(--copper); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── Section heading ─────────────────────────────────────── */
.section-head { display: flex; flex-direction: column; gap: 14px; margin-bottom: 56px; max-width: 880px; }
.section-head .eyebrow { color: var(--copper); display: flex; align-items: center; gap: 10px; }
.section-head .eyebrow::before { content: ''; width: 30px; height: 2px; background: var(--copper); }
.section-head p { color: var(--steel); max-width: 60ch; }

.section-dark { background: var(--navy); color: var(--bone); }
.section-dark .section-head p { color: rgba(245,240,230,0.7); }

/* ─── Services Grid ──────────────────────────────────────── */
.services-grid {
  display: grid; gap: 1px;
  background: rgba(14,27,44,0.12);
  border: 1px solid rgba(14,27,44,0.12);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--paper);
  padding: 36px 28px;
  display: flex; flex-direction: column;
  position: relative;
  transition: background .25s var(--ease), color .25s var(--ease);
  min-height: 280px;
}
.service-card:hover { background: var(--navy); color: var(--bone); }
.service-card:hover .service-num { color: var(--copper); }
/* Default state: copper accents (more striking) */
.service-num {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.2em;
  color: var(--copper);
  margin-bottom: 18px;
  font-weight: 700;
}
.service-card:hover .service-arr { background: var(--paper); color: var(--navy); border-color: var(--paper); transform: rotate(-45deg); }
.service-name {
  font-family: var(--display); font-size: clamp(1.5rem, 2.5vw, 2rem); line-height: 0.95;
  margin-bottom: 12px;
}
.service-desc {
  font-size: 0.92rem; color: var(--steel); flex-grow: 1; margin-bottom: 24px;
}
.service-card:hover .service-desc { color: rgba(245,240,230,0.75); }
.service-arr {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--copper); color: var(--navy);
  border: 1.5px solid var(--copper);
  align-self: flex-start;
  transition: all .25s var(--ease);
  font-size: 1.1rem;
  font-weight: 700;
}

/* ─── Why Us / Promises ──────────────────────────────────── */
.promise-grid {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid rgba(245,240,230,0.18);
}
@media (min-width: 768px) { .promise-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .promise-grid { grid-template-columns: repeat(4, 1fr); } }
.promise {
  padding: 40px 32px;
  border-right: 1px solid rgba(245,240,230,0.18);
  border-bottom: 1px solid rgba(245,240,230,0.18);
}
.promise:last-child { border-right: none; }
@media (max-width: 1023px) { .promise:nth-child(2n) { border-right: none; } }
.promise-num {
  font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.22em;
  color: var(--copper); margin-bottom: 20px;
}
.promise-title { font-family: var(--display); font-size: 1.6rem; line-height: 1; margin-bottom: 14px; }
.promise p { font-size: 0.92rem; line-height: 1.6; color: rgba(245,240,230,0.75); }

/* ─── Service Areas ──────────────────────────────────────── */
.areas-block { background: var(--navy); color: var(--bone); padding: 80px 0; position: relative; overflow: hidden; }
.areas-block::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 8px; background: var(--copper);
}
.areas-list {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 16px 24px;
  margin-top: 40px;
}
@media (min-width: 640px) { .areas-list { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .areas-list { grid-template-columns: repeat(4,1fr); } }
.areas-list a {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
  font-family: var(--body); font-weight: 700; font-size: 0.95rem;
  color: var(--copper);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.areas-list a::before {
  content: ''; width: 12px; height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E0531F'%3E%3Cpath d='M12 0C7 0 3 4 3 9c0 6.75 9 15 9 15s9-8.25 9-15c0-5-4-9-9-9zm0 12.5a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7z'/%3E%3C/svg%3E") no-repeat center / contain;
  flex-shrink: 0;
}
.areas-list a:hover { border-color: var(--copper); }

/* ─── Reviews ─────────────────────────────────────────────── */
.reviews-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3,1fr); } }
.review {
  background: var(--paper);
  border: 1px solid rgba(14,27,44,0.1);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative;
}
.review-stars { color: var(--copper); font-size: 1.1rem; letter-spacing: 0.1em; margin-bottom: 16px; }
.review-quote { font-size: 1.04rem; line-height: 1.55; flex-grow: 1; }
.review-quote::before { content: '"'; font-family: var(--display); font-size: 4rem; line-height: 0; color: var(--copper); opacity: 0.4; vertical-align: -0.4em; margin-right: 6px; }
.review-author {
  margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(14,27,44,0.1);
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
}
.review-author .city { color: var(--copper); }

/* ─── CTA / Banner ───────────────────────────────────────── */
.cta-band {
  background: var(--copper);
  color: var(--navy);
  padding: 72px var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 60%;
  background-image: repeating-linear-gradient(45deg, transparent 0 28px, rgba(14,27,44,0.07) 28px 30px);
  pointer-events: none;
}
.cta-band::before { left: -30%; }
.cta-band::after { right: -30%; }
.cta-band-inner { position: relative; max-width: 800px; margin: 0 auto; }
.cta-band h2 { color: var(--navy); margin-bottom: 16px; }
.cta-band p { font-size: 1.1rem; margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .btn { background: var(--navy); border-color: var(--navy); color: var(--bone); }
.cta-band .btn:hover { background: var(--paper); border-color: var(--paper); color: var(--navy); }

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer { background: var(--navy-deep); color: var(--bone); padding: 72px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 36px; margin-bottom: 56px;
}
/* On phones, brand spans full-width on top, the three link cols sit side-by-side underneath. */
@media (min-width: 360px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 16px; }
  .footer-col:first-child { grid-column: 1 / -1; }
  .footer-col h4 { font-size: 0.62rem; letter-spacing: 0.14em; margin-bottom: 14px; }
  .footer-col a { font-size: 0.82rem; }
  .footer-col ul li { margin-bottom: 7px; }
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
  .footer-col:first-child { grid-column: auto; }
}
.footer-col h4 { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--copper); margin-bottom: 18px; font-weight: 700; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col a { font-size: 0.88rem; color: rgba(245,240,230,0.78); transition: color .2s; }
.footer-col a:hover { color: var(--copper); }
.footer-brand-text { font-family: var(--display); font-size: 1.75rem; line-height: 1; margin-bottom: 12px; }
.footer-brand-text .a { color: var(--copper); }
.footer-blurb { color: rgba(245,240,230,0.78); font-size: 0.92rem; line-height: 1.6; margin-bottom: 18px; max-width: 320px; }
.footer-phone { font-family: var(--display); font-size: 1.5rem; color: var(--copper); }
.footer-bottom {
  border-top: 1px solid var(--navy-rule);
  padding-top: 24px;
  display: flex; flex-direction: column; gap: 10px;
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,240,230,0.62);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom a { color: rgba(245,240,230,0.78); }
.footer-bottom a:hover { color: var(--copper); }

/* ─── Page Hero (interior pages) ───────────────────────── */
.page-hero {
  background: var(--navy); color: var(--bone);
  padding: clamp(60px, 9vw, 110px) 0 clamp(56px, 7vw, 90px);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 28px, rgba(224,83,31,.05) 28px 30px);
}
.page-hero-inner { position: relative; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.crumb {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(245,240,230,0.7); margin-bottom: 20px;
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.crumb a { color: var(--copper); }
.crumb a:hover { color: var(--bone); }
.crumb .sep { opacity: 0.5; }
.page-hero h1 { color: var(--bone); max-width: 14ch; }
.page-hero h1 .copper { color: var(--copper); }
.page-hero-sub { margin-top: 24px; max-width: 60ch; color: rgba(245,240,230,0.85); font-size: 1.1rem; }

/* ─── Service Detail Pages ──────────────────────────────── */
.service-layout {
  display: grid; grid-template-columns: 1fr; gap: 48px;
}
@media (min-width: 968px) { .service-layout { grid-template-columns: minmax(0,1.6fr) minmax(0,1fr); gap: 64px; } }

.prose { max-width: 70ch; }
.prose h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin: 48px 0 18px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); margin: 32px 0 12px; }
.prose p { margin-bottom: 18px; line-height: 1.7; color: var(--steel); }
.prose ul, .prose ol { margin: 18px 0 24px 1.2em; }
.prose ul li, .prose ol li { margin-bottom: 10px; line-height: 1.65; color: var(--steel); }
.prose ul li::marker { color: var(--copper); }
.prose a { color: var(--copper); border-bottom: 1px solid currentColor; font-weight: 600; }
.prose a:hover { color: var(--copper-deep); }
.prose strong { color: var(--navy); font-weight: 700; }

.callout {
  border-left: 4px solid var(--copper);
  padding: 18px 22px;
  background: var(--bone);
  margin: 28px 0;
}
.callout .label { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--copper); margin-bottom: 6px; }

/* sidebar */
.sidebar {
  position: sticky; top: 100px;
  align-self: start;
  display: flex; flex-direction: column; gap: 24px;
}
.sidebar-card {
  background: var(--navy); color: var(--bone);
  padding: 32px 28px;
}
.sidebar-card h3 { font-family: var(--display); font-size: 1.6rem; margin-bottom: 14px; color: var(--bone); }
.sidebar-card .label { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--copper); margin-bottom: 12px; }
.sidebar-card p { font-size: 0.94rem; color: rgba(245,240,230,0.85); margin-bottom: 18px; }
.sidebar-card .btn { width: 100%; justify-content: center; background: var(--copper); border-color: var(--copper); color: var(--navy); }
.sidebar-card .btn:hover { background: var(--bone); border-color: var(--bone); color: var(--navy); }
.sidebar-phone {
  text-align: center;
  display: block;
  font-family: var(--display); font-size: 1.85rem; color: var(--copper);
  padding: 18px 0;
  border-top: 1px solid rgba(245,240,230,0.18);
  border-bottom: 1px solid rgba(245,240,230,0.18);
  margin: 18px 0;
}

.sidebar-list { background: var(--bone); padding: 28px; }
.sidebar-list h4 { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--copper); margin-bottom: 16px; }
.sidebar-list ul li { padding: 10px 0; border-bottom: 1px solid rgba(14,27,44,0.08); }
.sidebar-list ul li:last-child { border: none; }
.sidebar-list a { font-weight: 600; color: var(--navy); }
.sidebar-list a:hover { color: var(--copper); }

/* feature blocks inside service pages */
.feature-blocks { display: grid; gap: 1px; background: rgba(14,27,44,0.1); border: 1px solid rgba(14,27,44,0.1); margin: 32px 0; }
@media (min-width: 640px) { .feature-blocks { grid-template-columns: repeat(2, 1fr); } }
.fb { background: var(--paper); padding: 26px; }
.fb-num { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.22em; color: var(--copper); margin-bottom: 8px; }
.fb h4 { font-family: var(--display); font-size: 1.4rem; margin-bottom: 8px; }
.fb p { font-size: 0.92rem; color: var(--steel); line-height: 1.55; margin: 0; }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: 0; border-top: 1px solid rgba(14,27,44,0.12); }
.faq details { border-bottom: 1px solid rgba(14,27,44,0.12); }
.faq summary {
  list-style: none; padding: 24px 0; cursor: pointer;
  font-family: var(--display); font-size: 1.2rem; line-height: 1.2;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--display); font-size: 1.6rem; color: var(--copper); transition: transform .25s; flex-shrink: 0; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--copper); }
.faq details > div { padding: 0 0 24px; color: var(--steel); line-height: 1.6; max-width: 70ch; }

/* ─── Forms ─────────────────────────────────────────────── */
.form-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid.cols-2 { grid-template-columns: repeat(2,1fr); } }
.field label {
  display: block;
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--steel); margin-bottom: 8px; font-weight: 700;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px;
  font: inherit; color: var(--navy);
  background: var(--bone);
  border: 1.5px solid transparent;
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--copper);
}
.field textarea { resize: vertical; min-height: 140px; }

/* ─── Blog ─────────────────────────────────────────────── */
.blog-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3,1fr); } }
.post-card {
  background: var(--paper);
  border: 1px solid rgba(14,27,44,0.1);
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.post-img {
  aspect-ratio: 16 / 10; background: var(--navy);
  background-image: repeating-linear-gradient(45deg, transparent 0 24px, rgba(224,83,31,.08) 24px 26px);
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 16px;
}
.post-cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--copper); color: var(--navy);
  padding: 6px 12px;
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
}
.post-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.post-meta {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--steel);
  margin-bottom: 12px;
}
.post-title {
  font-family: var(--display); font-size: 1.5rem; line-height: 1.05; margin-bottom: 10px;
  flex-grow: 1;
}
.post-card a:hover .post-title { color: var(--copper); }
.post-excerpt { font-size: 0.92rem; color: var(--steel); line-height: 1.55; }

/* article page */
.article {
  max-width: 760px; margin: 0 auto; padding: 0 var(--pad);
}
.article-meta {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--copper);
  margin-bottom: 16px;
}
.article h1 { margin-bottom: 24px; }
.article-lede { font-size: 1.2rem; line-height: 1.55; color: var(--steel); margin-bottom: 36px; padding-bottom: 28px; border-bottom: 1px solid rgba(14,27,44,0.1); max-width: 60ch; }

/* ─── Stats Bar ─────────────────────────────────────────── */
.stats-bar {
  background: var(--bone);
  border-top: 1px solid rgba(14,27,44,0.08);
  border-bottom: 1px solid rgba(14,27,44,0.08);
  padding: 36px 0;
}
.stats-bar-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 24px;
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
}
@media (min-width: 768px) { .stats-bar-grid { grid-template-columns: repeat(4,1fr); } }
.sb-stat { text-align: left; }
.sb-stat .num { font-family: var(--display); font-size: clamp(1.75rem, 4vw, 2.6rem); line-height: 1; }
.sb-stat .num .copper { color: var(--copper); }
.sb-stat .lbl { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--steel); margin-top: 8px; }

/* ─── Trust strip ───────────────────────────────────────── */
.trust {
  background: var(--paper);
  padding: 28px 0;
  border-top: 1px solid rgba(14,27,44,0.08);
}
.trust-grid {
  display: flex; flex-wrap: wrap; gap: 22px 40px;
  justify-content: center; align-items: center;
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
}
.trust-item {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
  color: var(--steel);
  display: flex; align-items: center; gap: 10px;
}
.trust-item::before {
  content: '✓'; color: var(--copper); font-weight: 700;
  background: var(--navy); width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; font-size: 0.7rem;
  flex-shrink: 0;
}
/* On phones, stack the trust items vertically as a centered column with text left-aligned */
@media (max-width: 767px) {
  .trust-grid {
    flex-direction: column;
    align-items: flex-start;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    gap: 14px;
  }
  .trust-item { font-size: 0.68rem; }
}

/* ─── Misc ──────────────────────────────────────────────── */
.center { text-align: center; }
.tac { text-align: center; }
.tar { text-align: right; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ─── Footer social ─────────────────────────────────────── */
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--copper);
  border: 2px solid var(--copper);
  color: var(--navy);
  transition: all .2s var(--ease);
}
.footer-social a:hover { background: var(--bone); border-color: var(--bone); color: var(--navy); transform: translateY(-2px); }

/* ─── Blog article cover image ──────────────────────────── */
.article-cover-wrap { max-width: 980px; margin: -40px auto 0; padding: 0 var(--pad); position: relative; z-index: 2; }
.article-cover {
  width: 100%; height: auto; max-height: 460px; object-fit: cover;
  border: 1px solid rgba(14,27,44,0.1);
  box-shadow: var(--shadow-deep);
  display: block;
}
@media (max-width: 640px){ .article-cover-wrap { margin-top: -24px; } .article-cover { max-height: 280px; } }

/* ─── Service-areas hero photo (Dallas skyline, faded right) ── */
.page-hero-photo { position: relative; overflow: hidden; }
.page-hero-photo .hero-photo {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 62%;
  background-size: cover; background-position: center right;
  opacity: 0.6;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 45%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 45%, #000 100%);
  z-index: 1;
}
.page-hero-photo .page-hero-inner { position: relative; z-index: 3; }
.page-hero-photo::before { z-index: 2; }
@media (max-width: 768px) {
  .page-hero-photo .hero-photo { width: 100%; opacity: 0.28;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 100%); }
}

/* ─── Service hero product render (transparent, floats on navy) ── */
.page-hero-photo .hero-photo.product {
  width: 46%;
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0.92;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 35%, #000 80%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 35%, #000 80%);
}
@media (max-width: 768px) {
  .page-hero-photo .hero-photo.product { width: 100%; opacity: 0.18; background-position: center; }
}

/* ─── Back-to-top button (site-wide, injected by main.js) ─── */
.back-to-top {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: var(--bone);
  border: 2px solid var(--copper);
  border-radius: 50%;
  box-shadow: 0 8px 24px -8px rgba(7,14,24,0.45);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .24s var(--ease), transform .24s var(--ease), background .2s var(--ease), color .2s var(--ease);
  z-index: 90;
  cursor: pointer;
}
.back-to-top:hover { background: var(--copper); color: var(--navy); }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 22px; height: 22px; }
@media (max-width: 480px) {
  .back-to-top { width: 44px; height: 44px; }
}

/* ─── Mobile responsive fixes ───────────────────────────── */
/* Tighter brand block on small screens */
@media (max-width: 640px) {
  .nav { padding: 12px var(--pad); gap: 10px; }
  .brand { gap: 10px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-text { font-size: 1.15rem; letter-spacing: 0.01em; }
  .brand-tag { font-size: 0.46rem; letter-spacing: 0.16em; }
  .nav-book { padding: 9px 12px; font-size: 0.62rem; letter-spacing: 0.12em; }
  .nav-book .arr { display: none; }
  .nav-cta { gap: 8px; }
}
@media (max-width: 400px) {
  .brand-tag { display: none; }
  .nav-book { padding: 8px 10px; font-size: 0.58rem; }
}

/* Topbar spacing on very small phones */
@media (max-width: 480px) {
  .topbar { font-size: 0.6rem; letter-spacing: 0.12em; }
  .topbar-inner { padding: 6px var(--pad); gap: 8px; }
}

/* Hero copy on phones */
@media (max-width: 640px) {
  .hero h1 { font-size: clamp(2.2rem, 11vw, 3.4rem); line-height: 0.92; }
  .hero-copy { padding: 12px 0 24px; }
  .hero-sub { margin: 18px 0 22px; font-size: 1rem; }
  .hero-ctas { gap: 10px; margin-bottom: 24px; }
  .hero-ctas .btn { padding: 14px 18px; font-size: 0.72rem; flex: 1; justify-content: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 18px; padding-top: 22px; }
  .hero-stats .stat:nth-child(3) { grid-column: 1 / -1; }
  .hero-art { min-height: 320px; padding: 18px; }
  .hero-art-text { font-size: clamp(1.5rem, 7vw, 2rem); max