/* FORTHRIGHT CONSTRUCTION — styles.css
   Breakpoint system (3 clean tiers):
     T1 tablet:  max-width: 1100px
     T2 phablet: max-width: 860px
     T3 mobile:  max-width: 600px
   All responsive rules consolidated at bottom.
   ─────────────────────────────────────────── */

/* ── TOKENS ── */
:root {
  --cobalt:     #1A56DB;
  --cobalt-dk:  #1440B0;
  --gold:       #C8A84B;
  --charcoal:   #1C1C1C;
  --text:       #1A1A1A;
  --text-mid:   #3A3A3A;
  --text-lt:    #666;
  --border:     #E0DDD8;
  --bg:         #F8F7F4;
  --white:      #FFFFFF;

  --font-display: 'Bebas Neue', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --nav-h:  100px;
  --max:    1380px;
  /* Single source of truth for horizontal padding —
     nav-inner and .wrap always match */
  --pad-x:  48px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-body); font-size: 19px; line-height: 1.7;
        color: var(--text); background: var(--white); overflow-x: hidden; }
a     { color: inherit; text-decoration: none; }
img   { max-width: 100%; display: block; }
ul    { list-style: none; }

/* ── TYPE SCALE ── */
h1 { font-family: var(--font-display); font-size: clamp(52px, 5.5vw, 80px);
     line-height: 1.0; color: var(--charcoal); }
h2 { font-family: var(--font-display); font-size: clamp(38px, 4.5vw, 64px);
     line-height: 1.06; color: var(--charcoal); }
h3 { font-family: var(--font-cond); font-size: 24px; font-weight: 700;
     letter-spacing: .5px; color: var(--charcoal); }
p  { color: var(--text-mid); line-height: 1.8; font-size: 19px; }

/* ── LAYOUT PRIMITIVES ── */
/* .wrap and .nav-inner share --pad-x so left edges always align */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section   { padding: 80px 0; }
.bg        { background: var(--bg); }
.bg-dk     { background: var(--charcoal); }
.bg-cobalt { background: var(--cobalt); }

/* ── EYEBROW ── */
.eyebrow {
  font-family: var(--font-cond); font-size: 17px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: var(--cobalt);
  display: block; margin-bottom: 14px;
}
.eyebrow-lt   { color: rgba(255,255,255,.5); }
.eyebrow-gold { color: var(--gold); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-cond); font-size: 15px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 16px 36px; border: 2px solid transparent;
  cursor: pointer; transition: all .2s; border-radius: 0;
}
.btn-primary       { background: var(--cobalt);  color: var(--white); border-color: var(--cobalt); }
.btn-primary:hover { background: var(--cobalt-dk); border-color: var(--cobalt-dk); }
.btn-outline       { background: transparent; color: var(--cobalt); border-color: var(--cobalt); }
.btn-outline:hover { background: var(--cobalt); color: var(--white); }
.btn-white         { background: var(--white); color: var(--cobalt); border-color: var(--white); }
.btn-white:hover   { background: transparent; color: var(--white); border-color: var(--white); }
.btn-ghost         { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-ghost:hover   { background: var(--white); color: var(--cobalt); border-color: var(--white); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: var(--nav-h); background: var(--white);
  border-bottom: 1px solid var(--border); transition: box-shadow .3s;
}
.nav.shadow { box-shadow: 0 2px 18px rgba(0,0,0,.07); }

.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--pad-x);   /* mirrors .wrap exactly */
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.logo      { display: flex; align-items: center; }
.logo-wrap { display: inline-flex; flex-direction: column; line-height: 1; }
.logo-box  { border: 3px solid var(--cobalt); padding: 10px 18px 8px;
             display: inline-block; line-height: 1; }
.logo-main { font-family: var(--font-display); font-size: 38px;
             letter-spacing: 2px; color: var(--cobalt); display: block; }
.logo-sub  { font-family: var(--font-cond); font-size: 11px; font-weight: 600;
             letter-spacing: 6px; color: var(--cobalt); text-transform: uppercase;
             display: block; margin-top: 5px; padding-left: 2px; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-family: var(--font-cond); font-size: 16px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text); transition: color .2s;
}
.nav-links a:hover    { color: var(--cobalt); }
.nav-links .cta       { background: var(--cobalt); color: var(--white) !important;
                        padding: 14px 28px; font-size: 15px; }
.nav-links .cta:hover { background: var(--cobalt-dk); }
.nav-phone a          { font-family: var(--font-cond); font-size: 15px; font-weight: 700;
                        letter-spacing: 1px; color: var(--cobalt) !important; white-space: nowrap; }
.nav-phone a:hover    { color: var(--cobalt-dk) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--charcoal); }

