/* ==========================================================================
   Bona Fide Roofing — Luxury Reskin (MSA Premier design system)
   Palette (logo): --bg #0D1B3E navy  --gold #CD3A44 red  --gold-deep #A31621
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400..700;1,400..700&display=swap');

:root {
  /* Logo palette: navy #0D1B3E (badge) + red #CD3A44 / #A31621 (banner) */
  --bg:         #0D1B3E;
  --cream:      #FAFAFB;
  --gold:       #CD3A44;
  --gold-bright:#DD4B54;
  --gold-deep:  #A31621;
  --ink:        #131F3D;
  --muted:      #5D6477;
  --line:       #E2E6EF;
  --shadow:     0 10px 30px rgba(13,27,62,.06);
  --serif:      'Playfair Display','Cormorant Garamond',Georgia,serif;
  --sans:       'Inter','Manrope',system-ui,sans-serif;
  --warm:       #F3F6FB;
  /* Legacy aliases — old pages reference these via inline styles */
  --navy:       #0D1B3E;
  --navy-dk:    #081229;
  --navy-lt:    #16294F;
  --red:        #A31621;
  --red-dk:     #7E0F18;
  --red-lt:     #DD4B54;
  --white:      #FAFAFB;
}

*,*::before,*::after { box-sizing: border-box }
html,body { margin: 0; padding: 0 }
body { font-family: var(--sans); color: var(--ink); background: var(--cream); line-height: 1.5; -webkit-font-smoothing: antialiased }
img { max-width: 100%; display: block }
a { color: inherit; text-decoration: none }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit }
.container { max-width: 1320px; margin: 0 auto; padding: 0 32px }
.eyebrow { font-family: var(--sans); font-size: 12.5px; letter-spacing: .2em; font-weight: 700; text-transform: uppercase; color: var(--gold-deep) }
.eyebrow.on-dark { color: var(--gold) }
.heading { font-family: var(--serif); font-weight: 500; line-height: 1.05; color: var(--ink); font-size: clamp(32px,4vw,48px); margin: 8px 0 12px }
.heading em { font-style: italic; color: var(--gold) }
.heading.on-dark { color: var(--cream) }
.heading.on-dark em { color: var(--gold) }
.lead { font-size: 16px; color: var(--muted); max-width: 640px; margin: 0 auto }
.section { padding: 88px 0 }
.section-title-block { text-align: center; margin-bottom: 48px }

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  height: 56px; padding: 0 28px; border-radius: 8px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  color: #fff; font-weight: 700; letter-spacing: .10em; font-size: 13px;
  text-transform: uppercase; box-shadow: 0 6px 18px rgba(205,58,68,.28);
  border: 1px solid var(--gold-bright); transition: transform .18s, box-shadow .18s
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(205,58,68,.40) }
.btn-primary::after { content: "›"; font-size: 20px; font-weight: 800 }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  height: 56px; padding: 0 28px; border-radius: 8px;
  background: rgba(0,0,0,.4); color: var(--cream);
  font-weight: 700; letter-spacing: .10em; font-size: 13px;
  text-transform: uppercase; border: 1px solid var(--gold);
  transition: background .18s, color .18s
}
.btn-ghost:hover { background: rgba(205,58,68,.15); color: var(--gold) }
.btn-ghost::after { content: "›"; font-size: 20px; font-weight: 800 }
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; height: 54px; padding: 0 26px; border-radius: 8px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  color: #fff; font-weight: 700; letter-spacing: .10em; font-size: 13px;
  text-transform: uppercase; box-shadow: 0 6px 18px rgba(205,58,68,.30);
  transition: transform .18s, box-shadow .18s; border: 1px solid var(--gold-bright)
}
.btn-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(205,58,68,.42) }
.btn-cta::after { content: "›"; font-size: 22px; font-weight: 800; line-height: 0 }
/* Outline variant for interior links */
.btn-outline-gold {
  display: inline-flex; align-items: center; gap: 10px;
  height: 50px; padding: 0 26px; border-radius: 8px;
  background: transparent; color: var(--gold-deep); font-weight: 700;
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid var(--gold-deep); transition: background .18s, color .18s
}
.btn-outline-gold:hover { background: var(--gold-deep); color: #fff }

/* ============ TOPBAR ============ */
.topbar { background: var(--navy-dk); color: rgba(250,250,249,.65); font-size: 12px; padding: 7px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid rgba(205,58,68,.15); flex-wrap: nowrap; overflow: hidden }
.topbar__left { display: flex; align-items: center; gap: 16px; min-width: 0; flex-shrink: 1 }
.topbar__right { flex-shrink: 0 }
.topbar__item { display: flex; align-items: center; gap: 7px }
.topbar__item svg { width: 13px; height: 13px; flex: 0 0 13px; color: var(--gold) }
.topbar a { color: rgba(250,250,249,.65); transition: color .18s }
.topbar a:hover { color: var(--gold) }

/* ============ HEADER ============ */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--bg); border-bottom: 1px solid rgba(205,58,68,.40) }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 110px; padding: 0 32px; max-width: 1600px; margin: 0 auto; position: relative }
.site-header__logo img { height: 88px; width: auto; display: block }
.site-nav { display: flex; align-items: center; gap: 0 }
.site-nav a { color: #FAFAF9; font-size: 14.5px; font-weight: 500; padding: 14px 16px; position: relative; transition: color .18s }
.site-nav a:hover { color: var(--gold) }
.site-nav a.is-active { color: var(--gold) }
.site-nav a.is-active::after { content: ""; position: absolute; left: 16px; right: 16px; bottom: 6px; height: 2px; background: var(--gold) }
.site-header__right { display: flex; align-items: center; gap: 18px }
.header-phone { display: inline-flex; align-items: center; gap: 12px; color: #FAFAF9; font-weight: 600; font-size: 15px }
.header-phone__icon { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep)); display: inline-flex; align-items: center; justify-content: center; color: #fff; flex: 0 0 40px }
.header-phone__icon svg { width: 18px; height: 18px; fill: currentColor }
.header-divider { width: 1px; height: 32px; background: rgba(205,58,68,.35) }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 8px; background: rgba(255,255,255,.06); color: #fff; border: 1px solid rgba(255,255,255,.10) }
.nav-toggle svg { width: 22px; height: 22px }

/* ============ MOBILE NAV ============ */
.mnav { position: fixed; inset: 0; background: rgba(10,20,43,.96); z-index: 60; display: none; flex-direction: column; padding: 80px 32px }
.mnav.is-open { display: flex }
.mnav a { color: #fff; font-size: 22px; font-weight: 500; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08) }
.mnav a.is-active { color: var(--gold) }
.mnav a:hover { color: var(--gold) }
.mnav-phone { color: var(--gold) !important; font-weight: 600 !important; margin-top: 16px }
.mnav-close { position: absolute; top: 20px; right: 20px; width: 46px; height: 46px; color: #fff; font-size: 30px; display: flex; align-items: center; justify-content: center }

/* ============ HERO ============ */
.hero { position: relative; height: calc(100vh - 134px); max-height: calc(100vh - 134px); min-height: 520px; background: #0a0a0c; overflow: hidden; display: flex; align-items: center }
.hero__inner { padding-top: 24px; padding-bottom: 24px }
.hero__content { max-height: 100%; overflow: hidden }

/* B/A before clip — true img2img pairs, no filter needed */
.ba-before-clip { position: relative }
.ba-before-clip img { filter: brightness(.95) }

/* 2x2 services grid (residential focus) — collapses cleanly on tablet/mobile */
.services-grid--2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px }
@media (max-width: 760px) { .services-grid--2x2 { grid-template-columns: 1fr } }

/* Trust row gets compressed on short viewports so hero stays at 100vh */
@media (max-height: 720px) {
  .hero__h1 { font-size: clamp(34px, 4.4vw, 56px) }
  .hero__lead { font-size: 15px; line-height: 1.55; margin-bottom: 22px }
  .cta-row { margin-bottom: 24px }
  .trust-row { gap: 18px }
  .trust-icon { width: 36px; height: 36px; flex: 0 0 36px }
  .trust-text strong { font-size: 13px }
  .trust-text span { font-size: 11.5px }
  .hero__eyebrow { margin-bottom: 18px; padding: 7px 18px }
}
.hero__slides { position: absolute; inset: 0; z-index: 1 }
.hero__slide { position: absolute; inset: 0; background-size: cover; background-position: center right; background-repeat: no-repeat; opacity: 0; transition: opacity 1.4s ease-in-out }
.hero__slide.is-active { opacity: 1 }
.hero__overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(105deg, rgba(6,15,33,.88) 0%, rgba(6,15,33,.68) 50%, rgba(6,15,33,.42) 100%) }
.hero__inner { position: relative; z-index: 5; width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 32px }
.hero__content { max-width: 620px; color: var(--cream) }
.hero__eyebrow { display: inline-block; font-family: var(--sans); font-size: 12px; letter-spacing: .18em; font-weight: 600; color: var(--gold); text-transform: uppercase; border: 1px solid var(--gold); border-radius: 4px; padding: 9px 22px; margin-bottom: 28px; text-shadow: 0 1px 6px rgba(0,0,0,.5) }
.hero__h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(44px,5.6vw,78px); line-height: 1.05; color: var(--cream); letter-spacing: -.005em; margin: 0; text-shadow: 0 2px 10px rgba(0,0,0,.6) }
.hero__h1 em { display: block; font-style: italic; color: var(--gold); font-weight: 500 }
.hero__rule { width: 90px; height: 1.5px; background: var(--gold); margin: 24px 0 26px; border: 0 }
.hero__lead { font-size: 18px; line-height: 1.65; max-width: 540px; color: var(--cream); margin: 0 0 32px; text-shadow: 0 1px 8px rgba(0,0,0,.55) }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px }
.trust-row { display: flex; flex-wrap: wrap; gap: 28px; max-width: 760px }
.trust-item { display: flex; align-items: center; gap: 14px; flex: 1 1 0; min-width: 0 }
.trust-icon { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 44px }
.trust-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2 }
.trust-text strong { display: block; color: var(--cream); font-size: 14px; font-weight: 600 }
.trust-text span { display: block; color: rgba(250,250,249,.72); font-size: 12.5px; margin-top: 2px }

