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

/* --- RESET & VARIABLES --- */
:root {
  --c-bg-deep: #111214;
  --c-bg-card: #1c1d20;
  --c-surface: #252629;
  --c-text-main: #eae6df;
  --c-text-muted: #9c9ea4;
  --c-accent: #4e9979; /* 126° Muted Teal */
  --c-accent-dim: rgba(78, 153, 121, 0.1);
  --c-gold: #c5a065;
  --c-gold-dim: rgba(197, 160, 101, 0.15);
  
  --f-serif: 'Cormorant Garamond', Georgia, serif;
  --f-sans: 'Inter', Helvetica, sans-serif;
  
  --fs-hero: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  --fs-h1: clamp(2rem, 4vw + 1rem, 3.5rem);
  --fs-h2: clamp(1.75rem, 3vw + 1rem, 2.5rem);
  --fs-h3: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  --fs-body: clamp(1rem, 1vw + 0.25rem, 1.125rem);
  --fs-small: 0.875rem;
  --fs-caption: 0.75rem;

  --spacing-unit: 1rem;
  --spacing-section: clamp(4rem, 8vw, 8rem);
  --spacing-container: clamp(1.5rem, 4vw, 3rem);
  
  --radius-sm: 2px;
  --radius-md: 8px;
  --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--c-bg-deep);
  color: var(--c-text-main);
  font-family: var(--f-sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-serif);
  font-weight: 400;
  line-height: 1.1;
  color: var(--c-text-main);
  margin-bottom: 1rem;
}

h1 { font-size: var(--fs-hero); letter-spacing: -0.02em; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p {
  margin-bottom: 1.5rem;
  color: var(--c-text-muted);
}

p:last-child { margin-bottom: 0; }

.text-accent { color: var(--c-accent); }
.text-gold { color: var(--c-gold); }
.text-justify { text-align: justify; }
.text-center { text-align: center; }

/* --- LAYOUT UTILITIES --- */
.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-container);
}

section {
  padding: var(--spacing-section) 0;
  position: relative;
}

.flex-col { display: flex; flex-direction: column; }
.flex-row { display: flex; flex-direction: row; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: 1rem; }
.gap-md { gap: 2rem; }
.gap-lg { gap: 4rem; }

/* --- HEADER & NAV --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(17, 18, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.site-header__inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--c-text-main);
  letter-spacing: 0.05em;
  position: relative;
}

.site-logo::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--c-gold);
  border-radius: 50%;
  position: absolute;
  top: -4px;
  right: -12px;
}

.nav-list {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-size: var(--fs-small);
  color: var(--c-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--c-accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-accent);
  transition: var(--transition);
}

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

.mobile-toggle { display: none; background: none; border: none; color: var(--c-text-main); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: var(--f-sans);
  font-size: var(--fs-small);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}

.btn--primary {
  background: var(--c-accent);
  color: #fff;
  border: 1px solid var(--c-accent);
}

.btn--primary:hover {
  background: transparent;
  color: var(--c-accent);
}

.btn--secondary {
  background: transparent;
  color: var(--c-text-main);
  border: 1px solid rgba(234, 230, 223, 0.2);
}

.btn--secondary:hover {
  border-color: var(--c-text-main);
  background: rgba(234, 230, 223, 0.05);
}

/* --- HERO --- */
.hero {
  padding-top: calc(80px + var(--spacing-section)); /* Offset fixed header */
  background: radial-gradient(circle at 70% 20%, #222528 0%, var(--c-bg-deep) 60%);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--spacing-container);
  align-items: center;
}

.hero__eyebrow {
  color: var(--c-gold);
  font-family: var(--f-sans);
  font-size: var(--fs-caption);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  display: block;
}

.hero__title {
  margin-bottom: 2rem;
  font-style: italic;
}

.hero__desc {
  font-size: 1.125rem;
  max-width: 500px;
  margin-bottom: 3rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
}

.hero__visual {
  position: relative;
  height: 400px;
  border: 1px solid rgba(255,255,255,0.05);
  background: linear-gradient(145deg, var(--c-bg-card) 0%, #161719 100%);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  overflow: hidden;
}

.hero__visual::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 32px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* --- CARDS & FEATURES --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--c-bg-card);
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.03);
  transition: var(--transition);
  border-radius: var(--radius-sm);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(78, 153, 121, 0.3);
}

.card__icon {
  font-size: 2rem;
  color: var(--c-accent);
  margin-bottom: 1.5rem;
  display: block;
}

.card__title {
  margin-bottom: 1rem;
  font-family: var(--f-sans);
  font-weight: 500;
}

/* --- STATS --- */
.stats-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 4rem 0;
}

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

.stat-number {
  font-family: var(--f-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--c-text-main);
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(180deg, #fff, #999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-muted);
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  text-align: left;
  color: var(--c-text-main);
  font-family: var(--f-serif);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.faq-answer {
  padding: 0 0 2rem 0;
  color: var(--c-text-muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* --- CTA BAND --- */
.cta-band {
  background: var(--c-surface);
  text-align: center;
  padding: 5rem 0;
  border-radius: var(--radius-md);
}

/* --- FOOTER --- */
.site-footer {
  background: var(--c-bg-card);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: var(--spacing-section);
}

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

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

.footer-col h4 {
  font-family: var(--f-sans);
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: var(--c-text-main);
}

.footer-link {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--c-text-muted);
  font-size: 0.9rem;
}

.footer-link:hover { color: var(--c-accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-caption);
  color: var(--c-text-muted);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__desc { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-list { display: none; } /* Simplified for demo */
  .mobile-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; gap: 3rem; }
  .hero__actions { flex-direction: column; width: 100%; }
  .btn { width: 100%; }
} img,svg,video{max-width:100%;height:auto} html{-webkit-text-size-adjust:100%} *{box-sizing:border-box} 