/* ── HERO ── */
.hero {
  margin-top: var(--nav-h);
  position: relative;
  height: 62vh; min-height: 520px; max-height: 820px;
  border-bottom: 4px solid var(--cobalt);
  overflow: hidden; background: var(--white);
}
.hero-photo {
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%; overflow: hidden;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo::before {
  display: none;
}
.hero-wrap {
  position: relative; z-index: 2;
  height: 100%; display: flex; align-items: center;
}
.hero-left-inner     { width: 44%; max-width: 480px; flex-shrink: 0; }
.hero-left-inner h1  { font-family: var(--font-body, 'Barlow', sans-serif); font-size: 18px; font-weight: 400; color: var(--text-mid); margin-bottom: 32px; line-height: 1.7; letter-spacing: normal; }
.hero-left-inner .hero-tagline { font-family: var(--font-display); font-size: clamp(52px, 5.5vw, 80px); color: var(--charcoal); margin-bottom: 12px; line-height: 1; }
.hero-left-inner p   { font-size: 18px; color: var(--text-mid); margin-bottom: 32px; line-height: 1.7; }
.hero-btns           { display: flex; gap: 12px; margin-top: 4px; }
.hero-btns .btn      { flex: 0 1 auto; text-align: center;
                       white-space: normal; line-height: 1.3; padding: 16px 24px; }

/* ── HERO STRIP ── */
.hero-strip       { background: var(--bg); border-bottom: 1px solid var(--border); }
.hero-strip-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.hero-strip-item {
  padding: 32px 24px; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 6px;
}
.hero-strip-item:last-child { border-right: none; }
.strip-n { font-family: var(--font-display); font-size: 52px; color: var(--charcoal); line-height: 1; }
.strip-l { font-family: var(--font-cond); font-size: 15px; letter-spacing: 1px;
           text-transform: uppercase; color: var(--text-mid); line-height: 1.3; }

/* ── SERVICES ── */
.svc-hd  { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.svc-card {
  padding: 36px 32px; border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background .2s; display: flex; flex-direction: column;
  background: var(--white);
}
.svc-card:hover             { background: var(--bg); }
.svc-card:nth-child(3n)     { border-right: none; }
/* Robust bottom-border removal for 3-col: any card in the last row */
.svc-card:nth-last-child(-n+3):nth-child(3n+1),
.svc-card:nth-last-child(-n+3):nth-child(3n+2),
.svc-card:nth-last-child(-n+3):nth-child(3n)   { border-bottom: none; }
.svc-bar     { width: 32px; height: 3px; background: var(--cobalt); margin-bottom: 20px; }
.svc-card h3 { margin-bottom: 10px; font-size: 22px; }
.svc-card p  { font-size: 18px; flex: 1; }
.svc-link {
  margin-top: 18px; font-family: var(--font-cond); font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--cobalt);
  display: flex; align-items: center; gap: 8px;
}
.svc-link .arr         { transition: transform .2s; }
.svc-card:hover .arr   { transform: translateX(4px); }

/* ── STATS ── */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-blk  { padding: 52px 32px; border-right: 1px solid rgba(255,255,255,.1); text-align: center; }
.stat-blk:last-child { border-right: none; }
.stat-n { font-family: var(--font-display); font-size: 54px;
          color: var(--white); line-height: 1; display: block; }
.stat-l { font-family: var(--font-cond); font-size: 11px; letter-spacing: 2.5px;
          text-transform: uppercase; color: rgba(255,255,255,.5); display: block; margin-top: 8px; }

/* ── PROJECTS (homepage) ── */
.proj-home {
  display: grid; grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr; gap: 4px; height: 560px;
}
.ph           { position: relative; overflow: hidden; background: var(--charcoal); }
.ph.tall      { grid-row: span 2; }
.ph img       { width: 100%; height: 100%; object-fit: cover;
                transition: transform .5s, filter .3s; filter: brightness(.78); }
.ph:hover img { transform: scale(1.04); filter: brightness(.55); }
.ph-info      { position: absolute; bottom: 0; left: 0; right: 0;
                padding: 28px 32px;
                background: linear-gradient(transparent, rgba(0,0,0,.72)); }
.ph-tag       { display: none; }
.ph h3        { color: var(--white); font-size: 26px; font-family: var(--font-display); letter-spacing: 1px; }
.ph.tall h3   { font-size: 34px; }

/* ── WHY GRID ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border); }
.why-item {
  padding: 44px 40px; border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border); transition: background .2s;
}
.why-item:hover                { background: var(--bg); }
.why-item:nth-child(2n)        { border-right: none; }
.why-item:nth-last-child(-n+2) { border-bottom: none; }
.why-n    { font-family: var(--font-display); font-size: 52px;
            color: var(--border); line-height: 1; margin-bottom: 8px; }
.why-item h3 { margin-bottom: 8px; }

/* ── BUILDING DIGNITY / MJ ── */
.mj-inner { display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: center; }
.mj-text h2              { color: var(--white); margin-bottom: 18px; }
.mj-text p               { color: rgba(255,255,255,.6); margin-bottom: 14px; }
.mj-text p:last-of-type  { margin-bottom: 28px; }
.mj-emblem  { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mj-diamond {
  width: 160px; height: 160px; border: 2px solid var(--gold);
  transform: rotate(45deg); display: flex; align-items: center; justify-content: center;
}
.mj-txt {
  transform: rotate(-45deg); font-family: var(--font-cond); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold); text-align: center; line-height: 2;
}

/* ── INSTANT ESTIMATE BAND ── */
.est-band {
  background: var(--cobalt-dk, #0F2260);
  padding: 80px 0; border-top: 4px solid var(--gold);
}
.est-band-inner { display: grid; grid-template-columns: 1fr 420px; gap: 72px; align-items: center; }
.est-band-text h2        { color: var(--white); margin-bottom: 16px; }
.est-band-text p         { color: rgba(255,255,255,.65); font-size: 18px;
                           line-height: 1.7; margin-bottom: 24px; max-width: 500px; }
.est-band-trust          { display: flex; flex-direction: column; gap: 8px; margin-bottom: 32px; }
.est-trust-item          { font-family: var(--font-cond); font-size: 14px; font-weight: 700;
                           letter-spacing: 1px; color: rgba(255,255,255,.55); }
.est-btn {
  display: inline-block; width: auto;
  background: var(--gold); color: var(--charcoal);
  border-color: var(--gold); font-size: 16px; padding: 18px 36px;
}
.est-btn:hover           { background: #b8983b; border-color: #b8983b; }
.est-band-preview        { display: flex; align-items: center; justify-content: center; }
.est-preview-card        {
  background: var(--cobalt, #1A44C2);
  border: 1px solid rgba(255,255,255,.12);
  padding: 32px 28px; width: 100%; max-width: 360px;
}
.est-preview-label {
  font-family: var(--font-cond); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 8px;
}
.est-preview-range { font-family: var(--font-display); font-size: 44px;
                     color: var(--white); line-height: 1; margin-bottom: 6px; }
.est-preview-sub   { font-size: 13px; color: rgba(255,255,255,.45);
                     margin-bottom: 28px; font-family: var(--font-cond); letter-spacing: .3px; }
.est-preview-steps { display: flex; flex-direction: column; gap: 6px; }
.eps {
  font-family: var(--font-cond); font-size: 13px; font-weight: 700;
  letter-spacing: .5px; padding: 8px 12px; display: flex; align-items: center; gap: 8px;
}
.eps::before      { content: ''; width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.eps.done         { color: rgba(255,255,255,.55); background: rgba(255,255,255,.04); }
.eps.done::before { background: rgba(255,255,255,.3); }
.eps.active       { color: var(--white); background: rgba(255,255,255,.08); border-left: 2px solid var(--gold); }
.eps.active::before { background: var(--gold); }

/* ── CTA BAND ── */
.cta-band  { background: var(--cobalt); padding: 68px 0; }
.cta-row   { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p  { color: rgba(255,255,255,.65); font-size: 17px; }

/* ── FOOTER ── */
.footer  { background: var(--charcoal); padding: 64px 0 28px; }
.ft-top  {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07);
}
.ft-brand .logo-box  { border-color: rgba(255,255,255,.25); }
.ft-brand .logo-main { color: var(--white); }
.ft-brand .logo-sub  { color: rgba(255,255,255,.4); }
.ft-brand p          { color: rgba(255,255,255,.5); font-size: 17px; margin-top: 18px; line-height: 1.9; }
.ft-col h4 {
  font-family: var(--font-cond); font-size: 13px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.ft-col li        { margin-bottom: 12px; }
.ft-col li a      { color: rgba(255,255,255,.55); font-family: var(--font-cond);
                    font-size: 16px; letter-spacing: .5px; transition: color .2s; }
.ft-col li a:hover { color: var(--white); }
.ft-bot {
  padding-top: 24px; display: flex; justify-content: space-between;
  font-family: var(--font-cond); font-size: 13px; letter-spacing: .5px; color: rgba(255,255,255,.3);
}

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: calc(var(--nav-h) + 52px) 0 52px;
}
.page-hero h1  { margin-bottom: 14px; }
.page-hero .sub { font-size: 22px; color: var(--text-mid); max-width: 600px; }

/* ── ABOUT ── */
.about-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.about-text h2 { margin-bottom: 18px; }
.about-text p  { margin-bottom: 14px; }
.about-img img { width: 100%; height: 520px; object-fit: cover; object-position: center top; }
.about-cap     { background: var(--cobalt); padding: 20px 26px; }
.about-cap strong { display: block; font-family: var(--font-cond); font-size: 20px;
                    letter-spacing: .5px; color: var(--white); }
.about-cap span   { font-family: var(--font-cond); font-size: 12px; letter-spacing: 2px;
                    text-transform: uppercase; color: rgba(255,255,255,.6); }
.vals-grid { display: grid; grid-template-columns: repeat(4, 1fr);
             gap: 2px; background: var(--border); border: 1px solid var(--border); }
.val       { background: var(--white); padding: 32px 28px;
             border-top: 3px solid transparent; transition: border-color .2s; }
.val:hover { border-color: var(--cobalt); }
.val h3    { color: var(--charcoal); margin-bottom: 10px; font-size: 18px; }
.val p     { font-size: 16px; }

/* ── SERVICES PAGE ── */
.roof-trio       { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-bottom: 72px; }
.roof-trio-item  { position: relative; overflow: hidden; }
.roof-trio-item img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform .4s; }
.roof-trio-item:hover img { transform: scale(1.04); }
.roof-trio-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  font-family: var(--font-cond); font-size: 16px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--white);
}
.svc-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; padding: 40px 0; border-bottom: 1px solid var(--border);
}
.svc-detail:last-child { border-bottom: none; }
.svc-detail.flip       { direction: rtl; }
.svc-detail.flip > *   { direction: ltr; }
.svc-detail-img        { overflow: hidden; height: 380px; }
.svc-detail-img img    { width: 100%; height: 100%; object-fit: cover; }
.svc-detail-text h2    { margin-bottom: 14px; }
.svc-detail-text p     { margin-bottom: 12px; }
.svc-detail-text .btn  { display: inline-block; }
.svc-caps li {
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-family: var(--font-cond); font-size: 18px; letter-spacing: .5px;
  color: var(--text-mid); display: flex; gap: 10px;
}
.svc-caps li::before { content: '—'; color: var(--cobalt); flex-shrink: 0; }
.svc-subnav {
  background: var(--white); border-bottom: 1px solid var(--border);
  position: sticky; top: var(--nav-h); z-index: 100;
  display: flex; overflow-x: auto;
}
.svc-subnav a, .svc-subnav-link {
  font-family: var(--font-cond); font-size: 16px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--text-mid);
  padding: 18px 28px; border-right: 1px solid var(--border);
  white-space: nowrap; transition: all .2s; flex-shrink: 0;
}
.svc-subnav a:hover, .svc-subnav-link:hover { color: var(--cobalt); background: var(--bg); }

