/* =========================================================
   Reno Rise — Shared Stylesheet
   ========================================================= */

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

:root {
  --dark: #14171d;
  --dark-2: #1b1f27;
  --dark-soft: #2a2f3a;
  --orange: #f0782a;
  --orange-dark: #d9631a;
  --orange-light: #fdecdf;
  --orange-a11y: #a8420d; /* WCAG AA-safe orange for text on light backgrounds (5.3:1+) */
  --cream: #f7f5f1;
  --cream-2: #f1efe9;
  --text: #14171d;
  --muted: #6b7280;
  --muted-light: #9ca3af;
  --border: #e8e5df;
  --white: #ffffff;
  --radius-lg: 24px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow: 0 20px 50px -20px rgba(20, 23, 29, 0.25);
  --shadow-sm: 0 8px 24px -10px rgba(20, 23, 29, 0.18);
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--dark);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

/* ---------- Eyebrow / tag pill ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange-a11y);
  background: var(--orange-light);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.eyebrow svg { width: 14px; height: 14px; }
.eyebrow.on-dark {
  background: rgba(15, 17, 22, 0.55);
  color: #ffffff;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14.5px;
  border: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.2s ease; flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(240, 120, 42, 0.55);
}
.btn-primary:hover { background: var(--orange-dark); }

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}
.btn-outline:hover { background: #fff; color: var(--dark); border-color: #fff; }

.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-dark:hover { background: var(--dark-soft); }

.btn-sm { padding: 11px 20px; font-size: 13.5px; }

.icon-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn:hover { background: var(--dark); border-color: var(--dark); color: #fff; }
.icon-btn.filled { background: var(--dark); color: #fff; }
.icon-btn.filled:hover { background: var(--orange); border-color: var(--orange); }

/* ---------- Header ---------- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 28px 0;
}
.site-header.solid {
  position: sticky;
  background: var(--dark);
  padding: 18px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 40px; height: 40px; }
.logo-mark img { width: 42px; height: 42px; object-fit: cover; border-radius: 9px; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text b { font-size: 19px; font-weight: 800; color: #fff; letter-spacing: -0.01em; }
.logo-text span { font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: 0.18em; }
.logo-tagline {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--orange);
  margin: 14px 0 0;
  letter-spacing: 0.01em;
}
.header-slogan {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.01em;
  margin-top: 3px;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .header-slogan { display: none; }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.main-nav a {
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.92;
  transition: opacity 0.2s ease;
  position: relative;
}
.main-nav a:hover { opacity: 1; }
.main-nav a svg { width: 12px; height: 12px; }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.header-cta { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: transparent;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(15,17,22,0.94) 0%, rgba(15,17,22,0.84) 32%, rgba(15,17,22,0.68) 62%, rgba(15,17,22,0.58) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 640px;
}
.hero h1 {
  color: #fff;
  font-size: 54px;
  margin-bottom: 22px;
}
.hero p {
  color: rgba(255,255,255,0.9);
  font-size: 17px;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Page (inner) hero ---------- */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: var(--dark) url('../images/home/gallery-exterior.jpg') center/cover no-repeat;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,17,22,0.88) 0%, rgba(15,17,22,0.78) 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 64px;
  text-align: center;
  width: 100%;
}
.page-hero h1 { color: #fff; font-size: 44px; margin-bottom: 14px; }
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 600;
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb svg { width: 12px; height: 12px; }

/* ---------- Section spacing ---------- */
.section { padding: 110px 0; }
.section-cream { background: var(--cream); }
.section-tight { padding: 90px 0; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}
.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-head h2 { font-size: 38px; max-width: 560px; }
.section-head-right { display: flex; align-items: center; gap: 14px; }

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.about-media::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: var(--orange);
  border-radius: var(--radius);
  top: -28px;
  right: -28px;
  z-index: -1;
}
.about-content h2 { font-size: 36px; margin-bottom: 24px; }
.about-content h2 .hl { color: var(--orange-a11y); }
.about-content p { color: var(--muted); font-size: 15.5px; margin: 0 0 28px; }