/* ============ STATS ============ */
.stats { background: var(--bg); padding: 48px 0; border-top: 1px solid rgba(205,58,68,.18); border-bottom: 1px solid rgba(205,58,68,.18); background-image: radial-gradient(ellipse at 50% 0%, rgba(205,58,68,.07) 0%, transparent 70%) }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; color: var(--cream); text-align: center }
.stat__num { font-family: var(--serif); font-size: 48px; font-weight: 600; color: var(--gold); line-height: 1 }
.stat__num small { font-size: .4em; font-weight: 400; margin-left: 4px; color: var(--gold-bright) }
.stat__label { margin-top: 8px; font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; color: rgba(250,250,249,.72) }

/* ============ SERVICES ============ */
.services { background: var(--cream); padding: 88px 0 }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px }
.services-grid--bottom { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; max-width: calc(66.67% + 8px); margin: 24px auto 0 }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow); padding: 0; display: flex; flex-direction: column; overflow: hidden; transition: transform .2s, box-shadow .2s; text-decoration: none; color: inherit }
.service-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(10,20,43,.10) }
.service-card__photo { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--bg) }
.service-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease }
.service-card:hover .service-card__photo img { transform: scale(1.05) }
.service-card__body { padding: 32px 28px 30px; position: relative }
.service-card__icon { position: absolute; top: -32px; right: 24px; width: 64px; height: 64px; border: 1.5px solid var(--gold); border-radius: 50%; background: #fff; display: inline-flex; align-items: center; justify-content: center; color: var(--gold) }
.service-card__icon svg { width: 30px; height: 30px; stroke: currentColor; fill: none; stroke-width: 1.6 }
.service-card__title { font-family: var(--serif); font-weight: 500; font-size: 22px; color: var(--ink); margin: 14px 0 12px; padding-bottom: 12px; position: relative; line-height: 1.15 }
.service-card__title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 38px; height: 2px; background: var(--gold) }
.service-card__desc { font-size: 14.5px; line-height: 1.55; color: rgba(29,28,25,.72); margin: 8px 0 0 }
.services-cta { text-align: center; margin-top: 40px }

