:root {
  --bg: #11100e;
  --bg2: #1b1814;
  --card: #252018;
  --text: #fff8e8;
  --muted: #d2c3a4;
  --gold: #f1c16c;
  --gold2: #ffe4aa;
  --line: rgba(255, 228, 170, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(17, 16, 14, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  background: #000;
}

.brand strong {
  display: block;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.site-nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--gold2);
}

.call-button {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--gold);
  color: #17130d;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(241, 193, 108, 0.18);
}

.menu-button {
  display: none;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  background: transparent;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

.hero-bg {
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-shade {
  background:
    radial-gradient(circle at 75% 20%, rgba(241, 193, 108, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(17, 16, 14, 0.98) 0%, rgba(17, 16, 14, 0.74) 46%, rgba(17, 16, 14, 0.18) 100%),
    linear-gradient(0deg, rgba(17, 16, 14, 1) 0%, rgba(17, 16, 14, 0.12) 55%);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 105px 0 70px;
}

.eyebrow,
.section-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.19em;
  font-weight: 950;
  font-size: 12px;
}

.dark-label {
  color: #55401d;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.93;
  letter-spacing: -0.07em;
}

.hero-text {
  max-width: 740px;
  color: #f1e4c4;
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 16px;
  font-weight: 950;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 15px;
}

.btn-primary {
  background: var(--gold);
  color: #17130d;
  box-shadow: 0 18px 40px rgba(241, 193, 108, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
}

.btn-outline {
  border-color: rgba(255, 228, 170, 0.36);
  color: var(--gold2);
}

.btn-dark {
  background: #17130d;
  color: var(--gold2);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.trust-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(17, 16, 14, 0.62);
  border: 1px solid var(--line);
  color: var(--gold2);
  font-size: 13px;
  font-weight: 850;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  margin-top: 18px;
}

h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.copy p,
.section-heading p,
.quality-copy p,
.quote-layout p,
.reviews-card p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 36px;
}

.section-heading p {
  max-width: 440px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.service-card div {
  padding: 22px;
}

.service-card h3 {
  color: var(--gold2);
  font-size: 22px;
  margin-bottom: 10px;
}

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

.quality-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(241, 193, 108, 0.13), transparent 28%),
    linear-gradient(180deg, #181511, #211c15);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quality-inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.quality-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.quality-list div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
}

.quality-list strong {
  color: var(--gold);
}

.quality-image img {
  width: 100%;
  border-radius: 34px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--card);
  cursor: pointer;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

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

.gallery-item span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(17, 16, 14, 0.78);
  color: var(--gold2);
  font-weight: 900;
  font-size: 13px;
  backdrop-filter: blur(12px);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-grid article {
  padding: 26px;
  border-radius: 28px;
  background: var(--card);
  border: 1px solid var(--line);
}

.process-grid strong {
  color: var(--gold);
  font-size: 30px;
}

.process-grid h3 {
  color: var(--gold2);
}

.process-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.reviews-section {
  background: var(--gold);
  color: #17130d;
}

.reviews-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.reviews-card h2 {
  color: #17130d;
}

.reviews-card p {
  color: #4e3b1c;
}

.review-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.review-badges span {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.5);
  font-weight: 950;
  text-align: center;
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a,
.contact-list span {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--gold2);
  background: rgba(255, 255, 255, 0.04);
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border-radius: 30px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--gold2);
  font-weight: 800;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 228, 170, 0.24);
  background: #12100d;
  color: var(--text);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 0;
}

