/* ============================================================
   PRECISION STRIPING — Top-tier rebuild
   Palette mirrors original: black + white + striping yellow
   ============================================================ */

:root {
  --yellow: #FFC72C;
  --yellow-deep: #F5B400;
  --yellow-light: #FFD968;
  --yellow-shine: #FFE89A;
  --black: #0A0A0A;
  --ink: #141414;
  --gray-900: #1c1c1c;
  --gray-700: #3a3a3a;
  --gray-500: #6a6a6a;
  --gray-300: #cfcbc1;
  --gray-200: #e8e3d8;
  --gray-100: #F1ECE0;     /* warm cream / soft section bg */
  --cream: #FBF8F0;        /* warm off-white — replaces pure white for body */
  --surface: #ffffff;      /* keep pure white for cards/elevated surfaces */
  --white: #FBF8F0;        /* alias — use surface for true white */
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 8px 28px rgba(0,0,0,.12);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --container: 1280px;
  --ease-out: cubic-bezier(.22,.61,.36,1);
  --font-display: 'Archivo', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
}

/* =================== SELLING-POINT HIGHLIGHT =================== */
.hl {
  color: var(--yellow-deep);
  font-weight: 800;
  position: relative;
}
/* On dark backgrounds, swap to brighter yellow */
.hero .hl, .process .hl, .area .hl, footer .hl,
.hero-badge .hl, .process-card .hl, .area-cities .hl,
.reviews-cta .hl, .reviews .stars-row + .label .hl {
  color: var(--yellow);
}
.hl-underline {
  background-image: linear-gradient(transparent 70%, rgba(255,199,44,.5) 70%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 2px;
  color: inherit;
  font-weight: 800;
}
@media (min-width: 641px) {
  .hl { white-space: nowrap; }
}

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

/* =================== TOPBAR =================== */
.topbar {
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 2px solid var(--yellow);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar .left { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.topbar .left span { display: inline-flex; align-items: center; gap: 6px; opacity: .85; }
.topbar .right { display: flex; gap: 16px; align-items: center; }
.topbar a:hover { color: var(--yellow); }

/* Rating badge inside topbar */
.topbar .rating-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,199,44,.14);
  border: 1px solid rgba(255,199,44,.4);
  color: var(--yellow);
  padding: 4px 12px; border-radius: 999px;
  font-weight: 700; font-size: 12.5px;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.topbar .rating-pill:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.topbar .rating-pill .stars { display: inline-flex; gap: 1px; color: var(--yellow); }
.topbar .rating-pill:hover .stars { color: var(--black); }
.topbar .rating-pill svg { width: 12px; height: 12px; fill: currentColor; }
.topbar .rating-pill b { font-weight: 800; }
.topbar .rating-pill .sep { opacity: .55; margin: 0 2px; }


/* =================== NAV =================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,248,240,.94);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .25s var(--ease-out);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav .container { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 52px; width: auto; max-width: 220px; object-fit: contain; }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-weight: 600; font-size: 14px; color: var(--ink);
  position: relative; padding: 6px 0; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  height: 3px; width: 0; background: var(--yellow);
  transition: width .25s var(--ease-out);
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--yellow); color: var(--black);
  font-weight: 800; font-size: 14px;
  padding: 12px 22px; border-radius: 999px;
  display: inline-flex; gap: 8px; align-items: center;
  transition: transform .2s var(--ease-out), box-shadow .2s;
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(255,199,44,.5); }

.nav-burger { display: none; }
.mobile-menu, .mobile-overlay { display: none; }

/* =================== HERO =================== */
.hero {
  position: relative; min-height: min(88vh, 880px);
  display: flex; align-items: center; overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.45) contrast(1.05);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.55) 50%, rgba(0,0,0,.3) 100%);
}
.hero-stripes {
  position: absolute; bottom: 0; left: 0; right: 0; height: 14px;
  background: repeating-linear-gradient(90deg,
    var(--yellow) 0 60px,
    transparent 60px 100px);
  z-index: 2;
}
.hero-inner { position: relative; z-index: 1; padding: 80px 0 100px; max-width: 820px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,199,44,.18); color: var(--yellow);
  border: 1px solid rgba(255,199,44,.45);
  padding: 8px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; box-shadow: 0 0 0 4px rgba(255,199,44,.25); animation: pulse 2s infinite; }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,199,44,.6); }
  50% { box-shadow: 0 0 0 10px rgba(255,199,44,0); }
}