/* ── SERVICE DETAIL PAGES ── */
.sp-hero {
  background: var(--charcoal); padding: 72px 0 56px;
  border-bottom: 4px solid var(--gold);
}
.sp-breadcrumb {
  font-family: var(--font-cond); font-size: 13px; letter-spacing: 1px;
  color: rgba(255,255,255,.45); margin-bottom: 16px;
}
.sp-breadcrumb a       { color: rgba(255,255,255,.45); }
.sp-breadcrumb a:hover { color: rgba(255,255,255,.8); }
.sp-hero .eyebrow { color: rgba(255,255,255,.55); }
.sp-hero h1    { color: var(--white); font-size: clamp(36px, 5vw, 72px); margin-bottom: 16px; }
.sp-sub        { color: rgba(255,255,255,.8); font-size: clamp(16px, 1.8vw, 20px);
                 max-width: 680px; line-height: 1.7; margin-bottom: 28px; }
.sp-hero-ctas  { display: flex; gap: 12px; flex-wrap: wrap; }
.sp-body       { padding: 64px 0; }
.sp-layout     { display: grid; grid-template-columns: 1fr 300px; gap: 64px; align-items: start; }
.sp-intro p    { font-size: 18px; line-height: 1.85; color: var(--text); margin-bottom: 20px; }
.sp-section-h2 {
  font-size: clamp(22px, 2.5vw, 34px); margin: 48px 0 24px;
  padding-top: 48px; border-top: 1px solid var(--border);
}
.sp-section-h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.sp-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px; margin-bottom: 32px; }
.sp-card  { padding: 24px; border: 1px solid var(--border); background: var(--bg); }
.sp-card h3 { font-family: var(--font-cond); font-size: 18px; font-weight: 700;
              letter-spacing: .5px; color: var(--charcoal); margin-bottom: 10px; }
