:root {
  --bg: #060606;
  --bg-soft: #101010;
  --panel: rgba(20, 20, 20, 0.88);
  --panel-strong: #171717;
  --text: #f2f2f2;
  --muted: #b7b7b7;
  --line: rgba(204, 163, 57, 0.42);
  --line-strong: #c89b2a;
  --accent: #a97d16;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(201, 155, 42, 0.14), transparent 28%),
    radial-gradient(circle at bottom left, rgba(201, 155, 42, 0.08), transparent 32%),
    linear-gradient(180deg, #020202 0%, #0c0c0c 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
  pointer-events: none;
}

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

.site-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e0b445 0%, #8c6310 100%);
  box-shadow: 0 0 0 6px rgba(201, 155, 42, 0.12);
}

.brand-text {
  letter-spacing: 0.28em;
  font-size: 0.98rem;
  font-weight: 700;
}

.site-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-nav a {
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

main {
  padding-bottom: 48px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: stretch;
  padding: 52px 0 34px;
}

.hero-copy,
.hero-panel,
.service-card,
.showcase-card,
.content-card,
.timeline-item,
.contact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--panel);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.hero-copy,
.content-card,
.contact-card {
  padding: 32px;
}

.hero-copy::after,
.hero-panel::after,
.service-card::after,
.showcase-card::after,
.content-card::after,
.timeline-item::after,
.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid var(--line);
  pointer-events: none;
}

.eyebrow,
.mini-label {
  margin: 0 0 12px;
  color: #dfb448;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
}

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

h1 {
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: 0.98;
  max-width: 11ch;
}

.hero-text,
.section-text,
.service-card p,
.showcase-card p,
.content-card p,
.timeline-item p,
.contact-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 58ch;
  margin-top: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: transform 160ms ease, background-color 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #bf9130 0%, #74530e 100%);
  color: #0a0a0a;
  font-weight: 700;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
}

.hero-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(201, 155, 42, 0.08) 0%, transparent 45%),
    var(--panel-strong);
}

.metric-card {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.metric-label,
.service-number {
  display: block;
  margin-bottom: 10px;
  color: #d9b258;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.metric-card strong,
.accent-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.section {
  padding: 28px 0;
}

.section-tight {
  padding-top: 20px;
}

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

.section-heading h2,
.section-heading h1 {
  max-width: 14ch;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
}

.service-grid,
.showcase-grid,
.content-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

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

.showcase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.showcase-card {
  padding: 26px;
}

.service-card h3,
.showcase-card h3,
.content-card h2,
.contact-card h2,
.timeline-item h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.service-card a,
.contact-card a {
  display: inline-flex;
  margin-top: 18px;
  color: #f0c65b;
}

.accent-card {
  background:
    linear-gradient(180deg, rgba(201, 155, 42, 0.18) 0%, rgba(201, 155, 42, 0.02) 100%),
    var(--panel-strong);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
}

.timeline-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  color: #e8bf57;
  background: rgba(201, 155, 42, 0.08);
  border: 1px solid rgba(201, 155, 42, 0.22);
  font-weight: 700;
}

.page-main {
  padding-bottom: 48px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer a {
  color: #f0c65b;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: #1fa855;
  color: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.42);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 980px) {
  .hero,
  .service-grid,
  .showcase-grid,
  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-panel,
  .service-card,
  .showcase-card,
  .content-card,
  .contact-card {
    padding: 24px;
  }

  .section-heading h2,
  .section-heading h1,
  h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 24px, 1120px);
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 28px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }
}
