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

:root {
  --nav-bg:   #111111;
  --accent:   #c4602a;
  --accent-d: #a34d22;
  --white:    #ffffff;
  --off:      #f5f3ef;
  --linen:    #ede8de;
  --linen-2:  #ddd8ce;
  --muted:    #9a9690;
  --dark:     #111111;
  --dark-2:   #1e1e1e;
  --text:     #2a2622;
  --radius:   4px;
  --max:      1280px;
  --nav-h:    116px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Noto Serif', Georgia, serif;
  color: var(--text);
  background: var(--off);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2 {
  font-family: 'Noto Serif', Georgia, serif;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

h1 { font-family: 'Carlito', Arial, sans-serif; font-size: clamp(3.2rem, 6vw, 5.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; color: var(--dark); }
h3 { font-size: 1rem; font-weight: 700; color: var(--dark); }
h4 { font-size: 0.9rem; font-weight: 700; color: var(--dark); }

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--nav-bg);
  z-index: 200;
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 109px;
  width: auto;
  flex-shrink: 0;
}

/* Nav links — centered */
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-phone {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.nav-sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
}

.nav-socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  width: 18px;
  height: 18px;
}

.nav-socials a:hover { color: var(--white); }

.nav-socials svg { width: 16px; height: 16px; }

.nav-cta {
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--accent-d); }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

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

#menu-toggle { display: none; }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: var(--nav-bg);
  z-index: 199;
  flex-direction: column;
  padding: 32px 28px;
  overflow-y: auto;
}

.mobile-menu a {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu a:hover { color: var(--white); }

.mobile-menu .m-cta {
  margin-top: 24px;
  background: var(--accent);
  color: var(--white);
  padding: 15px 24px;
  border-radius: var(--radius);
  text-align: center;
  border: none;
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-phone, .nav-sep, .nav-socials, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #menu-toggle:checked ~ .mobile-menu { display: flex; }
  nav { height: 96px; }
  .nav-inner {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 20px;
  }
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .logo-img { height: 93px; }
  .hamburger {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  padding: 16px 32px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-d); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark-2); }
.btn-outline { background: transparent; color: var(--dark); border: 1.5px solid var(--linen-2); }
.btn-outline:hover { border-color: var(--dark); }

/* ── Floating phone button ── */
.float-phone {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  box-shadow: 0 4px 16px rgba(196,96,42,0.4);
  transition: background 0.2s, transform 0.2s;
}
.float-phone:hover { background: var(--accent-d); transform: scale(1.06); }
.float-phone svg { width: 22px; height: 22px; stroke: #fff; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #18110d url('hero-bg.webp') center 40% / cover no-repeat;
  z-index: 0;
  opacity: 0.72;
}

@media (max-width: 960px) {
  .hero-bg {
    background-image: url('hero-mobile-painter.jpg');
    background-position: 30% center;
    opacity: 0.60;
  }
}

/* Placeholder for when there's no real image */
.hero-bg-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1210 0%, #2e2018 40%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.1);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-direction: column;
  gap: 12px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(10, 7, 5, 0.94) 0%,
    rgba(10, 7, 5, 0.84) 30%,
    rgba(10, 7, 5, 0.52) 58%,
    rgba(10, 7, 5, 0.16) 100%
  );
  z-index: 1;
}

@media (max-width: 960px) {
  .hero-overlay {
    background: rgba(8, 5, 3, 0.72);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 60px 64px;
}

.hero-copy {
  max-width: 780px;
  text-align: left;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

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

.eyebrow-line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--accent);
}

.eyebrow-text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(2.6rem, 3.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 800;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.72;
  max-width: 560px;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-hero-primary {
  padding: 16px 34px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

/* ── Hero trust row ── */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.ht-stars {
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 2px;
}

.ht-val {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
}

.ht-text {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
}

.ht-sep {
  color: rgba(255,255,255,0.22);
  font-size: 0.8rem;
  line-height: 1;
  user-select: none;
}

/* Floating phone button */
.float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(196,96,42,0.45);
  z-index: 150;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.float-cta:hover { background: var(--accent-d); transform: scale(1.05); }
.float-cta svg { width: 22px; height: 22px; }

/* ── Trust bar ── */
.trust-bar {
  background: var(--dark);
  padding: 14px 32px;
}

.trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ── Shared sections ── */
section { padding: 100px 32px; }
.section-inner { max-width: var(--max); margin: 0 auto; }

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.75;
  margin-top: 14px;
}

/* ── Services preview ── */
.services-section { background: var(--off); }

.services-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 56px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  transition: gap 0.2s;
}

.link-arrow::after { content: '→'; }
.link-arrow:hover { gap: 10px; }

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

.service-card {
  background: var(--white);
  border: 1px solid var(--linen-2);
  border-radius: 8px;
  padding: 36px 30px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(196,96,42,0.1);
  transform: translateY(-2px);
}

.card-num {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.service-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }

.service-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.service-link::after { content: '→'; }
.service-link:hover { gap: 10px; }

/* ── Why Cornerstone ── */
.why-section {
  background: var(--linen);
  padding: 88px 32px 64px;
}

.why-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(196,96,42,0.35);
  border-radius: 99px;
  padding: 6px 14px;
  margin-bottom: 44px;
}

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

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-headline {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.why-headline em {
  font-style: italic;
  color: var(--accent);
}

.why-body {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 32px;
}

.why-body strong { color: var(--dark); font-weight: 700; }

.why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--linen-2);
  overflow: hidden;
}

.why-stat {
  padding: 22px 26px 20px;
  border-top: 3px solid var(--accent);
  border-right: 1px solid var(--linen-2);
}

