:root {
  /* Palette */
  --bg: #0f1720;
  --panel: #16212c;
  --panel-alt: #1b2a36;
  --text: #e7edf2;
  --muted: #b1bec9;
  --line: #2a3b48;
  --accent: #d4af37;
  --accent-2: #f6e3a1;
  --white: #ffffff;
  
  /* Layout Variables */
  --max: 1200px;
  --narrow: 800px;
  --radius: 12px;
  
  /* Shadows & Glow */
  --shadow-soft: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.08);
  
  /* Transitions */
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  /* Radial gradient for subtle spotlight effect */
  background: radial-gradient(circle at 50% 0%, #1a2733 0%, #0f1720 60%);
  color: var(--text);
  /* System Font Stack: San Francisco (Mac), Segoe UI (Win), Roboto (Android) */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4 {
  /* System Serif Stack: Times New Roman, Georgia, or native serif */
  font-family: "Times New Roman", Times, Baskerville, Georgia, serif;
  font-weight: 400;
  color: var(--white);
  margin-top: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
  /* Gradient text for luxury feel */
  background: linear-gradient(135deg, var(--white) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

/* Elegant underline accent for H2 */
h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}

.section:hover h2::after {
  width: 100px;
}

h3 {
  /* Keep body font for headers to contrast with serif H1/H2 */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--accent-2);
  margin-bottom: 0.8rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
  position: relative;
}

a:hover {
  color: var(--accent-2);
}

/* Underline animation for links */
a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s var(--ease-out);
}

a:hover::after {
  width: 100%;
}

/* Layout Containers */
.container {
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
}

.narrow {
  max-width: var(--narrow);
}

/* Header: Ultra-clean, glassmorphism */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px) saturate(180%);
  background: rgba(15, 23, 32, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.2rem 0;
  transition: all 0.3s ease;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  /* Serif for brand logo */
  font-family: "Times New Roman", Times, Baskerville, Georgia, serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--white);
}

.nav {
  display: flex;
  gap: 2.5rem;
}

.nav a {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}

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

/* Hero Section */
.hero {
  padding: 8rem 0 6rem;
  text-align: center;
  position: relative;
}

.eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: block;
  opacity: 0.9;
}

.lead {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.8;
}

.actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.button.primary {
  background: var(--accent);
  color: #1d1604;
  box-shadow: var(--shadow-glow);
  border: 1px solid transparent;
}

.button.primary:hover {
  transform: translateY(-2px);
  background: var(--accent-2);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}

.button.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
}

.button.secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}

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

.section.alt {
  background: linear-gradient(180deg, rgba(22, 33, 44, 0.4), rgba(15, 23, 32, 0.8));
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* Grid & Cards */
.grid {
  display: grid;
  gap: 2rem;
}

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

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

.card {
  background: rgba(22, 33, 44, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

/* Subtle glow on card hover */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-soft);
  background: rgba(27, 42, 54, 0.6);
}

.card:hover::before {
  opacity: 1;
}

/* Pricing Specifics */
.pricing .price {
  font-family: "Times New Roman", Times, Baskerville, Georgia, serif;
  font-size: 2.5rem;
  font-weight: 400;
  margin: 1rem 0 0.5rem;
  color: var(--accent-2);
}

.pricing .price span {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* Lists */
ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 4rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #0b1117;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Legal Page */
.legal-page {
  padding: 5rem 0;
}

.legal-page h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

/* Responsive */
@media (max-width: 900px) {
  .grid-4, .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .site-header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav {
    gap: 1.5rem;
  }
  
  .hero {
    padding: 5rem 0;
  }
  
  h1 {
    font-size: 3rem;
  }
}