/* ============ WHY SECTION ============ */
.why { background: var(--warm); padding: 88px 0 }
.why-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center }
.why-photo { border-radius: 14px; overflow: hidden; box-shadow: 0 30px 60px rgba(10,20,43,.10); position: relative; max-width: 100% }
.why-photo img { aspect-ratio: 4/3; object-fit: cover; width: 100% }
.why-photo__badge { position: absolute; bottom: 24px; left: 24px; background: var(--bg); color: var(--cream); padding: 14px 20px; border-radius: 8px; border-left: 3px solid var(--gold) }
.why-photo__badge strong { display: block; font-family: var(--serif); font-size: 22px; font-weight: 600; line-height: 1; color: var(--gold) }
.why-photo__badge span { font-size: 12px; opacity: .75; letter-spacing: .08em; text-transform: uppercase }
.why-list { margin: 24px 0 0; padding: 0; list-style: none }
.why-list li { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid rgba(10,20,43,.06) }
.why-list li:last-child { border-bottom: 0 }
.why-check { width: 26px; height: 26px; border-radius: 50%; background: rgba(205,58,68,.15); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 26px; font-weight: 700 }
.why-list li strong { font-weight: 600; color: var(--ink); display: block; margin-bottom: 2px }
.why-list li p { margin: 0; color: var(--muted); font-size: 14px }

/* ============ BRANDS ============ */
.brands { background: var(--cream); padding: 48px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line) }
.brands-eyebrow { text-align: center; font-size: 11px; letter-spacing: .22em; font-weight: 600; color: #9c958c; text-transform: uppercase; margin: 0 0 28px }
.brands-row { display: grid; grid-template-columns: repeat(5,1fr); gap: 24px; align-items: center; justify-items: center; max-width: 900px; margin: 0 auto }
.brand-item { font-family: var(--serif); font-size: 20px; font-weight: 700; color: #9c958c; letter-spacing: .04em; text-transform: uppercase; text-align: center; transition: color .3s, transform .3s; cursor: default }
.brand-item:hover { color: var(--ink); transform: translateY(-2px) }
.brand-item small { display: block; font-size: 8px; letter-spacing: .2em; margin-top: 3px; font-weight: 500 }

/* ============ PORTFOLIO / PROJECTS ============ */
.portfolio { background: var(--cream); padding: 88px 0 }
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 48px }
.proj-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; box-shadow: 0 8px 25px rgba(10,20,43,.06); transition: transform .3s, box-shadow .3s }
.proj-card:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(10,20,43,.12) }
.proj-card__img { aspect-ratio: 4/3; overflow: hidden; background: var(--bg) }
.proj-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s }
.proj-card:hover .proj-card__img img { transform: scale(1.06) }
.proj-card__meta { padding: 22px 26px 26px; background: #fff }
.proj-cat { font-size: 11px; letter-spacing: .18em; font-weight: 700; color: var(--gold-deep); text-transform: uppercase }
.proj-title { font-family: var(--serif); font-weight: 600; font-size: 20px; color: var(--ink); margin: 8px 0 6px; line-height: 1.25 }
.proj-loc { font-size: 13.5px; color: var(--muted) }

/* ============ REVIEWS ============ */
.reviews { background: var(--cream); padding: 88px 0 }
.reviews-google { display: inline-flex; align-items: center; gap: 10px; margin-top: 14px; padding: 8px 16px; background: #fff; border: 1px solid var(--line); border-radius: 999px; box-shadow: 0 4px 12px rgba(10,20,43,.06) }
.reviews-google .g-rating { font-size: 13.5px; color: var(--ink) }
.reviews-google .g-rating strong { font-weight: 700; margin-right: 4px }
.reviews-google .g-stars { color: var(--gold); letter-spacing: 1px; margin: 0 4px }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 24px; box-shadow: 0 4px 14px rgba(10,20,43,.04); display: flex; flex-direction: column; gap: 10px }
.review-top { display: flex; align-items: center; justify-content: space-between; gap: 8px }
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 1px }
.review-google { width: 24px; height: 24px; border-radius: 50%; background: #fff; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line) }
.review-quote { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink) }
.review-quote::before { content: "\201C"; font-family: var(--serif); font-size: 34px; color: var(--gold); line-height: 0; vertical-align: -12px; margin-right: 4px }
.review-meta { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 8px; border-top: 1px solid var(--line) }
/* avatar: supports both img and div (initials fallback) */
.review-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; flex: 0 0 48px; object-fit: cover; overflow: hidden }
img.review-avatar { background: var(--bg) }
.review-name { font-weight: 600; font-size: 13.5px; color: var(--ink); line-height: 1.2; display: flex; align-items: center; gap: 6px }
.review-verified { display: inline-flex; align-items: center; justify-content: center; width: 14px; height: 14px; border-radius: 50%; background: #4285F4; color: #fff; font-size: 9px; font-weight: 700 }
.review-loc { font-size: 12px; color: var(--muted); line-height: 1.2 }
.reviews-cta { text-align: center; margin-top: 32px }
.reviews-google-link { font-size: 13.5px; font-weight: 600; color: var(--gold-deep); transition: color .18s; border-bottom: 1px solid transparent; padding-bottom: 2px }
.reviews-google-link:hover { color: var(--gold); border-bottom-color: var(--gold) }

/* ============ PROCESS ============ */
.process { background: var(--cream); padding: 88px 0 }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 48px }
.process-step { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 32px 28px; text-align: center; position: relative }
.process-num { font-family: var(--serif); font-size: 48px; font-weight: 600; color: var(--gold); line-height: 1 }
.process-step h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; margin: 14px 0 10px; color: var(--ink) }
.process-step p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.55 }