.why-stat:last-child { border-right: none; }

.why-stat strong {
  display: block;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-star { color: var(--accent); }

.why-stat span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── What Sets Us Apart divider ── */
.apart-divider {
  background: var(--linen);
  padding: 0 32px 72px;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 100%;
}

.apart-line {
  flex: 1;
  height: 1px;
  background: var(--linen-2);
}

.apart-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

/* ── Feature Cards ── */
.feat-cards-section {
  background: var(--linen);
  padding: 0 32px 64px;
}

.feat-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.feat-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 32px 40px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.feat-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 18px;
}

.feat-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(196,96,42,0.07);
  border: 1px solid rgba(196,96,42,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feat-icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
}

.feat-card h3 {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feat-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.72;
}

/* ── Quote CTA bar ── */
.quote-cta-bar {
  background: var(--linen);
  padding: 0 32px 100px;
}

.quote-cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.btn-quote {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 17px 34px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-quote:hover { background: var(--accent-d); }

.quote-checks {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.quote-checks span {
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.check-mark { color: var(--accent); font-size: 0.9rem; }

/* ── Reviews Carousel ── */
/* ── Reviews / Testimonials ── */
.reviews-section {
  background: var(--linen);
  padding: 80px 0 72px;
  overflow: hidden;
}

.reviews-header {
  text-align: center;
  margin-bottom: 52px;
  padding: 0 32px;
}

.reviews-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.rl-line {
  width: 28px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.reviews-headline {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.reviews-headline em { font-style: italic; color: var(--accent); }

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.88rem;
  color: var(--muted);
}

.reviews-stars { color: var(--accent); letter-spacing: 3px; }

.reviews-carousel { width: 100%; overflow: hidden; margin-bottom: 52px; }

.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 12px 20px;
  animation: scroll-reviews 40s linear infinite;
}

.reviews-track:hover { animation-play-state: paused; }

@keyframes scroll-reviews {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px 28px;
  width: 330px;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.review-quote {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 3rem;
  color: rgba(196,96,42,0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.review-stars {
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-card blockquote {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.72;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(196,96,42,0.1);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.review-author span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}

.reviews-footer { text-align: center; }

.btn-google-reviews {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  border: 1.5px solid var(--linen-2);
  border-radius: 6px;
  padding: 13px 24px;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn-google-reviews:hover {
  border-color: var(--dark);
  background: rgba(0,0,0,0.02);
}

/* ── How It Works ── */
.how-section {
  background: #0d1117;
  padding: 80px 32px;
}

.how-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.how-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}

.how-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.how-label-line {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--accent);
  flex-shrink: 0;
}

.how-headline {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.how-headline em {
  color: var(--accent);
  font-style: italic;
}

.btn-how-quote {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}

.btn-how-quote:hover { background: var(--accent-d); }

.how-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 48px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.how-step {
  padding: 0 32px 0 0;
  border-right: 1px solid rgba(255,255,255,0.07);
  padding-right: 32px;
}

.how-step:first-child { padding-left: 0; }

.how-step:not(.how-step-active):not(:first-child) { padding-left: 28px; }

.how-step-active {
  background: rgba(196,96,42,0.12);
  border: 1px solid rgba(196,96,42,0.28) !important;
  border-radius: 6px;
  padding: 28px 24px !important;
  margin-left: 12px;
}

.how-step-num {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 10px;
}

.how-step-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-bottom: 22px;
}

.how-step h4 {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.how-step-active h4 { color: var(--accent); }

.how-step p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin: 0;
}

/* ── FAQ ── */
.faq-section {
  background: var(--linen);
  padding: 100px 32px;
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-headline {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 52px;
  line-height: 1.05;
}

.faq-list {
  border-top: 1px solid rgba(42,38,34,0.15);
}

.faq-item {
  border-bottom: 1px solid rgba(42,38,34,0.15);
  list-style: none;
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  list-style: none;
  user-select: none;
  gap: 24px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  content: '+';
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 24px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 620px;
}

/* ── Quote / Contact Section ── */
.quote-section {
  background: #0d1117;
  padding: 100px 32px;
}

.quote-section-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.quote-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.quote-label-line {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--accent);
  flex-shrink: 0;
}

.quote-main-headline {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.quote-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 36px;
}

.accent-em {
  color: var(--accent);
  font-style: normal;
  font-weight: 500;
}

.quote-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote-perks li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

.perk-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(196,96,42,0.2);
  border: 1px solid rgba(196,96,42,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.quote-form-header {
  margin-bottom: 20px;
}

.quote-form-header h3 {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.quote-form-header p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.quote-form-header strong { color: rgba(255,255,255,0.85); font-weight: 600; }

.quote-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-select-wrap select {
  border: 1px solid rgba(42,38,34,0.18);
  border-radius: 4px;
  padding: 11px 14px;
  font-size: 0.88rem;
  color: var(--text);
  background: #fff;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-select-wrap select:focus { border-color: var(--accent); }

.form-group textarea { resize: vertical; min-height: 104px; }

.form-select-wrap { position: relative; }

.form-select-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--muted);
  pointer-events: none;
}

.form-select-wrap select { appearance: none; -webkit-appearance: none; cursor: pointer; }

.btn-submit-quote {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 17px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}

.btn-submit-quote:hover { background: var(--accent-d); }

.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  margin: 0;
}

.form-note strong { color: var(--dark); }

/* ── CTA Band ── */
.cta-band { background: var(--accent); padding: 80px 32px; }
.cta-band-sm { padding: 48px 32px; }

.cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.cta-inner h2 { color: var(--white); }
.cta-inner p { font-size: 1rem; color: rgba(255,255,255,0.7); margin-top: 10px; max-width: 480px; line-height: 1.7; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Footer ── */
.site-footer {
  background: #0a0e12;
}

.site-footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 32px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand-name {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.footer-brand-main {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
  line-height: 1.2;
}

.footer-brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-socials a svg { width: 18px; height: 18px; }
.footer-socials a:hover { color: #fff; }

.footer-col-head {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--accent); }

.footer-phone {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.footer-phone:hover { color: var(--accent); }

.footer-areas {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-areas li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-bottom-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-inner span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ── Services Page ── */
.svc-overview {
  background: var(--linen);
  padding: calc(var(--nav-h) + 96px) 32px 100px;
}

.svc-overview-header {
  max-width: 720px;
  margin: 0 auto 72px;
  text-align: center;
}

.svc-overview-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--accent);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.svc-label-line {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--accent);
  flex-shrink: 0;
}

.svc-overview-headline {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(3.2rem, 5vw, 5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.svc-overview-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
}

.svc-overview-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.svc-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 44px 36px;
}

.svc-card-title {
  font-size: 0.7rem;
  font-family: 'Noto Serif', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.svc-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 24px;
}

.svc-card-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.svc-link-primary {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.svc-link-primary:hover { opacity: 0.7; }

.svc-link-secondary {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.svc-link-secondary:hover { color: var(--dark); }

/* Service detail sections */
.svc-detail {
  background: var(--linen);
  padding: 88px 64px;
}

.svc-detail-dark {
  background: #0d1117;
}

.svc-detail-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.svc-detail-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.svc-detail-text h2 {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.svc-detail-dark .svc-detail-text h2 { color: #fff; }

.svc-detail-text p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 460px;
}

.svc-detail-dark .svc-detail-text p { color: rgba(255,255,255,0.55); }

.btn-svc-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 18px 32px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.2s;
}

.btn-svc-cta:hover { background: var(--accent-d); }

.svc-detail-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-photo {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.svc-img-placeholder {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  background: var(--linen-2);
  border-radius: 12px;
}

.svc-img-dark {
  background: rgba(255,255,255,0.07);
}

/* Commercial Painting section */
.svc-commercial { background: var(--linen); }

.svc-commercial-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 88px 64px;
}

.svc-commercial .svc-detail-text p + p { margin-top: 20px; }

.svc-checklist {
  list-style: none;
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-checklist li {
  font-size: 0.95rem;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}

.svc-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.svc-commercial-card {
  background: #0d1117;
  border-radius: 12px;
  padding: 40px 36px;
}

.svc-commercial-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.svc-commercial-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.svc-comm-feat {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.svc-comm-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(196,96,42,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.svc-comm-icon svg { width: 18px; height: 18px; }

.svc-comm-feat strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.svc-comm-feat p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  margin: 0;
}

/* Specialty Services section */
.svc-specialty {
  background: var(--linen);
  padding: 88px 64px;
}

.svc-specialty-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.svc-specialty-header { margin-bottom: 56px; }

.svc-specialty-sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 540px;
  margin-top: 16px;
}

.svc-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.svc-spec-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 40px 40px;
}

.svc-spec-icon {
  width: 44px;
  height: 44px;
  background: rgba(196, 96, 42, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
}

.svc-spec-icon svg { width: 20px; height: 20px; }

.svc-spec-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.svc-spec-card p:last-child {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.8;
}

.svc-specialty-cta {
  text-align: center;
  margin-top: 56px;
}

.btn-spec-cta {
  display: inline-block;
  border: 1.5px solid var(--dark);
  color: var(--dark);
  text-decoration: none;
  padding: 18px 40px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

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

/* ── Services page — responsive ── */

@media (max-width: 1024px) {
  .svc-detail { padding: 80px 48px; }
  .svc-detail-inner { gap: 56px; }
  .svc-commercial-inner { gap: 56px; padding: 80px 48px; }
  .svc-specialty { padding: 80px 48px; }
  .svc-overview { padding: calc(var(--nav-h) + 72px) 48px 80px; }
}

@media (max-width: 768px) {
  /* Overview grid → single column */
  .svc-overview { padding: calc(var(--nav-h) + 56px) 24px 64px; }
  .svc-overview-grid { grid-template-columns: 1fr; gap: 12px; }
  .svc-overview-headline { font-size: 2.8rem; }

  /* Detail sections → stack, text first */
  .svc-detail { padding: 64px 24px; }
  .svc-detail-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  /* Dark sections: image was first in DOM, move it below text */
  .svc-detail-dark .svc-detail-img { order: 2; }
  .svc-detail-dark .svc-detail-text { order: 1; }

  .svc-photo {
    max-width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
  }

  .svc-detail-text h2 { font-size: 2rem; }
  .svc-detail-text p { max-width: 100%; margin-bottom: 28px; }
  .btn-svc-cta { width: 100%; text-align: center; padding: 16px 24px; }

  /* Commercial section → stack */
  .svc-commercial-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 64px 24px;
  }
  .svc-commercial-card { padding: 28px 24px; }

  /* Specialty section */
  .svc-specialty { padding: 64px 24px; }
  .svc-spec-grid { grid-template-columns: 1fr; gap: 14px; }
  .svc-spec-card { padding: 28px 28px 32px; }
  .btn-spec-cta { width: 100%; text-align: center; padding: 16px 24px; }
}

@media (max-width: 480px) {
  .ht-sep { display: none; }
  .hero-trust { gap: 8px 10px; }
  .svc-overview-grid { grid-template-columns: 1fr; }
  .svc-card { padding: 28px 28px 24px; }
  .svc-detail { padding: 56px 20px; }
  .svc-commercial-inner { padding: 56px 20px; }
  .svc-specialty { padding: 56px 20px; }
  .svc-detail-text h2 { font-size: 1.75rem; }
}

/* ── About page ── */

.about-hero {
  background: #0d1117;
  padding: calc(var(--nav-h) + 112px) 64px 112px;
}

.about-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.about-hero-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.about-hero h1 {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  max-width: 740px;
}

.about-hero h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.85);
}

.about-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  max-width: 500px;
}

/* Story section */
.about-story {
  background: var(--linen);
  padding: 100px 64px;
}

.about-story-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.about-col-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.about-story-text p {
  font-size: 0.975rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 22px;
}

.about-story-text p:last-child { margin-bottom: 0; }

.about-divider {
  border: none;
  border-top: 1px solid var(--linen-2);
  margin: 40px 0;
}

/* Stats — 3 in a row with separators */
.about-stats {
  display: flex;
  gap: 0;
}

.about-stat {
  flex: 1;
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid var(--linen-2);
}

.about-stat:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
  flex: 0 0 auto;
}

.about-stat strong {
  display: block;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Features list */
.about-features { list-style: none; }

.about-feat {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--linen-2);
}

.about-feat:first-child { padding-top: 0; }
.about-feat:last-child { border-bottom: none; padding-bottom: 0; }

.about-feat-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: rgba(196,96,42,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-top: 1px;
}

.about-feat-icon svg { width: 15px; height: 15px; }

.about-feat strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}

.about-feat p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* About values section */
.about-values {
  background: var(--linen);
  padding: 0 64px 100px;
}

.about-values-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.about-values-card {
  background: #0d1117;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 52px 56px;
  margin-bottom: 72px;
}

.about-value {
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.about-value:first-child { padding-left: 0; }
.about-value:last-child { padding-right: 0; border-right: none; }

.about-value h3 {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.25;
}

.about-value p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

.about-values-cta { text-align: center; }

.about-values-tagline {
  font-family: 'Noto Serif', Georgia, serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.btn-about-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 18px 56px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.2s;
}

.btn-about-cta:hover { background: var(--accent-d); }

/* About responsive */
@media (max-width: 1024px) {
  .about-hero { padding: calc(var(--nav-h) + 80px) 48px 80px; }
  .about-hero h1 { font-size: clamp(2.8rem, 4vw, 4rem); }
  .about-story { padding: 80px 48px; }
  .about-story-inner { gap: 64px; }
  .about-values { padding: 0 48px 80px; }
  .about-values-card { padding: 44px 44px; }
  .about-value { padding: 0 28px; }
}

@media (max-width: 768px) {
  .about-hero { padding: calc(var(--nav-h) + 56px) 24px 72px; }
  .about-hero h1 { font-size: 2.6rem; }
  .about-hero-sub { font-size: 0.95rem; max-width: 100%; }
  .about-story { padding: 64px 24px; }
  .about-story-inner { grid-template-columns: 1fr; gap: 52px; }
  .about-stats { flex-wrap: wrap; gap: 24px 0; }
  .about-stat { border-right: none; padding-right: 0; margin-right: 0; flex: 0 0 50%; }
  .about-stat:nth-child(odd) { border-right: 1px solid var(--linen-2); padding-right: 24px; }
  .about-stat strong { font-size: 2.6rem; }
  .about-values { padding: 0 24px 64px; }
  .about-values-card { grid-template-columns: 1fr; padding: 36px 32px; }
  .about-value { padding: 24px 0 0; border-right: none; border-top: 1px solid rgba(255,255,255,0.08); }
  .about-value:first-child { padding-top: 0; border-top: none; }
  .btn-about-cta { display: block; text-align: center; }
  .about-values-tagline { font-size: 1.15rem; }
}

@media (max-width: 480px) {
  .about-hero { padding: calc(var(--nav-h) + 48px) 20px 64px; }
  .about-hero h1 { font-size: 2.1rem; }
  .about-story { padding: 56px 20px; }
  .about-values { padding: 0 20px 56px; }
  .about-feat { gap: 16px; padding: 18px 0; }
  .about-stat { flex: 0 0 100%; border-right: none !important; padding-right: 0 !important; }
}

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--dark);
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  padding-left: 32px;
  padding-right: 32px;
}

.page-hero-inner { max-width: var(--max); margin: 0 auto; }
.page-hero h1 { color: var(--white); font-size: clamp(2.5rem, 4.5vw, 4rem); }
.page-hero .section-sub { color: rgba(255,255,255,0.5); margin-top: 16px; max-width: 520px; }

/* ── Services full page ── */
.services-full { background: var(--off); }

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-full-card {
  background: var(--white);
  border: 1px solid var(--linen-2);
  border-radius: 8px;
  padding: 40px 36px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-full-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(196,96,42,0.08);
}

.service-full-card .card-num { margin-bottom: 16px; }
.service-full-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-full-card > p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }

.service-features { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.service-features li { font-size: 0.84rem; color: var(--text); display: flex; align-items: center; gap: 10px; }
.service-features li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ── Process ── */
.process-section { background: var(--linen); }
.process-header { margin-bottom: 64px; }

.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }

.process-steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 1px;
  background: var(--linen-2);
}

.process-step { padding: 0 20px; }

.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.process-step h4 { font-size: 0.93rem; margin-bottom: 8px; }
.process-step p { font-size: 0.84rem; color: var(--muted); line-height: 1.7; }

/* ── Gallery ── */
.gallery-section {
  background: var(--off);
  padding-top: calc(var(--nav-h) + 96px);
}

.gallery-hd { margin-bottom: 40px; }

.gallery-hd-title {
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-style: italic;
  line-height: 1.1;
  max-width: 520px;
  margin-top: 8px;
}

.gallery-hd-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 12px;
  max-width: 400px;
}

/* Filter bar */
.gallery-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.gallery-filters { display: flex; gap: 8px; flex-wrap: wrap; }

.filter-btn {
  background: transparent;
  border: 1.5px solid rgba(17,17,17,0.18);
  border-radius: 99px;
  padding: 8px 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-btn .fc {
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.65;
  letter-spacing: 0;
}

.filter-btn:hover:not(.active) { border-color: var(--accent); color: var(--accent); }
.filter-btn.active { background: var(--dark); border-color: var(--dark); color: #fff; }
.filter-btn.active .fc { opacity: 0.7; }

.gallery-count {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}

/* Category divider */
.gallery-divider {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 8px;
}

.gallery-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--linen-2);
}

.gallery-divider:first-child { padding-top: 0; }

/* CSS Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: var(--linen-2);
  aspect-ratio: 4/3;
}

.gallery-card.gc-wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gc-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-card:hover .gc-img { transform: scale(1.04); }

/* Always-visible category badge */
.gc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  padding: 3px 9px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}

/* Hover overlay with project name */
.gc-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 18px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}