.hero h1 {
  color: var(--white);
  font-size: clamp(44px, 7vw, 88px);
  letter-spacing: -.025em;
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--yellow); display: inline-block; position: relative; }
.hero h1 .accent::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 6px; height: 8px;
  background: var(--yellow); opacity: .25; z-index: -1;
}

.hero p.lead {
  color: rgba(255,255,255,.85);
  font-size: clamp(17px, 1.4vw, 20px);
  max-width: 640px; margin-bottom: 36px;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
/* Buttons — global yellow-glow on hover */
.btn, .nav-cta, button[type="submit"], .lb-close, .lb-nav, .nav-burger, .floating-call,
.contact-form .submit, .reviews-cta .btn-fb, .reviews-cta .btn-google,
.about-content .cta-row .btn, .gallery-load .btn, .faq-q {
  transition: transform .2s var(--ease-out), box-shadow .28s var(--ease-out), background .25s, color .2s, border-color .2s, filter .2s;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  font-weight: 800; font-size: 15px; letter-spacing: .01em;
}
.btn-primary, .nav-cta {
  position: relative; overflow: hidden; isolation: isolate;
  color: var(--black);
  background: linear-gradient(180deg, var(--yellow-light) 0%, var(--yellow) 48%, var(--yellow-deep) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    inset 0 -2px 0 rgba(180,120,0,.3),
    0 6px 16px rgba(245,180,0,.3),
    0 1px 0 rgba(255,255,255,.4);
}
/* Shine sweep — animated highlight that travels across the button */
.btn-primary::before, .nav-cta::before {
  content: '';
  position: absolute; top: 0; bottom: 0;
  left: -120%; width: 80%;
  background: linear-gradient(110deg,
    transparent 0%,
    rgba(255,255,255,.05) 30%,
    rgba(255,255,255,.7) 50%,
    rgba(255,255,255,.05) 70%,
    transparent 100%);
  transform: skewX(-20deg);
  animation: btnShine 4.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.btn-primary > *, .nav-cta > * { position: relative; z-index: 2; }
@keyframes btnShine {
  0%   { left: -120%; }
  60%  { left: 140%; }
  100% { left: 140%; }
}
.btn-primary:hover, .nav-cta:hover {
  background: linear-gradient(180deg, var(--yellow-shine) 0%, var(--yellow-light) 50%, var(--yellow) 100%);
  filter: saturate(1.1);
}
.btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4); }
.btn-dark { background: var(--black); color: var(--white); }

/* Universal yellow glow on hover for every button */
.btn:hover, .nav-cta:hover, button[type="submit"]:hover, .lb-close:hover, .lb-nav:hover,
.nav-burger:hover, .floating-call:hover, .reviews-cta .btn-fb:hover, .reviews-cta .btn-google:hover,
.gallery-load .btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 3px rgba(255,199,44,.18),
    0 12px 30px rgba(255,199,44,.55),
    0 0 50px rgba(255,199,44,.25);
}
.btn-primary:hover { background: var(--yellow-deep); color: var(--black); }
.btn-ghost:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.btn-dark:hover { background: var(--yellow); color: var(--black); }
.reviews-cta .btn-fb:hover { background: var(--yellow); color: var(--black); }
.reviews-cta .btn-google:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
.nav-burger:hover { background: var(--yellow); color: var(--black); }

.hero-badges {
  display: flex; gap: 24px; margin-top: 48px; flex-wrap: wrap;
}
.hero-badge {
  display: flex; gap: 12px; align-items: center;
  color: rgba(255,255,255,.85); font-size: 14px;
}
.hero-badge svg { flex: 0 0 22px; color: var(--yellow); }
.hero-badge b { color: var(--white); font-weight: 700; display: block; }