/* ============ SERVICE AREAS ============ */
.areas { background: var(--warm); padding: 88px 0 }
.areas-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; max-width: 1100px; margin: 48px auto 36px }
.area-pill { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 16px 20px; display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 14.5px; color: var(--ink); text-decoration: none; transition: .18s; cursor: pointer }
.area-pill:hover { border-color: var(--gold); box-shadow: var(--shadow); color: var(--gold) }
.area-pill svg { width: 20px; height: 20px; color: var(--gold); flex: 0 0 20px; fill: none; stroke: currentColor; stroke-width: 2 }
.areas-map { max-width: 1100px; margin: 0 auto; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16/8 }
.areas-map iframe { width: 100%; height: 100%; border: 0; display: block }

/* ============ CONTACT FORM (dark bg, gold inputs) ============ */
.contact-video { position: relative; padding: 96px 0; overflow: hidden; color: #fff; isolation: isolate; background: var(--bg);
  background-image: radial-gradient(ellipse at 60% 50%, rgba(205,58,68,.06) 0%, transparent 70%) }
.cv-bg { position: absolute; inset: 0; z-index: -1 }
.cv-overlay { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(0,0,0,.85) 0%,rgba(0,0,0,.65) 50%,rgba(0,0,0,.45) 100%) }
.cv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center }
.cv-text .heading { color: #fff }
.cv-text .heading.on-dark em { color: var(--gold) }
.cv-lead { font-size: 17px; line-height: 1.65; color: rgba(255,255,255,.78); max-width: 480px; margin: 14px 0 36px }
.cv-info { display: flex; flex-direction: column; gap: 22px }
.cv-info-row { display: flex; align-items: center; gap: 18px }
.cv-info-icon { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(180deg,var(--gold-bright),var(--gold-deep)); color: #fff; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 46px }
.cv-info-icon svg { width: 20px; height: 20px; fill: currentColor }
.cv-info-label { display: block; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.6); font-weight: 600 }
.cv-info-val { display: block; color: #fff; font-weight: 600; font-size: 16px; line-height: 1.35; margin-top: 2px }
.cv-info-val:hover { color: var(--gold) }
.cv-form { background: rgba(10,20,43,.85); backdrop-filter: blur(8px); border: 1px solid rgba(205,58,68,.25); border-radius: 14px; padding: 36px; display: flex; flex-direction: column; gap: 18px; position: relative }
.cv-form-title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--gold); margin: 0 0 4px }
.cv-form-sub { font-size: 13.5px; color: rgba(250,250,249,.55); margin: 0 0 4px }
.cv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px }
.cv-field { display: block }
.cv-field > span { display: block; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: #fff; font-weight: 600; margin-bottom: 8px }
.cv-field > span i { color: var(--gold); font-style: normal; margin-left: 2px }
.cv-field input, .cv-field select, .cv-field textarea { width: 100%; height: 50px; padding: 0 18px; background: rgba(255,255,255,.06); border: 1px solid rgba(205,58,68,.25); border-radius: 8px; color: var(--cream); font: inherit; font-size: 15px; outline: none; transition: .18s }
.cv-field input::placeholder, .cv-field textarea::placeholder { color: rgba(250,250,249,.40) }
.cv-field input:focus, .cv-field select:focus, .cv-field textarea:focus { border-color: var(--gold); background: rgba(255,255,255,.10) }
.cv-field textarea { height: auto; min-height: 120px; padding: 14px 18px; resize: vertical; font-family: inherit }
.cv-field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23A31621'><path d='M7 10l5 5 5-5z'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; background-color: transparent; color: var(--cream) }
.cv-field select option { background: #1D1C19; color: var(--cream) }
.cv-submit { height: 58px; justify-content: center; width: 100%; border: 0; font-size: 14px; letter-spacing: .09em; background: linear-gradient(180deg,var(--gold-bright),var(--gold-deep)); color: #fff; border-radius: 8px; font-weight: 700; text-transform: uppercase; cursor: pointer; transition: box-shadow .18s }
.cv-submit:hover { box-shadow: 0 8px 22px rgba(205,58,68,.42) }

/* ============ FOOTER ============ */
.site-footer { background: var(--navy-dk); color: rgba(255,255,255,.65); padding: 72px 0 0 }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px }
.footer-cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1.1fr; gap: 40px; margin-bottom: 48px }
.footer-brand img { height: 96px; margin-bottom: 20px }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.55); max-width: 300px; margin: 0 0 16px }
.footer-license { font-size: 11.5px; color: rgba(255,255,255,.30) }
.site-footer h4, .footer-col-heading { font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin: 0 0 18px }
.footer-col ul { list-style: none; padding: 0; margin: 0 }
.footer-col li { margin-bottom: 10px; font-size: 14.5px }
.footer-col li a { color: rgba(255,255,255,.60); transition: color .2s }
.footer-col li a:hover { color: var(--gold) }
.footer-contact-list { list-style: none; padding: 0; margin: 0 }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; line-height: 1.5 }
.footer-contact-list svg { width: 18px; height: 18px; color: var(--gold); flex: 0 0 18px; margin-top: 2px }
.footer-contact-list a, .footer-contact-list span { color: rgba(255,255,255,.65); font-size: 14.5px }
.footer-contact-list a:hover { color: var(--gold) }
.footer-divider { height: 1px; background: rgba(255,255,255,.10); margin: 0 0 24px }
.footer-areas-line { text-align: center; font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.45); max-width: 980px; margin: 0 auto 24px; padding: 0 16px }
.footer-bar { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.40); flex-wrap: wrap; gap: 8px }
.footer-bar a { color: rgba(255,255,255,.45) }
.footer-bar a:hover { color: var(--gold) }

