/* =============================================
   I & A Services LLC — Stylesheet v5
   Complete redesign with all fixes
   ============================================= */
:root {
  --gold: #d4a017;
  --gold-light: #f1c232;
  --gold-dark: #a87c0e;
  --black: #0a0a0a;
  --charcoal: #171717;
  --white: #ffffff;
  --soft: #f7f5ef;
  --line: #e7e1d2;
  --text: #353535;
  --muted: #666666;
  --max: 1240px;
  --shadow: 0 22px 70px rgba(0,0,0,.13);
  --radius: 18px;
  --radius-sm: 12px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.7; color: var(--text); background: var(--white); }
h1, h2, h3, h4 { font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; color: var(--black); }
h1 { font-size: clamp(28px, 4vw, 54px); }
h2 { font-size: clamp(24px, 3vw, 42px); }
h3 { font-size: clamp(18px, 2vw, 26px); }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-dark); }
img { max-width: 100%; display: block; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ── TOPBAR ── */
.topbar { background: var(--charcoal); color: var(--white); padding: 9px 0; font-size: 13px; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar-left { color: var(--gold-light); font-style: italic; }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-right a { color: var(--white); font-weight: 700; }
.topbar-right a:hover { color: var(--gold-light); }

/* ── NAVIGATION ── */
.nav { background: var(--white); border-bottom: 3px solid var(--black); position: sticky; top: 0; z-index: 1000; }
.nav .container { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; gap: 16px; }

/* Brand / Logo */
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.nav-brand-logo { width: 52px; height: 52px; object-fit: contain; flex-shrink: 0; }
.nav-brand-icon { width: 46px; height: 46px; background: var(--gold); color: var(--black); font-size: 14px; font-weight: 900; display: flex; align-items: center; justify-content: center; border-radius: 10px; flex-shrink: 0; }
.nav-brand-text { line-height: 1.2; }
.nav-brand-name { font-size: 15px; font-weight: 900; color: var(--black); letter-spacing: -0.02em; }
.nav-brand-tagline { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

/* Desktop menu */
.nav-menu { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a { display: block; padding: 10px 12px; font-size: 14px; font-weight: 700; color: var(--black); border-radius: 8px; transition: background .2s, color .2s; white-space: nowrap; }
.nav-menu > li > a:hover { background: #f2f3f5; color: var(--gold-dark); }

/* FIX: padding-top bridge closes the gap so mouse can reach the dropdown */
/* ── DROPDOWN — bulletproof hover ──
   HTML: <li class="has-dd"><a>Label ↓</a><ul class="dropdown-menu"><div class="dropdown-inner"><li><a>Item</a></li></div></ul></li>
   The padding-top on .dropdown-menu creates an invisible bridge so the mouse
   can travel from the trigger link down to the menu without losing hover. */
.has-dd { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  min-width: 240px;
  list-style: none;
  padding-top: 8px;       /* invisible hover bridge */
  background: transparent;
}
/* Show on hover OR keyboard focus */
.has-dd:hover > .dropdown-menu,
.has-dd:focus-within > .dropdown-menu { display: block; }

.dropdown-inner {
  background: var(--white);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
  padding: 8px;
}
.dropdown-menu li { list-style: none; }
.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  border-radius: 10px;
  transition: background .18s;
  white-space: nowrap;
  text-decoration: none;
}
.dropdown-menu li a:hover { background: #f2f3f5; color: var(--gold-dark); }

/* CTA button in nav */
.nav-cta { background: var(--black); color: var(--white) !important; padding: 12px 20px; border-radius: 10px; font-size: 14px; font-weight: 900; display: flex; align-items: center; white-space: nowrap; transition: background .2s; flex-shrink: 0; }
.nav-cta:hover { background: var(--gold); color: var(--black) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--black); border-radius: 2px; transition: transform .3s, opacity .3s; }

/* Mobile drawer */
.mobile-nav { display: none; background: var(--white); border-top: 1px solid var(--line); }
.mobile-nav.open { display: block; }
.mobile-nav-item { border-bottom: 1px solid var(--line); }
.mobile-nav-item > a, .mobile-nav-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 24px; font-size: 15px; font-weight: 700; color: var(--black); background: none; border: none; width: 100%; text-align: left; cursor: pointer; }
.mobile-nav-sub { display: none; padding: 4px 0 8px 0; background: var(--soft); }
.mobile-nav-sub.open { display: block; }
.mobile-nav-sub a { display: block; padding: 10px 36px; font-size: 14px; font-weight: 600; color: var(--black) !important; }
.mobile-nav-cta { display: block; margin: 16px 24px; padding: 16px; background: var(--black); color: var(--white) !important; text-align: center; border-radius: 10px; font-weight: 900; font-size: 15px; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 10px; font-weight: 900; font-size: 14px; text-decoration: none; transition: all .2s; border: 2px solid transparent; cursor: pointer; min-height: 50px; white-space: nowrap; }
.btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--black); }
.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: #333; border-color: #333; color: var(--white); }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--black); }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-white { background: var(--white); }
.section-soft { background: var(--soft); }
.section-dark { background: var(--charcoal); }
.section-black { background: var(--black); }
.section-header { text-align: center; margin-bottom: 52px; }
.section-subtitle { font-size: 17px; color: var(--muted); max-width: 600px; margin: 16px auto 0; line-height: 1.7; }
.eyebrow { font-size: 12px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.divline { width: 56px; height: 3px; background: var(--gold); margin: 0 auto 24px; border-radius: 2px; }
.divline-left { margin-left: 0; }

/* ── GRIDS ── */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.g4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── ICON CARDS (replaces broken images on service pages) ── */
.icon-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.icon-card:hover { transform: translateY(-5px); box-shadow: 0 32px 80px rgba(0,0,0,.14); }
.icon-card-emoji { font-size: 40px; margin-bottom: 16px; line-height: 1; }
.icon-card-title { font-size: 17px; font-weight: 900; color: var(--black); margin-bottom: 10px; }
.icon-card-text { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; }
.icon-card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 13px; font-weight: 900; color: var(--gold); }
.icon-card-link:hover { color: var(--gold-dark); }

/* Dark icon card for black section */
.icon-card-dark {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .2s, background .2s;
}
.icon-card-dark:hover { transform: translateY(-4px); background: rgba(255,255,255,.09); }
.icon-card-dark .icon-card-emoji { filter: none; }
.icon-card-dark .icon-card-title { color: var(--white); }
.icon-card-dark .icon-card-text { color: rgba(255,255,255,.65); }
.icon-card-dark .icon-card-link { color: var(--gold-light); }

/* ── STANDARD CARDS ── */
.card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.card:hover { transform: translateY(-6px); box-shadow: 0 32px 80px rgba(0,0,0,.16); }
.card-img { height: 200px; background-size: cover; background-position: center; background-color: var(--soft); }
.card-body { padding: 24px; }
.card-title { font-size: 18px; font-weight: 900; color: var(--black); margin-bottom: 10px; }
.card-text { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── PROB CARDS ── */
.prob-card { background: var(--white); border-left: 4px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 22px 24px 22px 28px; box-shadow: var(--shadow); }
.prob-card-title { font-size: 16px; font-weight: 900; color: var(--black); margin-bottom: 8px; }
.prob-card-text { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── SPLIT LAYOUT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; }
.split-photo { background-size: cover; background-position: center; min-height: 500px; position: relative; display: flex; align-items: flex-end; }
.split-photo::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.25); }
.split-photo-quote { position: relative; z-index: 2; background: rgba(0,0,0,.7); color: rgba(255,255,255,.9); padding: 24px; font-size: 15px; font-style: italic; line-height: 1.6; width: 100%; }
.split-content { padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }

