/* =========================================================
   RoRo&Co — Rodriguez Roofing and Construction LLC
   Main stylesheet
   Brand colors: Blue #1A52B5 (primary), Orange #F2912E (accent)
   Light theme, mobile-first, accessible
   ========================================================= */

/* ---------- Fonts ----------
   Display: "Manrope" (clean, modern, geometric)
   Body:    "Figtree" (clean, friendly, highly readable)
*/
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400..800&family=Figtree:ital,wght@0,300..800;1,400..600&display=swap');

/* ---------- Design tokens ---------- */
:root {
  --blue:        #1A52B5;
  --blue-dark:   #143f8c;
  --blue-darker: #0f2f6b;
  --blue-soft:   #eaf1fc;
  --blue-soft-2: #f4f8ff;
  --orange:      #F2912E;
  --orange-dark: #db7d18;
  --orange-soft: #fff3e6;

  --ink:        #16223a;   /* main text */
  --ink-soft:   #475569;   /* secondary text */
  --line:       #e2e8f0;   /* hairlines */
  --white:      #ffffff;
  --bg:         #ffffff;
  --bg-tint:    #f6f9ff;

  --radius:     14px;
  --radius-lg:  22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(20,34,58,.06), 0 2px 6px rgba(20,34,58,.06);
  --shadow-md: 0 6px 18px rgba(20,34,58,.10);
  --shadow-lg: 0 18px 50px rgba(20,34,58,.18);

  --maxw: 1200px;
  --header-h: 78px;

  --ease: cubic-bezier(.22,.61,.36,1);

  --font-display: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-body: 'Figtree', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--blue); text-decoration: none; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-weight: 800;
}

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange);
  color: #fff;
  padding: 12px 18px;
  z-index: 1000;
  border-radius: 0 0 10px 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 22px;
}

section { position: relative; }

.section-pad { padding-block: clamp(56px, 9vw, 110px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--orange);
  display: inline-block;
}

.section-title {
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  max-width: 18ch;
}
.section-title.center { margin-inline: auto; text-align: center; }

.section-intro {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 60ch;
  margin-top: 16px;
}
.section-intro.center { margin-inline: auto; text-align: center; }

.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--orange);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  box-shadow: 0 8px 20px rgba(242,145,46,.30);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(242,145,46,.42); background: var(--orange-dark); }
.btn:active { transform: translateY(0); }

.btn--blue {
  --btn-bg: var(--blue);
  box-shadow: 0 8px 20px rgba(26,82,181,.28);
}
.btn--blue:hover { background: var(--blue-dark); box-shadow: 0 12px 26px rgba(26,82,181,.40); }

.btn--ghost {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--blue); color: #fff; box-shadow: var(--shadow-md); }

.btn--white {
  background: #fff;
  color: var(--blue);
  box-shadow: var(--shadow-md);
}
.btn--white:hover { background: var(--blue-soft); }

.btn--lg { padding: 18px 34px; font-size: 1.08rem; }
.btn svg { width: 20px; height: 20px; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 6px 22px rgba(20,34,58,.08);
  background: rgba(255,255,255,.96);
}

.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }
.brand .brand-text { display: none; }

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  position: relative;
  display: inline-block;
  padding: 10px 14px;
  color: var(--ink);
  font-weight: 600;
  font-size: .98rem;
  border-radius: 10px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 6px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--blue); }

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Phone pill */
.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 16px rgba(242,145,46,.35);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.phone-pill:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(242,145,46,.45); }
.phone-pill svg { width: 18px; height: 18px; }
.phone-pill .ph-label { display: none; }

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  padding: 0 12px;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  background: var(--blue);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: #fff;
  z-index: 99;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  padding: 26px 22px 40px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  padding: 14px 8px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a[aria-current="page"] { color: var(--blue); }
.mobile-menu .mobile-cta { margin-top: 22px; }
.mobile-menu .mobile-cta .btn { width: 100%; }
.mobile-menu .mobile-contact {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: .98rem;
  line-height: 1.9;
}
.mobile-menu .mobile-contact a { font-weight: 700; }

