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

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

:root {
  --bg:           #fdf8f3;
  --bg-alt:       #f7f0eb;
  --bg-card:      #ffffff;
  --bg-purple:    #f2edf8;
  --bg-rose:      #faf0ef;
  --text:         #2d1f1f;
  --muted:        #7a6a6a;
  --border:       #e8d8cf;
  --purple:       #8b6ba8;
  --rose:         #bf7870;
  --gold:         #b89050;
  --purple-dark:  #6a5080;
  --max:          1100px;
  --max-narrow:   720px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Lora', Georgia, serif;
  line-height: 1.75;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { display: block; max-width: 100%; }
a   { color: inherit; }

/* ── Navigation ─────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,248,243,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
}

.nav-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.nav-brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--purple);
  border-bottom-color: var(--purple);
}

.nav-cta {
  background: var(--purple) !important;
  color: #fff !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 30px !important;
  border-bottom: none !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--purple-dark) !important; }

/* ── Page hero ───────────────────────────────────────────── */
.page-hero {
  text-align: center;
  padding: 5rem 2rem 4rem;
  background: linear-gradient(160deg, var(--bg-purple) 0%, var(--bg) 60%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '✦';
  position: absolute;
  font-size: 12rem;
  color: rgba(139,107,168,0.05);
  top: -2rem;
  right: 5%;
  pointer-events: none;
}

.page-hero .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ── Decorative divider ──────────────────────────────────── */
.divider {
  text-align: center;
  color: var(--purple);
  letter-spacing: 0.5em;
  font-size: 0.7rem;
  margin: 0.5rem 0;
  opacity: 0.6;
}

/* ── Sections ────────────────────────────────────────────── */
section {
  padding: 5rem 2rem;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.container-narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  font-size: 0.97rem;
  max-width: 540px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-family: 'Lora', serif;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--purple);
  color: #fff;
}
.btn-primary:hover { background: var(--purple-dark); }

.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 1.5px solid var(--purple);
}
.btn-outline:hover { background: var(--purple); color: #fff; }

.btn-rose {
  background: var(--rose);
  color: #fff;
}
.btn-rose:hover { background: #a86860; }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.25s, transform 0.25s;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(139,107,168,0.12);
  transform: translateY(-2px);
}

/* ── Badges ──────────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-weight: 500;
}

.badge-finance   { background: #eef5ee; color: #4a7c4a; }
.badge-world     { background: #eef0f8; color: #4a5a8a; }
.badge-personal  { background: var(--bg-rose); color: var(--rose); }
.badge-monthly   { background: var(--bg-purple); color: var(--purple); }
.badge-general   { background: var(--bg-alt); color: var(--muted); }
.badge-fulfilled { background: #eef5ee; color: #4a7c4a; }
.badge-upcoming  { background: var(--bg-purple); color: var(--purple); }

/* ── Footer ──────────────────────────────────────────────── */
footer {
  margin-top: auto;
  background: #231820;
  color: rgba(255,255,255,0.55);
  padding: 3.5rem 2rem 2rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-desc { font-size: 0.85rem; line-height: 1.7; }

.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── Forms ───────────────────────────────────────────────── */
.field { margin-bottom: 1.25rem; }

.field label {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.7rem 1rem;
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--purple); }

.field textarea { min-height: 130px; }

/* ── Responsive ──────────────────────────────────────────── */
.hamburger { display: none; background: none; border: none; cursor: pointer; font-size: 1.4rem; color: var(--text); }

@media (max-width: 768px) {
  html { font-size: 15px; }
  nav { padding: 0 1.25rem; }
  .hamburger { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
    gap: 1.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.9rem; }

  .page-hero h1 { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