.gallery-card:hover .gc-label { opacity: 1; transform: translateY(0); }

.gc-label p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

/* ── Lightbox ── */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.lb-overlay.open { display: flex; }

.lb-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  display: block;
  transition: opacity 0.18s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.lb-close {
  position: fixed;
  top: 20px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.lb-close:hover { background: rgba(255,255,255,0.24); }

.lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.lb-arrow:hover { background: rgba(255,255,255,0.22); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
  font-family: 'Noto Serif', Georgia, serif;
  letter-spacing: 0.1em;
  pointer-events: none;
}

@media (max-width: 600px) {
  .lb-arrow { width: 40px; height: 40px; font-size: 1.2rem; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .lb-img { max-width: 96vw; max-height: 80vh; }
}

/* ── Areas ── */
.areas-page-section {
  background: var(--linen);
  padding: calc(var(--nav-h) + 88px) 32px 96px;
}

.areas-page-hd {
  text-align: center;
  margin-bottom: 60px;
}

.areas-page-hd .section-label { justify-content: center; }

.areas-page-hd .section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.areas-page-title {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 700;
  font-style: normal;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.areas-page-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.areas-city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--linen-2);
  max-width: 920px;
  margin: 0 auto 64px;
}

.areas-city-cell {
  background: var(--linen);
  padding: 40px 32px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: background 0.22s;
}
a.areas-city-cell:hover {
  background: var(--linen-2);
}
a.areas-city-cell:hover .area-city-name {
  color: var(--accent);
}
a.areas-city-cell .area-city-desc {
  color: var(--accent);
}

.area-city-name {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 1.22rem;
  font-weight: 700;
  font-style: normal;
  color: var(--dark);
  line-height: 1.2;
  margin: 0 0 8px;
}

.area-city-name.is-accent { color: var(--accent); }

.area-city-desc {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.areas-page-cta { text-align: center; }

.btn-areas-cta {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 18px 44px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-areas-cta:hover { background: var(--accent); color: #fff; }

/* ── Blog Listing ── */
.blog-listing-section {
  background: var(--linen);
  padding: calc(var(--nav-h) + 96px) 32px 96px;
}

.blog-listing-hd { margin-bottom: 72px; }

.blog-listing-title {
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
  font-style: italic;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 0;
}

.blog-listing-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin-top: 22px;
  line-height: 1.75;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--linen-2);
}

.blog-card {
  background: var(--linen);
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  transition: background 0.18s;
}

.blog-card:hover {
  background: var(--off);
  border-color: transparent;
  box-shadow: none;
}

.blog-card--featured { grid-column: span 2; }

.blog-card-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.blog-card-meta .dot { opacity: 0.4; }

.blog-card-body {
  padding: 40px 36px 48px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-body h3 {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1.35;
  color: var(--dark);
  margin: 0 0 14px;
}

.blog-card--featured .blog-card-body h3 {
  font-size: 2.05rem;
  line-height: 1.18;
  margin-bottom: 20px;
  font-style: italic;
}

.blog-card-body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}

.blog-card-body h3 a:hover { color: var(--accent); }

.blog-card-body > p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.78;
  flex: 1;
  margin-bottom: 0;
}

.blog-card--featured .blog-card-body > p {
  font-size: 0.97rem;
  max-width: 520px;
  line-height: 1.75;
}

.blog-read-more {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  margin-top: 26px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(196,96,42,0.35);
  transition: letter-spacing 0.2s, border-color 0.2s;
  align-self: flex-start;
}

.blog-read-more:hover {
  letter-spacing: 0.14em;
  border-color: var(--accent);
}

/* ── Blog Post Article ── */
.post-article {
  background: var(--linen);
  padding: calc(var(--nav-h) + 80px) 32px 100px;
}

.post-inner {
  max-width: 660px;
  margin: 0 auto;
}

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 48px;
  transition: color 0.15s;
}

