*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #E8622A;
  --orange-dim: #c44e1f;
  --orange-pale: #fdf0eb;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --muted: #888;
  --bg: #ffffff;
  --bg-warm: #f7f4f0;
  --bg-dark: #1a1a1a;
  --border: #e5e5e5;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; padding: 0; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-brand img { height: 36px; width: auto; }
.nav-brand-text { line-height: 1.2; }
.nav-brand-name { font-size: 0.9rem; font-weight: 700; color: var(--ink); }
.nav-brand-sub { font-size: 0.7rem; color: var(--muted); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  flex: 1;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--ink); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  transition: border-color 0.15s;
}

.btn-phone:hover { border-color: var(--ink); }

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.5rem 1.25rem;
  transition: background 0.15s;
}

.btn-cta:hover { background: var(--orange-dim); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.25s;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  padding: 2rem 24px;
  border-top: 1px solid var(--border);
  overflow-y: auto;
}

.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}
.nav-mobile .nav-mobile-cta {
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  text-align: center;
  border: none;
  margin-top: 1.5rem;
}

/* ── HERO ── */
#hero {
  padding: 100px 32px 64px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 90vh;
  position: relative;
  background-image: url('lhc-hero.JPEG');
  background-size: cover;
  background-position: center;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.78);
  z-index: 0;
}

#hero .hero-left,
#hero .hero-right {
  position: relative;
  z-index: 1;
}

.hero-left { display: flex; flex-direction: column; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #e8f4ff;
  color: #1a6fb0;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.hero-pill-tag {
  background: #1a6fb0;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 100px;
  padding: 0.15rem 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-headline {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.hero-headline .orange { color: var(--orange); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 0.85rem 1.5rem;
  transition: background 0.15s, transform 0.15s;
}

.btn-hero-primary:hover { background: var(--orange-dim); transform: translateY(-1px); }

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  padding: 0.85rem 1.5rem;
  border: 1.5px solid var(--border);
  transition: border-color 0.15s;
}

.btn-hero-secondary:hover { border-color: var(--ink); }

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-avatars { display: flex; }

.hero-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero-avatar:first-child { margin-left: 0; }
.av1 { background: #7c6f64; }
.av2 { background: #4a7c59; }
.av3 { background: #6b5b95; }
.av-more { background: var(--orange); }

.hero-rating { line-height: 1.3; }
.hero-stars { color: #f5a623; font-size: 0.85rem; }
.hero-rating-text { font-size: 0.82rem; color: var(--ink-soft); font-weight: 500; }

.hero-right { position: relative; }

.hero-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #e8e8e8;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-badge {
  position: absolute;
  bottom: 24px;
  right: -16px;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.hero-badge-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.hero-badge-text { font-size: 0.72rem; color: rgba(255,255,255,0.7); margin-top: 0.2rem; }

.hero-fixed-price {
  position: absolute;
  top: 24px;
  right: -16px;
  background: #fff;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  border: 1px solid var(--border);
}

.hero-fixed-price-icon {
  width: 28px;
  height: 28px;
  background: #e8f5ee;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d9e5c;
  font-size: 0.9rem;
}

.hero-fixed-price-text { line-height: 1.3; }
.hero-fixed-price-title { font-size: 0.8rem; font-weight: 700; color: var(--ink); }
.hero-fixed-price-sub { font-size: 0.68rem; color: var(--muted); }

/* ── TRUST STRIP ── */
#trust {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 32px;
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.trust-icon {
  width: 32px;
  height: 32px;
  background: #e8f0fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.trust-title { font-size: 0.82rem; font-weight: 700; color: var(--ink); }
.trust-sub { font-size: 0.7rem; color: var(--muted); }

/* ── SECTION LABEL ── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1.5rem;
}

/* ── SERVICES ── */
#services {
  padding: 96px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.services-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.services-heading .dash {
  display: block;
  width: 32px;
  height: 3px;
  background: var(--ink);
  margin: 0.75rem auto;
  border-radius: 2px;
}

.services-sub {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}

.service-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }

.service-card-img {
  aspect-ratio: 16/10;
  background: #e8e8e8;
  overflow: hidden;
}

.service-card-img img { width: 100%; height: 100%; object-fit: cover; }

.service-card-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
}

.service-card-body { padding: 1.25rem; }

.service-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--orange);
  background: var(--orange-pale);
  border-radius: 100px;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.5rem;
}

.service-card-title { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; }
.service-card-desc { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 0.75rem; }
.service-link { font-size: 0.82rem; font-weight: 600; color: var(--orange); display: inline-flex; align-items: center; gap: 0.3rem; }

/* ── QUOTE SECTION ── */
#quote {
  background: var(--ink);
  padding: 80px 32px;
  margin: 0 32px;
  border-radius: 20px;
}

.quote-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.quote-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.5rem; }

