:root {
  --bg: #0c0c0d;
  --bg-soft: #141416;
  --bg-card: rgba(255, 255, 255, 0.04);
  --stroke: rgba(255, 255, 255, 0.08);
  --text: #f5f5f5;
  --text-muted: #b7b7b9;
  --gold: #c8a24c;
  --gold-soft: rgba(200, 162, 76, 0.18);
  --red: #8f1118;
  --red-soft: rgba(143, 17, 24, 0.2);
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(200, 162, 76, 0.06), transparent 28%),
    radial-gradient(circle at bottom right, rgba(143, 17, 24, 0.08), transparent 22%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.02));
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-intro h2 {
  margin: 10px 0 16px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-intro p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.eyebrow {
  display: inline-block;
  margin: 0;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
}

.bg-glow {
  position: fixed;
  inset: auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.bg-glow-1 {
  top: -100px;
  left: -80px;
  background: var(--gold);
}

.bg-glow-2 {
  right: -120px;
  bottom: 0;
  background: var(--red);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(12, 12, 13, 0.7);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav a {
  color: var(--text-muted);
  transition: color 0.25s ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
  cursor: pointer;
  border: none;
}

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

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #9b7a33);
  color: #141414;
  box-shadow: 0 12px 30px rgba(200, 162, 76, 0.24);
}

.btn-gold:hover {
  box-shadow: 0 18px 40px rgba(200, 162, 76, 0.32);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--stroke);
}

.btn-outline:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(200, 162, 76, 0.12);
}

/* ===== Hero ===== */
.hero {
  padding-top: 0;
  min-height: calc(100vh - 48px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero + .section {
  padding-top: 40px;
}

.hero-grid {
  position: relative;
  min-height: 480px;
  display: block;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(540px, 48%);
  padding: 36px 0 40px;
}

.hero-copy h1 {
  margin: 12px 0 20px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-copy h1 span {
  color: var(--gold);
}

.hero-text {
  max-width: 620px;
  color: var(--text-muted);
  font-size: 1.08rem;
  margin: 0 0 30px;
}

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

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

.stat {
  padding: 18px 18px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.stat span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: absolute;
  top: 0;
  right: -220px;
  width: min(62vw, 980px);
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-card {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 72px 0 0 72px;
  background: transparent;

  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.2) 10%,
    rgba(0, 0, 0, 0.65) 18%,
    #000 28%,
    #000 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.2) 10%,
    rgba(0, 0, 0, 0.65) 18%,
    #000 28%,
    #000 100%
  );
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(12, 12, 13, 0.92) 0%,
      rgba(12, 12, 13, 0.72) 12%,
      rgba(12, 12, 13, 0.42) 22%,
      rgba(12, 12, 13, 0.14) 34%,
      rgba(12, 12, 13, 0) 48%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(0, 0, 0, 0.04) 24%,
      rgba(0, 0, 0, 0.1) 100%
    );
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.08);
  display: block;
}

