:root {
  --bg: #0b0b0b;
  --bg-soft: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1c1c1c;
  --gold: #d4af37;
  --gold-2: #f0d78a;
  --gold-dim: rgba(212, 175, 55, 0.14);
  --gold-line: rgba(212, 175, 55, 0.28);
  --text: #f6f6f6;
  --muted: #b9b9b9;
  --muted-2: #8f8f8f;
  --black: #0a0a0a;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --header-h: 92px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Cinzel", "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font-family: inherit;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--gold);
  color: var(--black);
  padding: 8px 12px;
  z-index: 200;
}

.skip-link:focus {
  top: 12px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(11, 11, 11, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  border-bottom-color: var(--gold-line);
  background: rgba(11, 11, 11, 0.92);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(1280px, calc(100% - 40px));
  margin-inline: auto;
}

.header-inner .brand {
  justify-self: start;
}

.header-inner .site-nav {
  justify-self: center;
}

.header-inner .header-cta,
.header-inner .nav-toggle {
  justify-self: end;
}

.brand {
  display: flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  display: block;
  height: 78px;
  width: auto;
}

.footer-brand .brand-logo {
  height: 110px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6px;
  padding: 13px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: 0.25s ease;
  white-space: nowrap;
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
}

.btn-ghost:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.28);
}

.btn-solid {
  background: var(--gold);
  color: var(--black);
}

.btn-solid:hover {
  background: var(--gold-2);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.35);
}

.header-cta {
  padding: 11px 18px;
}

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

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: center;
  padding: 72px 0 90px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 78% 42%, rgba(212, 175, 55, 0.16), transparent 62%),
    radial-gradient(ellipse 40% 50% at 10% 90%, rgba(212, 175, 55, 0.05), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 11.2em;
}

.hero h1 em,
.gold {
  color: var(--gold);
  font-style: normal;
}

.lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 54ch;
  margin: 0 0 32px;
}

.feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 28px;
  margin-bottom: 36px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
  max-width: 240px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-line);
  border-radius: 10px;
  background: var(--gold-dim);
  color: var(--gold);
}

.feature p {
  margin: 0;
  font-size: 13px;
  color: var(--text);
  line-height: 1.35;
  font-weight: 500;
}

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

.hero-visual {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
}

.logo-burst {
  position: relative;
  width: min(420px, 100%);
  display: grid;
  place-items: center;
}

.logo-burst img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 36px rgba(212, 175, 55, 0.35));
  animation: float 8s ease-in-out infinite;
}

.logo-burst::before,
.logo-burst::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.logo-burst::before {
  inset: 6%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.28), transparent 68%);
  filter: blur(18px);
}

.logo-burst::after {
  inset: -8%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent 70%);
  filter: blur(40px);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Sections */
.section {
  padding: 92px 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.services {
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.03), transparent 18%),
    var(--bg);
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  box-shadow: var(--shadow);
  transition: 0.28s ease;
  min-height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-line);
  background: var(--bg-card-hover);
  box-shadow: 0 18px 40px rgba(212, 175, 55, 0.08);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--gold);
  margin-bottom: 18px;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
}

.service-card .desc {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

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

.checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: #ddd;
}

.checks svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 2px;
  color: var(--gold);
}

/* Why us */
.why {
  padding-top: 20px;
}

.why .eyebrow {
  font-size: 20px;
  letter-spacing: 0.32em;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.why-item {
  padding: 10px 12px;
}

.why-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  border-radius: 14px;
  background: var(--gold-dim);
}

.why-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.why-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Page hero */
.page-hero {
  padding: 72px 0 28px;
  text-align: center;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 48px);
}

.page-hero p {
  margin: 0 auto;
  max-width: 62ch;
  color: var(--muted);
}

/* Content blocks */
.detail-list {
  display: grid;
  gap: 22px;
}

.detail-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
}

.detail-card h2,
.detail-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.detail-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

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

.prose h2,
.prose h3 {
  margin: 0 0 12px;
}