.about-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.avatar-stack { display: flex; }
.avatar-stack img {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  margin-left: -14px;
}
.avatar-stack img:first-child { margin-left: 0; }
.about-meta-text b { display: block; font-size: 16px; color: var(--dark); }
.about-meta-text span { font-size: 13px; color: var(--muted); }

.about-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.about-info-item { display: flex; gap: 14px; }
.about-info-item .icon-circle {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--orange-light);
  color: var(--orange-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-info-item .icon-circle svg { width: 18px; height: 18px; }
.about-info-item p { margin: 0; font-size: 13.5px; color: var(--muted); }

/* ---------- Services carousel ---------- */
.services-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.services-track::-webkit-scrollbar { display: none; }

.service-card {
  scroll-snap-align: start;
  flex: 0 0 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.service-card .thumb {
  position: relative;
  height: 210px;
}
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.service-card .thumb .icon-circle {
  position: absolute;
  bottom: -24px; left: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  border: 4px solid #fff;
}
.service-card .thumb .icon-circle svg { width: 24px; height: 24px; }
.service-card .body { padding: 40px 24px 26px; }
.service-card .body h3 { font-size: 18px; margin-bottom: 10px; }
.service-card .body p { font-size: 13.5px; color: var(--muted); margin: 0 0 14px; }
.service-card .body a {
  font-size: 13.5px; font-weight: 700; color: var(--dark);
  display: inline-flex; align-items: center; gap: 6px;
}
.service-card .body a svg { width: 13px; height: 13px; }

/* ---------- Process ---------- */
.process-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.process-row::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 16%;
  right: 16%;
  border-top: 2px dashed var(--border);
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-step .num-circle {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 26px;
  font-weight: 800;
  font-size: 20px;
  box-shadow: var(--shadow-sm);
}
.process-step .num-circle svg { width: 26px; height: 26px; }
.process-step h3 { font-size: 19px; margin-bottom: 12px; }
.process-step p { font-size: 14px; color: var(--muted); max-width: 300px; margin: 0 auto; }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.t-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.t-head img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.t-head b { display: block; font-size: 15.5px; }
.t-head span { font-size: 13px; color: var(--muted); }
.testimonial-card p.quote { font-size: 14.5px; color: var(--muted); margin: 0 0 18px; }
.t-foot { display: flex; align-items: center; justify-content: space-between; }
.stars { display: flex; gap: 3px; color: var(--orange); }
.stars svg { width: 15px; height: 15px; }
.google-badge { display: flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; color: var(--muted); }
.google-badge svg { width: 16px; height: 16px; }

.dots { display: flex; gap: 8px; justify-content: center; margin-top: 36px; }
.dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--border); }
.dots span.active { background: var(--orange); width: 22px; border-radius: 4px; }

/* ---------- Projects gallery ---------- */
.gallery-wrap { position: relative; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 16px;
}
.gallery-grid a { border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-grid a:hover img { transform: scale(1.08); }
.gallery-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 92px; height: 92px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  text-align: center;
  padding: 10px;
}
.gallery-badge .logo-mark { background: var(--dark); width: 40px; height: 40px; border-radius: 10px; margin: 0 auto 4px; }
.gallery-badge .logo-mark svg { width: 20px; height: 20px; color: var(--orange); }
.gallery-badge span { font-size: 9px; font-weight: 800; letter-spacing: 0.08em; color: var(--dark); }

/* ---------- Service area / map ---------- */
.map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 460px;
  background: var(--cream-2);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.15); }
.map-pin {
  position: absolute;
  top: 30%; left: 42%;
  background: var(--orange);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}
.map-pin svg { width: 16px; height: 16px; }

