@import url("https://fonts.googleapis.com/css2?family=Sora:wght@600;700&family=Manrope:wght@400;500;600&display=swap");

:root {
  --bg: #121212;
  --bg-card: #1c1c1c;
  --text: #f0f0f0;
  --muted: #b0b0b0;
  --gold: #dca54a;
  --gold-hover: #c8943e;
  --wa: #25d366;
  --header-h: 72px;
  --container: min(1140px, 100% - 32px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Manrope, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

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

a {
  color: var(--gold);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 18, 18, 0.95);
  border-bottom: 1px solid #2e2e2e;
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--header-h);
}

.logo img {
  display: block;
  max-height: 52px;
  width: auto;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a.is-active,
.site-nav a:hover {
  color: var(--gold);
}

.header-ctas {
  margin-left: auto;
  display: flex;
  gap: 8px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #444;
  color: var(--text);
  font-size: 1.25rem;
  padding: 6px 10px;
  border-radius: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn--gold {
  background: var(--gold);
  color: #121212;
}

.btn--gold:hover {
  background: var(--gold-hover);
}

.btn--wa {
  background: var(--wa);
  color: #fff;
}

.hero {
  min-height: 320px;
  background-size: cover;
  background-position: center;
}

.hero--simple {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  min-height: 200px;
}

.hero__overlay {
  min-height: inherit;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 48px 20px;
  background: rgba(0, 0, 0, 0.55);
}

.hero h1 {
  font-family: Sora, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0;
  color: #fff;
}

.content {
  padding: 48px 0 72px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.stats strong {
  display: block;
  font-size: 1.5rem;
  color: var(--gold);
}

.section h2 {
  font-family: Sora, sans-serif;
  margin-bottom: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: var(--bg-card);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #2e2e2e;
}

.card h3 {
  margin-top: 0;
  font-family: Sora, sans-serif;
}

.card a {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
}

.cta-band {
  margin-top: 48px;
  padding: 32px;
  text-align: center;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--gold);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #222;
}

.gallery__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.quote {
  background: var(--bg-card);
  padding: 20px 24px;
  border-left: 4px solid var(--gold);
  margin: 0 0 20px;
  border-radius: 0 8px 8px 0;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  margin-bottom: 12px;
}

.service-list {
  padding-left: 1.2rem;
}

.service-list li {
  margin-bottom: 12px;
}

.site-footer {
  background: #0a0a0a;
  border-top: 1px solid #2e2e2e;
  padding: 32px 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
}

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

.site-footer__new {
  margin-top: 16px;
}

.float-wa,
.float-ig {
  position: fixed;
  right: 16px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.float-wa {
  bottom: 16px;
  background: var(--wa);
}

.float-ig {
  bottom: 82px;
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    width: 100%;
    order: 3;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    padding: 12px 0;
  }

  .site-header__inner {
    flex-wrap: wrap;
  }

  .header-ctas {
    order: 2;
  }
}
