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

:root {
  --c-ink: #1A1A1A;
  --c-paper: #F9F8F6;
  --c-paper-dim: #F0EFEA;
  --c-accent: #4B5373;
  --c-accent-light: #6B7393;
  --c-stroke: #E0E0E0;
  --c-stroke-dark: #333333;
  --c-success: #2F5C48;
  
  --font-s: 'Cormorant Garamond', serif;
  --font-m: 'Inter', sans-serif;
  
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
  background-color: var(--c-paper);
  color: var(--c-ink);
  font-family: var(--font-m);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-s);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.5rem, 2vw, 1.75rem); }

p { margin-bottom: 1.5rem; max-width: 65ch; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease); }
img { max-width: 100%; height: auto; display: block; }

/* Utilities */
.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
}

.text-center { text-align: center; }
.mb-lg { margin-bottom: 3rem; }
.mb-md { margin-bottom: 1.5rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(249, 248, 246, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-stroke);
  z-index: 100;
  padding-block: 1rem;
}

.nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.nav-brand {
  font-family: var(--font-s);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
}

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

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

.btn-cta-small {
  border: 1px solid var(--c-ink);
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
}

.btn-cta-small:hover {
  background: var(--c-ink);
  color: var(--c-paper);
}

/* Footer */
.site-footer {
  background: var(--c-ink);
  color: var(--c-paper);
  padding-block: 4rem;
  margin-top: 4rem;
}

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

.footer-brand {
  font-family: var(--font-s);
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 4rem;
}

.footer-col h4 {
  font-family: var(--font-m);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 1.5rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.75rem; }
.footer-col a:hover { color: var(--c-accent-light); }

/* Sections & Layout */
section {
  padding-block: clamp(4rem, 8vw, 8rem);
}

/* Hero */
.hero {
  padding-top: 4rem;
  background: radial-gradient(circle at top right, #e8e8e6 0%, transparent 40%);
}

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

.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-accent);
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  margin-bottom: 1.5rem;
  color: var(--c-ink);
}

.hero-desc {
  font-size: 1.125rem;
  color: #444;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  background: var(--c-accent);
  color: #fff;
  padding: 1rem 2rem;
  border: 1px solid var(--c-accent);
  border-radius: 2px;
  font-weight: 500;
  transition: all 0.3s var(--ease);
}

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

.btn-outline {
  background: transparent;
  color: var(--c-ink);
  padding: 1rem 2rem;
  border: 1px solid var(--c-stroke-dark);
  border-radius: 2px;
  font-weight: 500;
  transition: all 0.3s var(--ease);
}

.btn-outline:hover {
  border-color: var(--c-ink);
  background: #fff;
}

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

.card {
  background: #fff;
  border: 1px solid var(--c-stroke);
  padding: 2.5rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  border-color: transparent;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--c-accent);
}

.card h3 { margin-bottom: 1rem; }

/* Stats */
.stats-row {
  display: flex;
  justify-content: space-between;
  padding-block: 3rem;
  border-top: 1px solid var(--c-stroke);
  border-bottom: 1px solid var(--c-stroke);
}

.stat-item {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-s);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666;
}

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

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

.faq-q {
  font-family: var(--font-s);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.faq-a {
  margin-top: 1rem;
  color: #555;
  display: none; /* JS would toggle this */
}

/* CTA Band */
.cta-band {
  background: var(--c-ink);
  color: var(--c-paper);
  text-align: center;
  border-radius: 4px;
}

.cta-band h2 { color: #fff; }
.cta-band p { color: #aaa; margin: 0 auto 2rem; }

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { flex-direction: column; gap: 2rem; }
  .stats-row { flex-direction: column; gap: 2rem; }
}body{margin:0}*{box-sizing:border-box}img,svg,video{max-width:100%;height:auto}