:root {
  --color-bg: #0a0a0a;
  --color-surface: #141414;
  --color-surface-alt: #101010;
  --color-text: #ececec;
  --color-text-muted: #9a9a9a;
  --color-gold: #d4af37;
  --gradient-primary: linear-gradient(135deg, #d4af37 0%, #f1d576 50%, #d4af37 100%);
  --max-width: 1120px;
  --header-height: 76px;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
}

h1, h2, h3, .brand, .step-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

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

a {
  color: inherit;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand {
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: var(--color-text);
}

.brand-dot {
  color: var(--color-gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

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

.nav-cta {
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--color-gold);
  color: var(--color-gold) !important;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-cta:hover {
  background: var(--color-gold);
  color: #0a0a0a !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hero */
.hero {
  padding: 7rem 0 5rem;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.08), transparent 50%),
    radial-gradient(circle at 80% 10%, rgba(212, 175, 55, 0.06), transparent 50%);
}

.hero-inner {
  max-width: 780px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.3rem, 5.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1.25rem;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin: 0 auto 2.25rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.hero-trust {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border: 1px solid var(--color-gold);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--color-gold);
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: transparent;
}

.btn-primary:hover {
  background: var(--color-gold);
  color: #0a0a0a;
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(212, 175, 55, 0.4);
}

.btn-ghost:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* Sections */
.section {
  padding: 5.5rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.subtitle {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--color-gold);
  margin: 0 0 0.5rem;
}

.section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.section-text {
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
}

.services {
  background: var(--color-surface-alt);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--color-surface);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 1.9rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

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

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
  color: var(--color-gold);
}

.card p {
  margin: 0;
  color: var(--color-text-muted);
}

/* Process */
.steps {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.step {
  background: var(--color-surface);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2.1rem 1.9rem;
}

.step-number {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.step p {
  margin: 0;
  color: var(--color-text-muted);
}

/* FAQ */
.faq {
  background: var(--color-surface-alt);
}

.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 720px;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 1.2rem 1.5rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 500;
  list-style: none;
}

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

.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--color-gold);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin: 0.75rem 0 0;
  color: var(--color-text-muted);
}

/* Contact */
.contact {
  text-align: center;
}

.contact-inner {
  max-width: 620px;
}

.contact-hint {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: 1.5rem;
}

/* Footer */
.site-footer {
  padding: 2.25rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  background: var(--color-surface-alt);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  text-decoration: none;
  color: var(--color-text-muted);
}

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

/* Legal pages */
.legal {
  padding: 4rem 0 6rem;
  max-width: 760px;
  margin: 0 auto;
}

.legal h1 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.legal .updated {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.legal h2 {
  font-size: 1.3rem;
  color: var(--color-gold);
  margin-top: 2rem;
}

.legal p {
  color: var(--color-text-muted);
}

/* Reveal-on-scroll animation */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

/* Staggered cascade for grouped items so they don't all animate at once */
.services-grid .reveal:nth-child(2),
.steps .reveal:nth-child(2),
.faq-list .reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.services-grid .reveal:nth-child(3),
.steps .reveal:nth-child(3),
.faq-list .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.services-grid .reveal:nth-child(4),
.faq-list .reveal:nth-child(4) {
  transition-delay: 0.24s;
}

.services-grid .reveal:nth-child(5) {
  transition-delay: 0.32s;
}

.services-grid .reveal:nth-child(6) {
  transition-delay: 0.4s;
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-surface-alt);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  }

  .site-nav.open {
    max-height: 320px;
    padding: 1rem 1.5rem 1.5rem;
  }

  .site-nav a {
    padding: 0.75rem 0;
    width: 100%;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
  }

  .hero {
    padding: 4.5rem 0 3rem;
  }

  .section {
    padding: 3.5rem 0;
  }
}
