:root {
  --bg: #0f0d0c;
  --bg-soft: #171311;
  --panel: rgba(29, 24, 21, 0.72);
  --panel-strong: #181412;
  --text: #f5efe6;
  --muted: #c7b69d;
  --gold: #c9a35d;
  --gold-2: #e2c78f;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 26px;
  --radius-lg: 34px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}
html {
  scroll-behavior: smooth;
}
.back-to-top {
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}
body {
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at top left, rgba(201, 163, 93, 0.1), transparent 25%),
    radial-gradient(circle at top right, rgba(201, 163, 93, 0.06), transparent 30%),
    linear-gradient(180deg, #0e0d0c 0%, #13100f 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

@media (max-width: 560px) {
  .section {
    padding: 3.5rem 0;
  }
}

  .hero-topbar {
    gap: 0.65rem;
    margin-bottom: 0.9rem;
  }

  .hero-lang-switch {
    width: 100%;
  }

  .hero-lang-switch .lang-btn {
    flex: 1;
  }
  .hero-topbar {
    gap: 0.65rem;
    margin-bottom: 0.9rem;
  }

  .hero-lang-switch {
    width: 100%;
  }

  .hero-lang-switch .lang-btn {
    flex: 1;
  }
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 3px;
  width: 0;
  z-index: 2000;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1500;
  backdrop-filter: blur(18px);
  background: rgba(12, 10, 10, 0.75);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.3));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-eyebrow,
.section-label,
.card-eyebrow,
.pill,
.floating-badge {
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-topbar {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 0.7rem;
  margin-top: -0.35rem;
}

.hero-lang-switch {
  display: inline-flex;
  gap: 0.35rem;
  margin-bottom: 0.15rem;
}

.hero-topbar .pill {
  margin-bottom: 0;
}
.brand-eyebrow,
.section-label,
.card-eyebrow {
  font-size: 0.72rem;
  color: var(--muted);
}

.brand-copy strong {
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.desktop-nav a {
  font-weight: 700;
  font-size: 0.96rem;
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: transform 0.3s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 0.9rem 1.2rem;
  border-radius: 14px;
  color: #18120e;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 16px 30px rgba(201, 163, 93, 0.24);
}
.nav-link-phone {
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 700;
}

.nav-link-phone::after {
  display: none;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.35rem;
}

.lang-btn {
  min-width: 42px;
  height: 40px;
  padding: 0 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}

.lang-btn:hover,
.lang-btn:focus-visible {
  transform: translateY(-1px);
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #17110c;
}

.mobile-phone {
  margin-top: 0.6rem;
  text-align: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.mobile-lang-switch {
  margin-top: 1rem;
  justify-content: center;
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: 0.3s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(15, 12, 11, 0.96);
  padding: 0 1rem 1rem;
}

.mobile-menu a {
  display: block;
  padding: 0.95rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 700;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-cta {
  margin-top: 0.6rem;
  text-align: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #1a130d;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  overflow: clip;
}

.hero-bg,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background:
    linear-gradient(115deg, rgba(8, 8, 8, 0.84) 10%, rgba(8, 8, 8, 0.48) 48%, rgba(8, 8, 8, 0.72) 100%),
    url("images/hero-epoxy.jpg") center/cover no-repeat;
  transform: scale(1.06);
}

.hero-grid {
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 85%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 1.4rem;
}

.hero h1,
.section-heading h2,
.split-copy h2,
.contact-copy h2,
.glass-card h2 {
  font-family: "Inter", sans-serif;
  line-height: 1.02;
  font-weight: 800;
}

@media (max-width: 560px) {
  .hero h1 {
  font-size: clamp(1.9rem, 8.5vw, 2.6rem);
  line-height: 1.05;
  max-width: 9ch;
}
}
  .hero-topbar {
    gap: 0.65rem;
    margin-bottom: 0.6rem;
    margin-top: -0.2rem;
  }

  .hero-lang-switch {
    width: auto;
  }

  .hero-lang-switch .lang-btn {
    flex: unset;
  }
.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.9rem, 6vw, 5.7rem);
  margin-bottom: 1.2rem;
}

.hero h1 span {
  color: var(--gold-2);
  text-shadow: 0 8px 36px rgba(201, 163, 93, 0.22);
}

.hero p {
  max-width: 56ch;
  font-size: 1.05rem;
  color: rgba(245, 239, 230, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.8rem 0 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 1.4rem;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #17110c;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 18px 40px rgba(201, 163, 93, 0.26);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.btn-full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-stats div {
  padding: 1rem 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-stats strong,
.feature-list strong,
.review-card strong {
  display: block;
  margin-bottom: 0.32rem;
}

.hero-stats span,
.feature-list p,
.review-card p,
.section-heading p,
.split-copy p,
.contact-copy p,
.glass-card p,
.service-card p,
.contact-points span,
.contact-points a {
  color: rgba(245, 239, 230, 0.76);
}

.hero-card {
  position: relative;
}

.floating-badge {
  position: absolute;
  top: -1rem;
  right: 1.4rem;
  z-index: 2;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(226, 199, 143, 0.94), rgba(201, 163, 93, 0.94));
  color: #1d150e;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.glass-card,
.service-card,
.comparison-card,
.review-card,
.estimate-form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.glass-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.glass-card h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin: 0.7rem 0 0.8rem;
}

.glass-card ul {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.glass-card li {
  padding-left: 1.3rem;
  position: relative;
}

.glass-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.trust-bar {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(201, 163, 93, 0.12), rgba(201, 163, 93, 0.04));
  overflow: clip;
}

.trust-track {
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 800;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 2rem;
}

.section-heading h2,
.split-copy h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 0.6rem 0 0.8rem;
}
.section-heading {
  margin-bottom: 2.5rem;
}

.services-grid,
.review-grid,
.contact-grid,
.split-grid,
.gallery-grid {
  display: grid;
  gap: 1.25rem;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.services-grid {
  gap: 1.4rem;
}

.service-card {
  position: relative;
  padding: 1.55rem;
  border-radius: 26px;
  overflow: hidden;
  min-height: 230px;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -45% auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 163, 93, 0.26), transparent 70%);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(226, 199, 143, 0.18), rgba(201, 163, 93, 0.22));
  color: var(--gold-2);
  font-weight: 800;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}
