* {
  box-sizing: border-box;
}

:root {
  --bg: #111214;
  --panel: #1a1b1f;
  --panel-2: #202227;
  --text: #f5f5f5;
  --muted: #c3c7cf;
  --yellow: #f3c91f;
  --yellow-2: #ffd94f;
  --line: rgba(255,255,255,0.08);
  --green: #2e8b57;
  --shadow: 0 18px 40px rgba(0,0,0,0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(15,16,18,0.92), rgba(23,24,28,0.95)),
    url('assets/hex-texture.svg');
  background-size: auto, 220px 190px;
  background-repeat: repeat;
  background-attachment: fixed;
}

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(17,18,20,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 4px 0;
  min-height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  line-height: 0;
}

.brand img {
  width: 270px;
  max-width: min(30vw, 270px);
  height: auto;
  object-fit: contain;
  background: transparent;
}

.footer-brand img {
  width: 160px;
  height: auto;
  object-fit: contain;
  background: transparent;
}

.brand-main,
.brand-sub {
  display: none;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-weight: 600;
}

.desktop-nav a:hover,
.footer-links a:hover,
.mobile-menu a:hover {
  color: var(--yellow-2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.call-chip,
.wa-chip,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.call-chip,
.wa-chip {
  padding: 12px 16px;
  box-shadow: var(--shadow);
}

.call-chip,
.btn-primary {
  background: var(--yellow);
  color: #141414;
}

.wa-chip,
.btn-secondary {
  background: #22252b;
  border: 1px solid rgba(255,255,255,0.1);
}

.btn {
  padding: 15px 20px;
}

.call-chip:hover,
.wa-chip:hover,
.btn:hover {
  transform: translateY(-1px);
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: #1f2025;
  color: white;
  border-radius: 12px;
  width: 42px;
  height: 42px;
  font-size: 1.2rem;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: #18191d;
  padding: 12px 16px 18px;
}

.mobile-menu.open {
  display: grid;
  gap: 14px;
}

.hero {
  padding: 58px 0 46px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 32px;
}

.hero-copy h1 {
  margin: 14px 0 16px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.04;
  max-width: 10ch;
}

.eyebrow,
.section-tag,
.section-heading span {
  color: var(--yellow);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.84rem;
}

.hero-points {
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-points li,
.trust-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-points li::before,
.trust-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yellow);
  font-weight: 800;
}

.hero-cta,
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.08);
}

section {
  padding: 36px 0;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2,
.trust-copy h2,
.contact-box h2 {
  margin: 10px 0 0;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.1;
}

.section-heading h2 {
  max-width: 14ch;
}

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

.service-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.service-card h3,
.service-card p {
  padding: 0 18px;
}

.service-card h3 {
  margin: 18px 0 8px;
  font-size: 1.2rem;
}

.service-card p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.6;
}

.trust-strip {
  padding-top: 52px;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #1a1b20, #202127);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.trust-copy p {
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.7;
}

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

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

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.contact-box {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, rgba(243,201,31,0.12), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.contact-box p {
  color: var(--muted);
  margin-top: 10px;
}

.footer {
  padding: 10px 0 34px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand p {
  margin: 6px 0 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 600;
}

@media (max-width: 980px) {
  .desktop-nav,
  .call-chip,
  .wa-chip {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-grid,
  .trust-grid,
  .contact-box,
  .footer-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .hero-media img {
    height: 420px;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    padding: 2px 0;
    gap: 8px;
    min-height: 58px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand img {
    width: min(78vw, 360px);
    max-width: 100%;
  }

  .footer-brand img {
    width: 140px;
  }

  .menu-btn {
    width: 40px;
    height: 40px;
  }

  .brand-main {
    font-size: 1rem;
  }

  .brand-sub {
    font-size: 0.82rem;
  }

  .container {
    width: min(100% - 22px, 1180px);
  }

  .hero {
    padding-top: 28px;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    height: 310px;
  }

  .contact-box {
    padding: 24px 18px;
  }

  .hero-points li,
  .trust-list li,
  .service-card p,
  .contact-box p {
    font-size: 0.98rem;
  }
}


.topbar {
  background:
    linear-gradient(rgba(17,18,20,0.94), rgba(17,18,20,0.94)),
    url('assets/hex-texture.svg');
  background-size: auto, 220px 190px;
  background-repeat: repeat;
}

.hero,
.services,
.gallery,
.contact-cta,
.footer {
  position: relative;
}

.hero::before,
.services::before,
.gallery::before,
.contact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.10), rgba(0,0,0,0.10)),
    url('assets/hex-texture.svg');
  background-size: auto, 220px 190px;
  background-repeat: repeat;
  opacity: 0.24;
  pointer-events: none;
}

.hero > .container,
.services > .container,
.gallery > .container,
.contact-cta > .container {
  position: relative;
  z-index: 1;
}