/* ---------- Card grid (blog/services/locations index) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.post-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.post-card .thumb { height: 220px; position: relative; overflow: hidden; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.post-card:hover .thumb img { transform: scale(1.06); }
.post-card .tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,0.95);
  color: var(--orange-dark);
  font-size: 11.5px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.post-card .body { padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.post-card .meta { display: flex; align-items: center; gap: 14px; font-size: 12.5px; color: var(--muted-light); margin-bottom: 12px; font-weight: 600; }
.post-card .meta span { display: flex; align-items: center; gap: 5px; }
.post-card .meta svg { width: 13px; height: 13px; }
.post-card h3 { font-size: 19px; margin-bottom: 12px; }
.post-card p { font-size: 14px; color: var(--muted); margin: 0 0 20px; flex: 1; }
.post-card .readmore {
  font-size: 13.5px; font-weight: 700; color: var(--dark);
  display: inline-flex; align-items: center; gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.post-card .readmore svg { width: 13px; height: 13px; transition: transform 0.2s ease; }
.post-card:hover .readmore svg { transform: translateX(4px); }

.featured-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.featured-card .thumb { height: 100%; min-height: 320px; }
.featured-card .body { justify-content: center; padding: 36px 40px; }
.featured-card h3 { font-size: 25px; }

/* ---------- Region blocks (locations hub) ---------- */
.region-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 64px;
}
.region-nav a {
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--text);
  transition: all 0.2s ease;
}
.region-nav a:hover { background: var(--dark); border-color: var(--dark); color: #fff; }

.region-block {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 100px;
}
.region-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.region-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.region-head h3 { font-size: 22px; }
.region-head span { font-size: 13.5px; color: var(--muted); font-weight: 600; }

.city-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.city-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: #fff;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  transition: all 0.2s ease;
}
.city-chip svg { width: 14px; height: 14px; color: var(--orange); }
.city-chip:hover { border-color: var(--orange); background: var(--orange-light); color: var(--orange-dark); }
.city-chip.main { background: var(--dark); border-color: var(--dark); color: #fff; }
.city-chip.main svg { color: var(--orange); }
.city-chip.main:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.city-chip-static { cursor: default; color: var(--muted); background: var(--cream); border-style: dashed; }
.city-chip-static svg { color: var(--muted-light); }
.city-chip-static:hover { border-color: var(--border); background: var(--cream); color: var(--muted); transform: none; box-shadow: none; }

/* ---------- Pagination ---------- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 64px;
}
.pagination a, .pagination span {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 14px;
  border: 1.5px solid var(--border);
  color: var(--text);
}
.pagination a:hover { background: var(--dark); border-color: var(--dark); color: #fff; }
.pagination .active { background: var(--orange); border-color: var(--orange); color: #fff; }
.pagination .arrow { border: none; }
.pagination .arrow svg { width: 16px; height: 16px; }

/* ---------- Filter bar (index pages) ---------- */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.filter-bar button {
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: #fff;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--muted);
  transition: all 0.2s ease;
}
.filter-bar button:hover { border-color: var(--dark); color: var(--dark); }
.filter-bar button.active { background: var(--dark); border-color: var(--dark); color: #fff; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
  background-image: url('../images/home/gallery-livingroom.jpg');
  background-size: cover;
  background-position: center;
}
.cta-band::before { content:""; position:absolute; inset:0; background: linear-gradient(100deg, rgba(15,17,22,0.92), rgba(15,17,22,0.75)); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: 32px; max-width: 460px; }
.cta-band p { color: rgba(255,255,255,0.7); margin: 12px 0 0; max-width: 420px; font-size: 14.5px; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.65); padding-top: 90px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 14px; margin: 20px 0 24px; max-width: 300px; }
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
}
.social-row a svg { width: 16px; height: 16px; }
.social-row a:hover { background: var(--orange); border-color: var(--orange); }
.footer-col h3 { color: #fff; font-size: 15px; margin-bottom: 22px; }
.footer-col ul li { margin-bottom: 14px; }
.footer-col ul li a { font-size: 14px; transition: color 0.2s ease; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 18px; font-size: 14px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  font-size: 13px;
}
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 24px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about { grid-template-columns: 1fr; }
  .about-media img { height: 380px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-card { grid-column: span 2; grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .process-row { grid-template-columns: 1fr; gap: 56px; }
  .process-row::before { display: none; }
}

@media (max-width: 860px) {
  .main-nav, .header-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .hero h1 { font-size: 38px; }
  .hero { min-height: 640px; }
  .hero-video { display: none; }
  .hero { background: var(--dark) url('../videos/hero-poster.jpg') center/cover no-repeat; }
  .section { padding: 72px 0; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .card-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band { flex-direction: column; text-align: center; padding: 44px 28px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .page-hero h1 { font-size: 32px; }
}

@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
  .about-info { grid-template-columns: 1fr; }
}

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 200;
  display: none;
  flex-direction: column;
  padding: 28px 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.mobile-nav .logo-tagline { margin: 0 0 36px; }
.mobile-nav a {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav .btn { margin-top: 30px; justify-content: center; }

/* ---------- Accessibility: skip link ---------- */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 1000;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
}

/* ---------- Table of contents ---------- */
.toc {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 8px 0 36px;
  background: var(--cream);
}
.toc-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
  margin-bottom: 12px;
}
.toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 28px;
}
.toc li { break-inside: avoid; margin-bottom: 9px; }
.toc a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.toc a:hover { color: var(--orange-dark); }
.toc a .toc-num { color: var(--orange); font-weight: 800; font-size: 12px; }
@media (max-width: 560px) { .toc ol { columns: 1; } }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  z-index: 90;
  transition: background 0.2s ease;
}
.back-to-top:hover { background: var(--orange); }
.back-to-top svg { width: 20px; height: 20px; }