/* ============ LIGHTBOX ============ */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 99; display: none; align-items: center; justify-content: center; padding: 40px }
.lightbox.is-open { display: flex }
.lightbox img { max-width: 95vw; max-height: 90vh; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,.5) }
.lightbox-close { position: fixed; top: 24px; right: 32px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.10); color: #fff; font-size: 28px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.20); transition: .18s }
.lightbox-close:hover { background: rgba(205,58,68,.3); color: var(--gold) }

/* ============ INNER PAGE HERO ============ */
.page-hero { position: relative; background: var(--bg); padding: 80px 0 64px; border-bottom: 1px solid rgba(205,58,68,.25); overflow: hidden }
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; opacity: .18; z-index: 0 }
.page-hero__overlay { display: none }
.page-hero__inner { position: relative; z-index: 2 }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: rgba(250,250,249,.50); margin-bottom: 20px; flex-wrap: wrap }
.breadcrumb a { color: rgba(250,250,249,.50); transition: color .18s }
.breadcrumb a:hover { color: var(--gold) }
.breadcrumb span { color: rgba(250,250,249,.30) }
.page-hero__h1, .page-hero__text h1, .page-hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(36px,4.5vw,60px); line-height: 1.05; color: var(--cream); margin: 12px 0 16px }
.page-hero__h1 em, .page-hero__text h1 em, .page-hero h1 em { font-style: italic; color: var(--gold) }
.page-hero__lead { font-size: 17px; color: rgba(250,250,249,.75); line-height: 1.7; max-width: 580px; margin: 0 0 28px }
.page-hero__text { max-width: 680px }
.page-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px }

/* ============ SERVICE PAGE CONTENT ============ */
.svcpage { background: var(--cream); padding: 88px 0 }
.svcpage-grid { display: grid; gap: 24px }
.svcpage-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow); overflow: hidden }
.svcpage-card__body { padding: 28px 28px 30px }
.svcpage-cat { font-size: 11px; letter-spacing: .18em; font-weight: 700; color: var(--gold-deep); text-transform: uppercase; display: block; margin-bottom: 8px }
.svcpage-card__title { font-family: var(--serif); font-weight: 500; font-size: 22px; color: var(--ink); margin: 0 0 12px; line-height: 1.2 }
.svcpage-card__desc { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin: 0 0 14px }
.svcpage-card__list { list-style: none; padding: 0; margin: 0 }
.svcpage-card__list li { font-size: 14px; color: var(--ink); padding: 7px 0; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 10px }
.svcpage-card__list li::before { content: ""; width: 16px; height: 16px; border-radius: 50%; flex: 0 0 16px; background: rgba(205,58,68,.15) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A31621' stroke-width='3'><path d='M5 13l4 4L19 7'/></svg>") no-repeat center / 10px }
.svcpage-card__list li:last-child { border-bottom: 0 }

/* Service body alternating layout */
.service-body { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 72px }
.service-body:nth-child(even) { direction: rtl }
.service-body:nth-child(even) > * { direction: ltr }
.service-body__img { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow) }
.service-body__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover }
.service-body__text h2 { font-family: var(--serif); font-size: clamp(24px,2.8vw,36px); font-weight: 500; color: var(--ink); margin: 0 0 16px }
.service-body__text h2 em { font-style: italic; color: var(--gold) }
.service-body__text p { font-size: 15.5px; color: var(--muted); line-height: 1.75; margin: 0 0 16px }
.service-body__text ul { padding-left: 0; list-style: none; margin: 0 }
.service-body__text ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--ink); padding: 8px 0; border-bottom: 1px solid var(--line) }
.service-body__text ul li::before { content: ""; width: 18px; height: 18px; border-radius: 50%; background: rgba(205,58,68,.15) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A31621' stroke-width='3'><path d='M5 13l4 4L19 7'/></svg>") no-repeat center / 11px; flex: 0 0 18px; margin-top: 2px }

/* ============ FAQ ============ */
.faq { padding: 88px 0 }
.faq-list { max-width: 820px; margin: 32px auto 0 }
.faq-item { border-bottom: 1px solid var(--line); padding: 4px 0 }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; cursor: pointer; padding: 20px 0; font-weight: 600; font-size: 16px; color: var(--ink); gap: 20px; list-style: none }
.faq-item summary::-webkit-details-marker { display: none }
.faq-item summary::after { content: "+"; color: var(--gold); font-size: 22px; transition: transform .25s; flex: 0 0 22px }
details[open].faq-item summary::after { transform: rotate(45deg) }
.faq-item p { font-size: 15px; color: var(--muted); line-height: 1.75; padding: 0 40px 20px 0; margin: 0 }