.sp-card p  { font-size: 15px; line-height: 1.7; color: var(--text-mid); }
.sp-list    { padding-left: 0; list-style: none; margin-bottom: 24px; }
.sp-list li { padding: 10px 0 10px 20px; border-bottom: 1px solid var(--border);
              position: relative; font-size: 16px; line-height: 1.7; color: var(--text); }
.sp-list li::before { content: ''; position: absolute; left: 0; top: 18px;
                      width: 8px; height: 2px; background: var(--cobalt); }

/* Service page FAQ accordion */
.sp-faq-section { margin-top: 56px; padding-top: 48px; border-top: 1px solid var(--border); }
.sp-faq-list    { display: flex; flex-direction: column; gap: 0; }
.sp-faq-item    { border-bottom: 1px solid var(--border); }
.sp-faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 20px 0; font-family: var(--font-cond); font-size: 18px; font-weight: 700;
  letter-spacing: .3px; color: var(--charcoal); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; transition: color .2s; min-height: 44px;
}
.sp-faq-q:hover, .sp-faq-q.open { color: var(--cobalt); }
.sp-faq-icon   { font-size: 24px; font-weight: 300; flex-shrink: 0; transition: transform .25s; line-height: 1; }
.sp-faq-q.open .sp-faq-icon { transform: rotate(45deg); }
.sp-faq-a      { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.sp-faq-a.open { max-height: 600px; }
.sp-faq-a p    { padding-bottom: 20px; font-size: 16px; line-height: 1.8; color: var(--text-mid); }

/* Sidebar */
.sp-sidebar     { position: sticky; top: calc(var(--nav-h) + 24px); }
.sp-sidebar-cta { padding: 28px; background: var(--charcoal); color: var(--white); margin-bottom: 20px; }
.sp-sidebar-cta h3 { font-family: var(--font-cond); font-size: 20px; font-weight: 700;
                     letter-spacing: .5px; color: var(--white); margin-bottom: 10px; }
.sp-sidebar-cta p  { font-size: 15px; color: rgba(255,255,255,.8); margin-bottom: 20px; line-height: 1.6; }
.sp-sidebar-services,
.sp-sidebar-related { padding: 24px; border: 1px solid var(--border); margin-bottom: 20px; }
.sp-sidebar-services h4,
.sp-sidebar-related h4 {
  font-family: var(--font-cond); font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--text-mid); margin-bottom: 14px;
}
.sp-sidebar-services a,
.sp-sidebar-related a,
.sp-related-link {
  display: block; font-family: var(--font-cond); font-size: 15px; font-weight: 600;
  letter-spacing: .3px; color: var(--text); padding: 8px 0;
  border-bottom: 1px solid var(--border); transition: color .2s;
}
.sp-sidebar-services a:last-child,
.sp-sidebar-related a:last-child,
.sp-related-link:last-child { border-bottom: none; }
.sp-sidebar-services a:hover,
.sp-sidebar-related a:hover,
.sp-related-link:hover { color: var(--cobalt); }