/* ---------- Article / single blog post ---------- */
.article-meta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.6);
  font-size: 13.5px;
  font-weight: 600;
  margin-top: 18px;
}
.article-meta-row span { display: flex; align-items: center; gap: 6px; }
.article-meta-row svg { width: 14px; height: 14px; }

.article-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.article-wrap > p {
  font-size: 16.5px;
  color: var(--muted);
  margin: 0 0 24px;
}
.article-wrap h2 {
  font-size: 27px;
  margin: 52px 0 18px;
  padding-top: 4px;
}
.article-wrap h3 {
  font-size: 19px;
  margin: 30px 0 12px;
}
.article-wrap ul.check-list { margin: 0 0 24px; }
.article-wrap ul.check-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text);
}
.article-wrap ul.check-list li svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; margin-top: 1px; }

.callout {
  background: var(--orange-light);
  border: 1px solid #f6d3b3;
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 8px 0 32px;
  display: flex;
  gap: 16px;
}
.callout svg { width: 22px; height: 22px; color: var(--orange-dark); flex-shrink: 0; }
.callout p { margin: 0; font-size: 15px; color: #7a3d10; }
.callout strong { color: var(--orange-dark); }

.cost-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 32px;
  font-size: 14.5px;
}
.cost-table th, .cost-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.cost-table th {
  background: var(--cream);
  font-weight: 800;
  color: var(--dark);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cost-table td { color: var(--muted); }
.cost-table td:first-child { color: var(--text); font-weight: 600; }
.cost-table tr:last-child td { border-bottom: none; }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 8px 0 32px;
}
.tier-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.tier-card.mid { border-color: var(--orange); background: var(--orange-light); }
.tier-card .tier-label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 8px; }
.tier-card.mid .tier-label { color: var(--orange-dark); }
.tier-card .tier-price { font-size: 24px; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.tier-card p { font-size: 13.5px; color: var(--muted); margin: 0; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 14px;
}
.faq-item h3 { margin: 0 0 10px; font-size: 16.5px; }
.faq-item p { margin: 0; font-size: 14.5px; color: var(--muted); }

.author-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  margin: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.author-card img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.author-card b { display: block; font-size: 14.5px; }
.author-card span { font-size: 13px; color: var(--muted); }

.internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 32px;
}
.internal-links a {
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.internal-links a:hover { border-color: var(--dark); background: var(--dark); color: #fff; }

.article-img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: 40px 0 6px;
  display: block;
  height: 340px;
  object-fit: cover;
}
.img-credit {
  font-size: 11.5px;
  color: var(--muted-light);
  margin: 0 0 8px;
  text-align: right;
}
.img-credit a { color: var(--muted-light); text-decoration: underline; }

@media (max-width: 700px) {
  .tier-grid { grid-template-columns: 1fr; }
  .cost-table { font-size: 13px; }
  .cost-table th, .cost-table td { padding: 10px 10px; }
}

/* ---------- Lead form ---------- */
.lead-form-wrap {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  margin: 8px 0 0;
}
.lead-form-wrap h3 { font-size: 20px; margin-bottom: 6px; }
.lead-form-wrap .sub { color: var(--muted); font-size: 14px; margin: 0 0 22px; }
.lead-form, .assessment-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-form .field-full, .assessment-form .field-full { grid-column: 1 / -1; }
.lead-form label,
.assessment-form label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 7px;
}
.lead-form input,
.lead-form select,
.lead-form textarea,
.assessment-form input,
.assessment-form select,
.assessment-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s ease;
}
.lead-form textarea,
.assessment-form textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.assessment-form input:focus,
.assessment-form select:focus,
.assessment-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
}
.lead-form .btn, .assessment-form .btn { width: 100%; justify-content: center; margin-top: 4px; }
.assessment-form .btn:disabled { opacity: 0.7; cursor: not-allowed; }
.required-mark { color: var(--orange-a11y); }
.required-legend {
  grid-column: 1 / -1;
  font-size: 12.5px;
  color: var(--muted);
  margin: -4px 0 0;
}
.optional-mark {
  color: var(--muted-light);
  font-weight: 500;
  font-size: 11.5px;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 4px;
}
#assessment-form, #projects { scroll-margin-top: 120px; }
.form-note {
  grid-column: 1 / -1;
  font-size: 12.5px;
  color: var(--muted-light);
  text-align: center;
  margin: 4px 0 0;
}
.form-note-inline {
  font-size: 12.5px;
  color: var(--muted);
  margin: -6px 0 0;
}
.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}
.form-success.show { display: block; }
.form-success svg { width: 46px; height: 46px; color: var(--orange); margin-bottom: 14px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--muted); margin: 0; }
@media (max-width: 640px) {
  .lead-form, .assessment-form { grid-template-columns: 1fr; }
}