/* ============ CONTACT PAGE ============ */
.contact-page { padding: 80px 0 }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start }
.contact-info h2 { font-family: var(--serif); font-weight: 500; font-size: 32px; color: var(--ink); margin: 0 0 10px }
.contact-info h2 em { font-style: italic; color: var(--gold) }
.contact-info p { font-size: 15px; color: var(--muted); line-height: 1.7; margin: 0 0 32px }
.contact-info-list { list-style: none; padding: 0; margin: 0 0 32px }
.contact-info-list li { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line) }
.contact-info-list li:last-child { border-bottom: 0 }
.ci-icon { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(180deg,var(--gold-bright),var(--gold-deep)); color: #fff; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 46px }
.ci-icon svg { width: 20px; height: 20px; fill: currentColor }
.ci-label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--muted); display: block; margin-bottom: 3px }
.ci-val { font-size: 15.5px; font-weight: 600; color: var(--ink); display: block }
.ci-val a { color: var(--ink); transition: color .18s }
.ci-val a:hover { color: var(--gold-deep) }
.contact-map { border-radius: 14px; overflow: hidden; aspect-ratio: 16/9; box-shadow: var(--shadow); margin-top: 28px }
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block }
.contact-form-box { background: var(--bg); border: 1px solid rgba(205,58,68,.25); border-radius: 14px; padding: 40px; box-shadow: 0 20px 60px rgba(0,0,0,.18) }
.contact-form-box h2 { font-family: var(--serif); font-weight: 500; font-size: 26px; color: var(--gold); margin: 0 0 6px }
.contact-form-box p { font-size: 14px; color: rgba(250,250,249,.55); margin: 0 0 24px }
.cform { display: grid; grid-template-columns: 1fr 1fr; gap: 16px }
.cform .full { grid-column: 1 / -1 }
.cform input, .cform select, .cform textarea { width: 100%; height: 52px; padding: 0 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(205,58,68,.25); border-radius: 8px; font: inherit; font-size: 14.5px; color: var(--cream); outline: none; transition: border-color .18s }
.cform input:focus, .cform select:focus, .cform textarea:focus { border-color: var(--gold); background: rgba(255,255,255,.10) }
.cform input::placeholder, .cform textarea::placeholder { color: rgba(250,250,249,.35) }
.cform textarea { height: auto; min-height: 120px; padding: 12px 16px; resize: vertical; font-family: inherit }
.cform select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23A31621'><path d='M7 10l5 5 5-5z'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; background-color: transparent; color: var(--cream); padding-right: 38px }
.cform select option { background: #1D1C19; color: var(--cream) }
.cform-submit { background: linear-gradient(180deg,var(--gold-bright),var(--gold-deep)); color: #fff; height: 58px; border: 0; border-radius: 8px; font: inherit; font-weight: 700; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: box-shadow .18s; width: 100%; display: block }
.cform-submit:hover { box-shadow: 0 8px 22px rgba(205,58,68,.42) }
.cform label { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(250,250,249,.7); font-weight: 600; margin-bottom: 6px }

/* ============ ABOUT PAGE ============ */
.about-story { padding: 80px 0 }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center }
.about-img { border-radius: 14px; overflow: hidden; box-shadow: 0 24px 60px rgba(10,20,43,.10) }
.about-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover }
.about-certs { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 40px }
.cert-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 20px 16px; text-align: center; box-shadow: var(--shadow) }
.cert-card__icon { font-size: 28px; margin-bottom: 8px }
.cert-card__name { font-weight: 700; font-size: 13px; color: var(--ink); text-transform: uppercase; letter-spacing: .06em; display: block }
.cert-card__sub { font-size: 12px; color: var(--muted); display: block; margin-top: 3px }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px }
.value-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 28px 24px; box-shadow: var(--shadow) }
.value-card__icon { width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid var(--gold); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px }
.value-card__icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2 }
.value-card h3 { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--ink); margin: 0 0 10px }
.value-card h3 em { font-style: italic; color: var(--gold) }
.value-card p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.65 }

/* ============ SERVICES HUB PAGE ============ */
.services-hub { padding: 80px 0 }
.services-hub-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; margin-top: 48px }
.hub-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s; text-decoration: none; color: inherit; display: flex; flex-direction: column }
.hub-card:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(10,20,43,.12) }
.hub-card__img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg) }
.hub-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s }
.hub-card:hover .hub-card__img img { transform: scale(1.05) }
.hub-card__body { padding: 28px 26px 30px; flex: 1; display: flex; flex-direction: column }
.hub-card__title { font-family: var(--serif); font-weight: 500; font-size: 24px; color: var(--ink); margin: 0 0 12px; line-height: 1.2 }
.hub-card__title em { font-style: italic; color: var(--gold) }
.hub-card__desc { font-size: 14.5px; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 20px }
.hub-card__link { font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); display: flex; align-items: center; gap: 6px }
.hub-card__link:hover { color: var(--gold) }