.quote-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.quote-heading .orange { color: var(--orange); }

.quote-sub { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 2rem; }

.quote-steps { display: flex; flex-direction: column; gap: 1.25rem; }
.quote-step { display: flex; align-items: flex-start; gap: 1rem; }

.quote-step-num {
  width: 28px;
  height: 28px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.quote-step-title { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 0.2rem; }
.quote-step-desc { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.5; }

.quote-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
}

.quote-form-step { font-size: 0.72rem; font-weight: 600; color: var(--muted); text-align: right; margin-bottom: 0.5rem; }
.quote-form-bar { height: 4px; background: #f0f0f0; border-radius: 2px; margin-bottom: 1.5rem; overflow: hidden; }
.quote-form-bar-fill { height: 100%; width: 33%; background: var(--orange); border-radius: 2px; }
.quote-form-title { font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-bottom: 0.35rem; }
.quote-form-sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.25rem; }

.quote-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.quote-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  background: #fff;
}

.quote-option:hover { border-color: var(--orange); }
.quote-option.selected { border-color: var(--orange); background: var(--orange-pale); color: var(--orange); }
.quote-option-icon { font-size: 0.9rem; }

.btn-next {
  width: 100%;
  background: var(--orange);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.15s;
  text-decoration: none;
}

.btn-next:hover { background: var(--orange-dim); }

/* ── RECENT WORK ── */
#recent-work {
  padding: 96px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.recent-work-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.recent-work-sub { font-size: 0.95rem; color: var(--ink-soft); max-width: 480px; line-height: 1.7; margin-bottom: 2.5rem; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.work-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: #e8e8e8;
  cursor: pointer;
}

.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.work-card:hover img { transform: scale(1.03); }

.work-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 100px;
  padding: 0.25rem 0.7rem;
}

/* ── REVIEWS ── */
#reviews {
  background: #f5ede6;
  padding: 96px 32px;
}

.reviews-inner { max-width: 1200px; margin: 0 auto; }

.reviews-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 0.75rem;
}

.reviews-sub { text-align: center; font-size: 0.95rem; color: var(--ink-soft); max-width: 480px; margin: 0 auto 3rem; line-height: 1.7; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
}

.review-stars { color: #f5a623; font-size: 0.9rem; margin-bottom: 1rem; }
.review-text { font-size: 0.9rem; color: var(--ink); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.review-name { font-size: 0.85rem; font-weight: 700; color: var(--ink); }
.review-location { font-size: 0.72rem; color: var(--muted); }

/* ── SERVICE AREA ── */
#area {
  padding: 96px 32px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.area-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.area-sub { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 2rem; }

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.area-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
}

.area-pill-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }

.area-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  background: #e8f0e8;
}

.area-map iframe { width: 100%; height: 100%; border: 0; }

/* ── FAQ ── */
#faq {
  padding: 96px 32px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 3rem;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  transition: background 0.15s;
  gap: 1rem;
}