/* ── PROJECTS PAGE ── */
.proj-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; background: var(--charcoal); }
.proj-card    { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.proj-card img { width: 100%; height: 100%; object-fit: cover;
                 transition: transform .45s, filter .3s; filter: brightness(.78); }
.proj-card:hover img { transform: scale(1.05); filter: brightness(.5); }
.proj-info    { position: absolute; bottom: 0; left: 0; right: 0;
                padding: 24px 28px; background: linear-gradient(transparent, rgba(0,0,0,.72)); }
.proj-tag     { display: none; }
.proj-card h3 { color: var(--white); font-size: 22px; font-family: var(--font-display); letter-spacing: 1px; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 64px; }
.c-left h2    { margin-bottom: 18px; padding-top: 40px; }
.c-left p     { margin-bottom: 24px; }
.c-row        { padding: 16px 0; border-bottom: 1px solid var(--border); display: flex; gap: 16px; }
.c-lbl        { font-family: var(--font-cond); font-size: 13px; letter-spacing: 3px;
                text-transform: uppercase; color: var(--cobalt); min-width: 100px; padding-top: 3px; }
.c-val        { font-size: 20px; color: var(--text); line-height: 1.5; }
.c-form       { background: var(--bg); padding: 40px; border: 1px solid var(--border); }
.frow         { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg           { margin-bottom: 20px; }
.fg label     { display: block; font-family: var(--font-cond); font-size: 13px;
                letter-spacing: 3px; text-transform: uppercase; color: var(--cobalt); margin-bottom: 10px; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 16px 18px; border: 1px solid var(--border);
  background: var(--white); font-family: var(--font-body); font-size: 18px;
  color: var(--text); outline: none; border-radius: 0; appearance: none; transition: border-color .2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--cobalt); }
.fg textarea  { height: 120px; resize: vertical; }
.f-sub        { width: 100%; font-size: 17px; padding: 18px; }
.radio-group  { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.radio-pill   { display: flex; cursor: pointer; }
.radio-pill input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-pill span {
  display: block; width: 100%; padding: 18px 24px;
  border: 2px solid var(--border); background: var(--white);
  font-family: var(--font-cond); font-size: 20px; font-weight: 700;
  letter-spacing: .5px; color: var(--text); transition: all .2s;
  user-select: none; text-align: center; min-height: 44px;
}
.radio-pill:hover span           { border-color: var(--cobalt); color: var(--cobalt); }
.radio-pill input:checked ~ span { border-color: var(--cobalt); background: var(--cobalt); color: var(--white); }
.audience-choice { display: none; }

/* ── FAQ PAGE ── */
.faq-layout        { display: grid; grid-template-columns: 280px 1fr; gap: 64px; align-items: start; }
.faq-sidebar       { position: sticky; top: calc(var(--nav-h) + 24px); }
.faq-sidebar-inner { border: 1px solid var(--border); padding: 28px; }
.faq-toc           { display: flex; flex-direction: column; gap: 4px; }
.faq-toc a {
  font-family: var(--font-cond); font-size: 14px; font-weight: 600;
  letter-spacing: .5px; color: var(--text-mid); padding: 6px 0;
  border-bottom: 1px solid var(--border); transition: color .2s; line-height: 1.4;
}
.faq-toc a:hover { color: var(--cobalt); }
.faq-item          { padding: 48px 0; border-bottom: 1px solid var(--border); }
.faq-item:first-child { padding-top: 0; }
.faq-item:last-child  { border-bottom: none; }
.faq-q   { margin-bottom: 24px; }
.faq-tag {
  font-family: var(--font-cond); font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--cobalt);
  display: inline-block; margin-bottom: 10px;
}
.faq-q h2     { font-size: clamp(20px, 2.5vw, 28px); margin-bottom: 0; line-height: 1.25; }
.faq-a p      { margin-bottom: 16px; line-height: 1.8; color: var(--text); }
.faq-a h3     { font-family: var(--font-cond); font-size: 17px; font-weight: 700;
                letter-spacing: 1px; text-transform: uppercase; color: var(--cobalt); margin: 24px 0 10px; }
.faq-a ul, .faq-a ol { padding-left: 20px; margin-bottom: 16px; }
.faq-a li     { margin-bottom: 8px; line-height: 1.7; color: var(--text); }
.faq-verdict  { background: var(--bg); border-left: 4px solid var(--cobalt);
                padding: 16px 20px; margin-top: 20px; font-size: 17px; }
.faq-compare  { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 24px 0; }
.faq-compare-col { padding: 24px; border: 1px solid var(--border); background: var(--bg); }
.faq-compare-col h3 { font-size: 17px; margin-bottom: 14px; color: var(--charcoal); }
.faq-compare-col ul { padding-left: 18px; }
.faq-compare-col li { font-size: 15px; margin-bottom: 8px; line-height: 1.6; color: var(--text-mid); }
.faq-compare-col--metal { border-top: 3px solid var(--cobalt); }
.faq-table-wrap { overflow-x: auto; margin: 20px 0; }
.faq-table      { width: 100%; border-collapse: collapse; font-size: 15px; }
.faq-table th   { background: var(--cobalt); color: var(--white); padding: 12px 16px;
                  text-align: left; font-family: var(--font-cond); font-weight: 700;
                  letter-spacing: .5px; font-size: 14px; }
.faq-table td   { padding: 12px 16px; border-bottom: 1px solid var(--border);
                  vertical-align: top; line-height: 1.5; }
.faq-table tr:nth-child(even) td { background: var(--bg); }
.color-grid     { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 20px 0; }
.color-swatch   { height: 80px; display: flex; align-items: flex-end;
                  padding: 8px; border: 1px solid rgba(0,0,0,.1); }
.color-swatch span { font-family: var(--font-cond); font-size: 12px; font-weight: 700;
                     letter-spacing: 1px; text-transform: uppercase;
                     color: rgba(255,255,255,.9); text-shadow: 0 1px 3px rgba(0,0,0,.5); }

/* ── SCROLL ANIMATIONS ── */
[data-fade]    { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
[data-fade].in { opacity: 1; transform: none; }

/* ── ACCESSIBILITY ── */
.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--cobalt); color: var(--white);
  padding: 12px 24px; font-family: var(--font-cond); font-size: 16px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; text-decoration: none;
  z-index: 9999; transition: top .2s;
}
.skip-link:focus { top: 0; }

