:root {
  --bg: #0b0b0b;
  --bg-soft: #111111;
  --panel: #151515;
  --gold: #c8a96b;
  --gold-strong: #d4af37;
  --text: #f5f5f5;
  --muted: #8a8a8a;
  --line: rgba(200, 169, 107, 0.22);
  --soft-line: rgba(245, 245, 245, 0.1);
  --container: 120px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 12%, rgba(200, 169, 107, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 42%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 14px clamp(22px, 7vw, var(--container));
  border-bottom: 1px solid var(--soft-line);
  background: rgba(11, 11, 11, 0.86);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 110px;
  height: 56px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #f5f5f5;
  font-size: 15px;
  font-weight: 500;
}

.site-nav a {
  color: rgba(245, 245, 245, 0.84);
  transition: color 0.2s ease;
}

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

.nav-cta,
.button {
  border: 1px solid var(--gold);
  border-radius: 8px;
}

.nav-cta {
  padding: 11px 17px;
  color: var(--gold) !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--gold);
}

.hero,
.section,
.cta-band,
.site-footer {
  padding-right: clamp(22px, 7vw, var(--container));
  padding-left: clamp(22px, 7vw, var(--container));
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.78fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
  min-height: calc(100vh - 86px);
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(72px, 8vw, 100px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 800px;
  margin-bottom: 26px;
  font-size: clamp(58px, 5.4vw, 72px);
  line-height: 1.02;
}

h2 {
  max-width: 820px;
  font-size: clamp(38px, 4vw, 48px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  border-color: var(--gold);
  background: linear-gradient(135deg, #101010, #171717);
  color: var(--gold);
  box-shadow: 0 14px 32px rgba(200, 169, 107, 0.12);
}

.button.secondary {
  border-color: var(--soft-line);
  color: var(--text);
  background: rgba(245, 245, 245, 0.03);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #080808;
  box-shadow: var(--shadow);
}

.hero-panel::before,
.about-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(200, 169, 107, 0.18), transparent 48%);
  pointer-events: none;
}

.hero-panel img {
  width: 100%;
  aspect-ratio: 1 / 1.02;
  object-fit: cover;
}

.section {
  padding-top: clamp(100px, 12vw, 160px);
  padding-bottom: clamp(100px, 12vw, 160px);
}

.about,
.split {
  display: grid;
  grid-template-columns: minmax(310px, 0.82fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.about-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.about-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-copy p,
.service-card p,
.feature-list p,
.faq p,
.cta-band p,
.legal {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.about-copy h2,
.section-heading h2 {
  margin-bottom: 24px;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 50px;
}

.services,
.faq {
  background: var(--bg-soft);
}

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

.service-card,
.feature-list article,
.result-grid article,
.faq details {
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: rgba(245, 245, 245, 0.035);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 30px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-card:hover,
.feature-list article:hover,
.result-grid article:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  background: rgba(200, 169, 107, 0.055);
}

.service-card h3::before {
  content: "";
  display: block;
  width: 38px;
  height: 2px;
  margin-bottom: 22px;
  background: var(--gold);
}

.service-card a {
  margin-top: auto;
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-list article {
  padding: 30px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.results {
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
}

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

.result-grid article {
  min-height: 170px;
  padding: 34px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.result-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.result-grid span {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: clamp(72px, 8vw, 110px);
  padding-bottom: clamp(72px, 8vw, 110px);
  background: linear-gradient(135deg, rgba(200, 169, 107, 0.12), rgba(245, 245, 245, 0.025));
}

.cta-band h2 {
  margin-bottom: 20px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq details {
  padding: 24px 28px;
}

.faq summary {
  cursor: pointer;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
}

.faq p {
  margin: 14px 0 0;
}

.site-footer {
  padding-top: 70px;
  padding-bottom: 94px;
  background: #070707;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 40px;
}

.footer-main img {
  width: 150px;
  margin-bottom: 20px;
}

.footer-main h2 {
  margin-bottom: 18px;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.footer-main a,
.footer-main span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 16px;
}

.legal {
  max-width: 1060px;
  border-top: 1px solid var(--soft-line);
  padding-top: 26px;
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #101010;
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.36);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .service-card,
  .feature-list article,
  .result-grid article,
  .reveal {
    transition: none;
  }
}

@media (max-width: 1120px) {
  .hero,
  .about,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .about-visual {
    max-width: 620px;
  }

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

@media (max-width: 760px) {
  .site-header {
    min-height: 76px;
  }

  .brand img {
    width: 96px;
    height: 48px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 22px;
    border-bottom: 1px solid var(--soft-line);
    background: rgba(11, 11, 11, 0.98);
  }

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

  .site-nav a {
    padding: 12px 0;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

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

  h1 {
    font-size: clamp(44px, 13vw, 58px);
  }

  h2 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .hero-text {
    font-size: 19px;
  }

  .hero-actions,
  .cta-band {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .feature-list,
  .result-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 92px;
    padding-bottom: 92px;
  }
}