body.menu-open { overflow: hidden; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 80% -10%, var(--blue-soft) 0%, transparent 60%),
    radial-gradient(900px 500px at -10% 20%, var(--orange-soft) 0%, transparent 55%),
    var(--white);
  overflow: hidden;
  padding-block: clamp(48px, 7vw, 86px);
}
.hero::after {
  /* subtle dotted texture */
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(var(--line) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .5;
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: 8px 16px 8px 12px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .88rem;
  color: var(--blue);
  margin-bottom: 22px;
}
.hero-badge .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-soft);
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.4rem);
  letter-spacing: -0.03em;
}
.hero h1 .accent { color: var(--blue); display: block; }
.hero h1 .accent em { color: var(--orange); font-style: normal; }

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 52ch;
  margin-top: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-microtrust {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--ink-soft);
  font-size: .95rem;
  font-weight: 600;
}
.hero-microtrust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-microtrust svg { width: 18px; height: 18px; color: var(--orange); }

/* Hero visual */
.hero-visual { position: relative; }
.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.4;
  background: var(--blue-soft);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.hero-float {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-float--tl { top: 18px; left: -10px; }
.hero-float--br { bottom: 18px; right: -10px; }
.hero-float .icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
  flex-shrink: 0;
}
.hero-float .icon svg { width: 22px; height: 22px; }
.hero-float .ttl { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; line-height: 1.1; }
.hero-float .sub { display: block; font-size: .8rem; color: var(--ink-soft); margin-top: 2px; }

/* =========================================================
   TRUST BADGE STRIP
   ========================================================= */
.trust-strip { background: var(--blue); color: #fff; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.16);
  border-radius: var(--radius);
  overflow: hidden;
}
.trust-item {
  background: var(--blue);
  padding: 26px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-item .ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  display: grid; place-items: center;
  color: var(--orange);
  flex-shrink: 0;
}
.trust-item .ico svg { width: 24px; height: 24px; }
.trust-item .label { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.04rem; line-height: 1.15; }
.trust-item .desc { display: block; font-size: .85rem; color: rgba(255,255,255,.75); margin-top: 3px; }

/* =========================================================
   SERVICES — PHOTO CARD GRID
   ========================================================= */
.services-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 40px;
}
@media (min-width: 800px) {
  .services-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .services-head .section-intro { margin-top: 0; }
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.photo-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow-md);
  color: #fff;
  isolation: isolate;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.photo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.photo-card img,
.photo-card .ph-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .6s var(--ease);
}
.photo-card:hover img,
.photo-card:hover .ph-img { transform: scale(1.07); }
.photo-card::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(15,47,107,.12) 0%, rgba(15,47,107,.30) 45%, rgba(15,47,107,.86) 100%);
  transition: background .4s var(--ease);
}
.photo-card:hover::after {
  background: linear-gradient(180deg, rgba(26,82,181,.20) 0%, rgba(15,47,107,.45) 45%, rgba(15,47,107,.92) 100%);
}

.photo-card .card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.photo-card .card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.photo-card .card-desc {
  font-size: .96rem;
  color: rgba(255,255,255,.9);
  max-width: 40ch;
}
.photo-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #fff;
  margin-top: 6px;
  font-size: .95rem;
}
.photo-card .card-link .arrow {
  display: inline-grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--orange);
  transition: transform .3s var(--ease);
}
.photo-card .card-link .arrow svg { width: 16px; height: 16px; }
.photo-card:hover .card-link .arrow { transform: translateX(4px); }

/* placeholder image look */
.ph-img {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.06) 0 14px, transparent 14px 28px),
    linear-gradient(135deg, var(--blue) 0%, var(--blue-darker) 100%);
  display: grid; place-items: center;
}
.ph-img.alt { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%); }
.ph-img .ph-tag {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .72rem;
  color: rgba(255,255,255,.65);
  border: 1px dashed rgba(255,255,255,.5);
  padding: 6px 12px;
  border-radius: 8px;
}

/* =========================================================
   WHY US / SPLIT SECTION
   ========================================================= */
.why { background: var(--bg-tint); }
.why-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
.why-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3.6;
  box-shadow: var(--shadow-lg);
}
.why-visual .ph-img { position: absolute; inset: 0; }