:focus-visible { outline: 3px solid var(--cobalt); outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }
a:focus-visible, button:focus-visible,
input:focus-visible, select:focus-visible,
textarea:focus-visible, [tabindex]:focus-visible { outline: 3px solid var(--cobalt); outline-offset: 3px; }
.sp-faq-q:focus-visible                { outline: 3px solid var(--cobalt); outline-offset: 2px; }
.radio-pill input:focus-visible ~ span { outline: 3px solid var(--cobalt); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── FLOATING MOBILE CALL BAR ── */
.mobile-call-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 10px 20px; align-items: center; justify-content: center; gap: 16px;
}
.mobile-call-bar a.mcb-call {
  font-family: var(--font-cond); font-size: 15px; font-weight: 700;
  letter-spacing: .5px; color: var(--cobalt); display: flex; align-items: center; gap: 7px; min-height: 40px;
}
.mobile-call-bar .mcb-sep { color: var(--border); font-size: 18px; }
.mobile-call-bar a.mcb-est {
  font-family: var(--font-cond); font-size: 14px; font-weight: 700;
  letter-spacing: .5px; color: var(--white); background: var(--cobalt);
  padding: 8px 14px; border-radius: 6px; min-height: 40px; display: flex; align-items: center;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE  ·  ALL BREAKPOINTS CONSOLIDATED HERE
   T1  1100px  tablet landscape
   T2   860px  tablet portrait / large phone
   T3   600px  phone
   ═══════════════════════════════════════════════════════ */

/* ── T1: 1100px ── */
@media (max-width: 1100px) {
  :root { --pad-x: 32px; }   /* single token → nav + wrap stay in sync */

  .about-grid,
  .contact-grid,
  .mj-inner              { grid-template-columns: 1fr; gap: 48px; }
  .mj-emblem             { display: none; }
  .mj-inner              { grid-template-columns: 1fr; }

  .svc-grid              { grid-template-columns: 1fr 1fr; }
  /* Reset 3-col border logic, re-apply for 2-col */
  .svc-card:nth-child(3n)  { border-right: 1px solid var(--border); }
  .svc-card:nth-child(2n)  { border-right: none; }
  .svc-card:nth-last-child(-n+3):nth-child(3n+1),
  .svc-card:nth-last-child(-n+3):nth-child(3n+2),
  .svc-card:nth-last-child(-n+3):nth-child(3n) { border-bottom: 1px solid var(--border); }
  .svc-card:nth-last-child(-n+2):nth-child(2n+1),
  .svc-card:nth-last-child(-n+2):nth-child(2n)  { border-bottom: none; }

  .stats-row             { grid-template-columns: 1fr 1fr; }

  .proj-home             { grid-template-columns: 1fr; height: auto; }
  .ph.tall               { grid-row: auto; }
  .ph                    { min-height: 240px; }

  .why-grid              { grid-template-columns: 1fr; }
  .why-item:nth-child(2n) { border-right: none; }

  .ft-top                { grid-template-columns: 1fr 1fr; }
  .ft-brand              { grid-column: 1 / -1; }
  .vals-grid             { grid-template-columns: 1fr 1fr; }

  .svc-detail,
  .svc-detail.flip       { grid-template-columns: 1fr; direction: ltr; gap: 36px; }

  .est-band-inner        { grid-template-columns: 1fr; gap: 48px; }
  .est-band-preview      { justify-content: flex-start; }
  .est-preview-card      { max-width: 100%; }

  .sp-layout             { grid-template-columns: 1fr; }
  .sp-sidebar            { position: static; }

  .faq-layout            { grid-template-columns: 1fr; }
  .faq-sidebar           { position: static; display: none; }
  .faq-compare           { grid-template-columns: 1fr; }
}

/* ── T2: 860px ── */
@media (max-width: 860px) {
  :root { --nav-h: 72px; }

  /* Mobile call bar */
  .mobile-call-bar       { display: flex; }
  .footer                { padding-bottom: 72px; }
  .sp-sidebar-cta,
  .sp-body               { padding-bottom: 72px; }

  /* Nav → hamburger */
  .nav-phone             { display: none; }
  .nav-toggle            { display: flex; min-width: 44px; min-height: 44px;
                           align-items: center; justify-content: center; }
  .nav-links             {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--white); flex-direction: column;
    padding: 28px 24px; border-bottom: 1px solid var(--border);
    gap: 24px; box-shadow: 0 8px 24px rgba(0,0,0,.09);
  }
  .nav-links.open        { display: flex; }
  .nav-links a           { font-size: 15px; letter-spacing: 1.5px; padding: 4px 0; }
  .nav-links .cta        { padding: 14px 20px; font-size: 14px; text-align: center; }
  .logo-main             { font-size: 22px; }
  .logo-box              { padding: 6px 11px 5px; }

  /* Hero: stack text above photo */
  .hero                  { height: auto; max-height: none; min-height: 0; }
  .hero-photo            {
    position: relative; width: 100%;
    height: 52vw; min-height: 220px; max-height: 340px;
    top: auto; bottom: auto; left: auto; right: auto;
  }
  .hero-photo::before    { display: none; }
  .hero-wrap             { height: auto; padding: 40px var(--pad-x) 28px; }
  .hero-left-inner       { width: 100%; max-width: 100%; }
  .hero-left-inner h1    { font-size: 17px; }
  .hero-left-inner .hero-tagline { font-size: clamp(44px, 12vw, 68px); }
  .hero-left-inner p     { font-size: 17px; }
  .hero-btns             { flex-direction: row; gap: 10px; }
  .hero-btns .btn        { flex: 1; padding: 14px 12px; font-size: 13px; }

  .section               { padding: 56px 0; }

  /* Service cards → 1 col */
  .svc-grid              { grid-template-columns: 1fr; }
  .svc-card:nth-child(2n) { border-right: 1px solid var(--border); }
  .svc-card              { border-right: none; }
  .svc-card:nth-last-child(-n+2):nth-child(2n+1),
  .svc-card:nth-last-child(-n+2):nth-child(2n) { border-bottom: 1px solid var(--border); }
  .svc-card:last-child   { border-bottom: none; }
  .svc-card              { padding: 28px 24px; }
  .svc-card h3           { font-size: 20px; }
  .svc-card p            { font-size: 17px; }

  .stats-row             { grid-template-columns: 1fr 1fr; }
  .stat-blk              { padding: 36px 16px; }
  .stat-n                { font-size: 42px; }
  .stat-l                { font-size: 10px; }

  .proj-home             { display: flex; flex-direction: column; gap: 4px; }
  .ph                    { min-height: 220px; }
  .ph.tall               { min-height: 260px; }
  .ph h3                 { font-size: 24px; }
  .ph.tall h3            { font-size: 28px; }

  .why-grid              { grid-template-columns: 1fr; }
  .why-item              { padding: 32px 24px; border-right: none; border-bottom: 1px solid var(--border); }
  .why-item:last-child   { border-bottom: none; }
  .why-n                 { font-size: 40px; }

  .mj-text h2            { font-size: 36px; }

  .est-band              { padding: 56px 0; }
  .est-band-text h2      { font-size: clamp(32px, 8vw, 52px); }
  .est-band-text p       { font-size: 16px; }
  .est-btn               { width: 100%; text-align: center; padding: 18px 24px; }
  .est-preview-range     { font-size: 36px; }

  .cta-row               { flex-direction: column; text-align: center; gap: 24px; }
  .cta-band h2           { font-size: clamp(28px, 8vw, 44px); }
  .cta-band p            { font-size: 16px; }

  .ft-top                { grid-template-columns: 1fr 1fr; gap: 28px; }
  .ft-brand              { grid-column: 1 / -1; }
  .ft-col:nth-child(4) ul { columns: 2; column-gap: 16px; }
  .ft-bot                { flex-direction: column; gap: 8px; text-align: center; }

  .page-hero             { padding: calc(var(--nav-h) + 40px) 0 40px; }
  .page-hero h1          { font-size: clamp(38px, 10vw, 60px); }
  .page-hero .sub        { font-size: 17px; }

  .about-grid            { grid-template-columns: 1fr; gap: 40px; }
  .about-img img         { height: 320px; }
  .vals-grid             { grid-template-columns: 1fr; }

  .svc-subnav            { display: none; }
  .svc-detail,
  .svc-detail.flip       { grid-template-columns: 1fr; direction: ltr; gap: 28px; }
  .svc-detail-img        { height: 260px; }
  .svc-detail-text h2    { font-size: clamp(28px, 8vw, 42px); }

  .proj-grid             { grid-template-columns: 1fr 1fr; }
  .proj-card             { aspect-ratio: 16/9; }

  .contact-grid          { grid-template-columns: 1fr; gap: 48px; }
  .c-left                { order: 2; }
  .c-form                { padding: 28px 20px; order: 1; }
  .frow                  { grid-template-columns: 1fr; }
  .c-val                 { font-size: 16px; }

  .sp-hero-ctas          { flex-direction: column; }
  .sp-cards              { grid-template-columns: 1fr; }

  body                   { font-size: 17px; }
  p                      { font-size: 17px; }
  .btn                   { padding: 15px 28px; font-size: 13px; min-height: 44px; }
  .radio-pill            { min-height: 44px; }
}