/* ── CHECKLIST ── */
.checklist { list-style: none; margin: 20px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; font-weight: 600; color: var(--text); }
.checklist li::before { content: "✓"; width: 22px; height: 22px; background: var(--gold); color: var(--black); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 900; flex-shrink: 0; margin-top: 2px; }

/* ── PROCESS STEPS ── */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.process-step { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); overflow: hidden; transition: transform .2s; }
.process-step:hover { transform: translateY(-4px); }
.process-step-icon { height: 120px; display: flex; align-items: center; justify-content: center; font-size: 52px; background: rgba(255,255,255,.04); position: relative; }
.process-step-img { height: 160px; background-size: cover; background-position: center; }
.process-step-num { position: absolute; bottom: -16px; left: 24px; font-size: 56px; font-weight: 900; color: rgba(255,255,255,.08); line-height: 1; }
.process-step-body { padding: 24px 22px 22px; }
.process-step-title { font-size: 16px; font-weight: 900; color: var(--white); margin-bottom: 8px; }
.process-step-text { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ── REVIEWS ── */
.review-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); padding: 28px; box-shadow: var(--shadow); }
.stars { color: var(--gold); font-size: 18px; margin-bottom: 14px; }
.review-text { font-size: 15px; font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: 20px; }
.review-author { font-size: 14px; font-weight: 900; color: var(--black); }
.review-meta { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: 16px; font-weight: 700; color: var(--black); cursor: pointer; }
.faq-q:hover { color: var(--gold-dark); }
.faq-icon { width: 28px; height: 28px; background: var(--black); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; flex-shrink: 0; transition: transform .3s, background .2s; }
.faq-a { display: none; padding: 0 0 20px; font-size: 15px; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); }