.post-back:hover { color: var(--dark); }

.post-hd {
  margin-bottom: 56px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--linen-2);
}

.post-cat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 26px;
}

.post-cat::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.post-title {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin-bottom: 28px;
}

.post-lead {
  font-size: 1.1rem;
  color: #58544f;
  line-height: 1.82;
  margin-bottom: 32px;
}

.post-meta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
  flex-wrap: wrap;
  padding-top: 28px;
  margin-top: 4px;
  border-top: 1px solid var(--linen-2);
}

.post-meta-row strong { color: var(--dark); font-weight: 700; }
.post-meta-row .sep { opacity: 0.35; }

.post-body {
  font-size: 1.06rem;
  line-height: 1.9;
  color: #3a3835;
}

.post-body h2 {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
  font-style: italic;
  color: var(--dark);
  margin: 60px 0 20px;
  line-height: 1.26;
  letter-spacing: -0.01em;
}

.post-body h2:first-child { margin-top: 0; }

.post-body h3 {
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--dark);
  margin: 38px 0 12px;
  letter-spacing: -0.01em;
}

.post-body p { margin-bottom: 26px; }

.post-body ul,
.post-body ol {
  margin: 12px 0 28px 0;
  padding-left: 22px;
}

.post-body li { margin-bottom: 12px; line-height: 1.82; }
.post-body strong { font-weight: 700; color: var(--dark); }