.extra-services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.extra-service-btn {
  margin-top: 1rem;
  width: 100%;
}

@media (max-width: 820px) {
  .extra-services-grid {
    grid-template-columns: 1fr;
  }
}
.split-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.feature-list div {
  padding: 1.1rem 1.2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-card {
  padding: 1.8rem;
  border-radius: 30px;
}

.comparison-top,
.comparison-row {
  display: grid;
  grid-template-columns: 110px 1fr 110px;
  gap: 0.8rem;
  align-items: center;
}

.comparison-top {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.comparison-row {
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.line {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.line i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}

.gallery-grid {
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  grid-auto-rows: 250px;
}

.gallery-item {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #100d0b;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  content-visibility: auto;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-overlay {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.58));
  backdrop-filter: blur(10px);
}

.gallery-overlay span {
  display: block;
  color: var(--gold-2);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
}

.gallery-overlay strong {
  font-size: 1.2rem;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  padding: 1.4rem;
  border-radius: 24px;
  min-height: 180px;
}

.estimate-form {
  padding: 1.5rem;
  border-radius: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.estimate-form label {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.estimate-form span {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 700;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-radius: 18px;
  padding: 1rem 1rem;
  outline: none;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}

.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
  border-color: rgba(226, 199, 143, 0.55);
  transform: translateY(-1px);
}

.contact-points {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.2rem;
}
.contact-points a:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}

.contact-points a,
.contact-points span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 0.78rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  color: #17110c;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.28);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 0.14s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}

@media (max-width: 1100px) {
  .hero-content,
    .desktop-nav {
    gap: 0.75rem;
  }

  .nav-link-phone,
  .nav-cta {
    padding: 0.8rem 0.95rem;
    font-size: 0.9rem;
  }
  .services-grid,
  .review-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
    .lang-switch {
    margin-left: 0;
  }
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: unset;
    padding: 1.2rem 0 3.2rem;
  }

  .hero-content,
  .services-grid,
  .review-grid,
  .split-grid,
  .contact-grid,
  .form-row,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
  gap: 3rem;
  align-items: start;
}

  .hero-text,
  .hero-card {
    width: 100%;
  }

  .hero h1 {
    max-width: 10.5ch;
    font-size: clamp(2.5rem, 12vw, 4.15rem);
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4.6rem 0;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
  }

  .gallery-item.large {
    grid-row: span 1;
  }
.gallery-page-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 260px;
}

.gallery-page-grid .gallery-item.large {
  grid-row: span 2;
}

@media (max-width: 1100px) {
  .gallery-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .gallery-page-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-page-grid .gallery-item.large {
    grid-row: span 1;
  }
}
  .floating-badge {
    display: none;
  }

  .hero-card {
    margin-top: 1rem;
  }

  .glass-card {
  padding: 1.2rem;
}

  .glass-card,
  .comparison-card,
  .estimate-form,
  .service-card,
  .review-card {
    border-radius: 24px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 1rem), var(--max));
  }

  .nav-shell {
    min-height: 74px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand-copy strong {
    font-size: 0.95rem;
  }

  .brand-eyebrow {
    font-size: 0.64rem;
  }

  .hero-content {
  padding: 2.6rem 0 1.4rem;
}

  .pill {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  padding: 0.55rem 0.85rem;
  font-size: 0.6rem;
  line-height: 1.3;
  white-space: normal;
  border-radius: 18px;
  margin-bottom: 0.7rem;
}

  .card-eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  .hero-actions {
    gap: 1.2rem;
  }
  .hero p,
  .section-heading p,
  .split-copy p,
  .contact-copy p,
  .glass-card p,
  .review-card p,
  .service-card p {
    font-size: 0.98rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .service-card {
    min-height: unset;
  }

  .comparison-top,
  .comparison-row {
    grid-template-columns: 80px 1fr 88px;
    font-size: 0.88rem;
  }

  .back-to-top {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }
}

.ba-section {
  padding: 6rem 0;
}

.ba-shell {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}
@media (max-width: 820px) {
  .ba-shell {
    grid-template-columns: 1fr;
  }
}
.ba-compare {
  min-width: 0;
}
.ba-compare {
  position: relative;
  width: 100%;
  max-width: 520px; /* makes it tighter + cleaner */
  margin: 0 auto;
  aspect-ratio: 1 / 1; /* perfect square */
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0c0a09;
  box-shadow: var(--shadow);
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0c0a09;
  object-position: center;
  display: block;
  user-select: none;
  pointer-events: none;
}

.ba-before {
  z-index: 1;
}

.ba-after-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.ba-after {
  z-index: 2;
}

.ba-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.92);
  z-index: 4;
}