/* =================== TRUST BAR =================== */
.trustbar {
  background: var(--yellow);
  padding: 22px 0;
  border-bottom: 1px solid var(--yellow-deep);
}
.trustbar .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
}
.trustbar .item {
  display: flex; gap: 12px; align-items: center;
  font-weight: 700; font-size: 15px; color: var(--black);
}
.trustbar .item svg { flex: 0 0 28px; }

/* =================== SECTION BASES =================== */
section { padding: 110px 0; position: relative; }
section.tight { padding: 80px 0; }

.section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; padding: 0; }
.section-head h2, .section-head p { max-width: 100%; overflow-wrap: break-word; }
.section-head .eyebrow {
  display: inline-block; padding: 6px 14px; background: rgba(255,199,44,.2);
  color: var(--gray-700); font-weight: 700; font-size: 12px;
  letter-spacing: .15em; text-transform: uppercase; border-radius: 999px;
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(34px, 4.5vw, 56px); margin-bottom: 18px;
}
.section-head p { color: var(--gray-700); font-size: 17px; max-width: 620px; margin: 0 auto; }
.section-head.left { margin-left: 0; text-align: left; }

/* =================== ABOUT =================== */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-photo {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/5;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(0,0,0,.4));
  z-index: 1;
}
.about-photo .stamp {
  position: absolute; top: 24px; left: 24px;
  background: var(--yellow); color: var(--black);
  padding: 14px 20px; border-radius: var(--radius-md);
  font-family: var(--font-display); font-weight: 900;
  z-index: 2;
}
.about-photo .stamp b { display: block; font-size: 38px; line-height: 1; }
.about-photo .stamp span { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; }

.about-content h2 { font-size: clamp(32px, 3.6vw, 48px); margin-bottom: 20px; }
.about-content h2 .accent { color: var(--yellow-deep); }
.about-content p { color: var(--gray-700); font-size: 17px; margin-bottom: 18px; }
.about-content .list {
  margin-top: 24px; display: grid; gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
.about-content .list li {
  list-style: none; display: flex; gap: 10px; align-items: flex-start;
  font-weight: 600; color: var(--ink); font-size: 15px;
}
.about-content .list li svg { flex: 0 0 22px; color: var(--yellow-deep); margin-top: 2px; }
.about-content .cta-row { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

/* =================== SERVICES =================== */
.services { background: var(--gray-100); }
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--surface); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-out), box-shadow .35s;
  display: flex; flex-direction: column;
  border: 1px solid var(--gray-200);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card .img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.service-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.service-card:hover .img img { transform: scale(1.06); }
.service-card .img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.5));
}
.service-card .img .label {
  position: absolute; top: 18px; left: 18px;
  background: var(--yellow); color: var(--black);
  padding: 6px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  z-index: 2;
}
.service-card .body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 24px; margin-bottom: 12px; }
.service-card p { color: var(--gray-700); margin-bottom: 18px; }
.service-card ul {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px 20px; margin-top: auto;
}
.service-card ul li {
  font-size: 14px; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.service-card ul li::before {
  content: ''; width: 8px; height: 8px; background: var(--yellow);
  border-radius: 2px; flex: 0 0 8px;
}

/* =================== PROCESS =================== */
.process { background: var(--black); color: var(--white); }
.process .section-head h2 { color: var(--white); }
.process .section-head p { color: rgba(255,255,255,.7); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative;
}
.process-grid::before {
  content: ''; position: absolute; left: 8%; right: 8%; top: 38px;
  height: 2px; background: repeating-linear-gradient(90deg, var(--yellow) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.process-card {
  background: var(--gray-900); border: 1px solid var(--gray-700);
  border-radius: var(--radius-md); padding: 32px 24px;
  position: relative; z-index: 1;
}
.process-card .num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--yellow); color: var(--black);
  font-family: var(--font-display); font-weight: 900; font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; box-shadow: 0 0 0 4px var(--black);
}
.process-card h4 { color: var(--white); font-size: 20px; margin-bottom: 10px; }
.process-card p { color: rgba(255,255,255,.65); font-size: 15px; }

/* =================== GALLERY =================== */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-bottom: 40px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius-md);
  aspect-ratio: 1/1; cursor: pointer; background: var(--gray-200);
  transition: transform .3s var(--ease-out);
}
.gallery-item:hover { transform: translateY(-3px); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease-out), filter .3s;
  loading: lazy;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.5));
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .zoom {
  position: absolute; bottom: 14px; right: 14px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--yellow); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(8px); transition: all .3s;
  z-index: 2;
}
.gallery-item:hover .zoom { opacity: 1; transform: translateY(0); }
.gallery-load { display: flex; justify-content: center; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,.94);
  display: none; align-items: center; justify-content: center;
  padding: 40px 24px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox .lb-close, .lightbox .lb-nav {
  position: absolute; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white); width: 50px; height: 50px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: var(--yellow); color: var(--black); }