.post-price-box {
  background: rgba(196,96,42,0.05);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
  padding: 28px 32px;
  margin: 40px 0;
}

.post-price-box h4 {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.post-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.92rem;
  padding: 11px 0;
  border-bottom: 1px solid rgba(196,96,42,0.12);
  gap: 20px;
}

.post-price-row:last-child { border-bottom: none; }
.post-price-row .price { font-weight: 700; color: var(--accent); white-space: nowrap; }

.post-related {
  margin: 56px 0 0;
  padding-top: 44px;
  border-top: 1px solid var(--linen-2);
}

.post-related-label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.post-related-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.post-related-links a {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 1.02rem;
  font-style: italic;
  color: var(--dark);
  font-weight: 700;
  text-decoration: none;
  padding-left: 22px;
  position: relative;
  transition: color 0.15s;
  line-height: 1.4;
}

.post-related-links a::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-style: normal;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 0.85rem;
  top: 4px;
}

.post-related-links a:hover { color: var(--accent); }

.post-author-bio {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 36px 40px;
  margin-top: 52px;
  background: var(--off);
  border: 1px solid var(--linen-2);
}

.bio-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.bio-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.bio-text p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.72;
  margin: 0;
}

.bio-text a { color: var(--accent); text-decoration: none; }

/* ── Responsive ── */
@media (max-width: 960px) {
  /* hero image swap handled by .hero-bg-mobile / .hero-bg-desktop classes */
  section { padding: 72px 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-steps::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card.gc-wide { grid-column: span 2; }
  .gallery-filter-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .areas-city-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card--featured { grid-column: span 2; }
  .blog-listing-section { padding: calc(var(--nav-h) + 64px) 24px 72px; }
  .blog-listing-hd { margin-bottom: 56px; }
  .post-article { padding: calc(var(--nav-h) + 56px) 24px 80px; }
  .post-author-bio { flex-direction: column; }
  .services-header { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .feat-cards-grid { grid-template-columns: 1fr 1fr; }
  .quote-cta-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  /* How It Works — collapse from 5 to 2 cols */
  .how-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .how-step { border-right: none !important; padding-right: 0 !important; padding-left: 0 !important; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .how-step-active { margin-left: 0 !important; padding: 24px !important; }
  .how-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  /* Quote / contact section — stack */
  .quote-section-inner { grid-template-columns: 1fr; gap: 48px; }
  /* Footer — 2 columns */
  .site-footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; padding: 56px 24px 44px; }
}

@media (max-width: 600px) {
  section { padding: 56px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-section { padding-top: calc(var(--nav-h) + 56px); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 7px; }
  .gallery-card.gc-wide { grid-column: span 2; }
  .gallery-hd-title { font-size: 2.4rem; }
  .gallery-filter-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
  .areas-page-section { padding: calc(var(--nav-h) + 56px) 20px 72px; }
  .areas-page-title { font-size: 2.4rem; }
  .areas-city-cell { padding: 28px 20px; }
  .area-city-name { font-size: 1.05rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card--featured { grid-column: span 1; }
  .blog-card--featured .blog-card-body h3 { font-size: 1.6rem; }
  .blog-listing-section { padding: calc(var(--nav-h) + 44px) 20px 56px; }
  .blog-listing-hd { margin-bottom: 48px; }
  .blog-listing-title { font-size: 2.6rem; }
  .post-article { padding: calc(var(--nav-h) + 40px) 20px 64px; }
  .post-title { font-size: 2rem; }
  .post-lead { font-size: 1rem; }
  .post-body { font-size: 1rem; }
  .post-body h2 { font-size: 1.35rem; margin-top: 44px; }
  .post-price-box { padding: 20px 22px; }
  .post-price-row { font-size: 0.87rem; }
  .post-author-bio { padding: 28px 24px; }
  .blog-card-body { padding: 32px 24px 38px; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-links { display: none; }
  .trust-inner { gap: 20px; justify-content: flex-start; }
  .why-section { padding: 64px 20px 48px; }
  .feat-cards-grid { grid-template-columns: 1fr; }
  .feat-cards-section { padding: 0 20px 48px; }
  .apart-divider { padding: 0 20px 56px; }
  .quote-cta-bar { padding: 0 20px 72px; }
  .quote-checks { gap: 16px; }
  /* How It Works — single column */
  .how-steps { grid-template-columns: 1fr; }
  .how-section { padding: 64px 20px; }
  .how-divider { margin-bottom: 32px; }
  /* Contact form — stack name/phone row */
  .form-row { grid-template-columns: 1fr; }
  .quote-section { padding: 72px 20px; }
  /* Footer — single column */
  .site-footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 20px 36px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  /* Why stats — keep 3 col but reduce padding */
  .why-stat { padding: 16px 14px; }
  .why-stat strong { font-size: 1.6rem; }
  /* Hero */
  .hero { align-items: flex-start; }
  .hero-content { padding: 60px 24px 52px; }
  .hero-copy { max-width: 100%; text-align: center; }
  .hero-eyebrow { justify-content: center; margin-top: 24px; margin-bottom: 20px; }
  .hero h1 { font-size: clamp(1.8rem, 6.5vw, 2.4rem); line-height: 1.12; margin-bottom: 32px; }
  .hero-sub { display: none; }
  .hero-actions { justify-content: center; margin-bottom: 32px; }
  .hero-trust { justify-content: center; gap: 10px 12px; }
  .hero-bg-img { object-position: 0% 15% !important; }
}

/* ════════════════════════════════════════════
   ESTIMATE BUTTON + DRAWER
   ════════════════════════════════════════════ */

/* Nav estimate button — hidden on desktop, shown on mobile */
.nav-estimate-btn {
  display: none;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  z-index: 1;
  line-height: 1;
}
.nav-estimate-btn:active { background: var(--accent-d); }

@media (max-width: 960px) {
  .nav-estimate-btn { display: block; }
}

/* Overlay */
.est-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1100;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.est-overlay.est-open {
  opacity: 1;
  pointer-events: all;
}

/* Drawer panel */
.est-drawer {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background: #1c1c1c;
  border-radius: 18px 18px 0 0;
  max-height: 92dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.est-overlay.est-open .est-drawer {
  transform: translateY(0);
}

/* Drag handle */
.est-handle {
  display: block;
  width: 40px;
  height: 4px;
  background: rgba(255,255,255,0.18);
  border-radius: 4px;
  margin: 12px auto 0;
}

/* Header */
.est-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.est-header-text { flex: 1; }
.est-title {
  display: block;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}
.est-sub {
  display: block;
  font-size: 0.72rem;
  color: #7a776f;
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.est-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
  line-height: 1;
}
.est-close:hover { background: rgba(255,255,255,0.14); }

/* Step progress bar */
.est-steps {
  display: flex;
  align-items: center;
  padding: 16px 22px 12px;
  gap: 0;
}
.est-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 52px;
}
.est-step-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #6b6860;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s;
  border: 1.5px solid transparent;
}
.est-step--active .est-step-dot {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.est-step--done .est-step-dot {
  background: rgba(196,96,42,0.18);
  color: var(--accent);
  border-color: rgba(196,96,42,0.4);
}
.est-step-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #6b6860;
  white-space: nowrap;
  transition: color 0.22s;
}
.est-step--active .est-step-label { color: #fff; }
.est-step--done .est-step-label { color: var(--accent); }
.est-step-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0 4px;
  margin-bottom: 18px;
}

/* Form panels */
.est-panel { padding: 4px 22px 24px; }

.est-q {
  font-size: 0.92rem;
  font-weight: 600;
  color: #e8e4dc;
  margin-bottom: 12px;
  margin-top: 20px;
  line-height: 1.35;
}
.est-q:first-child { margin-top: 0; }

/* Service type cards — 2×2 grid */
.est-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-bottom: 22px;
}
.est-card {
  position: relative;
  cursor: pointer;
  display: block;
}
.est-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.est-card-face {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 16px 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  transition: all 0.18s;
  text-align: center;
  user-select: none;
}
.est-card input:checked + .est-card-face {
  border-color: var(--accent);
  background: rgba(196,96,42,0.12);
  color: #fff;
}
.est-card-icon { font-size: 1.5rem; line-height: 1; }

/* Pill buttons (rooms, timeline, condition) */
.est-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.est-pill {
  position: relative;
  cursor: pointer;
}
.est-pill input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.est-pill span {
  display: block;
  padding: 7px 15px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  transition: all 0.16s;
  white-space: nowrap;
  user-select: none;
}
.est-pill input:checked + span {
  border-color: var(--accent);
  background: rgba(196,96,42,0.14);
  color: #fff;
}

/* Collapsible rooms section */
.est-rooms-wrap {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

/* Text inputs & textarea */
.est-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #7a776f;
  margin-bottom: 7px;
  margin-top: 18px;
}
.est-label:first-child { margin-top: 0; }
.est-input {
  display: block;
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff;
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 0.9rem;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.18s;
  margin-bottom: 4px;
}
.est-input::placeholder { color: rgba(255,255,255,0.25); }
.est-input:focus { border-color: var(--accent); }
textarea.est-input { resize: vertical; min-height: 72px; }

/* 2-column row for name fields */
.est-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 0;
}

/* Photo upload */
.est-upload {
  position: relative;
  border: 1.5px dashed rgba(255,255,255,0.18);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.18s;
  margin-bottom: 4px;
}
.est-upload:hover { border-color: var(--accent); }
.est-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  font-size: 100px;
  z-index: 2;
}
.est-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 22px 16px;
  color: rgba(255,255,255,0.35);
}
.est-upload-label svg { width: 28px; height: 28px; }
.est-upload-label span { font-size: 0.82rem; font-weight: 600; }
.est-upload-hint { font-size: 0.7rem !important; font-weight: 400 !important; }
.est-previews {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 12px 12px;
}
.est-preview-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.12);
}