/* ============ PROJECTS PAGE ============ */
.projects-page { padding: 80px 0 }
.projects-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px }

/* ============ REVIEWS PAGE ============ */
.reviews-page { padding: 80px 0 }

/* ============ CTA BAND (dark gold, replaces old red band) ============ */
.cta-band { background: var(--bg); padding: 72px 0; border-top: 1px solid rgba(205,58,68,.18); border-bottom: 1px solid rgba(205,58,68,.18) }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap }
.cta-band__text h2 { font-family: var(--serif); font-size: clamp(26px,3vw,42px); font-weight: 500; color: var(--cream); margin: 0 0 8px }
.cta-band__text h2 em { font-style: italic; color: var(--gold) }
.cta-band__text p { font-size: 16px; color: rgba(250,250,249,.72); margin: 0; max-width: 500px }
/* btn-white now renders as gold gradient for legacy service pages */
.cta-band .btn-white { display: inline-flex; align-items: center; gap: 10px; height: 56px; padding: 0 28px; border-radius: 8px; background: linear-gradient(180deg,var(--gold-bright),var(--gold-deep)); color: #fff; font-weight: 700; font-size: 13px; letter-spacing: .10em; text-transform: uppercase; border: 1px solid var(--gold-bright); transition: transform .18s, box-shadow .18s }
.cta-band .btn-white:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(205,58,68,.40) }
/* btn-outline-navy becomes btn-outline-gold alias */
.btn-outline-navy { display: inline-flex; align-items: center; gap: 10px; height: 50px; padding: 0 26px; border-radius: 8px; background: transparent; color: var(--gold-deep); font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; border: 1px solid var(--gold-deep); transition: background .18s, color .18s }
.btn-outline-navy:hover { background: var(--gold-deep); color: var(--ink) }
/* faq-q / faq-a legacy aliases */
.faq-q { display: flex; align-items: center; justify-content: space-between; cursor: pointer; padding: 20px 0; font-weight: 600; font-size: 16px; color: var(--ink); gap: 20px; list-style: none }
.faq-q::-webkit-details-marker { display: none }
.faq-q .faq-arrow { color: var(--gold); font-size: 22px; transition: transform .25s; flex: 0 0 22px }
details[open] .faq-q .faq-arrow { transform: rotate(45deg) }
.faq-a { font-size: 15px; color: var(--muted); line-height: 1.75; padding: 0 40px 20px 0; margin: 0 }

/* ============ FORM NOTICE ============ */
.form-notice { padding: 14px 18px; border-radius: 8px; font-size: 14px; font-weight: 500; display: none }
.form-notice.success { background: rgba(205,58,68,.12); border: 1px solid rgba(205,58,68,.30); color: var(--gold-deep) }
.form-notice.error { background: rgba(200,32,46,.08); border: 1px solid rgba(200,32,46,.25); color: #a81824 }

/* ============ PLACEHOLDER BOXES ============ */
.img-placeholder { background: linear-gradient(135deg, var(--bg) 0%, #1D1C19 100%); display: flex; align-items: center; justify-content: center; color: rgba(205,58,68,.3); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600 }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .site-nav { gap: 0 }
  .site-nav a { padding: 14px 12px; font-size: 14px }
  .site-header__inner { padding: 0 24px }
  .header-phone__num { display: none }
  .services-grid, .reviews-grid { grid-template-columns: 1fr 1fr }
  .services-grid--bottom { max-width: 100%; grid-template-columns: 1fr 1fr }
  .stats-grid, .areas-grid, .process-grid { grid-template-columns: repeat(2,1fr) }
  .why-grid { grid-template-columns: 1fr }
  .footer-cols { grid-template-columns: 1fr 1fr; row-gap: 40px }
  .about-grid, .contact-grid, .service-body { grid-template-columns: 1fr }
  .cv-grid { grid-template-columns: 1fr; gap: 40px }
  .services-hub-grid, .portfolio-grid { grid-template-columns: 1fr 1fr }
}
@media (max-width: 760px) {
  .topbar { display: none }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center }
  .site-nav, .header-divider, .btn-cta { display: none }
  .site-header__inner { height: 86px; padding: 0 16px }
  .site-header__logo img { height: 66px }
  .hero { height: calc(100vh - 74px); max-height: calc(100vh - 74px); min-height: 460px; padding: 0 }
  .hero__h1 { font-size: 44px }
  .hero__lead { font-size: 15.5px }
  .section, .services, .why, .reviews, .areas, .portfolio, .process, .faq { padding: 56px 0 }
  .services-grid, .services-grid--bottom { grid-template-columns: 1fr; max-width: 100% }
  .reviews-grid, .portfolio-grid, .stats-grid, .areas-grid, .process-grid { grid-template-columns: 1fr }
  .brands-row { grid-template-columns: repeat(3,1fr) }
  .footer-cols { grid-template-columns: 1fr }
  .footer-brand img { height: 72px }
  .values-grid, .about-certs { grid-template-columns: 1fr }
  .about-certs { grid-template-columns: 1fr 1fr }
  .services-hub-grid { grid-template-columns: 1fr }
  .service-body { gap: 32px }
  .service-body:nth-child(even) { direction: ltr }
  .cform { grid-template-columns: 1fr }
  .cv-row { grid-template-columns: 1fr }
  .contact-grid { gap: 40px }
  .projects-grid { grid-template-columns: 1fr 1fr }
  .container { padding: 0 20px }
  .cv-form { padding: 24px }
}
@media (max-width: 480px) {
  .projects-grid { grid-template-columns: 1fr }
  .hero__h1 { font-size: 38px }
}

/* ============ ANIMATIONS ============ */
@media (prefers-reduced-motion: no-preference) {
  .fade-up { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease }
  .fade-up.in-view { opacity: 1; transform: translateY(0) }
}

/* ============ BLOG CARDS ============ */
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(10,20,43,.10) }
.blog-card a:hover img { transform: scale(1.04) }