.hero-badge {
  display: none;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.about-cards {
  display: grid;
  gap: 18px;
}

.glass-card {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.glass-card h3 {
  margin: 0 0 10px;
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.glass-card p {
  margin: 0;
  color: var(--text-muted);
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  padding: 28px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 162, 76, 0.32);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.service-number {
  font-family: "Oswald", sans-serif;
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}

.service-card h3 {
  margin: 0 0 12px;
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  line-height: 1.05;
}

.service-card p {
  margin: 0;
  color: var(--text-muted);
}

/* ===== Before/After ===== */
.before-after-placeholder {
  position: relative;
  min-height: 520px;
  border-radius: 30px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 4px 1fr;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.ba-side {
  position: relative;
  display: flex;
  align-items: end;
  padding: 28px;
}

.ba-side span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(12, 12, 13, 0.7);
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.ba-before {
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,0.45)),
    url("https://images.unsplash.com/photo-1517524206127-48bbd363f3d7?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

.ba-after {
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,0.45)),
    url("https://images.unsplash.com/photo-1494976388531-d1058494cdd8?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
}

.ba-divider {
  position: relative;
  background: linear-gradient(180deg, var(--gold), #fff, var(--gold));
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #8d6f2d);
  box-shadow: 0 0 0 8px rgba(12,12,13,0.45);
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #111;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

/* ===== Reviews ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 14px;
  font-size: 1rem;
}

.review-card p {
  margin: 0 0 18px;
  color: var(--text-muted);
}

.review-card strong {
  color: var(--white);
}

/* ===== CTA ===== */
.cta-section {
  padding-top: 40px;
}

.cta-box {
  padding: 56px 32px;
  text-align: center;
  border-radius: 28px;
  background:
    radial-gradient(circle at top center, rgba(200,162,76,0.12), transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  margin: 10px auto 14px;
  max-width: 820px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.cta-box p:not(.eyebrow) {
  margin: 0 auto 26px;
  max-width: 700px;
  color: var(--text-muted);
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  margin-bottom: 24px;
}

.contact-info {
  display: grid;
  gap: 18px;
}

.contact-card,
.contact-form {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin: 0 0 18px;
  font-family: "Oswald", sans-serif;
  font-size: 1.45rem;
  text-transform: uppercase;
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.contact-card li span {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 700;
}

.contact-card li a,
.contact-card li p,
.contact-card > p {
  margin: 0;
  color: var(--text-muted);
}

.contact-form {
  display: grid;
  gap: 14px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--white);
  border-radius: 16px;
  padding: 16px 18px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8f8f94;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(200,162,76,0.55);
  box-shadow: 0 0 0 4px rgba(200,162,76,0.08);
}

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

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

/* ===== Footer ===== */
.site-footer {
  padding: 44px 0 34px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.01);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.footer-left {
  text-align: left;
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-right {
  text-align: right;
}

.footer-left p,
.footer-center p,
.footer-right p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.footer-logo {
  height: 130px;
  width: auto;
  display: block;
  margin: -30px auto 12px;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(200,162,76,0.25));
}

.made-by a {
  color: var(--gold);
  font-weight: 700;
  transition: opacity 0.25s ease;
}

.made-by a:hover {
  opacity: 0.82;
}
/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-copy {
    text-align: left;
  }

  .hero-grid {
    min-height: 660px;
  }

  .hero-copy {
    width: min(560px, 54%);
  }

  .hero-visual {
    right: -160px;
    width: min(60vw, 820px);
  }
}

@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 60px;
  }

  .hero-grid {
    min-height: auto;
    display: grid;
    gap: 28px;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .hero-visual {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    pointer-events: auto;
  }

  .hero-card {
    height: 420px;
    border-radius: 26px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-card::before {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.02) 40%,
        rgba(0, 0, 0, 0.1) 100%
      );
  }

  .hero-card img {
    height: 100%;
    transform: none;
    object-position: center;
  }

  .hero-stats,
  .gallery-grid,
  .services-grid,
  .reviews-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 0;
  }

  .about-image img,
  .before-after-placeholder {
    min-height: auto;
    height: auto;
  }

  .before-after-placeholder {
    grid-template-columns: 1fr;
    min-height: 620px;
  }

  .ba-divider {
    width: 100%;
    height: 4px;
  }

  .ba-handle {
    top: 50%;
    left: 50%;
  }

  .ba-before,
  .ba-after {
    min-height: 308px;
  }
}

@media (max-width: 560px) {
  .nav {
    min-height: 72px;
  }

  .btn {
    width: 100%;
  }

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

  .hero-copy h1 {
    font-size: clamp(2.4rem, 12vw, 4.2rem);
  }

  .section-intro h2,
  .cta-box h2 {
    line-height: 1.02;
  }

  .glass-card,
  .service-card,
  .review-card,
  .contact-card,
  .contact-form,
  .cta-box {
    padding: 22px;
  }

  .hero-card {
    height: 360px;
    border-radius: 22px;
  }
}

/* ===== BEFORE / AFTER SLIDER ===== */

.before-after {
  padding: 100px 20px;
  text-align: center;
}

.before-after h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.subtitle {
  color: #999;
  margin-bottom: 40px;
}

.ba-slider {
  position: relative;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  user-select: none;
  line-height: 0;
}

.ba-slider {
  position: relative;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
  border-radius: 20px;
}

.ba-slider img {
  width: 100%;
  display: block;
}

.ba-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.ba-before > img {
  width: var(--ba-image-width, 1000px);
  max-width: none;
  height: auto;
  display: block;
  filter: brightness(1) contrast(0.80);
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: #c8a24c;
  transform: translateX(-50%);
  z-index: 3;
  cursor: ew-resize;
}

.ba-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #c8a24c;
  border: 3px solid #111;
  box-shadow: 0 0 0 8px rgba(200, 162, 76, 0.15);
}

@media (max-width: 768px) {
  .ba-slider {
    border-radius: 16px;
  }

  .logo-img {
    height: 56px;
  }

  .footer-logo {
    height: 52px;
  }

  .ba-handle::before {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    text-align: center;
  }

  .footer-logo {
    height: 72px;
    margin-bottom: 10px;
  }
}

#contact {
  padding-bottom: 30px;
}