/* ── T3: 600px ── */
@media (max-width: 600px) {
  :root { --pad-x: 16px; }

  .hero-strip-inner      { grid-template-columns: 1fr 1fr; }
  .hero-strip-item       { padding: 20px 16px; }
  .strip-n               { font-size: 32px; }
  .strip-l               { font-size: 11px; }

  .proj-grid             { grid-template-columns: 1fr; }
  .color-grid            { grid-template-columns: repeat(2, 1fr); }
  .faq-compare           { grid-template-columns: 1fr; }

  /* Hide estimate preview card at smallest size — CTA is enough */
  .est-band-preview      { display: none; }
}

/* ── Large screen polish (1600px+) ── */
@media (min-width: 1600px) {
  .hero                  { max-height: 900px; height: 56vh; }
  .hero-left-inner       { max-width: 600px; }
  .hero-left-inner h1    { font-size: 18px; }
  .hero-left-inner .hero-tagline { font-size: clamp(64px, 4vw, 80px); }
}

/* ── PHOTO-FIRST HERO (v2 — no text on photos) ── */
.ph-hero-photo {
  width: 100%;
  height: 620px;
  overflow: hidden;
  display: block;
}
.ph-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.ph-hero-text {
  background: var(--charcoal);
  padding: 28px 0;
}
.ph-hero-text .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.ph-hero-copy { flex: 1; min-width: 0; }
.ph-hero-text .eyebrow {
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
}
.ph-hero-text h1 {
  color: #fff;
  font-size: clamp(26px, 3.5vw, 48px);
  line-height: 1.1;
  margin-bottom: 10px;
}
.ph-hero-text .ph-sub {
  color: #CBD5E1;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 0;
}
.ph-hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  min-width: 200px;
}
.ph-hero-ctas .btn { white-space: nowrap; }