.lightbox .lb-close { top: 30px; right: 30px; }
.lightbox .lb-prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 30px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-counter {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7); font-size: 14px;
}

/* =================== PARTNERS =================== */
.partners { background: var(--gray-100); padding: 60px 0; }
.partners .container { display: flex; align-items: center; justify-content: center; gap: 80px; flex-wrap: wrap; }
.partners .label { font-weight: 700; font-size: 14px; letter-spacing: .14em; text-transform: uppercase; color: var(--gray-500); }
.partners img { height: 48px; width: auto; opacity: .75; transition: opacity .25s; filter: grayscale(.2); }
.partners img:hover { opacity: 1; filter: none; }

/* =================== FAQ =================== */
.faq { background: var(--white); }
.faq-wrap { max-width: 880px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); margin-bottom: 14px;
  overflow: hidden; background: var(--surface); transition: box-shadow .2s;
}
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--yellow); }
.faq-q {
  width: 100%; padding: 22px 26px; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; font-family: var(--font-display); font-weight: 700; font-size: 18px;
  color: var(--ink); transition: color .2s;
}
.faq-q:hover { color: var(--black); }
.faq-q .ic {
  flex: 0 0 32px; height: 32px; border-radius: 50%;
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .25s var(--ease-out);
  font-weight: 900; color: var(--ink);
}
.faq-item.open .faq-q .ic { background: var(--yellow); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .35s var(--ease-out);
}
.faq-a-inner { padding: 0 26px 24px; color: var(--gray-700); font-size: 16px; }

/* =================== REVIEWS =================== */
.reviews { background: var(--gray-100); position: relative; overflow: hidden; }
.reviews::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0 60px, transparent 60px 90px);
}
.reviews-rating {
  display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 56px;
}
.stars-row { display: flex; gap: 4px; color: var(--yellow-deep); }
.stars-row svg { fill: var(--yellow-deep); }
.reviews-rating .label { font-size: 14px; font-weight: 600; color: var(--gray-700); letter-spacing: .04em; text-align: center; padding: 0 16px; }
.reviews-rating .label b { color: var(--ink); font-weight: 800; }

.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 56px;
}
.review-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 30px 30px;
  position: relative;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-out), box-shadow .35s, border-color .25s;
  display: flex; flex-direction: column;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--yellow); }
