/* === OAKLINE RENOVATIONS — BUSINESS DEMO === */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

body {
  font-family: 'Nunito Sans', sans-serif;
  background: #f9f6f1;
  color: #1e1a16;
  line-height: 1.6;
  overflow-x: hidden;
}

:root {
  --cream: #f9f6f1;
  --white: #ffffff;
  --ink: #1e1a16;
  --muted: #72685e;
  --walnut: #6b3f1e;
  --walnut-dark: #3a1f0b;
  --walnut-soft: #f3ede5;
  --border: #e0d8ce;
  --r: 6px;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

/* ---- DEMO CONTROLS (bottom-left, out of the way) ---- */
.demo-controls {
  position: fixed;
  top: 84px;
  right: 16px;
  z-index: 200;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 7px;
}
.demo-badge {
  background: rgba(30, 26, 22, 0.8);
  color: rgba(255,255,255,0.7);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  pointer-events: none;
  backdrop-filter: blur(8px);
}
.back-btn {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--border);
  padding: 7px 12px;
  border-radius: var(--r);
  font-size: 12px;
  font-weight: 700;
  transition: background 0.15s;
  display: block;
}
.back-btn:hover { background: var(--cream); }

/* ---- NAVBAR ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s;
}
.site-header.scrolled {
  background: rgba(249, 246, 241, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  transition: color 0.3s;
  flex-shrink: 0;
}
.site-header.scrolled .logo { color: var(--ink); }
.logo-sq {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 900;
  transition: border-color 0.3s, color 0.3s;
  flex-shrink: 0;
}
.site-header.scrolled .logo-sq {
  border-color: var(--walnut);
  color: var(--walnut);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s;
}
.site-header.scrolled .nav-links { color: var(--muted); }
.nav-links a:hover { color: var(--white); }
.site-header.scrolled .nav-links a:hover { color: var(--walnut); }
.nav-links a.active { color: var(--white); }
.site-header.scrolled .nav-links a.active { color: var(--ink); font-weight: 700; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.15s;
  white-space: nowrap;
  font-family: 'Nunito Sans', sans-serif;
}
.btn-walnut { background: var(--walnut); color: var(--white); }
.btn-walnut:hover { background: #5a3415; }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-outline { background: transparent; color: var(--walnut); border-color: var(--walnut); }
.btn-outline:hover { background: var(--walnut-soft); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #2e2924; }
.btn-ghost { background: rgba(255,255,255,0.08); color: var(--white); border-color: rgba(255,255,255,0.18); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); }

/* Mobile menu */
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.3s;
}
.site-header.scrolled .menu-btn span { background: var(--ink); }
.mobile-menu {
  display: none;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--walnut); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(to top, rgba(30,26,22,0.88) 0%, rgba(30,26,22,0.4) 55%, rgba(30,26,22,0.2) 100%),
    url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}
.hero-content {
  padding: 0 0 80px;
  max-width: 760px;
}
.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(42px, 6.5vw, 88px);
  font-weight: 700;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: rgba(255,255,255,0.75); }
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 48px;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-scroll::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}

/* ---- STATS BAND ---- */
.stats-band {
  background: var(--walnut-dark);
  color: var(--white);
  padding: 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,0.08);
}
.stat-cell {
  padding: 36px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: none;
}
.stat-n {
  font-family: 'Raleway', sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-l {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---- SECTION BASICS ---- */
section { padding: 96px 0; }

.kicker {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--walnut);
  margin-bottom: 14px;
}

h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 16px;
}
h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.lead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

/* ---- SERVICES (home preview) ---- */
.services-section { background: var(--white); }

.section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.svc-row {
  background: var(--white);
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: stretch;
  gap: 0;
  transition: background 0.15s;
}
.svc-row:hover { background: var(--walnut-soft); }
.svc-row:hover .svc-arrow { opacity: 0; }
.svc-num-box {
  width: 56px;
  align-self: stretch;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--border);
  font-size: 11px;
  font-weight: 800;
  color: var(--walnut);
  letter-spacing: 0.1em;
  background: var(--walnut-soft);
}
.svc-text {
  padding: 22px 20px;
}
.svc-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink);
}
.svc-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }
.svc-arrow { opacity: 0; font-size: 13px; color: var(--walnut); transition: opacity 0.15s; padding-right: 16px; justify-self: end; }