.ba-divider::before {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #17110c;
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.32);
}

.ba-badge {
  position: absolute;
  top: 14px;
  z-index: 4;
  padding: 0.5rem 0.78rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ba-badge-left {
  left: 14px;
  background: rgba(12, 10, 10, 0.72);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ba-badge-right {
  right: 14px;
  background: linear-gradient(135deg, rgba(226, 199, 143, 0.94), rgba(201, 163, 93, 0.94));
  color: #17110c;
}

@media (max-width: 820px) {
  .ba-compare {
    height: 270px;
    border-radius: 20px;
  }

  .ba-divider::before {
    width: 46px;
    height: 46px;
    font-size: 0.95rem;
  }
}

@media (max-width: 560px) {
  .ba-compare {
    max-width: 100%;
    aspect-ratio: 1 / 1;
  }

  .ba-badge {
    top: 10px;
    padding: 0.42rem 0.65rem;
    font-size: 0.62rem;
  }

  .ba-badge-left {
    left: 10px;
  }

  .ba-badge-right {
    right: 10px;
  }

  .ba-divider::before {
    width: 40px;
    height: 40px;
    font-size: 0.88rem;
  }
}

/* BEFORE badge */
.ba-badge-left {
  left: 14px;
  background: rgba(12, 10, 10, 0.72);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);

  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

/* AFTER badge (hidden by default) */
.ba-badge-right {
  right: 14px;
  background: linear-gradient(135deg, rgba(226, 199, 143, 0.94), rgba(201, 163, 93, 0.94));
  color: #17110c;

  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

/* WHEN SLIDER IS ON AFTER SIDE */
.ba-compare.show-after .ba-badge-right {
  opacity: 1;
  transform: translateY(0);
}

.ba-compare.show-after .ba-badge-left {
  opacity: 0;
  transform: translateY(-6px);
}


@media (max-width: 560px) {
  .section-heading h1,
  .section-heading h2,
  .split-copy h2,
  .contact-copy h2,
  .glass-card h2 {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
    line-height: 1.08;
  }

  .contact-points a,
  .contact-points span {
    padding: 0.85rem 0.9rem;
    font-size: 0.95rem;
  }

  .estimate-form,
  .glass-card {
    padding: 1.15rem;
  }

  .estimate-form input,
  .estimate-form select,
  .estimate-form textarea {
    padding: 0.95rem 0.95rem;
    font-size: 0.98rem;
  }

  iframe {
    height: 300px;
  }
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(10, 9, 8, 0.92);
  padding: 2.2rem 0;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.footer-brand p,
.footer-contact span,
.footer-contact a,
.footer-links a {
  color: rgba(245, 239, 230, 0.72);
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.65rem;
}

.footer-links a,
.footer-contact a {
  font-weight: 600;
}

@media (max-width: 820px) {
  .footer-shell {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .footer-links,
  .footer-contact {
    gap: 0.55rem;
  }
}

.final-cta {
  padding-top: 2rem;
}

.cta-box {
  padding: 2.4rem;
  border-radius: 28px;
  text-align: center;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: var(--shadow);
}

.cta-box h2 {
  font-family: "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 0.6rem 0 0.7rem;
}

.cta-box p {
  max-width: 620px;
  margin: 0 auto 1.5rem;
  color: rgba(245, 239, 230, 0.74);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

@media (max-width: 560px) {
  .cta-box {
    padding: 1.4rem;
    border-radius: 22px;
  }

  .cta-actions {
    flex-direction: column;
  }
}

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

body {
  overflow-x: hidden;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea,
.estimate-form button {
  font-size: 16px;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  transform: translateZ(0);
}

.services-grid .service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 18px;
  margin: 1rem 0 1rem 0;
  display: block;
}

@media (max-width: 1024px) {
  .estimate-form input,
  .estimate-form select,
  .estimate-form textarea,
  .estimate-form button {
    font-size: 16px;
  }

  .services-grid .service-card img {
    height: 170px;
  }
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1rem;
}

.footer-socials a {
  font-weight: 700;
  color: var(--muted);
  transition: 0.25s ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: var(--gold-2);
}

.contact-map-image {
  max-width: 600px;
  margin: 1.5rem auto 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.contact-map-image img {
  width: 100%;
  display: block;
}

@media (max-width: 820px) {
  .contact-map-image {
    max-width: 100%;
  }
}

.service-area-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.service-area-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

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

@media (max-width: 820px) {
  .service-area-row {
    grid-template-columns: 1fr;
  }
}


.contact-grid {
  align-items: start;
}

.contact-copy {
  margin-top: 0.75rem;
}


@media (max-width: 820px) {
  .footer-shell {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .footer-brand {
    gap: 0.75rem;
  }

  .footer-socials {
    margin-top: 0;
    gap: 0.75rem;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem 1rem;
    align-items: start;
  }

  .footer-contact {
    display: grid;
    gap: 0.55rem;
  }

  .footer-links a,
  .footer-contact a,
  .footer-contact span {
    font-size: 0.95rem;
  }
}
@media (min-width: 900px) {
  .contact-points a,
  .contact-points span {
    max-width: 650px;
    padding: 0.85rem 1.2rem;
    font-size: 1rem;
  }
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: start;
  }

  .contact-copy {
    padding-top: 0.4rem;
  }

  .contact-points a,
  .contact-points span {
    min-width: 320px;
  }
}

.footer-credit {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  text-align: center;
  color: rgba(245, 239, 230, 0.55);
  letter-spacing: 0.05em;
}

.footer-credit a {
  color: var(--gold-2);
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

.footer-credit a:hover {
  opacity: 0.8;
}