/* ── STATS BAR ── */
.stats-bar { background: var(--charcoal); padding: 32px 0; }
.stats-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 20px; border-right: 1px solid rgba(255,255,255,.1); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: clamp(28px, 3.5vw, 42px); font-weight: 900; color: var(--gold); display: block; }
.stat-label { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.6); margin-top: 6px; text-transform: uppercase; letter-spacing: .1em; }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg, var(--charcoal) 0%, #0f0f0f 100%); border-radius: var(--radius); padding: 60px 56px; text-align: center; margin: 0 auto; max-width: 860px; }
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.7); font-size: 17px; margin-bottom: 32px; }

/* ── AREA CHIPS ── */
.area-chip { display: inline-block; background: var(--soft); border: 1px solid var(--line); border-radius: 999px; padding: 6px 16px; font-size: 13px; font-weight: 700; color: var(--text); margin: 4px; transition: background .2s, color .2s; }
.area-chip:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* ── FORMS ── */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .06em; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--line); border-radius: 10px; font-size: 15px; font-family: Arial, sans-serif; background: #fafafa; color: var(--text); transition: border-color .2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ── FOOTER ── */
.footer { background: var(--charcoal); border-top: 3px solid var(--black); padding: 60px 0 0; color: rgba(255,255,255,.75); }
.ft-main { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.ft-logo-img { width: 80px; height: auto; margin-bottom: 16px; object-fit: contain; }
.ft-brand-name { font-size: 18px; font-weight: 900; color: var(--white); margin-bottom: 12px; }
.ft-brand-desc { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 20px; }
.ft-license { display: inline-block; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 8px; padding: 6px 14px; font-size: 12px; font-weight: 700; color: var(--gold-light); letter-spacing: .06em; margin-bottom: 18px; }
.ft-social { display: flex; gap: 12px; }
.ft-social a { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; color: rgba(255,255,255,.7); transition: background .2s, color .2s; }
.ft-social a:hover { background: var(--gold); color: var(--black); }
.ft-col-title { font-size: 12px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-links a { font-size: 14px; color: rgba(255,255,255,.65); transition: color .2s; }
.ft-links a:hover { color: var(--gold-light); }
.ft-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,.65); margin-bottom: 12px; }
.ci-label { font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-light); margin-bottom: 4px; }
.ci-value { font-size: 14px; color: rgba(255,255,255,.85); font-weight: 600; }
.ft-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,.45); flex-wrap: wrap; gap: 8px; }
.ft-bottom a { color: var(--gold-light); }
.ft-bottom a:hover { color: var(--white); }

/* ── STICKY CALL ── */
.sticky-call { position: fixed; right: 20px; bottom: 20px; background: var(--charcoal); color: var(--white); border-radius: 999px; padding: 14px 24px; box-shadow: 0 20px 55px rgba(0,0,0,.45); font-weight: 900; font-size: 14px; z-index: 998; display: flex; align-items: center; gap: 8px; text-decoration: none; transition: background .2s; border: 2px solid rgba(255,255,255,.12); }
.sticky-call:hover { background: var(--gold); color: var(--black); }

/* ── PAGE HERO (interior) ── */
.page-hero { position: relative; min-height: 480px; display: flex; align-items: flex-end; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: var(--charcoal); }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.88) 100%); }
.page-hero-content { position: relative; z-index: 1; width: 100%; padding-bottom: 52px; padding-top: 56px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span::before { content: '›'; margin-right: 8px; }
.page-hero-content h1 { color: var(--white); margin-bottom: 14px; max-width: 800px; }
.page-hero-content h1 em { font-style: italic; color: var(--gold-light); }
.page-hero-subtitle { font-size: 17px; color: rgba(255,255,255,.82); margin-bottom: 24px; max-width: 680px; line-height: 1.65; }
.badge-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.badge-pill { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.85); padding: 7px 16px; border-radius: 999px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }

/* ── SERVICE LAYOUT ── */
.svc-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; }
.contact-info-card { background: var(--charcoal); border-radius: var(--radius); padding: 36px; color: var(--white); }
.contact-info-card h3 { color: var(--white); margin-bottom: 24px; }
.contact-info-row { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-info-row:last-child { border-bottom: none; }
.ci-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }

/* ── AREA PAGES ── */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.area-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); padding: 28px; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.area-card:hover { transform: translateY(-4px); box-shadow: 0 28px 60px rgba(0,0,0,.14); }
.area-card-name { font-size: 20px; font-weight: 900; color: var(--black); margin-bottom: 12px; }
.area-cities { font-size: 13px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.area-card-link { font-size: 13px; font-weight: 900; color: var(--gold); display: flex; align-items: center; gap: 6px; }
.area-page-grid { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.city-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.city-chip { background: var(--soft); border: 1px solid var(--line); border-radius: 8px; padding: 6px 14px; font-size: 13px; font-weight: 700; color: var(--text); }
.svc-link-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0; }
.svc-link-btn { display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: var(--soft); border: 1px solid var(--line); border-radius: 10px; font-size: 14px; font-weight: 700; color: var(--black); transition: background .2s, border-color .2s; text-decoration: none; }
.svc-link-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* ── GALLERY GRID ── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; aspect-ratio: 4/3; background-size: cover; background-position: center; transition: transform .3s; }
.gallery-item:hover { transform: scale(1.02); }
.gallery-item:first-child { grid-row: span 2; aspect-ratio: auto; min-height: 340px; }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 50%, rgba(0,0,0,.7)); display: flex; align-items: flex-end; padding: 18px; opacity: 0; transition: opacity .3s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label { color: var(--white); font-size: 14px; font-weight: 700; }

/* ── FADE UP ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   HERO LIGHT (Homepage)
   ══════════════════════════════════════════ */
.hero-light {
  background:
    radial-gradient(circle at 78% 18%, rgba(212,160,23,.15), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #faf8f2 55%, #f0ede3 100%);
  padding: 80px 0 60px;
  overflow: hidden;
  position: relative;
}
.hero-light-grid { display: grid; grid-template-columns: 1fr .95fr; gap: 56px; align-items: center; }

/* Left copy */
.hero-light-eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--black); font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px; }
.hero-light-eyebrow::before { content: ''; width: 44px; height: 2px; background: var(--gold); flex-shrink: 0; }
.hero-light-h1 { font-size: clamp(34px, 4.5vw, 62px); font-weight: 900; line-height: 1.08; letter-spacing: -0.03em; color: var(--black); margin-bottom: 22px; }
.hero-light-desc { font-size: 18px; color: #444; line-height: 1.75; max-width: 580px; margin-bottom: 32px; }
.hero-light-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.btn-hl { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 15px 30px; font-size: 14px; font-weight: 900; border: 1.5px solid transparent; transition: all .22s; white-space: nowrap; text-decoration: none; }
.btn-hl:hover { transform: translateY(-2px); }
.btn-hl-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #111; border-color: var(--gold); box-shadow: 0 14px 34px rgba(212,160,23,.28); }
.btn-hl-gold:hover { box-shadow: 0 18px 42px rgba(212,160,23,.38); color: #111; }
.btn-hl-light { background: var(--white); border-color: var(--line); color: var(--black); box-shadow: 0 4px 16px rgba(0,0,0,.07); }
.btn-hl-light:hover { border-color: #c8c0b0; background: #faf8f2; color: var(--black); }

/* Check notes */
.hero-light-notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 560px; }
.hero-light-note { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px; font-weight: 900; font-size: 13px; color: var(--black); box-shadow: 0 6px 18px rgba(0,0,0,.06); display: flex; align-items: center; gap: 8px; }
.hl-check { color: var(--gold); font-size: 14px; font-weight: 900; flex-shrink: 0; }

/* Right visual */
.hero-light-visual { position: relative; min-height: 520px; }
.hero-light-slides { position: absolute; right: 0; top: 10px; width: 85%; height: 460px; border-radius: 32px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,.18); }
.hero-light-slides::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(212,160,23,.18), rgba(0,0,0,.22)); z-index: 1; }
.hl-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease-in-out; }
.hl-slide-active { opacity: 1; }