.review-card .quote-mark {
  position: absolute; top: -18px; left: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--yellow); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 36px; line-height: 1;
  padding-top: 14px;
  box-shadow: 0 6px 14px rgba(255,199,44,.4);
}
.review-card .stars-row { margin-bottom: 14px; }
.review-card blockquote {
  font-size: 16px; line-height: 1.6; color: var(--ink);
  margin: 0 0 22px; font-weight: 500;
}
.review-card blockquote .hl { color: var(--yellow-deep); }
.review-card .author {
  display: flex; gap: 14px; align-items: center;
  padding-top: 18px; border-top: 1px solid var(--gray-200);
  margin-top: auto;
}
.review-card .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--black); color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 16px; flex: 0 0 46px;
}
.review-card .author .meta { line-height: 1.3; }
.review-card .author b { display: block; font-size: 15px; color: var(--ink); font-weight: 800; }
.review-card .author span { font-size: 13px; color: var(--gray-500); font-weight: 600; }
.review-card .reply {
  margin: 0 0 18px;
  background: rgba(255,199,44,.08);
  border-left: 3px solid var(--yellow);
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 14px; line-height: 1.55;
  color: var(--gray-700);
}
.review-card .reply b { color: var(--ink); font-weight: 800; display: block; margin-bottom: 3px; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.review-card.hidden-extra { display: none; }
.reviews-grid.show-all .review-card.hidden-extra { display: flex; }
.reviews-loadmore { display: flex; justify-content: center; margin-bottom: 56px; }

.reviews-cta {
  background: var(--black); color: var(--white);
  border-radius: var(--radius-lg); padding: 40px 44px;
  display: grid; grid-template-columns: 1.4fr auto; gap: 28px;
  align-items: center;
  position: relative; overflow: hidden;
}
.reviews-cta::before {
  content: ''; position: absolute; right: -40px; top: -40px; width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,199,44,.18), transparent 70%);
  pointer-events: none;
}
.reviews-cta h3 {
  color: var(--white); font-size: clamp(22px, 2.4vw, 30px); margin-bottom: 6px;
}
.reviews-cta h3 .hl { color: var(--yellow); }
.reviews-cta p { color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.55; max-width: 580px; }
.reviews-cta .btns { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
.reviews-cta .btn-fb { background: #1877F2; color: #fff; }
.reviews-cta .btn-fb:hover { background: #155bb8; transform: translateY(-2px); }
.reviews-cta .btn-google { background: var(--surface); color: var(--ink); border: 1px solid var(--gray-200); }
.reviews-cta .btn-google:hover { background: var(--yellow); border-color: var(--yellow); transform: translateY(-2px); }

/* =================== AREA =================== */
.area { background: var(--ink); color: var(--white); padding: 90px 0; position: relative; overflow: hidden; }
.area::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,199,44,.12), transparent 50%);
  z-index: 0;
}
.area .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.area h2 { color: var(--white); font-size: clamp(32px, 4vw, 48px); margin-bottom: 20px; }
.area h2 .accent { color: var(--yellow); }
.area p { color: rgba(255,255,255,.8); font-size: 17px; margin-bottom: 24px; }
.area-cities { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.area-cities span {
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18);
  font-size: 14px; font-weight: 600;
}
.area-map {
  background: var(--gray-900); border: 1px solid var(--gray-700);
  border-radius: var(--radius-lg); padding: 36px;
  position: relative; overflow: hidden;
}
.area-map::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(255,255,255,.03) 14px 16px),
    radial-gradient(circle at 50% 50%, rgba(255,199,44,.18), transparent 60%);
}
.area-map .pin {
  position: relative; z-index: 1; text-align: center;
}
.area-map .pin svg { color: var(--yellow); margin-bottom: 16px; }
.area-map .pin h3 { color: var(--white); font-size: 28px; }
.area-map .pin p { color: rgba(255,255,255,.7); margin: 6px 0 0; font-size: 15px; }

/* =================== CONTACT =================== */
.contact { background: var(--gray-100); }
.contact-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: stretch;
}
.contact-left h2 { font-size: clamp(32px, 3.8vw, 48px); margin-bottom: 16px; }
.contact-left p { color: var(--gray-700); font-size: 17px; margin-bottom: 32px; }
.contact-info { display: grid; gap: 18px; }
.contact-info .row {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px; background: var(--surface); border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
}
.contact-info .row .ic {
  flex: 0 0 48px; height: 48px; border-radius: 12px;
  background: var(--yellow); color: var(--black);
  display: flex; align-items: center; justify-content: center;
}
.contact-info .row b { display: block; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 4px; font-weight: 700; }
.contact-info .row .val { font-size: 17px; font-weight: 600; color: var(--ink); }
.contact-info .row .val a:hover { color: var(--yellow-deep); }

