/* =====================================================================
   DRC Homes — residential renovation & construction
   Brand: navy #111C3C · orange #F89925 · sky #1CB4E7 · warm cream
   Warmer / lighter sibling to DunRite's industrial dark site.
   ===================================================================== */

:root{
  /* brand */
  --navy:       #111c3c;
  --navy-2:     #0c1530;
  --navy-soft:  #1b2950;
  --orange:     #f89925;
  --orange-deep:#e07d0c;
  --on-orange:  #1a1205;
  --sky:        #1cb4e7;
  --sky-deep:   #0e8fc2;

  /* warm neutrals */
  --cream:      #f7f3ec;
  --cream-2:    #efe9df;
  --paper:      #ffffff;
  --ink:        #16203a;        /* primary text on light */
  --steel:      #4a5468;        /* secondary text on light */
  --steel-2:    #5d6678;
  --muted:      #8a93a4;
  --line:       rgba(17,28,60,.12);
  --line-2:     rgba(17,28,60,.08);
  --on-navy:    #e8ecf6;
  --on-navy-dim:#9fa9c4;
  --line-navy:  rgba(255,255,255,.12);

  --radius: 14px;
  --radius-lg: 22px;
  --gutter: clamp(22px, 5vw, 84px);
  --maxw: 1320px;

  --display: "Sora", system-ui, sans-serif;
  --body: "Mulish", system-ui, sans-serif;
  --mono: "Spline Sans Mono", ui-monospace, monospace;

  --shadow-sm: 0 4px 18px rgba(17,28,60,.08);
  --shadow:    0 22px 50px rgba(17,28,60,.16);
  --shadow-lg: 0 40px 90px rgba(12,21,48,.30);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body{
  margin:0; background: var(--cream); color: var(--ink);
  font-family: var(--body); font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }
::selection{ background: var(--orange); color: var(--on-orange); }

.wrap{ width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- type ---------- */
h1,h2,h3,h4{ font-family: var(--display); font-weight: 800; line-height: 1.02; letter-spacing: -.02em; margin: 0; color: var(--ink); }
.display{ font-size: clamp(40px, 6.4vw, 92px); line-height: .98; }
.h-lg{ font-size: clamp(32px, 4.4vw, 62px); }
.h-md{ font-size: clamp(26px, 3vw, 42px); }
p{ margin: 0; text-wrap: pretty; }

.eyebrow{
  font-family: var(--mono); font-size: 13px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--orange-deep);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before{ content:""; width: 30px; height: 2px; background: var(--orange); }
.eyebrow.on-dark{ color: var(--orange); }
.eyebrow.center::after{ content:""; width: 30px; height: 2px; background: var(--orange); }
.eyebrow.center{ justify-content: center; }

.lead{ font-size: clamp(17px, 1.5vw, 20px); color: var(--steel); line-height: 1.65; }
.on-navy .lead{ color: var(--on-navy-dim); }

em.hl{ font-style: normal; color: var(--orange); }

/* ---------- buttons ---------- */
.btn{
  --bg: var(--orange); --fg: var(--on-orange);
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--display); font-weight: 700; font-size: 15px;
  letter-spacing: .01em; padding: 16px 26px; border-radius: 12px;
  background: var(--bg); color: var(--fg); border: 1.6px solid var(--bg);
  cursor: pointer; transition: transform .15s ease, background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
  white-space: nowrap;
}
.btn .arr{ transition: transform .2s ease; }
.btn:hover{ transform: translateY(-2px); box-shadow: 0 14px 30px rgba(248,153,37,.32); }
.btn:hover .arr{ transform: translateX(5px); }
.btn:active{ transform: translateY(0); }
.btn-orange{ --bg: var(--orange); --fg: var(--on-orange); }
.btn-orange:hover{ background: var(--orange-deep); border-color: var(--orange-deep); }
.btn-navy{ --bg: var(--navy); --fg:#fff; }
.btn-navy:hover{ background: var(--navy-soft); border-color: var(--navy-soft); box-shadow: 0 14px 30px rgba(17,28,60,.28); }
.btn-ghost{ background: transparent; --fg: var(--ink); border-color: var(--line); }
.btn-ghost:hover{ border-color: var(--navy); box-shadow: none; }
.btn-ghost.on-dark{ --fg:#fff; border-color: var(--line-navy); }
.btn-ghost.on-dark:hover{ border-color: var(--sky); color: var(--sky); }
.btn-lg{ padding: 19px 34px; font-size: 16px; }

/* ---------- utility top bar ---------- */
.utility{ background: var(--navy-2); color: var(--on-navy-dim); font-size: 13.5px; }
.utility .wrap{ display: flex; align-items: center; gap: 24px; min-height: 46px; }
.utility a{ display: inline-flex; align-items: center; gap: 8px; color: var(--on-navy-dim); transition: color .2s; }
.utility a:hover{ color: #fff; }
.utility svg{ width: 15px; height: 15px; }
.utility .sep{ flex: 1; }
.utility .cross{ color: var(--sky); font-weight: 600; }
.utility .cross:hover{ color: #6fd2f5; }
.utility .hours{ color: var(--on-navy-dim); }
@media (max-width: 980px){ .utility .u-hide{ display: none; } }

/* ---------- header ---------- */
.site-header{ position: sticky; top: 0; z-index: 60; background: var(--navy); border-bottom: 1px solid var(--line-navy); }
.site-header .wrap{ display: flex; align-items: center; gap: 26px; min-height: 84px; }
.brand{ display: inline-flex; align-items: center; }
.brand img{ height: 52px; width: auto; }
.nav{ display: flex; align-items: center; gap: 30px; margin-left: 18px; }
.nav a{ font-family: var(--display); font-weight: 600; font-size: 15.5px; color: var(--on-navy); position: relative; padding: 6px 0; }
.nav a::after{ content:""; position: absolute; left: 0; bottom: -3px; height: 2px; width: 0; background: var(--orange); transition: width .22s ease; }
.nav a:hover::after, .nav a.current::after{ width: 100%; }
.nav a.current{ color: var(--orange); }
.header-sp{ flex: 1; }
.header-cta{ display: flex; align-items: center; gap: 18px; }
.header-cta .phone{ font-family: var(--display); font-weight: 700; color: #fff; }
.burger{ display: none; width: 46px; height: 46px; border: 1px solid var(--line-navy); border-radius: 10px; background: transparent; cursor: pointer; position: relative; }
.burger span, .burger span::before, .burger span::after{ content:""; position: absolute; left: 12px; width: 22px; height: 2px; background: #fff; transition: .2s; }
.burger span{ top: 22px; } .burger span::before{ top: -7px; } .burger span::after{ top: 7px; }
@media (max-width: 1040px){
  .nav, .header-cta .phone{ display: none; }
  .burger{ display: inline-block; }
}

/* mobile drawer */
.drawer{ position: fixed; inset: 0; z-index: 200; background: var(--navy); transform: translateX(100%); transition: transform .35s cubic-bezier(.6,.05,.2,1); padding: 26px var(--gutter); display: flex; flex-direction: column; }
.drawer.open{ transform: none; }
.drawer .d-top{ display: flex; align-items: center; justify-content: space-between; }
.drawer .d-top img{ height: 48px; }
.drawer .close{ width: 46px; height: 46px; border: 1px solid var(--line-navy); border-radius: 10px; background: transparent; color: #fff; font-size: 26px; cursor: pointer; }
.drawer nav{ display: flex; flex-direction: column; gap: 4px; margin-top: 40px; }
.drawer nav a{ font-family: var(--display); font-weight: 700; font-size: 28px; color: #fff; padding: 14px 0; border-bottom: 1px solid var(--line-navy); }
.drawer nav a:hover{ color: var(--orange); }
.drawer .d-cta{ margin-top: auto; display: flex; flex-direction: column; gap: 12px; }

/* ---------- hero ---------- */
.hero{ position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.hero .hero-media{ position: absolute; inset: 0; }
.hero .hero-media img{ width: 100%; height: 100%; object-fit: cover; }
.hero .hero-media::after{ content:""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,21,48,.62) 0%, rgba(12,21,48,.42) 40%, rgba(12,21,48,.86) 100%); }
.hero .hero-inner{ position: relative; padding: clamp(70px, 11vw, 150px) 0 clamp(70px, 9vw, 120px); }
.hero h1{ color: #fff; max-width: 16ch; }
.hero h1 .hl{ color: var(--orange); display: inline-block; }
.hero .lead{ color: #d6dcec; max-width: 56ch; margin-top: 24px; }
.hero .hero-cta{ display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero .hero-badges{ display: flex; flex-wrap: wrap; gap: 26px; margin-top: 46px; padding-top: 30px; border-top: 1px solid var(--line-navy); }
.hero .hb{ display: flex; align-items: center; gap: 11px; font-size: 14.5px; color: #d6dcec; font-weight: 600; }
.hero .hb svg{ width: 22px; height: 22px; color: var(--sky); flex: none; }

/* floating stat card */
.hero-stat{ position: absolute; right: var(--gutter); bottom: clamp(40px,7vw,84px); background: var(--orange); color: var(--on-orange); padding: 24px 30px; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.hero-stat .n{ font-family: var(--display); font-weight: 800; font-size: 52px; line-height: 1; }
.hero-stat .l{ font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; margin-top: 6px; font-weight: 600; }
@media (max-width: 760px){ .hero-stat{ display: none; } }

/* ---------- sections ---------- */
.sec{ padding: clamp(64px, 9vw, 130px) 0; }
.sec.navy{ background: var(--navy); color: #fff; }
.sec.navy h2, .sec.navy h3{ color: #fff; }
.sec.cream{ background: var(--cream); }
.sec.paper{ background: var(--paper); }
.sec-head{ max-width: 760px; }
.sec-head.center{ margin: 0 auto; text-align: center; }
.sec-head h2{ margin-top: 16px; }
.sec-head .lead{ margin-top: 18px; }

/* trust strip */
.trust{ background: var(--navy-2); }
.trust .wrap{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; padding-top: clamp(48px,6vw,72px); padding-bottom: clamp(48px,6vw,72px); }
.trust .t{ display: flex; align-items: center; gap: 14px; color: #fff; }
.trust .t svg{ width: 30px; height: 30px; color: var(--orange); flex: none; }
.trust .t b{ font-family: var(--display); font-size: 16px; display: block; }
.trust .t span{ font-size: 13.5px; color: var(--on-navy-dim); }
@media (max-width: 900px){ .trust .wrap{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .trust .wrap{ grid-template-columns: 1fr; } }

/* ---------- about split ---------- */
.split{ display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.split.flip > :first-child{ order: 2; }
@media (max-width: 900px){ .split{ grid-template-columns: 1fr; } .split.flip > :first-child{ order: 0; } }
.figure{ position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.figure img{ width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.4; }
.figure .tag{ position: absolute; left: 22px; bottom: 22px; background: var(--paper); color: var(--ink); padding: 14px 18px; border-radius: 12px; box-shadow: var(--shadow-sm); }
.figure .tag b{ font-family: var(--display); font-size: 26px; display: block; line-height: 1; color: var(--orange-deep); }
.figure .tag span{ font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--steel); }

.feature-list{ display: grid; gap: 16px; margin-top: 30px; }
.feature-list .fi{ display: flex; gap: 14px; align-items: flex-start; }
.feature-list .fi .ic{ width: 42px; height: 42px; border-radius: 11px; background: var(--cream-2); display: grid; place-items: center; flex: none; }
.sec.navy .feature-list .fi .ic{ background: var(--navy-soft); }
.feature-list .fi svg{ width: 21px; height: 21px; color: var(--orange); }
.feature-list .fi h4{ font-size: 17px; font-weight: 700; margin-bottom: 3px; }
.feature-list .fi p{ font-size: 15px; color: var(--steel); }
.sec.navy .feature-list .fi p{ color: var(--on-navy-dim); }

.mv-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 32px; }
@media (max-width: 620px){ .mv-row{ grid-template-columns: 1fr; } }
.mv{ border-left: 3px solid var(--orange); padding: 4px 0 6px 18px; }
.mv h4{ font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--orange-deep); margin-bottom: 8px; }
.mv p{ font-size: 15.5px; color: var(--steel); }
.sec.navy .mv p{ color: var(--on-navy-dim); }

/* ---------- stats band ---------- */
.statband{ display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px,4vw,48px); }
.statband .s{ text-align: center; }
.statband .s .n{ font-family: var(--display); font-weight: 800; font-size: clamp(44px, 6vw, 78px); line-height: 1; color: var(--orange); letter-spacing: -.02em; }
.statband .s .l{ font-family: var(--mono); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--on-navy-dim); margin-top: 12px; }
@media (max-width: 700px){ .statband{ grid-template-columns: 1fr; gap: 36px; } }

/* ---------- services grid ---------- */
.svc-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 960px){ .svc-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .svc-grid{ grid-template-columns: 1fr; } }
.svc{ background: var(--paper); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; display: flex; flex-direction: column; }
.svc:hover{ transform: translateY(-6px); box-shadow: var(--shadow); }
.svc .svc-img{ position: relative; aspect-ratio: 16/10; overflow: hidden; }
.svc .svc-img img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc:hover .svc-img img{ transform: scale(1.06); }
.svc .svc-img .num{ position: absolute; top: 14px; left: 14px; font-family: var(--mono); font-size: 12px; letter-spacing: .1em; background: rgba(12,21,48,.78); color: #fff; padding: 6px 11px; border-radius: 8px; }
.svc .svc-body{ padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.svc h3{ font-size: 22px; }
.svc p{ font-size: 15px; color: var(--steel); margin-top: 11px; }
.svc .more{ margin-top: auto; padding-top: 20px; font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--navy); display: inline-flex; align-items: center; gap: 8px; }
.svc .more .arr{ color: var(--orange); transition: transform .2s; }
.svc:hover .more .arr{ transform: translateX(5px); }

/* ---------- process steps ---------- */
.steps{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
@media (max-width: 900px){ .steps{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px){ .steps{ grid-template-columns: 1fr; } }
.step{ padding-top: 24px; border-top: 2px solid var(--orange); }
.step .pn{ font-family: var(--display); font-weight: 800; font-size: 46px; line-height: 1; color: var(--navy); opacity: .18; }
.sec.navy .step .pn{ color: #fff; opacity: .22; }
.step h4{ font-size: 19px; margin: 14px 0 9px; }
.step p{ font-size: 15px; color: var(--steel); }
.sec.navy .step p{ color: var(--on-navy-dim); }

/* ---------- gallery / projects ---------- */
.gallery{ display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px; }
@media (max-width: 900px){ .gallery{ grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; } }
@media (max-width: 560px){ .gallery{ grid-template-columns: 1fr; } }
.tile{ position: relative; border-radius: var(--radius); overflow: hidden; background: var(--cream-2); cursor: pointer; }
.tile img{ width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.tile:hover img{ transform: scale(1.07); }
.tile .meta{ position: absolute; inset: auto 0 0 0; padding: 18px; background: linear-gradient(0deg, rgba(12,21,48,.9), transparent); color: #fff; transform: translateY(8px); opacity: 0; transition: .3s ease; }
.tile:hover .meta{ transform: none; opacity: 1; }
.tile .meta b{ font-family: var(--display); font-size: 17px; display: block; }
.tile .meta span{ font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); }
.tile.big{ grid-column: span 2; grid-row: span 2; }
.tile.wide{ grid-column: span 2; }
@media (max-width: 560px){ .tile.big, .tile.wide{ grid-column: span 1; grid-row: span 1; } }

/* filters */
.filters{ display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filters button{ font-family: var(--mono); font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; padding: 10px 18px; border-radius: 999px; border: 1.5px solid var(--line); background: transparent; color: var(--steel); cursor: pointer; transition: .2s; }
.filters button:hover{ border-color: var(--navy); color: var(--navy); }
.filters button.active{ background: var(--navy); color: #fff; border-color: var(--navy); }

/* ---------- testimonials ---------- */
.testi-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px){ .testi-grid{ grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; } }
.tcard{ background: var(--paper); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.tcard .stars{ color: var(--orange); letter-spacing: 3px; font-size: 17px; }
.tcard blockquote{ margin: 16px 0 0; font-size: 18px; line-height: 1.5; color: var(--ink); font-weight: 500; }
.tcard .by{ margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--steel); }
.tcard .by b{ color: var(--navy); font-family: var(--display); display: block; font-size: 14px; letter-spacing: 0; text-transform: none; }

/* ---------- areas served ---------- */
.area-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 820px){ .area-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .area-grid{ grid-template-columns: 1fr; } }
.area{ background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: .22s; display: block; }
.area:hover{ border-color: var(--orange); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.area h3{ font-size: 21px; display: flex; align-items: center; gap: 10px; }
.area h3 svg{ width: 20px; height: 20px; color: var(--orange); }
.area p{ font-size: 14.5px; color: var(--steel); margin-top: 8px; }
.area .go{ margin-top: 16px; font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); font-weight: 600; }

/* chips */
.chips{ display: flex; flex-wrap: wrap; gap: 9px; }
.chips span{ font-family: var(--mono); font-size: 12px; letter-spacing: .05em; padding: 8px 14px; border: 1px solid var(--line-navy); border-radius: 999px; color: var(--on-navy-dim); }
.sec.cream .chips span, .sec.paper .chips span{ border-color: var(--line); color: var(--steel); }

/* ---------- CTA band ---------- */
.cta-band{ background: var(--orange); color: var(--on-orange); position: relative; overflow: hidden; }
.cta-band .wrap{ display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; padding: clamp(56px,7vw,96px) var(--gutter); }
.cta-band h2{ color: var(--on-orange); font-size: clamp(30px,4vw,58px); max-width: 18ch; }
.cta-band p{ margin-top: 12px; color: #5a3f12; font-weight: 600; }
.cta-band .cta-actions{ display: flex; flex-direction: column; gap: 13px; }
.cta-band .watermark{ position: absolute; right: -2%; top: 50%; transform: translateY(-50%); font-family: var(--display); font-weight: 800; font-size: clamp(160px, 22vw, 320px); color: rgba(26,18,5,.07); line-height: 1; pointer-events: none; white-space: nowrap; }
@media (max-width: 820px){ .cta-band .wrap{ grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.site-footer{ background: var(--navy-2); color: var(--on-navy-dim); padding-top: clamp(56px,7vw,86px); }
.site-footer .foot-grid{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
@media (max-width: 900px){ .site-footer .foot-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .site-footer .foot-grid{ grid-template-columns: 1fr; } }
.site-footer img.flogo{ height: 56px; }
.site-footer .f-about{ font-size: 14.5px; margin-top: 20px; max-width: 38ch; line-height: 1.6; }
.site-footer h5{ font-family: var(--display); font-size: 14px; letter-spacing: .04em; text-transform: uppercase; color: #fff; margin: 0 0 16px; }
.site-footer ul{ list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.site-footer ul a, .site-footer .ci a, .site-footer .ci span{ font-size: 14.5px; color: var(--on-navy-dim); transition: color .2s; }
.site-footer ul a:hover{ color: var(--orange); }
.site-footer .ci{ display: grid; gap: 14px; }
.site-footer .ci .row{ display: flex; gap: 11px; align-items: flex-start; font-size: 14px; line-height: 1.45; }
.site-footer .ci svg{ width: 17px; height: 17px; color: var(--orange); flex: none; margin-top: 2px; }
.site-footer .cross-foot{ display: inline-flex; align-items: center; gap: 8px; color: var(--sky); font-weight: 600; font-size: 13.5px; margin-top: 18px; }
.foot-bottom{ border-top: 1px solid var(--line-navy); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 13px; }
.foot-bottom .socials{ display: flex; gap: 11px; }
.foot-bottom .socials a{ width: 38px; height: 38px; border: 1px solid var(--line-navy); border-radius: 10px; display: grid; place-items: center; transition: .2s; }
.foot-bottom .socials a:hover{ background: var(--orange); border-color: var(--orange); color: var(--on-orange); }
.foot-bottom .socials svg{ width: 16px; height: 16px; }

/* ---------- page hero (inner) ---------- */
.page-hero{ position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.page-hero .hero-media{ position: absolute; inset: 0; }
.page-hero .hero-media img{ width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.page-hero .hero-media::after{ content:""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,21,48,.6), rgba(12,21,48,.92)); }
.page-hero .inner{ position: relative; padding: clamp(54px,8vw,104px) 0; }
.page-hero .crumb{ font-family: var(--mono); font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--on-navy-dim); margin-bottom: 20px; }
.page-hero .crumb a:hover{ color: var(--orange); }
.page-hero h1{ color: #fff; }
.page-hero .lead{ color: #d6dcec; margin-top: 18px; max-width: 60ch; }

/* ---------- contact / quote ---------- */
.quote-wrap{ display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(34px,5vw,72px); align-items: start; }
@media (max-width: 940px){ .quote-wrap{ grid-template-columns: 1fr; } }
.qa-list{ list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 15px; }
.qa-list li{ display: flex; gap: 13px; align-items: flex-start; font-size: 15px; color: var(--steel); }
.qa-list svg{ width: 22px; height: 22px; color: var(--orange); flex: none; }
.qa-contact{ display: flex; flex-direction: column; gap: 12px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.qa-contact a{ display: inline-flex; align-items: center; gap: 10px; font-weight: 600; color: var(--navy); }
.qa-contact svg{ width: 19px; height: 19px; color: var(--orange); }
.form-card{ background: var(--paper); border-radius: var(--radius-lg); padding: clamp(26px,3vw,40px); box-shadow: var(--shadow); }
.field{ margin-bottom: 18px; }
.field label{ display: block; font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--steel); margin-bottom: 8px; }
.field label .opt{ color: var(--muted); }
.field input, .field textarea, .field select{ width: 100%; font-family: var(--body); font-size: 16px; color: var(--ink); padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 11px; background: var(--cream); transition: border-color .2s, background .2s; }
.field input:focus, .field textarea:focus, .field select:focus{ outline: none; border-color: var(--sky); background: #fff; }
.field textarea{ min-height: 120px; resize: vertical; }
.frow{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px){ .frow{ grid-template-columns: 1fr; } }
.chip-row{ display: flex; flex-wrap: wrap; gap: 9px; }
.chip{ font-family: var(--mono); font-size: 12.5px; letter-spacing: .04em; padding: 10px 15px; border: 1.5px solid var(--line); border-radius: 999px; background: var(--cream); cursor: pointer; transition: .18s; user-select: none; }
.chip:hover{ border-color: var(--navy); }
.chip.sel{ background: var(--navy); color: #fff; border-color: var(--navy); }
.form-success{ display: none; text-align: center; padding: 30px 10px; }
.form-success.on{ display: block; }
.form-success .ck{ width: 64px; height: 64px; border-radius: 50%; background: var(--orange); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .ck svg{ width: 30px; height: 30px; color: var(--on-orange); }

/* ---------- reveal ---------- */
.reveal{ opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity: 1; transform: none; transition: none; } }