/* ============ BEFORE/AFTER ============ */
.ba-section .ba-panel { display: none }
.ba-section .ba-panel.is-active { display: block }

/* ============ PROCESS TIMELINE RESPONSIVE ============ */
@media (max-width: 760px) {
  .process-timeline { grid-template-columns: 1fr 1fr !important; gap: 32px !important }
  .process-timeline > div > div[aria-hidden] { display: none }
}
@media (max-width: 480px) {
  .process-timeline { grid-template-columns: 1fr !important }
}

/* ============ PORTFOLIO MASONRY RESPONSIVE ============ */
@media (max-width: 760px) {
  .portfolio-masonry { grid-template-columns: 1fr 1fr !important; }
  .portfolio-masonry > article:first-child { grid-column: 1 !important; grid-row: 1 !important; }
}
@media (max-width: 480px) {
  .portfolio-masonry { grid-template-columns: 1fr !important; }
  .portfolio-masonry > article { grid-column: 1 !important; grid-row: auto !important; }
}

/* ============ BLOG GRID RESPONSIVE ============ */
@media (max-width: 1100px) {
  .blog-grid { grid-template-columns: 1fr 1fr !important }
  .blog-grid article:last-child { grid-column: span 2 }
}
@media (max-width: 760px) {
  .blog-grid { grid-template-columns: 1fr !important }
  .blog-grid article:last-child { grid-column: span 1 }
}

/* ============ SERVICE CARD ICON ONLY ============ */
.service-card--icon-only .service-card__photo { display: none }
.service-card__icon--lg { width: 72px; height: 72px }
.service-card__icon--lg svg { width: 32px; height: 32px }

/* ============ HERO OVERLAY VISIBLE ============ */
.hero__overlay { display: block !important }

/* ============ BBB SEAL ============ */
.topbar__right { display: flex; align-items: center; gap: 14px; flex-shrink: 0 }
.topbar__right > span { white-space: nowrap }
.topbar__bbb { display: inline-flex; align-items: center; line-height: 0 }
.topbar__bbb img { height: 22px; width: auto; display: block; border-radius: 3px }
.footer-bbb { display: inline-block; margin-top: 16px; line-height: 0 }
.footer-bbb img { width: 170px; height: auto; display: block; border-radius: 4px }
@media (max-width: 1280px) { .topbar__left .topbar__item:last-child { display: none } }
@media (max-width: 1040px) { .topbar__left .topbar__item:nth-child(2) { display: none } }

/* ============ SERVICES DROPDOWN (desktop) ============ */
.nav-item { position: relative; display: inline-flex; align-items: center }
.nav-dropdown__toggle { display: inline-flex; align-items: center; gap: 5px; color: #FAFAF9; font-size: 14.5px; font-weight: 500; padding: 14px 16px; cursor: pointer; transition: color .18s; background: none; border: 0; font-family: inherit }
.nav-dropdown__toggle:hover { color: var(--gold) }
.nav-dropdown__toggle.is-active { color: var(--gold) }
.nav-dropdown__caret { width: 11px; height: 11px; transition: transform .2s; fill: currentColor }
.nav-item:hover .nav-dropdown__caret { transform: rotate(180deg) }
.nav-dropdown__menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 240px; background: var(--bg); border: 1px solid rgba(205,58,68,.30);
  border-radius: 10px; padding: 8px; box-shadow: 0 20px 50px rgba(0,0,0,.45);
  opacity: 0; visibility: hidden; transition: opacity .18s, transform .18s; z-index: 60;
}
.nav-item:hover .nav-dropdown__menu,
.nav-item:focus-within .nav-dropdown__menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0) }
.nav-dropdown__menu a {
  display: block; padding: 11px 16px; font-size: 14px; font-weight: 500;
  color: #FAFAF9; border-radius: 6px; transition: background .15s, color .15s;
}
.nav-dropdown__menu a:hover { background: rgba(205,58,68,.14); color: var(--gold) }
.nav-dropdown__menu a.dropdown-all { border-top: 1px solid rgba(205,58,68,.18); margin-top: 4px; padding-top: 12px; color: var(--gold-deep); font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase }
@media (max-width: 1100px) { .nav-dropdown__menu { display: none } }
.mnav-sub { font-size: 17px !important; padding-left: 16px !important; color: rgba(255,255,255,.72) !important }
.mnav-sub:hover { color: var(--gold) !important }

/* ============ WHY FLORIDA — value props with icons ============ */
.why-fl .process-step { padding-top: 56px }
.why-fl__icon {
  position: absolute; top: -28px; left: 50%; transform: translateX(-50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 8px 20px rgba(205,58,68,.35);
}
.why-fl__icon svg { width: 26px; height: 26px }
.why-fl .process-num { font-size: 30px; color: var(--gold-deep); opacity: .55; margin-bottom: 2px }
