@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@300;400;500&display=swap');

:root {
  --bg-deep: #0A192F;
  --bg-card: #112240;
  --text-main: #F7FAFC;
  --text-muted: #8892b0;
  --accent-gold: #C5A059;
  --accent-gold-dim: rgba(197, 160, 89, 0.1);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
  --gap-lg: clamp(2rem, 5vw, 4rem);
  --gap-md: clamp(1rem, 3vw, 2rem);
}

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

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

body {
  background-color: var(--bg-deep);
  color: var(--text-muted);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  color: var(--text-main);
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: var(--gap-md);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--gap-md);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease-out);
}

/* --- Layout Architecture --- */

.l-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}

.l-section {
  padding-block: clamp(4rem, 8vw, 8rem);
  position: relative;
  overflow: hidden;
}

/* --- Header --- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding-block: 1.25rem;
}

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

.brand-mark {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-main);
  font-weight: 600;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 50%;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.main-nav a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  position: relative;
}

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

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.3s var(--ease-out);
}

.main-nav a:hover::after {
  width: 100%;
}

/* --- Hero --- */

.hero-area {
  padding-top: clamp(8rem, 15vw, 12rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.05) 0%, transparent 40%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  border-left: 1px solid var(--accent-gold);
  padding-left: 2rem;
}

.hero-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.hero-img-slot {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-card), #1a2c4e);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.hero-img-slot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,0.02) 10px,
    rgba(255,255,255,0.02) 20px
  );
}

/* --- UI Elements --- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--bg-deep);
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #d4b06a;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--text-muted);
  color: var(--text-main);
}

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

/* --- Cards & Grid --- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--bg-card);
  padding: 2.5rem;
  border: 1px solid var(--border-subtle);
  transition: transform 0.3s var(--ease-out);
}

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

/* --- Stats --- */

.stats-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding-block: 3rem;
}

.stat-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
}

/* --- FAQ --- */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.5rem;
}

.faq-q {
  font-size: 1.2rem;
  color: var(--text-main);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* --- Footer --- */

.site-footer {
  background: #050d1a;
  border-top: 1px solid var(--border-subtle);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  max-width: 300px;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.75rem;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
}

/* --- Media Queries --- */

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-content {
    border-left: none;
    padding-left: 0;
    order: 2;
  }
  .hero-img-slot {
    order: 1;
  }
  .main-nav {
    display: none; /* Mobile menu simplified for brevity */
  }
  .stats-row {
    flex-direction: column;
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{margin:0}
img,svg,video{max-width:100%;height:auto}