/* ---------- CTA microcopy ---------- */
.cta-microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  justify-content: center;
}
.cta-microcopy span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.cta-microcopy svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; }
.hero-actions + .cta-microcopy { justify-content: flex-start; }
.cta-band .cta-microcopy { justify-content: flex-start; margin-top: 16px; }

/* ---------- Why choose us / trust grid ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.trust-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--orange); }
.trust-item .icon-circle { width: 48px; height: 48px; margin-bottom: 16px; }
.trust-item .icon-circle svg { width: 20px; height: 20px; }
.trust-item h3 { font-size: 16.5px; margin-bottom: 8px; }
.trust-item p { font-size: 13.5px; color: var(--muted); margin: 0; }
@media (max-width: 860px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ---------- Hover animation enhancements ---------- */
.city-chip { transition: all 0.2s ease, transform 0.2s ease; }
.city-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.service-card .thumb .icon-circle { transition: transform 0.25s ease; }
.service-card:hover .thumb .icon-circle { transform: scale(1.1) rotate(-4deg); }

/* ---------- Sticky mobile CTA ---------- */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 150;
  background: var(--dark);
  padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
}
.sticky-mobile-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
}
.sticky-mobile-cta a.btn-primary { background: var(--orange); color: #fff; }
.sticky-mobile-cta a.btn-call { background: transparent; border: 1.5px solid rgba(255,255,255,0.3); color: #fff; }
.sticky-mobile-cta svg { width: 16px; height: 16px; }
@media (max-width: 720px) {
  .sticky-mobile-cta { display: flex; }
  body:has(.sticky-mobile-cta) { padding-bottom: 72px; }
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- CTA band contrast boost ---------- */
.cta-band { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06); }
.cta-band::before { background: linear-gradient(100deg, rgba(10,12,16,0.96), rgba(10,12,16,0.85)); }
.cta-band h2 { text-shadow: 0 2px 12px rgba(0,0,0,0.35); }
