/* Basic reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #06060a;
  color: #e5e5f0;
  line-height: 1.6;
}

/* Layout helpers */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(6, 6, 10, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.75rem;
}

.logo a {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #f5f5ff;
  text-decoration: none;
}

.nav a {
  margin-left: 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #b0b0c6;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #f7c56a, #e876ff);
  transition: width 0.2s ease-out;
}

.nav a:hover::after,
.nav a:focus::after {
  width: 100%;
}

.nav a:hover {
  color: #f5f5ff;
}

/* Hero */
.hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 3rem;
  background:
    radial-gradient(circle at top left, #131323 0, transparent 50%),
    radial-gradient(circle at bottom right, #231326 0, transparent 55%),
    #06060a;
}

.hero-content {
  max-width: 640px;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b0b0c6;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 0.98rem;
  color: #ccccdd;
  max-width: 38rem;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease, border-color 0.2s ease;
}

.button.primary {
  background: linear-gradient(135deg, #f7c56a, #e876ff);
  color: #15141f;
}

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

.button.subtle {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: #e5e5f0;
}

.button.subtle:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: #090912;
}

.section-content h2 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.section-content p {
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

.section-content p:last-child {
  margin-bottom: 0;
}

.muted {
  color: #a3a3ba;
}

.contact-email a {
  font-weight: 500;
  color: #f7c56a;
  text-decoration: none;
}

.contact-email a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0 2rem;
  background: #05050a;
}

.footer-inner {
  text-align: center;
  font-size: 0.8rem;
  color: #8c8ca0;
}

/* Responsive */
@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 0.75rem;
  }

  .nav {
    margin-top: 0.5rem;
  }

  .nav a {
    margin-left: 0;
    margin-right: 1.25rem;
  }

  .hero {
    padding-top: 4.5rem;
  }
}
