@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
  background: #F9F7FE;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── Tokens ─── */
:root {
  --green-50:  #F4F2FC;
  --green-100: #DDD8F5;
  --green-200: #C3B8E8;
  --green-500: #7B6EC0;
  --green-700: #5A4EA0;
  --green-900: #3A3050;
  --peach-50:  #FEF3EC;
  --peach-200: #F2C4A8;
  --peach-500: #C07840;
  --gray-50:   #f5f5f3;
  --gray-100:  #ebebea;
  --gray-300:  #c8c8c5;
  --gray-500:  #888880;
  --gray-700:  #444441;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --max-w: 960px;
}

/* ─── Nav ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(249,247,254,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-700);
  letter-spacing: -0.01em;
}
.nav-logo span {
  font-style: italic;
  color: var(--green-500);
}
.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
}
.nav-links a {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--green-500); background: var(--green-50); }
.nav-links a.active { color: var(--green-500); background: var(--green-50); }

/* ─── Page wrapper ─── */
.page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 2rem 80px;
  min-height: 100vh;
}

/* ─── Page header ─── */
.page-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 0.5rem;
}
.page-title {
  font-size: 42px;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.page-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 3rem;
}
.page-divider {
  border: none;
  border-top: 1px solid var(--gray-100);
  margin-bottom: 3rem;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  font-family: inherit;
}
.btn-primary { background: var(--green-500); color: var(--green-50); }
.btn-primary:hover { background: var(--green-700); }
.btn-outline { background: transparent; color: var(--gray-700); border: 1px solid var(--gray-300); }
.btn-outline:hover { border-color: var(--green-500); color: var(--green-500); }

/* ─── Footer ─── */
footer {
  border-top: 1px solid var(--gray-100);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 12px;
  color: var(--gray-300);
}

/* ─── Responsive ─── */
@media (max-width: 700px) {
  .page { padding: 100px 1.25rem 60px; }
  .page-title { font-size: 30px; }
  .nav-links a { padding: 8px 10px; font-size: 12px; }
}
