/* Rocky's Mechanical Contracting — stylesheet
   Display: Oswald. Body: Inter. Palette: deep navy, white, blue, red accent. */

/* Self-hosted fonts (Latin subset) */
@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url('/assets/fonts/inter-400.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url('/assets/fonts/inter-500.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:600;font-display:swap;src:url('/assets/fonts/inter-600.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:700;font-display:swap;src:url('/assets/fonts/inter-700.woff2') format('woff2');}
@font-face{font-family:'Oswald';font-style:normal;font-weight:500;font-display:swap;src:url('/assets/fonts/oswald-500.woff2') format('woff2');}
@font-face{font-family:'Oswald';font-style:normal;font-weight:600;font-display:swap;src:url('/assets/fonts/oswald-600.woff2') format('woff2');}
@font-face{font-family:'Oswald';font-style:normal;font-weight:700;font-display:swap;src:url('/assets/fonts/oswald-700.woff2') format('woff2');}

:root {
  --navy: #0b2545;
  --navy-deep: #061529;
  --navy-mid: #12315b;
  --blue: #1f6fe5;
  --blue-bright: #4d94ff;
  --red: #d92231;
  --red-deep: #b31824;
  --ink: #14202f;
  --slate: #55627a;
  --line: #e0e5ee;
  --line-dark: #d2d9e6;
  --mist: #f4f6fb;
  --paper: #ffffff;
  --white: #ffffff;

  --wrap: 1180px;
  --header-h: 78px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 2px rgba(6, 21, 41, .08);
  --shadow-md: 0 12px 34px rgba(6, 21, 41, .13);
  --shadow-lg: 0 26px 60px rgba(6, 21, 41, .24);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: 'Oswald', 'Arial Narrow', var(--font);

  --space: clamp(3.75rem, 8vw, 6.75rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  margin: 0 0 .5em;
  color: var(--navy);
  letter-spacing: .002em;
  text-transform: none;
}
h1 { font-size: clamp(2.35rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.85rem, 3.8vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); font-weight: 600; }
p { margin: 0 0 1rem; }
strong { font-weight: 600; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 1.35rem; }
.section { padding-block: var(--space); }
.section--mist { background: var(--mist); }
.section--navy { background: var(--navy); color: #d7e2f4; }
.section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1rem;
}
.section--navy .eyebrow { color: var(--blue-bright); }

.lede { font-size: 1.18rem; color: var(--slate); max-width: 60ch; line-height: 1.6; }
.section--navy .lede { color: #b4c3dd; }

/* Skip link */
.skip { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--navy); color: #fff; padding: .75rem 1rem; }
.skip:focus { left: 0; }

/* Buttons — sharp, professional */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font); font-weight: 600; font-size: .9rem;
  letter-spacing: .04em; text-transform: uppercase;
  padding: .95rem 1.6rem; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .12s ease, background .18s ease, border-color .18s ease, color .18s ease;
  text-decoration: none; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--red { background: var(--red); color: #fff; box-shadow: 0 6px 16px rgba(217,34,49,.28); }
.btn--red:hover { background: var(--red-deep); color: #fff; }
.btn--blue { background: var(--blue); color: #fff; }
.btn--blue:hover { background: #1857b8; color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }
.btn--outline { background: #fff; color: var(--navy); border-color: var(--line-dark); }
.btn--outline:hover { border-color: var(--navy); color: var(--navy); }
.btn--lg { padding: 1.1rem 2rem; font-size: .98rem; }

/* Header — professional white */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff; color: var(--ink);
  border-top: 3px solid var(--red);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(6,21,41,.05);
}
.site-header a { color: var(--ink); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 74px; }
.brand { display: inline-flex; align-items: center; gap: .65rem; font-weight: 700; }
.brand:hover { text-decoration: none; }
.brand img { width: 56px; height: auto; flex: none; }
.brand-name { display: flex; flex-direction: column; line-height: 1; font-family: var(--font-display); }
.brand-name b { font-size: 1.35rem; letter-spacing: .01em; color: var(--navy); font-weight: 700; }
.brand-name span { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--slate); font-weight: 600; margin-top: 4px; font-family: var(--font); }

.nav { display: flex; align-items: center; gap: .15rem; }
.nav a {
  position: relative; white-space: nowrap;
  font-weight: 600; font-size: .82rem; letter-spacing: .05em; text-transform: uppercase;
  padding: .6rem .7rem; border-radius: var(--radius); color: var(--navy);
}
.nav a:hover { color: var(--blue); background: var(--mist); text-decoration: none; }
.nav a[aria-current="page"] { color: var(--blue); }
.nav a[aria-current="page"]::after { content: ""; position: absolute; left: .8rem; right: .8rem; bottom: 3px; height: 2px; background: var(--red); }

/* Dropdown — no dead zone between trigger and menu */
.has-sub { position: relative; }
.has-sub > a::after { content: ""; display: inline-block; width: .46em; height: .46em; border-right: 2.5px solid currentColor; border-bottom: 2.5px solid currentColor; transform: translateY(-2px) rotate(45deg); margin-left: .5rem; opacity: .6; }
.submenu {
  position: absolute; top: 100%; left: 0; min-width: 260px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: .5rem; z-index: 120;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.has-sub::after { content: ""; position: absolute; top: 100%; left: 0; width: 100%; height: 12px; } /* hover bridge */
.has-sub:hover .submenu, .has-sub:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { display: block; color: var(--ink); padding: .6rem .75rem; border-radius: var(--radius); font-size: .8rem; letter-spacing: .04em; }
.submenu a:hover { background: var(--mist); color: var(--blue); }
.submenu a[aria-current="page"] { color: var(--blue); }
.submenu a[aria-current="page"]::after { display: none; }

.header-cta { display: flex; align-items: center; gap: .6rem; }
.callbtn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--red); color: #fff; font-weight: 700; letter-spacing: .03em;
  padding: .7rem 1.15rem; border-radius: var(--radius); font-size: .95rem; white-space: nowrap;
}
.callbtn:hover { background: var(--red-deep); text-decoration: none; color: #fff; }

.navtoggle {
  display: none; background: transparent; border: 1.5px solid var(--line-dark);
  color: var(--navy); width: 46px; height: 46px; border-radius: var(--radius); cursor: pointer;
  align-items: center; justify-content: center;
}
.navtoggle svg { width: 22px; height: 22px; }

/* Hero */
.hero {
  position: relative; color: #fff; overflow: hidden;
  display: flex; align-items: center;
  min-height: calc(90vh - var(--header-h));
  min-height: calc(90svh - var(--header-h));
  background-color: var(--navy-deep);
  background-image:
    linear-gradient(100deg, rgba(6,21,41,.96) 0%, rgba(6,21,41,.86) 40%, rgba(9,29,54,.64) 74%, rgba(9,29,54,.48) 100%),
    url('/assets/img/hero-hvac.jpg');
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero > .wrap { width: 100%; }
.hero-grid { position: relative; z-index: 2; display: grid; gap: 2.5rem; padding-block: clamp(2.75rem, 6vw, 4.75rem); align-items: center; }
.hero h1 { color: #fff; }
.hero .lede { color: #c3d2ea; font-size: 1.22rem; }
.hero-eyebrow {
  display: inline-flex; align-items: center;
  color: #9dc0ef; font-weight: 600; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before { content: ""; display: inline-block; width: 26px; height: 2px; background: var(--red); margin-right: .7rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.7rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.1rem 2rem; margin-top: 2.1rem; padding-top: 1.7rem; border-top: 1px solid rgba(255,255,255,.14); }
.hero-trust div { font-size: .82rem; color: #9fb2d0; text-transform: uppercase; letter-spacing: .05em; }
.hero-trust b { display: block; font-family: var(--font-display); color: #fff; font-size: 1.4rem; letter-spacing: .01em; text-transform: none; }

/* Hero media */
.hero-media { position: relative; }
.hero-media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute; left: -14px; bottom: 24px;
  background: #fff; color: var(--ink); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: .85rem 1.05rem; display: flex; align-items: center; gap: .7rem;
}
.hero-badge .stars { color: #f5a623; font-size: 1rem; letter-spacing: 1px; }
.hero-badge b { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); line-height: 1; }
.hero-badge span { font-size: .74rem; color: var(--slate); }

/* Page header (interior pages) */
.pagehead {
  position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(820px 360px at 85% -20%, rgba(31,111,229,.28), transparent 60%),
    linear-gradient(155deg, var(--navy-deep), var(--navy));
  padding-block: clamp(2.75rem, 6vw, 4.25rem);
}
.pagehead h1 { color: #fff; margin-bottom: .5rem; }
.pagehead .lede { color: #c3d2ea; }
.pagehead .hero-actions { margin-top: 1.5rem; }
.crumbs { font-size: .76rem; letter-spacing: .04em; text-transform: uppercase; color: #8397ba; margin-bottom: 1.1rem; }
.crumbs a { color: #b3c4e0; }

/* Grid helpers */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }

/* Cards */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.6rem; box-shadow: var(--shadow-sm); height: 100%;
}
.card h3 { margin-bottom: .45rem; }
.card p { color: var(--slate); margin-bottom: 0; }
.card--link { display: block; color: inherit; transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease; position: relative; }
.card--link:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-dark); text-decoration: none; }
.card .icon { width: 54px; height: 54px; border-radius: var(--radius); display: grid; place-items: center; background: linear-gradient(150deg, var(--blue), var(--navy)); color: #fff; margin-bottom: 1.1rem; }
.card .icon svg { width: 27px; height: 27px; }
.card .more { display: inline-block; margin-top: 1rem; font-weight: 600; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--blue); }

/* Checklist */
.checklist { list-style: none; margin: 1.1rem 0 0; padding: 0; display: grid; gap: .75rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; }
.checklist .chk { flex: none; width: 24px; height: 24px; border-radius: 50%; background: rgba(31,111,229,.12); color: var(--blue); display: grid; place-items: center; font-weight: 700; font-size: .8rem; margin-top: 2px; }
.section--navy .checklist .chk { background: rgba(77,148,255,.2); color: #9cc4ff; }

/* Badges */
.badges { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }
.badge { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .82rem; letter-spacing: .02em; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: .55rem 1rem; color: var(--navy); }
.badge svg { width: 16px; height: 16px; color: var(--red); }
.section--navy .badge { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: #fff; }

/* Media band with real photos */
.media { display: grid; gap: 2.4rem; align-items: center; }
figure.media-img { margin: 0; position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); background: var(--navy); }
.media-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
figcaption { font-size: .82rem; color: var(--slate); padding: .7rem .95rem; background: #fff; }
.section--navy figcaption { background: var(--navy-deep); color: #93a6c6; border-top: 1px solid rgba(255,255,255,.08); }
.img-tag { position: absolute; top: 12px; left: 12px; z-index: 2; background: rgba(6,21,41,.82); color: #fff; font-size: .72rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; padding: .38rem .7rem; border-radius: var(--radius); }

/* Reviews */
.reviews { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.7rem; box-shadow: var(--shadow-sm); position: relative; }
.stars { color: #f5a623; letter-spacing: 2px; font-size: 1.05rem; margin-bottom: .8rem; }
.review p { color: var(--ink); font-size: 1.02rem; }
.review .who { display: flex; align-items: center; gap: .7rem; margin-top: 1.1rem; }
.review .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--font-display); flex: none; }
.review .who b { color: var(--navy); }
.review .who span { display: block; font-size: .8rem; color: var(--slate); }

.ratingstrip { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem; }

/* Steps */
.steps { counter-reset: step; display: grid; gap: 1.4rem; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start; }
.step .n { counter-increment: step; width: 46px; height: 46px; border-radius: var(--radius); flex: none; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 1.2rem; font-family: var(--font-display); }
.step .n::before { content: counter(step); }
.step h3 { margin-bottom: .2rem; }
.step p { color: var(--slate); margin: 0; }
.section--navy .step p { color: #b4c3dd; }

/* Area cards */
.area { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.area h3 { display: flex; align-items: center; gap: .5rem; }
.area h3 svg { width: 20px; height: 20px; color: var(--red); flex: none; }
.area ul { margin: .85rem 0 0; padding-left: 1.15rem; color: var(--slate); }
.area ul li { margin-bottom: .3rem; }

/* CTA band */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(150deg, var(--navy-deep), var(--navy)); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band .lede { color: #c3d2ea; margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.7rem; }
.cta-actions a.plain { color: #c3d2ea; align-self: center; font-weight: 500; }

/* FAQ */
.faq { display: grid; gap: .8rem; }
details.qa { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 0 1.3rem; }
details.qa summary { cursor: pointer; list-style: none; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--navy); padding: 1.15rem 0; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary::after { content: "+"; font-size: 1.5rem; color: var(--blue); font-weight: 400; line-height: 1; }
details.qa[open] summary::after { content: "\2013"; }
details.qa p { color: var(--slate); padding-bottom: 1.15rem; margin: 0; }

/* Form */
.form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: clamp(1.5rem, 3vw, 2.3rem); }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-weight: 600; color: var(--navy); margin-bottom: .45rem; font-size: .9rem; letter-spacing: .02em; }
.field .req { color: var(--red); }
.field input, .field select, .field textarea { width: 100%; font: inherit; color: var(--ink); padding: .85rem .9rem; border: 1.5px solid var(--line-dark); border-radius: var(--radius); background: #fff; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(31,111,229,.16); }
.field-row { display: grid; gap: 1.15rem; grid-template-columns: 1fr; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .82rem; color: var(--slate); margin-top: .4rem; }
.form-status { padding: .9rem 1rem; border-radius: var(--radius); margin-bottom: 1rem; font-weight: 500; display: none; }
.form-status.ok { display: block; background: #e7f7ee; color: #12723f; border: 1px solid #b7e6c9; }
.form-status.err { display: block; background: #fdecec; color: #a11722; border: 1px solid #f4c4c7; }

/* Footer */
.site-footer { background: var(--navy-deep); color: #9fb2d0; padding-block: 3.25rem 1.5rem; font-size: .95rem; }
.site-footer a { color: #c6d3ea; }
.footer-grid { display: grid; gap: 2.2rem; grid-template-columns: 1fr; }
.footer-brand .brand { color: #fff; margin-bottom: .95rem; }
.footer-brand .brand img { width: 52px; background: #fff; border-radius: var(--radius); padding: 5px; }
.footer-brand .brand-name b { color: #fff; }
.footer-brand .brand-name span { color: var(--blue-bright); }
.footer-col h4 { font-family: var(--font-display); color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; font-weight: 600; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .6rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--blue-bright); flex: none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.4rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; font-size: .82rem; color: #7688a7; }

/* Sticky mobile call bar */
.mobilecall { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -4px 20px rgba(6,21,41,.1); padding: .55rem .8rem calc(.55rem + env(safe-area-inset-bottom)); gap: .6rem; }
.mobilecall a { flex: 1; justify-content: center; }

/* Utility */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.maxprose { max-width: 68ch; }
.tag { display: inline-block; background: rgba(217,34,49,.1); color: var(--red); font-weight: 700; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; padding: .32rem .7rem; border-radius: var(--radius); }

/* Responsive */
@media (min-width: 620px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr 1fr; }
  .reviews { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .hero-grid { grid-template-columns: 1.1fr .9fr; gap: 3.5rem; }
  .media { grid-template-columns: 1fr 1fr; }
  .media--rev .media-img { order: 2; }
  .footer-grid { grid-template-columns: 1.7fr 1fr 1fr 1.3fr; }
  .form-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: start; }
}

@media (max-width: 899px) {
  .nav, .header-cta .callbtn-text { display: none; }
  .nav.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: .5rem; box-shadow: var(--shadow-lg); max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .nav.open a { padding: .9rem .85rem; border-radius: var(--radius); }
  .nav.open a[aria-current="page"]::after { display: none; }
  .nav.open .has-sub > a::after { display: none; }
  .nav.open .has-sub .submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    display: block; box-shadow: none; border: 0; background: var(--mist); padding: .2rem .3rem .4rem 1rem; margin: .1rem 0 .3rem;
  }
  .nav.open .submenu a { color: var(--slate); }
  .has-sub::after { display: none; }
  .navtoggle { display: inline-flex; }
  .mobilecall { display: flex; }
  body { padding-bottom: 68px; }
  .callbtn { padding: .6rem .85rem; }
  .hero-badge { left: 12px; }
}

@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; transition: none !important; } }


/* Hero quote form */
.hero-form { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 1.5rem; color: var(--ink); }
.hero-form h2 { font-size: 1.45rem; margin-bottom: .15rem; color: var(--navy); }
.hero-form-sub { font-size: .9rem; color: var(--slate); margin-bottom: 1.05rem; }
.hero-form .field { margin-bottom: .75rem; }
.hero-form label { font-size: .78rem; margin-bottom: .3rem; }
.hero-form input, .hero-form select { padding: .72rem .8rem; }
.hero-form button { width: 100%; justify-content: center; margin-top: .35rem; }
.hero-form .form-note { margin-top: .65rem; margin-bottom: 0; }

/* Service cards — "What we do" */
.svc-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
.svc { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); color: inherit; height: 100%; transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease; }
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-dark); text-decoration: none; }
.svc-img { position: relative; overflow: hidden; aspect-ratio: 16 / 10; background: var(--navy); }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc:hover .svc-img img { transform: scale(1.05); }
.svc-num { position: absolute; top: 10px; left: 10px; z-index: 2; min-width: 30px; height: 30px; padding: 0 .5rem; border-radius: 999px; background: rgba(6,21,41,.72); color: #fff; font-family: var(--font-display); font-weight: 600; display: inline-flex; align-items: center; justify-content: center; font-size: .82rem; letter-spacing: .03em; }
.svc-body { padding: 1.2rem 1.3rem 1.35rem; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { margin-bottom: .4rem; }
.svc-body p { color: var(--slate); margin-bottom: 1rem; font-size: .98rem; }
.svc-more { margin-top: auto; font-weight: 600; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; color: var(--blue); }
.svc:hover .svc-more { color: var(--navy); }
.svc--cta { background: linear-gradient(155deg, var(--navy), var(--navy-mid)); border: 0; color: #fff; }
.svc--cta .svc-body { justify-content: center; }
.svc--cta h3 { color: #fff; }
.svc--cta p { color: #c3d2ea; }
.svc--cta .btn { align-self: flex-start; margin-top: .3rem; }

@media (min-width: 620px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