/* Navigation row (back + next) */
.est-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  gap: 12px;
}
.est-back {
  background: none;
  border: none;
  color: #7a776f;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: color 0.18s;
  letter-spacing: 0.04em;
}
.est-back:hover { color: #fff; }
.est-submit-btn { flex: 1; justify-content: center; }

/* Status message */
#est-status {
  margin-top: 12px;
  font-size: 0.82rem;
  color: #ff7b4e;
  min-height: 20px;
}

/* Fine print */
.est-fine {
  font-size: 0.72rem;
  color: #6b6860;
  margin-top: 10px;
  text-align: center;
}

/* Success state */
.est-success {
  padding: 48px 24px 40px;
  text-align: center;
}
.est-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(196,96,42,0.15);
  color: var(--accent);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid var(--accent);
}
.est-success h3 {
  font-family: 'Noto Serif', Georgia, serif;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 10px;
}
.est-success p {
  font-size: 0.9rem;
  color: #7a776f;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Single-column on very small screens */
@media (max-width: 380px) {
  .est-row-2 { grid-template-columns: 1fr; }
  .est-cards { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════ */

/* ── Hero entrance ── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  animation: heroFadeUp 0.72s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s both;
}
.hero h1 {
  animation: heroFadeUp 0.80s cubic-bezier(0.22, 0.61, 0.36, 1) 0.38s both;
}
.hero-sub {
  animation: heroFadeUp 0.70s cubic-bezier(0.22, 0.61, 0.36, 1) 0.54s both;
}
.hero-actions {
  animation: heroFadeUp 0.70s cubic-bezier(0.22, 0.61, 0.36, 1) 0.68s both;
}
.hero-trust {
  animation: heroFadeUp 0.65s cubic-bezier(0.22, 0.61, 0.36, 1) 0.82s both;
}

/* ── Scroll reveal — fade up ── */
.will-animate {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.58s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.58s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.will-animate.is-visible {
  opacity: 1;
  transform: none;
}

/* ── Scroll reveal — slide from left ── */
.will-animate-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.72s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.72s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.will-animate-left.is-visible {
  opacity: 1;
  transform: none;
}

/* ── Scroll reveal — slide from right ── */
.will-animate-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.72s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.72s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.will-animate-right.is-visible {
  opacity: 1;
  transform: none;
}

/* ── Stagger delays ── */
[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }
[data-delay="4"] { transition-delay: 0.32s; }
[data-delay="5"] { transition-delay: 0.40s; }

/* ── Feat-card hover lift ── */
.feat-card {
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.11);
}

/* ── Review-card hover lift ── */
.review-card {
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.10);
}

/* ── Nav scroll shadow ── */
nav {
  transition: box-shadow 0.35s ease;
}
nav.nav--scrolled {
  box-shadow: 0 2px 22px rgba(0,0,0,0.13);
}

/* ── Respect reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero h1, .hero-sub, .hero-actions, .hero-trust { animation: none; }
  .will-animate, .will-animate-left, .will-animate-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CITY LANDING PAGES
   ═══════════════════════════════════════════════════════════════ */

/* ── City hero ── */
.city-hero-section {
  background: var(--dark);
  color: var(--white);
  padding: 120px 0 96px;
  text-align: center;
}
.city-hero-section .hero-eyebrow {
  color: var(--accent);
  opacity: 0.9;
}
.city-hero-section h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 18px 0 22px;
}
.city-hero-section .hero-sub {
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
}
.city-hero-section .hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── City section label ── */
.city-section-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ── City intro ── */
.city-intro-section {
  padding: 88px 0 80px;
  background: var(--white);
}
.city-intro-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.city-intro-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.22;
}
.city-intro-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 18px;
}
.city-intro-text p:last-child { margin-bottom: 0; }

