@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:      #1a1a2e;
  --ink-mid:  #4a4a6a;
  --ink-soft: #8a8aaa;
  --page:     #faf9f6;
  --white:    #ffffff;
  --accent:   #2d6a4f;
  --accent-l: #d8f3dc;
  --gold:     #e9c46a;
  --border:   #e8e6e0;
  --radius:   10px;
  --shadow:   0 2px 16px rgba(26,26,46,0.07);
}

html { scroll-behavior: smooth; }

body {
  background: var(--page);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: 'Fraunces', serif;
  line-height: 1.15;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── LAYOUT ── */
.wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.wrap--narrow {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 1.25rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 99;
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.nav-logo span { color: var(--accent); }

.nav-cta {
  background: var(--accent);
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity .2s;
}
.nav-cta:hover { opacity: .85; text-decoration: none; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .95rem;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: #235c43;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent-l);
  text-decoration: none;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

/* ── BADGE ── */
.badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--accent-l);
  color: var(--accent);
}

/* ── FORM ── */
.form-group {
  margin-bottom: 1.25rem;
}

label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-mid);
  margin-bottom: .4rem;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color .2s;
  appearance: none;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45,106,79,.12);
}

textarea { resize: vertical; min-height: 120px; }

/* ── SECTIONS ── */
section { padding: 4rem 0; }

.section-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.25rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: .85rem;
}
footer a { color: var(--ink-mid); }

/* ── UTILITIES ── */
.text-muted  { color: var(--ink-soft); }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  section { padding: 2.5rem 0; }
  .btn { width: 100%; justify-content: center; }
}