.prose p {
  color: var(--muted);
  margin: 0 0 16px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-list details {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 4px 20px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 600;
  color: var(--text);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin: 0 0 16px;
  color: var(--muted);
  padding-bottom: 8px;
}

.article {
  max-width: 760px;
  margin: 0 auto;
}

.crumb {
  font-size: 13px;
  color: var(--muted-2);
  margin: 0 0 18px;
}

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

.article h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
}

.article .lead {
  margin-bottom: 28px;
}

.article h2 {
  margin: 32px 0 12px;
  font-size: 22px;
}

.article p,
.article li {
  color: var(--muted);
}

.article ul,
.article ol {
  padding-left: 1.2em;
  margin: 0 0 18px;
}

.article li {
  margin-bottom: 8px;
}

a.blog-card {
  display: flex;
  flex-direction: column;
  color: inherit;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.stat {
  padding: 20px;
  border: 1px solid var(--gold-line);
  border-radius: 14px;
  background: var(--gold-dim);
}

.stat strong {
  display: block;
  color: var(--gold);
  font-size: 28px;
  line-height: 1.1;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

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

.ref-card,
.blog-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  overflow: hidden;
  transition: 0.25s ease;
}

.ref-card:hover,
.blog-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-4px);
}

.ref-cover,
.blog-cover {
  height: 140px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.25), transparent 55%),
    #141414;
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 12px;
  text-transform: uppercase;
}

.ref-card .body,
.blog-card .body {
  padding: 22px;
}

.ref-card h3,
.blog-card h2,
.blog-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.ref-card p,
.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.meta {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.info-card,
.form-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 28px;
}

.info-list {
  display: grid;
  gap: 16px;
  margin: 22px 0 0;
}

.info-list a,
.info-list p {
  margin: 0;
  color: var(--muted);
}

.info-list strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.field {
  margin-bottom: 16px;
}

input,
select,
textarea {
  width: 100%;
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  margin: 12px 0 0;
  color: var(--gold-2);
  font-size: 14px;
}

.form-note.is-error {
  color: #e8a0a0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--gold-line);
  padding: 48px 0 28px;
  background: #0a0a0a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.footer-brand p {
  color: var(--muted);
  max-width: 36ch;
  margin: 14px 0 0;
}

.footer-contact {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

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

.wa-box {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--gold);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.08), transparent);
  transition: 0.25s ease;
}

.wa-box:hover {
  background: rgba(212, 175, 55, 0.14);
}

.wa-box svg {
  flex: 0 0 36px;
  color: #25d366;
}

.wa-box strong {
  display: block;
  color: var(--text);
}

.wa-box span {
  color: var(--muted);
  font-size: 13px;
}

.copyright {
  margin: 28px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted-2);
  font-size: 13px;
  text-align: center;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: grid;
  place-items: center;
  z-index: 80;
  padding: 20px;
}

.modal[hidden] {
  display: none;
}

.modal-card {
  width: min(560px, 100%);
  background: #121212;
  border: 1px solid var(--gold-line);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  max-height: calc(100vh - 40px);
  overflow: auto;
}

.modal-card h2 {
  margin: 0 0 8px;
}

.modal-card .sub {
  color: var(--muted);
  margin: 0 0 22px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--gold);
  font-size: 22px;
  cursor: pointer;
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.icon {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-lg {
  width: 32px;
  height: 32px;
}

/* Responsive */
@media (max-width: 1100px) {
  .service-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 280px;
    order: -1;
  }

  .logo-burst {
    width: min(320px, 70%);
  }

  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .brand-logo {
    height: 58px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    z-index: 60;
    background: rgba(11, 11, 11, 0.97);
    flex-direction: column;
    justify-content: flex-start;
    padding: 28px 24px;
    gap: 18px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    visibility: hidden;
    pointer-events: none;
  }

  .site-nav.is-open {
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }

  .header-cta {
    display: inline-flex;
    padding: 8px 10px;
    font-size: 10px;
    letter-spacing: 0.06em;
    margin-left: auto;
  }

  .card-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .detail-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .service-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 36px 0 64px;
    min-height: auto;
  }

  .section {
    padding: 64px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  [data-reveal],
  .logo-burst img,
  .service-card,
  .ref-card,
  .blog-card {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}