/* ── City stats card ── */
.city-stats {
  background: var(--off);
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid var(--linen-2);
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.city-stat {
  padding: 20px 0;
  border-bottom: 1px solid var(--linen-2);
}
.city-stat:first-child { padding-top: 0; }
.city-stat:last-child { border-bottom: 0; padding-bottom: 0; }
.city-stat-value {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.city-stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── City services ── */
.city-services-section {
  padding: 88px 0 80px;
  background: var(--linen);
}
.city-services-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}
.city-services-header {
  text-align: center;
  margin-bottom: 56px;
}
.city-services-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.city-services-header p {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}
.city-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.city-svc-card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.city-svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.10);
}
.city-svc-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.city-svc-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--dark);
}
.city-svc-card p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text);
}

/* ── City FAQ ── */
.city-faq-section {
  padding: 88px 0 80px;
  background: var(--white);
}
.city-faq-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}
.city-faq-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  text-align: center;
}

/* ── City nearby ── */
.city-nearby-section {
  padding: 72px 0 64px;
  background: var(--off);
  text-align: center;
}
.city-nearby-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}
.city-nearby-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
}
.city-nearby-link {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--linen-2);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  background: var(--white);
  transition: border-color 0.22s, color 0.22s, background 0.22s;
}
.city-nearby-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(196,96,42,0.04);
}

/* ── City page responsive ── */
@media (max-width: 900px) {
  .city-intro-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .city-stats {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 24px;
  }
  .city-stat {
    padding: 16px;
    border-bottom: 1px solid var(--linen-2);
    border-right: 1px solid var(--linen-2);
  }
  .city-stat:nth-child(even) { border-right: 0; }
  .city-stat:nth-last-child(-n+2) { border-bottom: 0; }
  .city-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .city-hero-section {
    padding: 80px 0 64px;
  }
  .city-hero-section h1 {
    font-size: 2.2rem;
  }
  .city-services-grid {
    grid-template-columns: 1fr;
  }
  .city-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .city-intro-inner {
    padding: 0 20px;
  }
  .city-services-inner,
  .city-faq-inner,
  .city-nearby-inner {
    padding: 0 20px;
  }
}