.why-list { display: grid; gap: 18px; margin-top: 24px; }
.why-item {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.why-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.why-item .ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--orange-soft);
  color: var(--orange-dark);
  flex-shrink: 0;
}
.why-item .ico svg { width: 24px; height: 24px; }
.why-item h3 { font-size: 1.18rem; margin-bottom: 3px; }
.why-item p { color: var(--ink-soft); font-size: .98rem; }

/* =========================================================
   STATS BAND
   ========================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--blue);
  font-weight: 800;
  line-height: 1;
}
.stat .num em { color: var(--orange); font-style: normal; }
.stat .lbl { color: var(--ink-soft); font-weight: 600; margin-top: 6px; font-size: .95rem; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 40px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { display: flex; gap: 3px; color: var(--orange); }
.stars svg { width: 20px; height: 20px; }
.testi-card blockquote { font-size: 1.06rem; color: var(--ink); line-height: 1.55; }
.testi-author { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.testi-author .avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  flex-shrink: 0;
}
.testi-author .who { font-weight: 700; }
.testi-author .where { font-size: .85rem; color: var(--ink-soft); }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-darker) 100%);
  color: #fff;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 90% 10%, rgba(242,145,46,.35) 0%, transparent 60%),
    radial-gradient(500px 280px at 0% 100%, rgba(255,255,255,.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 2; }
.cta-inner {
  display: grid;
  gap: 28px;
  align-items: center;
  text-align: center;
}
.cta-inner h2 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.2rem);
  max-width: 20ch;
  margin-inline: auto;
}
.cta-inner p { color: rgba(255,255,255,.85); font-size: 1.12rem; max-width: 56ch; margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-phone {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.cta-phone:hover { color: var(--orange); }
.cta-phone svg { width: 34px; height: 34px; color: var(--orange); }

/* =========================================================
   PAGE HERO (interior pages)
   ========================================================= */
.page-hero {
  background:
    radial-gradient(900px 400px at 85% -20%, var(--blue-soft) 0%, transparent 60%),
    radial-gradient(700px 360px at -10% 0%, var(--orange-soft) 0%, transparent 55%),
    var(--white);
  padding-block: clamp(50px, 7vw, 86px) clamp(40px, 5vw, 60px);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  font-size: .9rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-weight: 600;
}
.breadcrumb a { color: var(--blue); }
.breadcrumb span { color: var(--ink-soft); }
.page-hero h1 { font-size: clamp(2.3rem, 6vw, 3.6rem); }
.page-hero p { color: var(--ink-soft); font-size: 1.12rem; max-width: 58ch; margin: 16px auto 0; }

/* =========================================================
   CONTENT BLOCKS (about / inspection / contact)
   ========================================================= */
.prose { max-width: 70ch; }
.prose p { margin-bottom: 18px; color: var(--ink-soft); font-size: 1.08rem; }
.prose p strong { color: var(--ink); }
.prose h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); margin: 36px 0 14px; }
.prose h3 { font-size: 1.3rem; margin: 26px 0 10px; }

.split {
  display: grid;
  gap: 44px;
  align-items: center;
}

.feature-list { display: grid; gap: 16px; margin-top: 8px; }
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1.05rem;
}
.feature-list .check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange-dark);
  display: grid; place-items: center;
  margin-top: 2px;
}
.feature-list .check svg { width: 16px; height: 16px; }
.feature-list strong { display: block; color: var(--ink); }
.feature-list span.sub { color: var(--ink-soft); font-size: .96rem; }

/* generic media box */
.media-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3.4;
  box-shadow: var(--shadow-lg);
}
.media-box .ph-img { position: absolute; inset: 0; }

