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

:root {
  --green:  #5165ce; /*#1a6b4a;*/
  --green-light: #e6eaff; /* #e8f5ee;*/
  --green-mid: #413dcc; /*  #2d9566;*/
  --amber:       #c97c1a;
  --amber-light: #fdf3e3;
  --ink:        #030080; /* #1a1a18;*/
  --ink-mid:     #4a4a44;
  --ink-faint:   #babab0;
  --paper:       #fafaf7;
  --white:       #ffffff;
  --border:      #e4e4dc;
  --radius:      10px;
  --radius-lg:   18px;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.15s;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-mid);
  text-decoration: none;
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}

.btn-outline:hover {
  background: var(--green-light);
  text-decoration: none;
}

.btn-white {
  background: var(--white);
  color: var(--green);
  font-weight: 500;
}

.btn-white:hover {
  background: var(--green-light);
  text-decoration: none;
  color: var(--green);
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
  border-radius: 8px;
}

/* ── SHARED SECTION ELEMENTS ── */
.section-label {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-body {
  font-size: 1rem;
  color: var(--ink-mid);
  max-width: 560px;
  line-height: 1.75;
}
.logo {
	width: 2em;
	height: 2em;
}

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 2px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: var(--green);
  letter-spacing: -0.01em;
}

.nav-logo span {
  color: var(--ink-mid);
  font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  margin-left: 6px;
}

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

.nav-links a {
  font-size: 0.9rem;
  color: var(--ink-mid);
  font-weight: 400;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--green); text-decoration: none; }
.nav-links a.active { color: var(--green); font-weight: 500; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color:var(--ink-faint);
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

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

.footer-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  color:var(--ink-faint);
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color:var(--ink-faint);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }

.footer-col a {
  color:var(--ink-faint);
  font-size: 0.875rem;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--white); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid var(--white);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color:var(--ink-faint);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
  }

  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.75rem 1.5rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