/* ---- DIVIDER ---- */
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ---- PROCESS STRIP ---- */
.process-section {
  background: var(--walnut-dark);
  color: var(--white);
}
.process-section h2 { color: var(--white); }
.process-section .kicker { color: rgba(255,255,255,0.4); }
.process-section .lead { color: rgba(255,255,255,0.55); }

.process-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 56px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.step {
  padding: 32px 24px 32px 0;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.step:first-child { padding-left: 0; }
.step:last-child { border-right: none; }
.step-num {
  font-family: 'Raleway', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  margin-bottom: 12px;
}
.step h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.step p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ---- REVIEWS (home) ---- */
.reviews-section { background: var(--cream); }

.reviews-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.review-featured {
  background: var(--walnut-dark);
  color: var(--white);
  border-radius: var(--r);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}
.review-featured blockquote {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-style: italic;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  flex: 1;
}
.review-featured blockquote::before { content: '\201C'; }
.review-featured blockquote::after { content: '\201D'; }
.review-meta { display: flex; align-items: center; gap: 14px; }
.review-meta strong { display: block; font-size: 14px; color: var(--white); }
.review-meta span { font-size: 13px; color: rgba(255,255,255,0.45); }
.avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.2);
}
.av-a { background: linear-gradient(135deg, #8b5e3c, #c4956a); }
.av-b { background: linear-gradient(135deg, #4a6741, #7aad6e); }

.reviews-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-sm {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  flex: 1;
}
.review-stars { color: #b8860b; font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; }
.review-sm p { font-size: 14px; color: var(--muted); line-height: 1.65; font-style: italic; margin-bottom: 14px; }
.review-sm strong { font-size: 13px; font-weight: 700; }
.review-sm span { font-size: 12px; color: var(--muted); }

.rating-row {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.rating-num {
  font-family: 'Raleway', sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}
.rating-detail span { display: block; font-size: 13px; color: var(--muted); }
.rating-stars { color: #b8860b; font-size: 16px; letter-spacing: 3px; margin-bottom: 4px; }

/* ---- CTA BAND ---- */
.cta-section {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 80px 0;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.cta-inner h2 { margin-bottom: 8px; }

/* ---- PAGE HEADER ---- */
.page-hero {
  background:
    linear-gradient(to bottom, rgba(30,26,22,0.7), rgba(30,26,22,0.55)),
    url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  padding: 160px 0 72px;
  color: var(--white);
}
.page-hero .kicker { color: rgba(255,255,255,0.45); }
.page-hero h1 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero .lead { color: rgba(255,255,255,0.6); max-width: 560px; }

/* ---- SERVICES FULL (services page) ---- */
.services-full-section { background: var(--white); }
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 48px;
}
.svc-card {
  background: var(--white);
  padding: 32px 28px;
  transition: background 0.15s;
}
.svc-card:hover { background: var(--walnut-soft); }
.svc-card-num {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--walnut);
  margin-bottom: 14px;
}
.svc-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.svc-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* Process full (services page) */
.process-full { background: var(--cream); }
.process-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 48px;
}
.process-full-item {
  background: var(--white);
  padding: 36px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}
.process-full-item:hover { background: var(--walnut-soft); }
.pfi-num {
  font-family: 'Raleway', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-top: -6px;
}
.pfi-name {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pfi-desc { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* ---- GALLERY / PROJECTS ---- */
.gallery-section { background: var(--cream); }
.projects-section { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 12px;
  margin-top: 48px;
}
.g-item {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--border);
  cursor: pointer;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.g-item:hover img { transform: scale(1.06); }

.g-item.g-wide { grid-column: span 2; }
.g-item.g-tall { grid-row: span 2; }

/* Items without real images — placeholder gradients */
.g-item.ph-1 { background: linear-gradient(145deg, #2c1a0e, #7a4c1a); }
.g-item.ph-2 { background: linear-gradient(145deg, #1a2030, #3a4a70); }
.g-item.ph-3 { background: linear-gradient(145deg, #0e1a14, #2a4a32); }
.g-item.ph-4 { background: linear-gradient(145deg, #1e1410, #4a3020); }
.g-item.ph-5 { background: linear-gradient(145deg, #201818, #542828); }

.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,14,8,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 20px;
}
.g-cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 5px;
}
.g-name {
  font-family: 'Raleway', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
}

/* ---- BEFORE / AFTER ---- */
.ba-section { background: var(--white); }
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 48px;
}
.ba-card { position: relative; border-radius: var(--r); overflow: hidden; }
.ba-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
.ba-placeholder {
  width: 100%;
  height: 340px;
}
.ba-before-ph { background: linear-gradient(145deg, #2c2419, #5a4530); }
.ba-after-ph { background: linear-gradient(145deg, #1e1a14, #3d2e1e); }

.ba-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--white);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 6px 11px;
  border-radius: 3px;
}
.ba-caption {
  padding: 16px 4px 0;
}
.ba-caption h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
}
.ba-caption p { font-size: 13px; color: var(--muted); }

/* ---- CONTACT ---- */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-kicker { margin-bottom: 4px; }
.contact-lines { margin-top: 32px; border-top: 1px solid var(--border); }
.contact-line {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  font-size: 14px;
}
.contact-line dt {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--walnut);
  padding-top: 2px;
}
.contact-line dd { color: var(--ink); font-weight: 600; }
.contact-line dd small { display: block; font-size: 12px; color: var(--muted); font-weight: 400; margin-top: 2px; }

.area-block { margin-top: 36px; }
.area-block h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 14px;
}
.area-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.area-tag {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
}

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px;
}
.contact-form h3 {
  font-size: 22px;
  margin-bottom: 4px;
}
.form-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.form-body { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label {
  display: grid;
  gap: 5px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
input, select, textarea {
  border: 1px solid var(--border);
  background: var(--cream);
  border-radius: 5px;
  padding: 11px 13px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--walnut);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(107, 63, 30, 0.1);
}
textarea { min-height: 110px; resize: vertical; }
.submit-btn { width: 100%; height: 50px; font-size: 15px; margin-top: 4px; }

/* ---- MAP ---- */
.map-section { background: var(--white); padding: 0; }
.map-wrap {
  height: 380px;
  background:
    linear-gradient(135deg, rgba(107,63,30,0.08), rgba(58,31,11,0.12)),
    url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?auto=format&fit=crop&w=1400&q=60') center/cover;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 28px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(30,26,22,0.14);
}
.map-card strong {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.map-card span { font-size: 13px; color: var(--muted); }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--walnut-dark);
  color: rgba(255,255,255,0.5);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-desc { font-size: 13px; line-height: 1.7; }
.footer-col h5 {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-col li { margin-bottom: 9px; font-size: 13px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.velora-credit { color: rgba(255,255,255,0.25); }
.velora-credit a { color: rgba(255,255,255,0.4); }
.velora-credit a:hover { color: var(--white); }

/* ---- MOBILE CTA ---- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 150;
  background: rgba(249,246,241,0.96);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  gap: 8px;
  backdrop-filter: blur(12px);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .menu-btn { display: flex; }
  .section-intro { grid-template-columns: 1fr; gap: 24px; }
  .services-list { grid-template-columns: 1fr; }
  .process-header { grid-template-columns: 1fr; gap: 28px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .step { padding: 28px 20px; }
  .reviews-layout { grid-template-columns: 1fr; }
  .reviews-side { flex-direction: row; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g-item.g-wide { grid-column: span 2; }
  .g-item.g-tall { grid-row: auto; }
  .g-item { height: 240px; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-full-grid { grid-template-columns: 1fr 1fr; }
  .process-full-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .hero-content { padding-bottom: 60px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .reviews-side { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .services-full-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .g-item.g-wide { grid-column: span 1; }
  .g-item { height: 220px; }
  .mobile-cta-bar { display: flex; }
  .demo-controls { display: none; }
  .hero-scroll { display: none; }
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-fade {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.reveal-fade.visible { opacity: 1; }

/* ---- BEFORE / AFTER INTERACTIVE SLIDER ---- */
.ba-interactive {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  height: 360px;
}
.ba-base-layer,
.ba-after-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ba-after-layer {
  clip-path: inset(0 50% 0 0);
}
.ba-drag-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: rgba(255,255,255,0.9);
  transform: translateX(-50%);
  z-index: 10;
  cursor: ew-resize;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
}
.ba-drag-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 14px rgba(0,0,0,0.22);
  font-size: 15px;
  color: var(--ink);
  cursor: ew-resize;
}
.ba-label-pill {
  position: absolute;
  z-index: 5;
  top: 14px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 5px 10px;
  border-radius: 3px;
  background: rgba(255,255,255,0.9);
  color: var(--ink);
  backdrop-filter: blur(4px);
}
.ba-label-before { left: 14px; }
.ba-label-after { right: 14px; }
.ba-ph-before { background: linear-gradient(145deg, #2c1e0e, #6b3818); }
.ba-ph-after { background: linear-gradient(145deg, #e8ddd0, #c4b094); }
.ba-ph-before-2 { background: linear-gradient(145deg, #1a1a2e, #383875); }
.ba-ph-after-2 { background: linear-gradient(145deg, #ede8de, #cfc0a4); }
.ba-slider-hint {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}

/* ---- STAT COUNTER (prevent layout shift during animation) ---- */
.stat-n { min-width: 3ch; }

/* ---- HERO HEADING RALEWAY TWEAK ---- */
.hero h1 { font-weight: 800; letter-spacing: -0.025em; }
h2 { font-weight: 700; letter-spacing: -0.01em; }
h3 { font-weight: 700; }
.logo { font-weight: 800; letter-spacing: 0.02em; }

/* ---- HOME PROJECT STRIP ---- */
.project-strip { background: var(--cream); }
.project-strip .section-intro { align-items: center; margin-bottom: 40px; }
.pp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.pp-item {
  position: relative;
  display: block;
  border-radius: var(--r);
  overflow: hidden;
  height: 300px;
  cursor: pointer;
}
.pp-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.pp-item:hover img { transform: scale(1.05); }
.pp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 14, 8, 0.82) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.pp-overlay span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 5px;
  display: block;
}
.pp-overlay p {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
@media (max-width: 768px) {
  .pp-grid { grid-template-columns: 1fr 1fr; }
  .pp-item:last-child { display: none; }
}
@media (max-width: 480px) {
  .pp-grid { grid-template-columns: 1fr; }
  .pp-item:last-child { display: block; }
  .pp-item { height: 240px; }
}

/* ---- SCROLL PROGRESS BAR ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--walnut);
  z-index: 9999;
  transition: width 0.06s linear;
  pointer-events: none;
}

/* ---- GALLERY LIGHTBOX ---- */
.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 8, 0.88);
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  will-change: opacity;
}
.lb-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.lb-modal {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  max-width: 620px;
  width: 100%;
  transform: translateY(20px);
  transition: transform 0.2s cubic-bezier(0.2, 0, 0, 1);
  will-change: transform;
  position: relative;
}
.lb-overlay.open .lb-modal {
  transform: translateY(0);
}
.lb-thumb {
  height: 260px;
  width: 100%;
}
.lb-body {
  padding: 26px 30px 32px;
}
.lb-cat {
  display: block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--walnut);
  margin-bottom: 8px;
}
.lb-title {
  font-family: 'Raleway', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
}
.lb-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 24px;
}
.lb-close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 20px;
  line-height: 1;
  transition: background 0.15s;
  z-index: 601;
  font-family: 'Nunito Sans', sans-serif;
}
.lb-close:hover { background: rgba(255, 255, 255, 0.22); }
@media (max-width: 640px) {
  .lb-thumb { height: 200px; }
  .lb-body { padding: 20px 20px 24px; }
  .lb-title { font-size: 21px; }
}

/* ---- LEAFLET MAP OVERRIDES ---- */
#oaklineMap {
  height: 340px;
  border-top: 1px solid var(--border);
  z-index: 1;
  position: relative;
}
.leaflet-popup-content-wrapper {
  border-radius: var(--r) !important;
  font-family: 'Nunito Sans', sans-serif !important;
  box-shadow: 0 8px 32px rgba(30, 26, 22, 0.2) !important;
  border: 1px solid var(--border);
}
.leaflet-popup-content {
  margin: 13px 16px !important;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.leaflet-popup-content strong {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--ink);
}
.leaflet-popup-tip { background: var(--white) !important; }
.leaflet-control-zoom a {
  font-family: 'Nunito Sans', sans-serif !important;
  color: var(--ink) !important;
}

/* ---- FORM SUCCESS STATE ---- */
.form-success {
  text-align: center;
  padding: 48px 20px 36px;
}
.form-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #1e4d33;
  color: var(--white);
  font-size: 26px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}
.form-success h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.form-success p {
  font-size: 14px;
  color: var(--muted);
  max-width: 300px;
  margin: 0 auto;
  line-height: 1.7;
}