/* steps for inspection page */
.steps { display: grid; gap: 22px; margin-top: 40px; }
.step {
  display: flex;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step .num {
  flex-shrink: 0;
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--blue);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
}
.step:nth-child(even) .num { background: var(--orange); }
.step h3 { font-size: 1.25rem; margin-bottom: 6px; }
.step p { color: var(--ink-soft); }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-note {
  background: var(--orange-soft);
  border: 1px dashed var(--orange);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #7a4a08;
  font-weight: 600;
  margin-bottom: 32px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.gallery-note svg { width: 22px; height: 22px; color: var(--orange-dark); flex-shrink: 0; margin-top: 2px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-sm);
}
.gallery-item .ph-img { position: absolute; inset: 0; }
.gallery-item .cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(15,47,107,.85));
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
}

/* =========================================================
   FORMS
   ========================================================= */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-md);
}
.form-row { margin-bottom: 18px; }
.form-grid-2 { display: grid; gap: 18px; }
@media (min-width: 620px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }

label.field-label {
  display: block;
  font-weight: 700;
  margin-bottom: 7px;
  font-size: .95rem;
  color: var(--ink);
}
label.field-label .req { color: var(--orange-dark); }

.input, .textarea, select.input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.input:focus, .textarea:focus, select.input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-soft);
}
.textarea { min-height: 130px; resize: vertical; }

/* honeypot hidden field */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-note { font-size: .86rem; color: var(--ink-soft); margin-top: 6px; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; }
@media (min-width: 620px) { .form-submit .btn { width: auto; } }

.form-message {
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 22px;
  font-weight: 600;
  display: none;
}
.form-message.show { display: block; }
.form-message.success { background: #e7f7ec; color: #146c3a; border: 1px solid #b6e6c6; }
.form-message.error { background: #fdeaea; color: #a31515; border: 1px solid #f2c2c2; }

.field-error { color: #a31515; font-size: .85rem; margin-top: 5px; display: none; }
.field-error.show { display: block; }

/* contact info cards */
.contact-cards { display: grid; gap: 16px; }
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.contact-card .ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-card .ico svg { width: 24px; height: 24px; }
.contact-card .ttl { font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); margin-bottom: 3px; }
.contact-card .val { font-family: var(--font-display); font-size: 1.18rem; font-weight: 700; }
.contact-card .val a { color: var(--ink); }
.contact-card .val a:hover { color: var(--blue); }
.contact-card .sub { color: var(--ink-soft); font-size: .92rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--blue-darker);
  color: rgba(255,255,255,.78);
  padding-block: 56px 28px;
}
.footer-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
}
.footer-brand img { height: 54px; background: #fff; padding: 8px 12px; border-radius: 12px; }
.footer-brand p { margin-top: 16px; max-width: 38ch; font-size: .96rem; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
  display: grid; place-items: center;
  color: #fff;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.footer-social a:hover { background: var(--orange); transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; }

.footer-col h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 16px;
  font-family: var(--font-display);
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.78); font-size: .96rem; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--orange); }

.footer-contact li { display: flex; gap: 11px; align-items: flex-start; font-size: .96rem; line-height: 1.5; }
.footer-contact svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,.9); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 40px;
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: .88rem;
}
.footer-bottom a { color: rgba(255,255,255,.78); }
.footer-bottom a:hover { color: var(--orange); }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   RESPONSIVE — TABLET & DESKTOP
   ========================================================= */
@media (min-width: 620px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 900px) {
  .phone-pill .ph-label { display: inline; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .why-grid { grid-template-columns: .95fr 1.05fr; }
  .split { grid-template-columns: 1fr 1fr; }
  .split.reverse > :first-child { order: 2; }
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; }
  .cta-inner { text-align: center; }
}

@media (min-width: 1000px) {
  .nav-toggle { display: none; }
  .nav-links { display: flex; }
  .brand .brand-text {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1;
  }
}

/* featured highlight box (free inspection) */
.highlight-box {
  background: linear-gradient(135deg, var(--orange-soft), #fff);
  border: 1.5px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  box-shadow: var(--shadow-sm);
}
.highlight-box .tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.highlight-box h3 { font-size: 1.5rem; margin-bottom: 8px; }
.highlight-box p { color: var(--ink-soft); }

/* small print / placeholder marker */
.placeholder-marker {
  display: inline-block;
  background: #fff4e6;
  color: #8a5208;
  border: 1px dashed var(--orange);
  font-size: .78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  letter-spacing: .03em;
}
