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

/* ============================================================
   SCIPIONIC CIRCLE — Global Styles
   ============================================================ */

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

:root {
  --cr: #F7F3EA;        /* cream background */
  --dk: #1C1A14;        /* dark text */
  --gd: #B8861F;        /* gold accent */
  --st: #8A8070;        /* stone / muted text */
  --c1: #1A3A5C;        /* circle — navy */
  --c2: #6B3E1A;        /* cohort — amber brown */
  --c3: #1A4336;        /* board — forest */
  --c4: #4A2260;        /* dyad — purple */
  --muted: rgba(28, 26, 20, 0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cr);
  color: var(--dk);
  font-size: 16px;
  line-height: 1.6;
}

/* ── Typography ── */
.serif { font-family: 'Cormorant Garamond', Georgia, serif; }

h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; }

a { color: inherit; text-decoration: none; }

/* ── Utility ── */
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gd);
  margin-bottom: 1.25rem;
  display: block;
}

.divider {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 2.5rem;
  max-width: 820px;
  margin: 0 auto;
}
.divider .line { flex: 1; height: 0.5px; background: var(--muted); }
.divider .mark { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 18px; color: var(--gd); }

/* ── Buttons ── */
.btn-p, .btn-s {
  padding: 11px 28px;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  display: inline-block;
}
.btn-p { background: var(--dk); color: var(--cr); border: none; }
.btn-s { background: transparent; color: var(--dk); border: 0.5px solid rgba(28,26,20,0.35); }
.btn-p:hover { opacity: 0.85; }
.btn-s:hover { background: rgba(28,26,20,0.05); }

/* ── Navigation ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 0.5px solid var(--muted);
  position: sticky;
  top: 0;
  background: var(--cr);
  z-index: 100;
}
.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  font-size: 12px;
  color: var(--st);
  letter-spacing: 0.05em;
}
.nav-links a:hover { color: var(--dk); }
.nav-cta {
  font-size: 12px;
  padding: 7px 18px;
  border: 0.5px solid var(--dk);
  background: transparent;
  cursor: pointer;
  letter-spacing: 0.04em;
  font-family: 'DM Sans', sans-serif;
}
.nav-cta:hover { background: var(--dk); color: var(--cr); }

/* ── Footer ── */
footer {
  border-top: 0.5px solid var(--muted);
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--st);
}