.hidden {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.lightbox p {
  position: fixed;
  left: 28px;
  bottom: 24px;
  color: var(--gold2);
  font-weight: 900;
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: var(--bg);
  cursor: pointer;
}

.site-footer {
  padding: 46px 18px;
  text-align: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
}

.site-footer a {
  color: var(--gold2);
}

@media (max-width: 980px) {
  .site-nav,
  .call-button {
    display: none;
  }

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

  .site-header.open .site-nav {
    display: grid;
    position: absolute;
    top: 83px;
    left: 18px;
    right: 18px;
    padding: 20px;
    border-radius: 20px;
    background: #17130d;
    border: 1px solid var(--line);
  }

  .two-col,
  .quality-inner,
  .reviews-card,
  .quote-layout,
  .section-heading {
    grid-template-columns: 1fr;
    display: grid;
    gap: 28px;
    align-items: start;
  }

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

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

  .hero {
    min-height: 820px;
  }
}

@media (max-width: 640px) {
  .brand small {
    display: none;
  }

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

  .hero-content {
    padding-bottom: 44px;
  }

  h1 {
    font-size: 44px;
  }

  .service-grid,
  .gallery-grid,
  .process-grid,
  .review-badges,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-row span {
    width: 100%;
    text-align: center;
  }
}


/* Final corrections */
.brand img,
.site-footer img {
  background: transparent !important;
  box-shadow: none !important;
}

.service-icon-card {
  padding: 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-icon-card img {
  display: none !important;
}

.service-icon-card > div:not(.service-icon) {
  padding: 0 !important;
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  background: rgba(241, 193, 108, 0.12);
  border: 1px solid rgba(255, 228, 170, 0.24);
  color: var(--gold2);
  font-size: 28px;
}

.service-icon-card h3 {
  color: var(--gold2);
  margin-bottom: 12px;
}

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


/* Gallery and logo final correction */
.brand img {
  width: 72px !important;
  height: 72px !important;
  border-radius: 0 !important;
  object-fit: contain !important;
  background: transparent !important;
  box-shadow: none !important;
}

.site-footer img {
  width: 110px !important;
  height: auto !important;
  border-radius: 0 !important;
  object-fit: contain !important;
  background: transparent !important;
  box-shadow: none !important;
}

.gallery-masonry {
  display: block !important;
  column-count: 3;
  column-gap: 18px;
}

.gallery-masonry .gallery-item {
  display: block;
  width: 100%;
  margin: 0 0 18px;
  break-inside: avoid;
  border-radius: 22px;
  overflow: hidden;
}

.gallery-masonry .gallery-item img {
  width: 100%;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  display: block;
}

.gallery-masonry .gallery-item span {
  display: none !important;
}

.lightbox p {
  display: none !important;
}

@media (max-width: 980px) {
  .gallery-masonry {
    column-count: 2;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 58px !important;
    height: 58px !important;
  }

  .gallery-masonry {
    column-count: 1;
  }
}


/* FINAL REAL GALLERY FIX - all uploaded photos, no labels, no cropping */
.gallery-grid.gallery-masonry {
  display: block !important;
  column-count: 3 !important;
  column-gap: 18px !important;
}

.gallery-grid.gallery-masonry .gallery-item {
  display: block !important;
  width: 100% !important;
  margin: 0 0 18px !important;
  break-inside: avoid !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  padding: 0 !important;
}

.gallery-grid.gallery-masonry .gallery-item img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  display: block !important;
}

.gallery-grid.gallery-masonry .gallery-item span {
  display: none !important;
}

.lightbox p {
  display: none !important;
}

@media (max-width: 980px) {
  .gallery-grid.gallery-masonry {
    column-count: 2 !important;
  }
}

@media (max-width: 640px) {
  .gallery-grid.gallery-masonry {
    column-count: 1 !important;
  }
}


/* Background image repair */
.hero-bg {
  background-image: url("assets/img/hero-main.jpg");
  background-size: cover;
  background-position: center;
}

.premium-strip {
  width: min(1180px, calc(100% - 36px));
  margin: -52px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.premium-strip img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 28px;
  border: 1px solid rgba(255, 228, 170, 0.18);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.premium-strip img:first-child {
  height: 380px;
}

@media (max-width: 980px) {
  .premium-strip {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .premium-strip img,
  .premium-strip img:first-child {
    height: auto;
  }
}