.contact-form {
  background: var(--surface); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-md);
  border-top: 4px solid var(--yellow);
}
.contact-form h3 { font-size: 26px; margin-bottom: 8px; }
.contact-form .sub { color: var(--gray-700); font-size: 15px; margin-bottom: 26px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; font-size: 13px; color: var(--gray-700); margin-bottom: 8px; letter-spacing: .04em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--gray-200); border-radius: 8px;
  font: inherit; color: var(--ink); background: var(--surface);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(255,199,44,.18);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .submit { width: 100%; justify-content: center; padding: 18px; margin-top: 8px; }
.contact-form .ok { background: #e8f8ec; color: #1c6b34; border: 1px solid #b4e3bf; padding: 14px; border-radius: 8px; margin-top: 14px; font-weight: 600; display: none; }
.contact-form .ok.show { display: block; }

/* =================== FOOTER =================== */
footer { background: var(--black); color: rgba(255,255,255,.75); padding: 80px 0 30px; }
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.foot-brand img { height: 64px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.foot-brand p { font-size: 14px; line-height: 1.7; max-width: 320px; }
.foot-col h5 { color: var(--white); font-size: 14px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.foot-col a { display: block; color: rgba(255,255,255,.7); font-size: 14px; padding: 4px 0; transition: color .2s; }
.foot-col a:hover { color: var(--yellow); }
.foot-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,.55);
}
.foot-bottom a { color: rgba(255,255,255,.7); margin-right: 16px; }
.foot-bottom a:hover { color: var(--yellow); }

.foot-stripes { height: 8px; background: repeating-linear-gradient(90deg, var(--yellow) 0 60px, transparent 60px 90px); margin-top: 30px; }

/* =================== FLOATING CALL =================== */
.floating-call {
  position: fixed; bottom: 24px; right: 24px; z-index: 40;
  background: var(--yellow); color: var(--black);
  padding: 14px 22px; border-radius: 999px;
  font-weight: 800; font-size: 14px;
  box-shadow: 0 12px 32px rgba(255,199,44,.45);
  display: none; align-items: center; gap: 10px;
  transition: transform .2s;
}
.floating-call:hover { transform: translateY(-2px) scale(1.03); }

/* =================== REVEAL (progressive enhancement only) =================== */
html.js-ready .reveal { opacity: .001; transform: translateY(20px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
html.js-ready .reveal.in { opacity: 1; transform: none; }
html.js-ready .reveal-stagger > * { opacity: .001; transform: translateY(16px); transition: opacity .55s var(--ease-out), transform .55s var(--ease-out); }
html.js-ready .reveal-stagger.in > * { opacity: 1; transform: none; }
/* Final fail-safe: after 1.5s force reveal everything still hidden */
html.reveals-on .reveal:not(.in), html.reveals-on .reveal-stagger:not(.in) { opacity: 1 !important; transform: none !important; transition: opacity .4s var(--ease-out), transform .4s var(--ease-out) !important; }
html.reveals-on .reveal-stagger:not(.in) > * { opacity: 1 !important; transform: none !important; transition: opacity .4s var(--ease-out), transform .4s var(--ease-out) !important; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .12s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .19s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .26s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .33s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .4s; }

/* =================== RESPONSIVE =================== */

/* Wide desktop polish */
@media (min-width: 1600px) {
  :root { --container: 1360px; }
  .hero h1 { font-size: 96px; }
  .section-head h2 { font-size: 60px; }
}

/* Tablet landscape (1024–1279) */
@media (max-width: 1280px) {
  .hero-inner { max-width: 720px; }
  .gallery-grid { gap: 12px; }
}

/* Tablet portrait (768–1024) */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-burger {
    display: flex; width: 44px; height: 44px; border-radius: 8px;
    background: var(--gray-100); align-items: center; justify-content: center;
    margin-left: 12px;
  }
  .mobile-menu {
    display: none;
    position: fixed; top: 0; bottom: 0; right: 0;
    width: min(360px, 88vw);
    background: var(--surface); z-index: 60; padding: 30px 26px;
    box-shadow: -20px 0 60px rgba(0,0,0,.2);
    overflow-y: auto;
    animation: slidein .28s var(--ease-out);
  }
  .mobile-menu.open { display: block; }
  @keyframes slidein {
    from { transform: translateX(100%); }
    to   { transform: translateX(0); }
  }
  .mobile-menu .close { margin-bottom: 20px; }
  .mobile-menu a { display: block; padding: 14px 0; border-bottom: 1px solid var(--gray-200); font-weight: 600; }
  .mobile-overlay { display: block; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 55; opacity: 0; pointer-events: none; transition: opacity .3s; }
  .mobile-overlay.open { opacity: 1; pointer-events: auto; }

  .about-grid, .area .container, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .trustbar .container { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .floating-call { display: inline-flex; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-cta { grid-template-columns: 1fr; gap: 22px; padding: 32px; }
  .about-photo { aspect-ratio: 16/10; }
  section { padding: 90px 0; }
}

/* Large mobile (640–768) */
@media (max-width: 768px) {
  .hero h1 { font-size: clamp(36px, 8vw, 56px); }
  .section-head h2 { font-size: clamp(26px, 5.5vw, 38px); }
  .reviews-grid { grid-template-columns: 1fr; gap: 18px; }
  .review-card { padding: 32px 24px 24px; }
  .partners .container { gap: 36px; }
  .hl-underline { padding: 0; }
  h1, h2, h3 { overflow-wrap: break-word; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .container { padding: 0 18px; }
  html, body { overflow-x: hidden; max-width: 100vw; }
  .section-head { margin-bottom: 44px; }
  .section-head h2 { font-size: clamp(22px, 5.4vw, 28px); line-height: 1.15; text-wrap: balance; }
  .section-head p { font-size: 15px; }
  .about-content h2, .area h2, .contact-left h2, .reviews-cta h3 { font-size: clamp(22px, 5.4vw, 30px); line-height: 1.18; text-wrap: balance; }
  .hero { min-height: min(80vh, 720px); }
  .hero-inner { padding: 60px 0 80px; }
  .hero h1 { font-size: clamp(34px, 9vw, 48px); }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-badges { gap: 16px; flex-direction: column; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .process-grid { grid-template-columns: 1fr; }
  .trustbar .container { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .about-content .list { grid-template-columns: 1fr; }
  .service-card ul { grid-template-columns: 1fr; }
  .service-card .img { aspect-ratio: 16/10; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 36px; }
  .foot-bottom { flex-direction: column; gap: 12px; }
  .topbar { font-size: 12px; padding: 7px 0; }
  .topbar .container { justify-content: center; text-align: center; gap: 8px; }
  .topbar .left, .topbar .right { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .topbar .left span:nth-child(2) { display: none; } /* hide hours on tiny screens */
  .contact-form { padding: 28px 22px; }
  .contact-info .row { padding: 16px; }
  .contact-info .row .ic { flex: 0 0 40px; height: 40px; }
  .nav .container { padding: 10px 16px; gap: 8px; }
  .nav-logo img { height: 38px; max-width: 150px; }
  .nav-cta { padding: 10px 14px; font-size: 12px; }
  .nav-cta svg { display: none; }
  .nav-burger { width: 40px; height: 40px; margin-left: 4px; flex: 0 0 40px; }
  .area .container { gap: 36px; }
  .area-map { padding: 24px; }
  .area-cities span { font-size: 13px; padding: 6px 12px; }
  .reviews-cta { padding: 26px 22px; }
  .reviews-cta .btns { flex-direction: column; }
  .reviews-cta .btn { width: 100%; justify-content: center; }
  .partners .container { gap: 22px; }
  .partners img { height: 36px; }
  .floating-call { bottom: 16px; right: 16px; padding: 12px 18px; }
  .about-content .cta-row .btn { width: 100%; justify-content: center; }
  .faq-q { font-size: 16px; padding: 18px 20px; gap: 12px; }
  .faq-a-inner { padding: 0 20px 20px; font-size: 15px; }
}

/* Tiny phones (≤380) */
@media (max-width: 380px) {
  .hero h1 { font-size: 32px; }
  .nav-cta { font-size: 11px; padding: 9px 12px; }
  .nav-logo img { height: 34px; max-width: 130px; }
  .topbar .left span:first-child { display: none; }
  .gallery-grid { gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}