/* trust strip in cobalt */
.trust-strip {
  background: var(--cobalt);
  padding: 13px 0;
}
.trust-strip-inner {
  display: flex; gap: 28px; flex-wrap: wrap;
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
}
.trust-strip-item {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-cond);
  letter-spacing: .3px;
}

/* mid-page photo break */
.ph-break {
  margin: 48px 0;
  border-radius: 6px;
  overflow: hidden;
}
.ph-break img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.ph-break img[height="600"] {
  height: 400px;
  object-fit: cover;
}
.ph-break-caption {
  background: #F8F6F2;
  padding: 11px 16px;
  font-size: 13px;
  color: #64748B;
  font-style: italic;
}

/* why-us 3-col grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0 40px;
}
.why-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px 20px;
  text-align: center;
  background: #fff;
}
.why-card .why-icon { font-size: 28px; margin-bottom: 10px; }
.why-card h3 {
  font-family: var(--font-cond);
  font-size: 17px; font-weight: 700;
  color: var(--charcoal); margin-bottom: 8px;
}
.why-card p { font-size: 15px; color: var(--text); line-height: 1.65; }

@media (max-width: 767px) {
  .ph-hero-photo { height: 280px; }
  .ph-hero-text .wrap { flex-direction: column; align-items: flex-start; gap: 20px; }
  .ph-hero-ctas { flex-direction: row; flex-wrap: wrap; min-width: 0; }
  .why-grid { grid-template-columns: 1fr; }
  .trust-strip-inner { gap: 14px; }
  .trust-strip-item { font-size: 14px; }
  .ph-break img { height: 260px; }
}

/* white outline button for dark backgrounds */
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); color: var(--white); border-color: rgba(255,255,255,.7); }

/* ── MEGADROPDOWN NAV ── */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-arr { font-size: 10px; transition: transform .2s; display: inline-block; }

/* Desktop: panel hidden by default, shown on hover */
.nav-mega {
  display: none;
  position: absolute; top: 100%; left: -24px; padding-top: 8px;
  background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid var(--cobalt);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  padding: 28px 28px 24px;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  min-width: 480px;
  z-index: 1000;
}
.nav-dropdown:hover .nav-mega { display: grid; }
.nav-dropdown:hover .nav-arr { transform: rotate(180deg); }
.nav-mega-col { display: flex; flex-direction: column; }
.nav-mega-label {
  font-family: var(--font-cond); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--cobalt);
  margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border);
  display: block;
}
.nav-mega a {
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  color: var(--text-mid) !important; padding: 7px 0;
  transition: color .15s, padding-left .15s;
  text-transform: none; letter-spacing: 0; border: none;
}
.nav-mega a:hover { color: var(--cobalt) !important; padding-left: 5px; }
.nav-mega a.nav-sub { font-size: 14px; color: var(--text-lt) !important; padding-left: 14px; }
.nav-mega a.nav-sub:hover { color: var(--cobalt) !important; padding-left: 18px; }

/* Mobile: mega becomes inline expanded drawer */
@media (max-width: 860px) {
  .nav-mega {
    display: none;
    position: static;
    border: none; border-top: none; box-shadow: none;
    padding: 4px 0 8px 0;
    min-width: 0; width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
    background: transparent;
  }
  .nav-mega.open { display: grid; }
  .nav-mega-col { margin-bottom: 8px; }
  .nav-mega-label { font-size: 10px; letter-spacing: 3px; margin-bottom: 6px; padding-bottom: 4px; }
  .nav-mega a { font-size: 14px !important; padding: 5px 0 !important; color: var(--text-mid) !important; }
  .nav-mega a.nav-sub { padding-left: 10px !important; border-left: 2px solid var(--border); }
  .nav-dropdown-trigger .nav-arr { display: inline-block; transition: transform .2s; }
  .nav-dropdown-trigger.open .nav-arr { transform: rotate(180deg); }
}

/* ── ESTIMATE BAR (asphalt + metal pages) ── */
@media (max-width: 600px) {
  .estimate-bar { padding: 20px 24px !important; justify-content: center !important; text-align: center; }
  .estimate-bar p { font-size: 15px !important; }
  .estimate-bar a { width: 100%; text-align: center; }
}

/* ── ENGLERT COLOR CARD EMBED ── */
.color-card-embed {
  margin: 24px 0 32px;
}
.color-card-label {
  font-family: var(--font-cond); font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--text-lt);
  margin-bottom: 8px !important;
}
.color-card-note {
  font-size: 14px; color: var(--text-lt); margin-top: 8px !important;
}
.color-card-note a { color: var(--cobalt); }
@media (max-width: 860px) {
  .color-card-embed iframe { height: 360px; }
}