@keyframes kbZoomIn  { 0%{ transform:scale(1.0) } 100%{ transform:scale(1.15) } }
@keyframes kbZoomOut { 0%{ transform:scale(1.15)} 100%{ transform:scale(1.0)  } }
@keyframes kbPanLeft { 0%{ transform:scale(1.1) translateX(3%)  } 100%{ transform:scale(1.1) translateX(-3%) } }
@keyframes kbPanRight{ 0%{ transform:scale(1.1) translateX(-3%) } 100%{ transform:scale(1.1) translateX(3%)  } }

.hl-slide-active.kb-1 { animation: kbZoomIn   8s ease-in-out forwards; }
.hl-slide-active.kb-2 { animation: kbPanLeft  8s ease-in-out forwards; }
.hl-slide-active.kb-3 { animation: kbZoomOut  8s ease-in-out forwards; }
.hl-slide-active.kb-4 { animation: kbPanRight 8s ease-in-out forwards; }

.hero-light-card { position: absolute; left: 0; bottom: 20px; width: 52%; background: var(--white); border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 20px 56px rgba(0,0,0,.14); padding: 22px 22px 18px; z-index: 5; }
.hl-card-logo { width: 64px; height: auto; object-fit: contain; margin-bottom: 10px; }
.hl-card-title { font-size: 15px; font-weight: 900; color: var(--black); margin-bottom: 6px; line-height: 1.3; }
.hl-card-sub { font-size: 13px; color: var(--muted); line-height: 1.5; }
.hero-light-pill { position: absolute; left: 0; top: 0; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px; font-size: 12px; font-weight: 900; color: var(--black); box-shadow: 0 8px 24px rgba(0,0,0,.1); z-index: 5; white-space: nowrap; }
.hl-dots { position: absolute; bottom: 28px; right: 8%; display: flex; gap: 8px; z-index: 6; }
.hl-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.5); border: none; cursor: pointer; transition: background .3s, transform .3s; padding: 0; }
.hl-dot-active { background: var(--gold); transform: scale(1.5); }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-menu, .topbar { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .hero-light-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-light-visual { min-height: 400px; }
  .hero-light-slides { position: relative; width: 100%; height: 360px; top: 0; right: 0; }
  .hero-light-card { position: relative; bottom: auto; left: auto; width: 100%; margin-top: 16px; border-radius: 20px; }
  .hero-light-pill { display: none; }
  .hl-dots { right: 16px; bottom: 16px; }
}

@media (max-width: 767px) {
  .g2, .g3, .g4, .split, .ft-main, .contact-layout, .process-grid,
  .stats-bar-grid, .form-row, .svc-layout, .area-page-grid, .areas-grid,
  .svc-link-grid, .gallery-grid { grid-template-columns: 1fr !important; }
  .cta-band { padding: 40px 28px; }
  .ft-bottom { flex-direction: column; text-align: center; }
  .section { padding: 56px 0; }
  .page-hero { min-height: 380px; }
  .page-hero-content { padding-top: 40px; padding-bottom: 36px; }
  .split-content { padding: 40px 28px; }
  .process-grid { grid-template-columns: 1fr !important; }
  .hero-light-notes { grid-template-columns: 1fr; }
  .hero-light-h1 { font-size: 34px; }
  .hero-light-desc { font-size: 16px; }
  .hero-light-actions { flex-direction: column; align-items: stretch; }
  .btn-hl { justify-content: center; width: 100%; }
  .hero-light-slides { height: 300px; border-radius: 20px; }
  .gallery-item:first-child { grid-row: auto; aspect-ratio: 4/3; min-height: 0; }
}

/* ══════════════════════════════════════════
   SERVICES PHOTO CARDS (homepage redesign)
   ══════════════════════════════════════════ */

/* Top 2-up row */
.svc-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.svc-photo-row-3 {
  grid-template-columns: repeat(3, 1fr);
}

.svc-photo-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s;
}
.svc-photo-card:hover { transform: translateY(-4px); }
.svc-photo-card-sm { min-height: 240px; }

.svc-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.svc-photo-card:hover .svc-photo-bg { transform: scale(1.04); }
.svc-photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.1) 100%);
  transition: background 0.3s;
}
.svc-photo-card:hover::after {
  background: linear-gradient(0deg, rgba(10,5,0,.88) 0%, rgba(10,5,0,.45) 55%, rgba(10,5,0,.15) 100%);
}

