/* ── ROOT ── */
:root {
  --green:     #1a1a1a;
  --green-lt:  #333333;
  --dark:      #1a1a1a;
  --text:      #2d2d2d;
  --muted:     #555;
  --border:    #e2e2e2;
  --bg:        #f7f7f5;
  --white:     #ffffff;
  --head-font: 'Barlow Condensed', sans-serif;
  --body-font: 'Inter', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body-font); color: var(--text); background: #fff; font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: var(--head-font); font-weight: 800; text-transform: uppercase; letter-spacing: .02em; line-height: 1.05; }
p { margin: 0; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── FOCUS STYLES (accessibility) ── */
:focus-visible {
  outline: 3px solid #333;
  outline-offset: 3px;
}
.accordion-button:focus-visible { outline: 3px solid #333; outline-offset: 2px; }
.r-arrow:focus-visible, .rdot:focus-visible { outline: 3px solid #333; outline-offset: 2px; }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: #1a1a1a;
  color: #fff;
  padding: 10px 18px;
  font-family: var(--head-font);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  z-index: 9999;
  border-radius: 0 0 4px 4px;
  transition: top .15s;
}
.skip-link:focus { top: 0; color: #fff; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--head-font); font-size: 15px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: #1a1a1a; color: #fff; padding: 13px 26px; border: none; cursor: pointer;
  transition: background .2s; border-radius: 2px;
}
.btn-primary:hover, .btn-primary:focus-visible { background: #333; color: #fff; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--head-font); font-size: 15px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: transparent; color: #fff; padding: 12px 26px; border: 2px solid rgba(255,255,255,0.55); cursor: pointer;
  transition: border-color .2s, background .2s; border-radius: 2px;
}
.btn-ghost:hover, .btn-ghost:focus-visible { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }

/* ── TOPBAR ── */
.topbar { background: #111; padding: 9px 0; font-size: 15px; color: rgba(255,255,255,0.7); }
.topbar a { color: rgba(255,255,255,0.9); transition: color .15s; }
.topbar a:hover { color: #fff; }

/* ── NAV ── */
.site-nav { background: #fff; border-bottom: 1px solid var(--border); min-height: 62px; padding: 0; }
.site-nav .navbar-brand { font-family: var(--head-font); font-size: 24px; font-weight: 800; text-transform: uppercase; color: var(--dark) !important; letter-spacing: .03em; }
.site-nav .navbar-brand span { color: #555; }
.site-nav .nav-link { font-family: var(--head-font); font-size: 16px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #444 !important; padding: 8px 14px !important; transition: color .15s; }
.site-nav .nav-link:hover { color: #1a1a1a !important; }
.site-nav .navbar-toggler { border: 1px solid var(--border); }
.site-nav .nav-cta { font-family: var(--head-font); font-size: 16px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: #1a1a1a !important; color: #fff !important; padding: 10px 22px !important; border-radius: 2px; margin-left: 6px; transition: background .2s !important; }
.site-nav .nav-cta:hover { background: #333 !important; color: #fff !important; }
.nav-phone { font-family: var(--head-font); font-size: 16px; font-weight: 700; color: var(--dark) !important; padding: 8px 14px !important; }

/* ── HERO ── */
.hero { position: relative; background-color: var(--dark); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .45; }
.hero-inner { position: relative; z-index: 2; padding: 72px 0 80px; }
.hero h1 { font-size: clamp(40px, 5.5vw, 68px); color: #fff; margin-bottom: 18px; }
.hero h1 em { color: #ccc; font-style: normal; }
.hero-sub { font-size: 19px; color: rgba(255,255,255,0.85); max-width: 480px; margin-bottom: 32px; line-height: 1.75; }
.division-label { font-size: 18px; color: #fff; font-weight: 500; margin-bottom: 18px; letter-spacing: .02em; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; }
.trust-pill { font-size: 15px; font-weight: 500; color: #fff; display: flex; align-items: center; gap: 9px; }
.trust-pill i { color: #bbb; font-size: 18px; }

/* ── QUOTE FORM ── */
.quote-card { background: #fff; border-radius: 4px; padding: 28px; box-shadow: 0 16px 48px rgba(0,0,0,0.5); }
.quote-card-title { font-family: var(--head-font); font-size: 20px; font-weight: 800; text-transform: uppercase; color: var(--dark); margin-bottom: 3px; }
.quote-card-sub { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.f-label { display: block; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #555; margin-bottom: 5px; }
.f-input { width: 100%; border: 1.5px solid var(--border); border-radius: 3px; padding: 11px 13px; font-size: 15px; font-family: var(--body-font); color: var(--dark); background: #fff; outline: none; transition: border-color .2s; }
.f-input:focus { border-color: #333; box-shadow: 0 0 0 3px rgba(0,0,0,0.08); }
.f-input::placeholder { color: #bbb; }
.f-select { width: 100%; border: 1.5px solid var(--border); border-radius: 3px; padding: 11px 13px; font-size: 15px; font-family: var(--body-font); color: var(--dark); background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 12px center; appearance: none; outline: none; }
.f-select:focus { border-color: #333; box-shadow: 0 0 0 3px rgba(0,0,0,0.08); }
.f-submit { width: 100%; background: #1a1a1a; color: #fff; border: none; padding: 13px; font-family: var(--head-font); font-size: 15px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: background .2s; border-radius: 3px; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 2px; }
.f-submit:hover { background: #333; }
.f-note { font-size: 12px; color: #888; text-align: center; margin-top: 8px; }
.f-success { display: none; background: #f5f5f5; border: 1px solid #ccc; border-radius: 4px; padding: 20px; text-align: center; }
.f-success i { color: #1a1a1a; font-size: 24px; margin-bottom: 8px; display: block; }
.f-success p { color: #333; font-size: 15px; font-weight: 500; }

/* ── PHONE BAR ── */
.phone-bar { background: #1a1a1a; padding: 18px 0; }
.phone-bar a { font-family: var(--head-font); font-size: 28px; font-weight: 800; color: #fff; letter-spacing: .02em; text-decoration: none; }
.phone-bar a:hover { color: rgba(255,255,255,0.75); }
.phone-bar-note { font-size: 15px; color: rgba(255,255,255,0.75); font-weight: 700; }

/* ── SECTION HELPERS ── */
.section { padding: 88px 0; }
.section-sm { padding: 64px 0; }
.section-bg { background: var(--bg); }
.section-dark { background: var(--dark); }
.section-label { font-family: var(--head-font); font-size: 15px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #555; margin-bottom: 10px; }
.section-title { font-size: clamp(28px, 3.5vw, 42px); color: var(--dark); margin-bottom: 14px; }
.section-title-white { color: #fff; }
.section-body { font-size: 17px; color: #444; line-height: 1.8; }
.section-body + .section-body { margin-top: 14px; }

/* ── ABOUT ── */
.about-photo { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }

/* ── PHOTO GRID ── */
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 280px); gap: 16px; }
.photo-grid-item { position: relative; overflow: hidden; border-radius: 2px; background: #d0d0ce; }
.photo-grid-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.photo-grid-item:hover img { transform: scale(1.07); }
.photo-grid-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 16px; background: rgba(0,0,0,0.55); font-family: var(--head-font); font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #fff; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.why-cell { padding: 36px 32px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-icon { font-size: 24px; color: #333; margin-bottom: 14px; }
.why-title { font-size: 19px; color: var(--dark); margin-bottom: 10px; }
.why-text { font-size: 16px; color: #444; line-height: 1.75; }

/* ── PROCESS ── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.08); margin-top: 52px; }
.process-cell { background: var(--dark); padding: 36px 28px; }
.process-num { font-family: var(--head-font); font-size: 44px; font-weight: 800; color: #aaa; line-height: 1; margin-bottom: 14px; }
.process-title { font-size: 18px; color: #fff; margin-bottom: 10px; }
.process-text { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ── REVIEWS ── */
.review-wrap { max-width: 700px; margin: 0 auto; }
.review-stars { color: #888; font-size: 20px; letter-spacing: 3px; margin-bottom: 18px; }
.review-stars span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.review-quote { font-size: 20px; color: var(--dark); line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.review-meta-name { font-family: var(--head-font); font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--dark); }
.review-meta-loc { font-size: 14px; color: var(--muted); margin-top: 2px; }
.review-nav { display: flex; align-items: center; gap: 16px; margin-top: 28px; }
.r-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); background: #fff; color: var(--text); font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s; }
.r-arrow:hover { background: #1a1a1a; border-color: #1a1a1a; color: #fff; }
.r-dots { display: flex; gap: 10px; }
.rdot { width: 12px; height: 12px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; padding: 0; transition: background .2s; }
.rdot.active { background: #1a1a1a; }

/* ── FAQ ── */
.accordion-item { border: none; border-bottom: 1px solid var(--border); }
.accordion-item:first-of-type { border-top: 1px solid var(--border); }
.accordion-button { font-family: var(--body-font); font-size: 17px; font-weight: 600; color: var(--dark); background: transparent; padding: 20px 0; box-shadow: none !important; }
.accordion-button:not(.collapsed) { color: #333; background: transparent; }
.accordion-button:focus { box-shadow: none; }
.accordion-body { font-size: 16px; color: #444; line-height: 1.8; padding: 0 0 20px; }

/* ── CONTACT ── */
.c-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.c-icon-box { width: 40px; height: 40px; flex-shrink: 0; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: #333; font-size: 15px; }
.c-label { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 3px; }
.c-val { font-size: 17px; font-weight: 600; color: var(--dark); }
.c-val a { color: var(--dark); }
.c-val a:hover { color: #555; }
.cta-box { background: var(--dark); border-radius: 3px; padding: 44px 36px; text-align: center; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.cta-box h3 { font-size: clamp(22px, 3vw, 32px); color: #fff; margin-bottom: 12px; }
.cta-box p { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 28px; max-width: 340px; margin-left: auto; margin-right: auto; }

/* ── FOOTER ── */
footer { background: #111; padding: 40px 0 32px; }
.footer-brand { font-family: var(--head-font); font-size: 19px; font-weight: 800; text-transform: uppercase; color: #fff; }
.footer-brand span { color: #aaa; }
.footer-nav a { font-size: 16px; color: rgba(255,255,255,0.7); font-family: var(--head-font); letter-spacing: .06em; text-transform: uppercase; font-weight: 600; transition: color .15s; }
.footer-nav a:hover { color: #fff; }
.footer-copy { font-size: 14px; color: rgba(255,255,255,0.5); padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); margin-top: 20px; }

/* ── STICKY MOBILE CALL ── */
.sticky-call { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1050; background: #1a1a1a; }
.sticky-call a { display: flex; align-items: center; justify-content: center; gap: 10px; color: #fff; font-family: var(--head-font); font-size: 18px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 16px; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .site-nav .navbar-collapse { background: #fff; padding: 12px 0 16px; border-top: 1px solid var(--border); }
  .site-nav .nav-link { padding: 10px 18px !important; border-bottom: 1px solid var(--border); }
  .nav-cta { margin: 12px 18px 0 !important; display: block; text-align: center; }
}
@media (max-width: 767px) {
  .section { padding: 60px 0; }
  .section-sm { padding: 48px 0; }
  .about-photo { min-height: 260px; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 200px); gap: 12px; }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .cta-box { padding: 32px 24px; }
  .sticky-call { display: block; }
  body { padding-bottom: 52px; }
  footer { padding-bottom: 64px; }
}
@media (max-width: 575px) {
  .hero-inner { padding: 52px 0 60px; }
  .hero h1 { font-size: 38px; }
  .quote-card { padding: 22px 16px; }
  .process-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 160px); gap: 10px; }
}