:root {
  --bg: #f7f4f1;
  --white: #ffffff;
  --black: #0f0f10;
  --muted: #6b7280;
  --stone: #ede7df;
  --card-shadow: 0 18px 40px rgba(15, 15, 16, 0.09);
  --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: #1f2937;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 88px 0; }
.section-white { background: #fff; }
.section-alt { background: #f4efe8; }
.section-grey { background: #ebedf0; }
.section-dark { background: var(--black); color: #fff; }
.section-title { margin: 0 0 24px; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.08; font-weight: 800; }
.section-title.center, .center-intro, .contact-intro { text-align: center; }
.center-intro { margin-bottom: 32px; }
.center-intro .muted { margin-top: -6px; }
.eyebrow { text-transform: uppercase; letter-spacing: .3em; font-size: .8rem; color: #6b7280; margin: 0 0 16px; }
.eyebrow.small { font-size: .72rem; }
.eyebrow.light { color: rgba(255,255,255,.65); }
.body-copy { font-size: 1.08rem; color: #5b6470; margin: 0 0 22px; }
.body-copy.light { color: rgba(255,255,255,.78); }
.muted { color: var(--muted); }
.max-copy { max-width: 680px; margin: 0 auto; }
.logo-wrap {
  position: absolute;
  top: calc(env(safe-area-inset-top, 0px) + 10px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: min(235px, 44vw);
}
.logo-wrap img { width: 100%; height: auto; }
.hero { position: relative; min-height: 82vh; display: flex; align-items: flex-start; justify-content: center; padding: 168px 0 72px; color: #fff; }
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=80');
  background-size: cover; background-position: center;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.58); }
.hero-content { position: relative; text-align: center; padding: 0 0 28px; }
.hero h1 { margin: 0 0 24px; font-size: clamp(2.7rem, 6vw, 4.9rem); line-height: 1.02; font-weight: 800; }
.hero p { margin: 0 auto 34px; max-width: 760px; font-size: 1.08rem; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 28px; border-radius: 22px; font-weight: 600; transition: .2s ease;
}
.btn.small { padding: 12px 18px; margin-top: 14px; }
.btn:hover { transform: translateY(-1px); }
.btn-light { background: #fff; color: #000; }
.btn-light:hover { background: #f1efec; }
.btn-glass { border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.12); backdrop-filter: blur(6px); }
.btn-glass:hover { background: rgba(255,255,255,.18); }
.services-grid, .gallery-grid { display: grid; gap: 24px; }

.before-after-grid { display: grid; grid-template-columns: repeat(2, minmax(280px,1fr)); gap: 24px; margin-top: 10px; align-items: stretch; }
.ba-card { padding: 22px; display: grid; gap: 18px; }
.ba-images { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.ba-images figure { margin: 0; position: relative; overflow: hidden; border-radius: 24px; background: #111; aspect-ratio: 4 / 3; cursor: zoom-in; }
.ba-images img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-images figcaption {
  position: absolute; left: 14px; bottom: 14px; background: rgba(15,15,16,.72);
  color: #fff; padding: 8px 12px; border-radius: 999px; font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}
.ba-copy h3 { margin: 0 0 8px; font-size: 1.15rem; }
.ba-copy p { margin: 0; color: #67717f; }

.services-grid { grid-template-columns: repeat(3, minmax(0,1fr)); align-items: stretch; }
.card { background: #fff; border-radius: var(--radius); box-shadow: var(--card-shadow); }
.service-card { padding: 28px; min-height: 100%; transition: transform .18s ease, box-shadow .18s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(15, 15, 16, 0.12); }
.service-card h3 { margin: 0 0 10px; font-size: 1.16rem; }
.service-card p { margin: 0; color: #67717f; }
.filter-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin: 0 0 30px; }
.filter-btn { border: 1px solid #cfd5dc; background: transparent; border-radius: 999px; padding: 10px 18px; cursor: pointer; }
.filter-btn.active { background: #111; color: #fff; border-color: #111; }
.gallery-grid { grid-template-columns: repeat(4, minmax(0,1fr)); align-items: stretch; }
.gallery-item { position: relative; border: none; padding: 0; cursor: pointer; border-radius: 24px; overflow: hidden; min-height: 260px; box-shadow: var(--card-shadow); background: #fff; isolation: isolate; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .32s ease, filter .32s ease; display: block; }
.gallery-item:hover img { transform: scale(1.045); filter: saturate(1.03); }
.lightbox.hidden { display: none; }
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.92); display: flex;
  align-items: center; justify-content: center; z-index: 100;
}
.lightbox-stage { position: relative; width: min(90vw, 1100px); }
.lightbox img { width: 100%; height: min(80vh, 900px); object-fit: contain; border-radius: 18px; }
.lightbox-counter { position: absolute; top: -42px; right: 0; color: rgba(255,255,255,.88); font-size: .95rem; letter-spacing: .04em; }
.lightbox-nav, .lightbox-close {
  position: absolute; background: transparent; color: #fff; border: none; cursor: pointer;
}
.lightbox-close { top: 18px; right: 24px; font-size: 2.5rem; }
.lightbox-prev { left: 24px; } .lightbox-next { right: 24px; }
.lightbox-nav { font-size: 3rem; }
.about-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 40px; align-items: center; }
.about-card { max-width: 380px; padding: 28px; margin-inline: auto; }
.about-grid > .reveal, .contact-intro.reveal, .quote-form.reveal { will-change: opacity, transform; }
.tag-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.tag { border: 1px solid #d6d8dd; background: #fff; border-radius: 999px; padding: 10px 16px; font-size: .92rem; box-shadow: 0 10px 25px rgba(15,15,16,.06); }
.testimonials-stack { display: grid; gap: 28px; }
.testimonial.reveal { transition: opacity .65s ease, transform .65s ease, box-shadow .22s ease; }
.testimonial { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr); overflow: hidden; align-items: stretch; }
.testimonial-copy { padding: 34px 36px; }
.quote-mark { font-size: 4rem; line-height: 1; color: #d1d5db; margin: 0 0 10px; }
.quote-text { font-size: 1.12rem; line-height: 1.9; color: #495160; margin: 0 0 24px; }
.name { margin: 0; font-size: 1.05rem; font-weight: 700; }
.location { margin: 4px 0 0; color: #6b7280; }
.testimonial-media {
  position: relative; min-height: 320px; background: #111; overflow: hidden; aspect-ratio: 4 / 3; cursor: zoom-in;
}
.testimonial-image {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.01); opacity: 1; transition: opacity .55s ease, transform .7s ease;
}
.testimonial-image.is-fading { opacity: .82; transform: scale(1.015); }
.about-copy.reveal, .about-card.reveal, .center-intro.reveal, .contact-intro.reveal, .quote-form.reveal, .mini-card.reveal, .testimonial.reveal { backface-visibility: hidden; }
.testimonial.reveal.reveal-in { transition-duration: .9s; }
.quote-form.reveal.reveal-in { transition-duration: .85s; }
.dot-row { position: absolute; inset-inline: 0; bottom: 16px; display: flex; justify-content: center; gap: 10px; }
.dot { width: 10px; height: 10px; border-radius: 999px; background: rgba(255,255,255,.55); border: none; cursor: pointer; transition: .2s ease; }
.dot.active { width: 30px; background: #fff; }
.contact-wrap { display: grid; gap: 42px; max-width: 1040px; }
.contact-info-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; margin-top: 18px; }
.mini-card { border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.05); border-radius: 28px; padding: 24px; text-align: left; }
.mini-card.reveal { transition: opacity .65s ease, transform .65s ease, box-shadow .22s ease; }
.quote-form {
  width: min(520px, 100%); margin: 0 auto; background: #fff; color: #1f2937;
  border-radius: 34px; box-shadow: 0 30px 60px rgba(0,0,0,.22); padding: 30px; display: grid; gap: 12px;
}
.quote-form label { font-size: .93rem; font-weight: 500; }
.quote-form input, .quote-form textarea {
  width: 100%; border: 1px solid #d8dce3; border-radius: 12px; padding: 14px 15px; background: #fff;
}
.quote-form input:focus, .quote-form textarea:focus { outline: 2px solid #111; outline-offset: 1px; border-color: #111; }
.turnstile-box { min-height: 65px; }
.submit-btn {
  border: none; border-radius: 14px; background: #111; color: #fff; padding: 14px 18px;
  font-weight: 600; cursor: pointer; transition: .2s ease;
}
.submit-btn[disabled] { opacity: .6; cursor: not-allowed; }
.submit-btn:not([disabled]):hover { background: #202125; }
.hidden-trap { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-message { margin: 4px 0 0; font-size: .95rem; }
.form-message.success { color: #15803d; }
.form-message.error { color: #dc2626; }
.hidden { display: none !important; }
.urgent-call {
  position: fixed; inset-inline: 16px; bottom: 16px; z-index: 60; max-width: 320px; margin-inline: auto;
  display: flex; align-items: center; justify-content: center; gap: 12px; padding: 14px 22px;
  border-radius: 999px; border: 1px solid rgba(255,255,255,.08); background: rgba(17,17,17,.95);
  box-shadow: 0 18px 40px rgba(0,0,0,.35); backdrop-filter: blur(10px); color: #fff; font-size: .82rem;
  font-weight: 700; letter-spacing: .22em; text-transform: uppercase; transition: .22s ease;
}
.urgent-call:hover { transform: translateY(-2px); }
.urgent-icon {
  width: 32px; height: 32px; border-radius: 999px; border: 1px solid rgba(255,255,255,.12);
  display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.05);
}
.phone-svg { width: 16px; height: 16px; }
.site-footer { background: #101113; color: rgba(255,255,255,.72); border-top: 1px solid rgba(255,255,255,.08); padding: 34px 0 96px; }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; font-size: .94rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.footer-links a:hover { color: #fff; }
.reveal { opacity: 0; transform: translateY(34px) scale(.982); transition: opacity .82s ease, transform .82s cubic-bezier(.22, 1, .36, 1); will-change: opacity, transform; }
.reveal-stagger-1 { --reveal-shift: 24px; }
.reveal-stagger-2 { --reveal-shift: 32px; }
.reveal-stagger-3 { --reveal-shift: 40px; }
.reveal-stagger-1, .reveal-stagger-2, .reveal-stagger-3 { transform: translateY(var(--reveal-shift, 28px)); }
.gallery-item.reveal { transition: opacity .55s ease, transform .55s ease, box-shadow .22s ease; }
.ba-card.reveal { transition: opacity .65s ease, transform .65s ease, box-shadow .22s ease; }
.gallery-more {
  display: grid; place-items: center; min-height: 260px; width: 100%; appearance: none; cursor: pointer;
  background: linear-gradient(135deg, #111215 0%, #1a1d24 55%, #2c313c 100%); color: #fff;
  border: 1px solid rgba(255,255,255,.12); box-shadow: 0 22px 50px rgba(15,15,16,.16);
}
.gallery-more:hover, .gallery-more:focus-visible { transform: translateY(-3px); box-shadow: 0 26px 54px rgba(15,15,16,.24); }
.gallery-more-inner { display: grid; gap: 12px; text-align: center; padding: 24px; max-width: 26ch; }
.gallery-more-badge {
  display: inline-flex; justify-content: center; align-items: center; width: fit-content; margin: 0 auto; padding: 8px 12px;
  border-radius: 999px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.22);
  color: #fff; font-size: .82rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.gallery-more-inner strong { color: #fff; font-size: 1.18rem; line-height: 1.35; }
.gallery-more-inner small { color: rgba(255,255,255,.9); font-size: .95rem; line-height: 1.5; }
.gallery-filtered-out { display: none !important; }
.reveal.reveal-in { opacity: 1; transform: translateY(0) scale(1); }
.about-copy.reveal.reveal-in, .about-card.reveal.reveal-in, .testimonial.reveal.reveal-in, .contact-intro.reveal.reveal-in, .quote-form.reveal.reveal-in, .mini-card.reveal.reveal-in, .ba-card.reveal.reveal-in, .gallery-item.reveal.reveal-in { box-shadow: 0 18px 40px rgba(17,17,17,.08); }
@media (max-width: 1180px) {
  .gallery-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .testimonial { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .services-grid,
  .gallery-grid,
  .about-grid,
  .contact-info-grid { grid-template-columns: 1fr 1fr; }
  .before-after-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .gallery-item img, .testimonial-image, .service-card, .gallery-more { transition: none !important; animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

@media (max-width: 720px) {
  .section { padding: 70px 0; }
  .hero { min-height: 76vh; padding: 124px 0 56px; }
  .hero-content { padding: 0 0 22px; }
  .hero h1 { font-size: clamp(2.25rem, 11vw, 3.7rem); margin-bottom: 18px; }
  .hero p { font-size: 1rem; margin-bottom: 22px; }
  .hero-actions { display: flex; gap: 14px; margin-bottom: 12px; }
  .footer-row,
  .contact-info-grid,
  .services-grid,
  .gallery-grid,
  .testimonial,
  .before-after-grid,
  .ba-images { grid-template-columns: 1fr; }
  .ba-images { gap: 12px; }
  .ba-images figure { aspect-ratio: 4 / 3; }
  .gallery-grid { display: grid !important; grid-template-columns: repeat(2, minmax(0,1fr)) !important; gap: 16px !important; }
  .gallery-item, .gallery-more { min-height: 220px; }
  .gallery-more-inner { max-width: none; }
  .lightbox-stage { width: min(92vw, 900px); }
  .lightbox-nav { font-size: 2.4rem; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-counter { top: -34px; font-size: .88rem; }
  .filter-row { overflow-x: auto; flex-wrap: nowrap; justify-content: flex-start; padding-bottom: 6px; }
  .filter-row::-webkit-scrollbar { display: none; }
  .filter-btn { flex: 0 0 auto; }
  .testimonial-copy { padding: 26px; }
  .testimonial-media { min-height: 260px; aspect-ratio: 4 / 3; }
  .logo-wrap {
    top: calc(env(safe-area-inset-top, 0px) + 8px);
    width: min(165px, 46vw);
  }
  .footer-row { text-align: center; }
  .site-footer { padding-bottom: 120px; }
}

@media (max-width: 640px) {
  .gallery-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .gallery-item, .gallery-more {
    min-height: 220px;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
  }
}

.lightbox-trigger:focus-visible,
.testimonial-media:focus-visible,
.logo-wrap:focus-visible {
  outline: 2px solid #c7a567;
  outline-offset: 4px;
}

.gallery-more[data-mode="collapse"] .gallery-more-badge { background: rgba(255,255,255,.24); }