.svc-photo-body {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
  width: 100%;
}
.svc-photo-icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.5));
}
.svc-photo-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.15;
}
.svc-photo-text {
  font-size: 14px;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
  margin-bottom: 14px;
}
.svc-photo-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 900;
  color: var(--gold-light);
  transition: gap 0.2s;
}
.svc-photo-card:hover .svc-photo-cta { gap: 10px; }

/* Bottom 4-up mini cards */
.svc-mini-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px 18px;
  text-decoration: none;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.svc-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
  border-color: var(--gold);
}
.svc-mini-icon { font-size: 32px; margin-bottom: 12px; display: block; }
.svc-mini-title { font-size: 16px; font-weight: 900; color: var(--black); margin-bottom: 8px; }
.svc-mini-text { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.svc-mini-link { font-size: 13px; font-weight: 900; color: var(--gold); }

/* ══════════════════════════════════════════
   TRUST BENEFITS STRIP
   ══════════════════════════════════════════ */
.section-trust {
  background: var(--charcoal);
  padding: 52px 0;
  border-top: 3px solid rgba(255,255,255,.06);
  border-bottom: 3px solid rgba(255,255,255,.06);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.trust-item {
  padding: 20px 22px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 28px; margin-bottom: 12px; }
.trust-title { font-size: 14px; font-weight: 900; color: var(--white); margin-bottom: 6px; line-height: 1.2; }
.trust-text { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ══════════════════════════════════════════
   PHOTO STRIP
   ══════════════════════════════════════════ */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.photo-strip-item {
  aspect-ratio: 3/2;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
  background-color: var(--soft);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.photo-strip-item:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 36px rgba(0,0,0,.18);
  z-index: 2;
  position: relative;
}

/* ══════════════════════════════════════════
   PROCESS TIMELINE (horizontal)
   ══════════════════════════════════════════ */
.process-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 8px;
}
.pt-step {
  flex: 1;
  text-align: center;
  padding: 0 8px;
  position: relative;
}
.pt-num {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 10px;
}
.pt-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,.07);
  border: 2px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: background 0.2s, border-color 0.2s;
}
.pt-step:hover .pt-icon-wrap {
  background: rgba(212,160,23,.15);
  border-color: var(--gold);
}
.pt-icon { font-size: 24px; }
.pt-title { font-size: 14px; font-weight: 900; color: var(--white); margin-bottom: 8px; }
.pt-text { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.6; }
.pt-connector {
  flex: 0 0 24px;
  height: 2px;
  background: linear-gradient(90deg, rgba(212,160,23,.4), rgba(212,160,23,.15));
  margin-top: 32px; /* align with center of icon */
  align-self: flex-start;
}

/* ══════════════════════════════════════════
   REVIEW FEATURED
   ══════════════════════════════════════════ */
.review-featured {
  background: linear-gradient(135deg, var(--charcoal), #0f0f0f);
  border-radius: var(--radius);
  padding: 44px 52px;
  text-align: center;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
}
.review-featured-stars { font-size: 22px; color: var(--gold); margin-bottom: 18px; }
.review-featured-text {
  font-size: 19px;
  color: rgba(255,255,255,.88);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.review-featured-name { font-size: 16px; font-weight: 900; color: var(--white); }
.review-featured-role { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 4px; }

/* ══════════════════════════════════════════
   AREAS CHIP CLOUD (homepage)
   ══════════════════════════════════════════ */
.areas-chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.areas-chip-cloud span {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

/* ══════════════════════════════════════════
   RESPONSIVE — new components
   ══════════════════════════════════════════ */
@media (max-width: 900px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-item:nth-child(3) { border-right: none; }
  .trust-item:nth-child(4), .trust-item:nth-child(5), .trust-item:nth-child(6) { border-top: 1px solid rgba(255,255,255,.08); }
  .process-timeline { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .pt-connector { display: none; }
  .pt-step { flex: 0 0 calc(33% - 14px); }
  .photo-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .svc-photo-row, .svc-photo-row-3 { grid-template-columns: 1fr !important; }
  .svc-photo-card { min-height: 240px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2n) { border-right: none; }
  .trust-item:nth-child(3), .trust-item:nth-child(4), .trust-item:nth-child(5), .trust-item:nth-child(6) { border-top: 1px solid rgba(255,255,255,.08); }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .review-featured { padding: 32px 24px; }
  .review-featured-text { font-size: 16px; }
  .pt-step { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .photo-strip { grid-template-columns: 1fr; }
  .pt-step { flex: 0 0 100%; }
}