.faq-trigger:hover { background: #fafafa; }

.faq-icon {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ── CTA BANNER ── */
#cta-banner {
  background: var(--orange);
  border-radius: 20px;
  margin: 0 32px 80px;
  padding: 56px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-banner-heading {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.cta-banner-sub { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.6; max-width: 380px; }
.cta-banner-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.btn-banner-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 0.85rem 1.5rem;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: background 0.15s;
}

.btn-banner-phone:hover { background: rgba(255,255,255,0.3); }

.btn-banner-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 0.85rem 1.5rem;
  transition: opacity 0.15s;
}

.btn-banner-email:hover { opacity: 0.9; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 64px 32px 32px;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 1rem; }
.footer-brand img { height: 40px; width: auto; filter: brightness(10); opacity: 0.85; }
.footer-brand-name { font-size: 0.9rem; font-weight: 700; color: #fff; }
.footer-brand-sub { font-size: 0.7rem; color: rgba(255,255,255,0.4); }
.footer-desc { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 1rem; }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a { font-size: 0.8rem; color: rgba(255,255,255,0.5); font-weight: 500; transition: color 0.15s; }
.footer-socials a:hover { color: #fff; }

.footer-col h4 { font-size: 0.82rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.8rem; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.3); transition: color 0.15s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── QUOTE FORM INPUTS ── */
.q-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 0.35rem;
}

.q-input {
  width: 100%;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.88rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  transition: border-color 0.15s;
  outline: none;
  resize: none;
}

.q-input:focus { border-color: var(--orange); }

/* ── RECENT WORK TEASER (homepage) ── */
.recent-work-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  gap: 1rem;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  border-radius: 8px;
  padding: 0.5rem 1.1rem;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}

.btn-view-all:hover { background: var(--orange); color: #fff; }

.work-teaser-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.work-teaser-cta { display: none; }

.btn-view-all-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  margin-top: 1.25rem;
  transition: background 0.15s, color 0.15s;
}

.btn-view-all-mobile:hover { background: var(--orange); color: #fff; }

/* ── RESPONSIVE: TABLET ── */
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; min-height: auto; gap: 2.5rem; padding: 90px 20px 48px; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  #area { grid-template-columns: 1fr; }
  .quote-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  #cta-banner { flex-direction: column; align-items: flex-start; padding: 40px 32px; }
  #quote { margin: 0 20px; padding: 56px 24px; }
  #cta-banner { margin: 0 20px 60px; }
}

/* ── RESPONSIVE: MOBILE ── */
@media (max-width: 640px) {
  /* Nav */
  nav { padding: 0 20px; }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  #hero { padding: 80px 20px 40px; min-height: auto; }
  .hero-headline { font-size: 2.1rem; }
  .hero-sub { font-size: 0.95rem; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; gap: 0.6rem; }

  /* Trust strip — clean 3-column grid */
  #trust { padding: 1.5rem 20px; }
  .trust-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    justify-items: center;
  }

  /* Services */
  #services { padding: 56px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-img { aspect-ratio: 16/9; }

  /* Quote */
  #quote { margin: 0 16px; padding: 40px 20px; border-radius: 16px; }
  .quote-options { grid-template-columns: 1fr; }
  .quote-form-card { padding: 1.5rem; }

  /* Recent work teaser */
  #recent-work { padding: 56px 20px; }
  .recent-work-header { flex-direction: column; align-items: flex-start; }
  .btn-view-all { display: none; }
  .work-teaser-strip { grid-template-columns: 1fr; }
  .work-teaser-cta { display: block; }
  .work-card { aspect-ratio: 16/10; }

  /* Reviews */
  #reviews { padding: 56px 20px; }

  /* Area */
  #area { padding: 56px 20px; }

  /* FAQ */
  #faq { padding: 56px 20px; }
  .faq-trigger { font-size: 0.9rem; padding: 1rem 1.25rem; }

  /* CTA banner */
  #cta-banner {
    margin: 0 16px 48px;
    padding: 32px 24px;
    border-radius: 16px;
  }
  .cta-banner-actions { flex-direction: column; width: 100%; }
  .btn-banner-phone, .btn-banner-email { width: 100%; justify-content: center; }

  /* Footer */
  footer { padding: 48px 20px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
