:root {
  --ink: #171a1d;
  --ink-soft: #252a2f;
  --text: #4d5358;
  --muted: #72787d;
  --line: #e7e4de;
  --cream: #f5f2eb;
  --paper: #ffffff;
  --yellow: #f4b400;
  --yellow-dark: #d99f00;
  --green: #1b6d4f;
  --shadow: 0 26px 70px rgba(12, 16, 20, .14);
  --radius: 22px;
  --container: 1180px;
  --header-height: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  line-height: 1.08;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(3rem, 6vw, 5.9rem); }
h2 { font-size: clamp(2.25rem, 4vw, 4rem); }
h3 { font-size: 1.35rem; }
p:last-child { margin-bottom: 0; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.section {
  position: relative;
  padding: 110px 0;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  background: #fff;
  color: #000;
  transform: translateY(-160%);
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.topbar {
  background: #101214;
  color: #dfe2e4;
  font-size: .82rem;
}
.topbar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.topbar p { margin: 0; display: flex; align-items: center; gap: 8px; }
.topbar__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(244, 180, 0, .12);
}
.topbar__links { display: flex; align-items: center; gap: 12px; }
.topbar a:hover { color: var(--yellow); }
.topbar__facebook {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 4px;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-weight: 800;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.topbar__facebook:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink) !important;
}
.topbar__facebook svg { width: 14px; height: 14px; fill: currentColor; flex: 0 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255,255,255,.93);
  border-bottom: 1px solid rgba(15,18,20,.07);
  backdrop-filter: blur(16px);
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}
.brand__mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(20, 23, 25, .08);
  border-radius: 17px;
  background: linear-gradient(145deg, #ffc51f, var(--yellow));
  box-shadow: 0 10px 24px rgba(244, 180, 0, .22);
}
.brand__mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand__text { display: grid; line-height: 1; text-transform: uppercase; }
.brand__text strong { font-size: 1.05rem; letter-spacing: .12em; }
.brand__text span { margin-top: 5px; font-size: .72rem; letter-spacing: .08em; font-weight: 700; color: var(--muted); }
.brand__footer-logo {
  display: block;
  width: min(210px, 100%);
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .9rem;
  font-weight: 700;
}
.primary-nav > a:not(.button) { position: relative; padding: 12px 0; }
.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 2px;
  background: var(--yellow);
  transition: right .25s ease;
}
.primary-nav > a:not(.button):hover::after { right: 0; }

.menu-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 0;
  border-radius: 13px;
  background: var(--ink);
  padding: 12px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  transition: .25s ease;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 850;
  line-height: 1.1;
  box-shadow: 0 12px 30px rgba(244, 180, 0, .18);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover {
  transform: translateY(-2px);
  background: #ffc323;
  box-shadow: 0 16px 34px rgba(244, 180, 0, .28);
}
.button svg { width: 20px; height: 20px; fill: currentColor; }
.button--small { min-height: 44px; padding: 11px 18px; border-radius: 10px; }
.button--ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.28);
  box-shadow: none;
}
.button--ghost:hover { background: #fff; color: var(--ink); }
.button--dark { background: var(--ink); color: #fff; box-shadow: 0 12px 30px rgba(10,12,14,.16); }
.button--dark:hover { background: #2a2f34; }
.button--light { background: #fff; color: var(--ink); box-shadow: none; }
.button--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); box-shadow: none; }
.button--outline-light:hover { background: #fff; color: var(--ink); }
.button--full { width: 100%; }

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height) - 36px);
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--ink);
  color: #fff;
}
.hero__media, .hero__shade { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 52%; }
.hero__shade {
  background:
    linear-gradient(90deg, rgba(13,16,19,.96) 0%, rgba(13,16,19,.84) 42%, rgba(13,16,19,.22) 75%, rgba(13,16,19,.08) 100%),
    linear-gradient(0deg, rgba(13,16,19,.65) 0%, transparent 45%);
}
.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  align-items: end;
  gap: 70px;
  padding-top: 105px;
  padding-bottom: 85px;
}
.hero__copy { max-width: 860px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--yellow);
}
.eyebrow span { width: 34px; height: 2px; background: currentColor; }
.eyebrow--dark { color: #b17f00; }
.hero h1 { max-width: 930px; margin-bottom: 26px; }
.hero__lead { max-width: 720px; font-size: clamp(1.05rem, 1.8vw, 1.28rem); color: #e4e7e8; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero__checks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 34px 0 0;
  color: #edf0f1;
  font-size: .92rem;
}
.hero__checks li { display: flex; align-items: center; gap: 9px; }
.hero__checks li::before {
  content: "✓";
  width: 22px; height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 950;
  font-size: .75rem;
}
.hero-card {
  align-self: end;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(19,23,26,.76);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
.hero-card__label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(244,180,0,.15);
  color: var(--yellow);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-card h2 { font-size: 1.9rem; margin-bottom: 14px; }
.hero-card p { color: #cfd3d5; }
.hero-card > a { display: inline-flex; gap: 10px; margin-top: 10px; color: var(--yellow); font-weight: 850; }

.trust-strip { background: var(--yellow); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item {
  min-height: 120px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 36px;
  border-right: 1px solid rgba(23,26,29,.17);
}
.trust-item:last-child { border-right: 0; }
.trust-item__number { font-size: .72rem; font-weight: 950; opacity: .55; }
.trust-item div { display: grid; gap: 3px; }
.trust-item strong { font-size: 1rem; }
.trust-item span:last-child { font-size: .84rem; color: rgba(23,26,29,.7); }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, .5fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 56px;
}
.section-heading h2 { max-width: 800px; margin-bottom: 0; }
.section-heading > p { color: var(--muted); }
.section-heading--light { color: #fff; }
.section-heading--light > p { color: #bac0c4; }

.services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(244,180,0,.65); box-shadow: var(--shadow); }
.service-card::after {
  content: "";
  position: absolute;
  right: -65px; bottom: -65px;
  width: 170px; height: 170px;
  border-radius: 50%;
  background: rgba(244,180,0,.08);
}
.service-card__icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  margin-bottom: 44px;
  border-radius: 18px;
  background: var(--yellow);
}
.service-card__icon svg {
  width: 39px; height: 39px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card__index {
  position: absolute;
  top: 38px; right: 38px;
  color: #b6babd;
  font-size: .78rem;
  font-weight: 900;
}
.service-card h3 { font-size: 1.6rem; margin-bottom: 14px; }
.service-card p, .service-card li { color: var(--text); }
.service-card ul { margin: 15px 0 0; padding-left: 20px; }

.project-feature { background: #fff; }
.project-feature__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 78px;
  align-items: center;
}
.project-feature__image { position: relative; }
.project-feature__image::before {
  content: "";
  position: absolute;
  left: -22px; bottom: -22px;
  width: 62%; height: 62%;
  background: var(--yellow);
  border-radius: 24px;
}
.project-feature__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.image-badge {
  position: absolute;
  z-index: 2;
  left: 24px; bottom: 24px;
  padding: 11px 15px;
  border-radius: 10px;
  background: rgba(15,18,20,.88);
  color: #fff;
  font-size: .78rem;
  font-weight: 850;
}
.project-feature__copy > p { color: var(--text); }
.feature-list { display: grid; gap: 18px; margin: 30px 0; }
.feature-list > div { display: grid; grid-template-columns: 34px 1fr; gap: 13px; }
.feature-list > div > span {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(244,180,0,.17);
  color: #8d6700;
  font-weight: 950;
}
.feature-list p { margin: 0; color: var(--text); }
.feature-list strong { display: block; color: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; border-bottom: 2px solid var(--yellow); padding-bottom: 4px; }

.gallery-section { background: var(--ink); overflow: hidden; }
.gallery-section::before {
  content: "";
  position: absolute;
  width: 560px; height: 560px;
  right: -220px; top: -220px;
  border-radius: 50%;
  background: rgba(244,180,0,.07);
}
.gallery-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: #2a2f33;
  cursor: zoom-in;
}
.gallery-card:nth-child(4n+1) { grid-row: span 2; }
.gallery-card img {
  width: 100%; height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}
.gallery-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: #fff;
  background: linear-gradient(0deg, rgba(8,10,12,.76), transparent 55%);
  opacity: 0;
  transition: opacity .25s ease;
}
.gallery-card__overlay span { font-weight: 850; }
.gallery-card:hover img { transform: scale(1.045); filter: saturate(1.08); }
.gallery-card:hover .gallery-card__overlay { opacity: 1; }

.about { background: #fff; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.about__media { position: relative; min-height: 650px; }
.about__main {
  width: 82%; height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about__small {
  position: absolute;
  right: 0; bottom: 0;
  width: 44%; height: 310px;
  object-fit: cover;
  border: 10px solid #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.about__badge {
  position: absolute;
  left: -18px; bottom: 42px;
  width: 150px; height: 150px;
  display: grid;
  place-content: center;
  padding: 18px;
  border-radius: 50%;
  background: var(--yellow);
  text-align: center;
  box-shadow: 0 18px 40px rgba(244,180,0,.25);
}
.about__badge strong { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.about__badge span { margin-top: 5px; font-weight: 900; line-height: 1.18; }
.about__copy > p { color: var(--text); }
.why-us { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line); }
.why-us h3 { margin-bottom: 20px; }
.why-us ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.why-us li { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 12px; font-weight: 780; }
.why-us li span { color: #a77700; font-size: .72rem; font-weight: 950; }

.video-section { background: var(--cream); }
.video-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: center; }
.video-copy p { color: var(--text); }
.video-frame {
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
  box-shadow: var(--shadow);
}
.video-frame video { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.faq-section { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; }
.faq-intro p { color: var(--text); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  position: relative;
  list-style: none;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  font-weight: 850;
  font-size: 1.08rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 8px; top: 18px;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--cream);
  font-size: 1.35rem;
  transition: transform .2s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); background: var(--yellow); }
.faq-list details p { max-width: 90%; padding: 0 0 24px; color: var(--text); }

.quote-banner { padding: 72px 0; background: var(--yellow); }
.quote-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.quote-banner .eyebrow { color: rgba(23,26,29,.65); }
.quote-banner h2 { max-width: 780px; margin: 0; font-size: clamp(2rem, 3.3vw, 3.4rem); }
.quote-banner__actions { display: flex; flex-wrap: wrap; gap: 12px; flex-shrink: 0; }

.contact { background: #f7f7f5; }
.contact-heading {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}
.contact-heading .eyebrow { justify-content: center; }
.contact-heading h2 { margin-bottom: 18px; }
.contact-heading > p:last-child {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text);
}
.contact-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.contact-option {
  position: relative;
  min-height: 255px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(16,18,20,.05);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.contact-option::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
}
.contact-option--whatsapp::before { background: #1f8f5f; }
.contact-option:hover {
  transform: translateY(-6px);
  border-color: rgba(244,180,0,.72);
  box-shadow: 0 22px 48px rgba(16,18,20,.1);
}
.contact-option--whatsapp:hover { border-color: rgba(31,143,95,.6); }
.contact-option__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 16px;
  background: rgba(244,180,0,.16);
}
.contact-option--whatsapp .contact-option__icon {
  background: rgba(31,143,95,.12);
  color: #18784f;
}
.contact-option__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-option--whatsapp .contact-option__icon svg { fill: currentColor; stroke: none; }
.contact-option__kicker {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-option strong {
  max-width: 100%;
  margin-bottom: 9px;
  overflow-wrap: anywhere;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.25;
}
.contact-option small {
  margin-bottom: 24px;
  color: var(--text);
  line-height: 1.55;
}
.contact-option__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--ink);
  font-size: .86rem;
  font-weight: 900;
}
.contact-option--whatsapp .contact-option__link { color: #18784f; }
.contact-option__link span { transition: transform .2s ease; }
.contact-option:hover .contact-option__link span { transform: translateX(4px); }

.quote-process {
  margin-top: 22px;
  padding: 38px;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(244,180,0,.22), transparent 34%),
    var(--ink);
  box-shadow: var(--shadow);
}
.quote-process__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 42px;
}
.quote-process__header > div:first-child { max-width: 720px; }
.quote-process__label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 11px;
  border: 1px solid rgba(244,180,0,.42);
  border-radius: 999px;
  color: var(--yellow);
  background: rgba(244,180,0,.08);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.quote-process h3 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
}
.quote-process__header p { margin: 0; color: #bec3c7; }
.quote-process__location {
  min-width: 225px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.07);
}
.quote-process__location svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.quote-process__location span { display: grid; }
.quote-process__location small { color: #aeb4b8; font-size: .7rem; }
.quote-process__location strong { font-size: .92rem; }
.quote-process__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.quote-step {
  min-height: 176px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 17px;
  background: rgba(255,255,255,.065);
}
.quote-step__number {
  display: block;
  margin-bottom: 26px;
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
}
.quote-step h4 { margin: 0 0 8px; font-size: 1.05rem; }
.quote-step p { margin: 0; color: #bec3c7; font-size: .86rem; line-height: 1.55; }
.quote-process__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.button--whatsapp { background: #1f8f5f; color: #fff; }
.button--whatsapp:hover { background: #18784f; transform: translateY(-2px); }
.button--whatsapp svg { width: 21px; height: 21px; fill: currentColor; }
.quote-process .button--light { background: #fff; color: var(--ink); }
.quote-process .button--light:hover { background: var(--yellow); }

.facebook-cta {
  position: relative;
  overflow: hidden;
  padding: 42px 0;
  background: linear-gradient(135deg, #1877f2 0%, #0f5fc9 100%);
  color: #fff;
}
.facebook-cta::before,
.facebook-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  pointer-events: none;
}
.facebook-cta::before { width: 280px; height: 280px; right: -80px; top: -170px; }
.facebook-cta::after { width: 170px; height: 170px; left: 9%; bottom: -125px; }
.facebook-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
}
.facebook-cta__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 22px;
  background: rgba(255,255,255,.13);
  box-shadow: 0 18px 38px rgba(3,49,111,.22);
}
.facebook-cta__icon svg { width: 35px; height: 35px; fill: #fff; }
.facebook-cta__copy span {
  display: block;
  margin-bottom: 6px;
  color: #dceaff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.facebook-cta__copy h2 { margin: 0 0 7px; font-size: clamp(1.45rem, 2.6vw, 2.2rem); color: #fff; }
.facebook-cta__copy p { max-width: 720px; margin: 0; color: #e8f1ff; line-height: 1.6; }
.facebook-cta__button {
  min-width: 228px;
  justify-content: center;
  background: #fff;
  color: #145db8;
  box-shadow: 0 14px 34px rgba(3,49,111,.25);
}
.facebook-cta__button:hover { background: var(--yellow); color: var(--ink); transform: translateY(-2px); }
.facebook-cta__button span { font-size: 1.2rem; line-height: 1; }

.site-footer { padding: 70px 0 24px; background: #101214; color: #fff; }
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1.3fr .7fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 50px;
}
.brand--footer { width: fit-content; }
.footer__top > p { color: #aeb4b8; }
.footer__links { display: grid; gap: 9px; justify-items: start; }
.footer__links a { color: #d6d9db; }
.footer__links a:hover { color: var(--yellow); }
.footer__facebook {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(255,255,255,.055);
}
.footer__facebook svg { width: 17px; height: 17px; fill: currentColor; }
.footer__facebook:hover { border-color: #1877f2; background: #1877f2; color: #fff !important; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #8f969b;
  font-size: .78rem;
}
.footer__bottom p { margin: 0; }
.footer__bottom a { color: var(--yellow); }

.mobile-actions { display: none; }

.lightbox {
  width: min(94vw, 1180px);
  max-height: 92vh;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: #0b0d0f;
  box-shadow: 0 35px 100px rgba(0,0,0,.5);
}
.lightbox::backdrop { background: rgba(5,7,8,.84); backdrop-filter: blur(6px); }
.lightbox img { width: 100%; max-height: 88vh; object-fit: contain; }
.lightbox__close {
  position: absolute;
  z-index: 2;
  right: 12px; top: 12px;
  width: 44px; height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.68);
  color: #fff;
  font-size: 1.7rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  :root { --header-height: 76px; }
  .topbar__email, .topbar__separator { display: none; }
  .brand__mark { width: 54px; height: 54px; padding: 6px; border-radius: 15px; }

  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav {
    position: fixed;
    top: calc(var(--header-height) + 36px);
    left: 0; right: 0;
    height: calc(100dvh - var(--header-height) - 36px);
    display: grid;
    align-content: start;
    gap: 0;
    padding: 26px 20px;
    background: #fff;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .28s ease, opacity .28s ease;
  }
  .primary-nav.is-open { transform: translateX(0); opacity: 1; pointer-events: auto; }
  .primary-nav > a:not(.button) { padding: 18px 4px; border-bottom: 1px solid var(--line); font-size: 1.2rem; }
  .primary-nav .button { margin-top: 20px; width: 100%; }

  .hero { min-height: auto; }
  .hero__shade {
    background:
      linear-gradient(90deg, rgba(13,16,19,.94), rgba(13,16,19,.55)),
      linear-gradient(0deg, rgba(13,16,19,.82), transparent 55%);
  }
  .hero__content { grid-template-columns: 1fr; gap: 38px; padding-top: 95px; padding-bottom: 70px; }
  .hero__copy { max-width: 820px; }
  .hero-card { max-width: 520px; }

  .section { padding: 88px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .services-grid { gap: 16px; }
  .project-feature__grid, .about__grid, .video-grid, .faq-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .project-feature__image { max-width: 760px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card:nth-child(4n+1) { grid-row: auto; }
  .about__media { max-width: 760px; }
  .video-copy { max-width: 680px; }
  .quote-banner__inner { align-items: flex-start; flex-direction: column; }
  .facebook-cta__inner { grid-template-columns: auto minmax(0, 1fr); }
  .facebook-cta__button { grid-column: 2; width: fit-content; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__top > p { grid-column: 1 / -1; order: 3; }
}

@media (max-width: 860px) and (min-width: 681px) {
  .contact-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-option:last-child { grid-column: 1 / -1; min-height: 220px; }
  .quote-process__header { display: grid; gap: 24px; }
  .quote-process__location { width: fit-content; }
  .quote-process__steps { grid-template-columns: 1fr; }
  .quote-step { min-height: 0; }
}

@media (max-width: 680px) {
  body { padding-bottom: 66px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar__inner { justify-content: space-between; min-height: 38px; gap: 10px; }
  .topbar__inner > p { font-size: .7rem; white-space: nowrap; }
  .topbar__links { display: flex; }
  .topbar__email, .topbar__separator, .topbar__phone { display: none; }
  .topbar__facebook { margin-left: 0; padding: 4px 9px; font-size: .68rem; }
  .topbar__facebook span { display: inline; }
  .site-header { top: 0; }
  .primary-nav { top: var(--header-height); height: calc(100dvh - var(--header-height)); }
  .brand__text strong { font-size: .9rem; }
  .brand__text span { font-size: .63rem; }
  .header__inner { gap: 12px; }

  .hero__media img { object-position: 64% center; }
  .hero__shade {
    background:
      linear-gradient(90deg, rgba(13,16,19,.93), rgba(13,16,19,.66)),
      linear-gradient(0deg, rgba(13,16,19,.9), transparent 55%);
  }
  .hero__content { padding-top: 76px; padding-bottom: 48px; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .hero__lead { font-size: 1rem; }
  .hero__actions { display: grid; }
  .hero__actions .button { width: 100%; }
  .hero__checks { display: grid; gap: 12px; margin-top: 26px; }
  .hero-card { padding: 24px; }
  .hero-card h2 { font-size: 1.55rem; }

  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 96px; padding: 18px 14px; border-right: 0; border-bottom: 1px solid rgba(23,26,29,.17); }
  .trust-item:last-child { border-bottom: 0; }

  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 38px; }
  h2 { font-size: clamp(2.05rem, 10vw, 3rem); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 28px 24px; }
  .service-card__icon { margin-bottom: 30px; }
  .service-card__index { top: 28px; right: 24px; }

  .project-feature__grid { gap: 48px; }
  .project-feature__image::before { left: -10px; bottom: -10px; }
  .image-badge { left: 14px; bottom: 14px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card { min-height: 260px; }
  .gallery-card__overlay { opacity: 1; }

  .about__media { min-height: 480px; }
  .about__main { width: 88%; height: 400px; }
  .about__small { width: 48%; height: 220px; border-width: 7px; }
  .about__badge { left: -4px; bottom: 20px; width: 116px; height: 116px; font-size: .8rem; }
  .why-us li { align-items: start; }

  .video-grid, .faq-grid { gap: 40px; }
  .quote-banner { padding: 58px 0; }
  .quote-banner__actions, .quote-banner__actions .button { width: 100%; }
  .contact-heading { margin-bottom: 34px; text-align: left; }
  .contact-heading .eyebrow { justify-content: flex-start; }
  .contact-options { grid-template-columns: 1fr; gap: 14px; }
  .contact-option { min-height: 225px; padding: 24px; }
  .quote-process { margin-top: 16px; padding: 26px 20px; border-radius: 20px; }
  .quote-process__header { display: grid; gap: 24px; }
  .quote-process__location { min-width: 0; width: 100%; }
  .quote-process__steps { grid-template-columns: 1fr; }
  .quote-step { min-height: 0; }
  .quote-step__number { margin-bottom: 16px; }
  .quote-process__actions, .quote-process__actions .button { width: 100%; }

  .facebook-cta { padding: 34px 0; }
  .facebook-cta__inner { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .facebook-cta__icon { width: 62px; height: 62px; margin: 0 auto; border-radius: 18px; }
  .facebook-cta__copy p { font-size: .9rem; }
  .facebook-cta__button { grid-column: auto; width: 100%; min-width: 0; }
  .footer__top { grid-template-columns: 1fr; gap: 30px; }
  .footer__top > p { grid-column: auto; order: initial; }
  .footer__bottom { flex-direction: column; }

  .mobile-actions {
    position: fixed;
    z-index: 200;
    left: 0; right: 0; bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 66px;
    background: #fff;
    box-shadow: 0 -10px 30px rgba(10,12,14,.14);
  }
  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 900;
  }
  .mobile-actions a:first-child { background: var(--yellow); color: var(--ink); }
  .mobile-actions a:last-child { background: #1f8f5f; color: #fff; }
  .mobile-actions svg { width: 22px; height: 22px; fill: currentColor; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


@media (max-width: 390px) {
  .brand { gap: 9px; }
  .brand__mark { width: 49px; height: 49px; padding: 5px; border-radius: 13px; }
  .brand__text strong { font-size: .8rem; letter-spacing: .09em; }
  .brand__text span { font-size: .56rem; letter-spacing: .055em; }
}
