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

:root {
  --bg:          #F3F2EF;
  --text:        #141410;
  --text-muted:  #8A8880;
  --rule:        #D0CEC8;
  --green:       #1B6B30;
  --font-serif:  'EB Garamond', Georgia, serif;
  --font-body:   'Bellefair', Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  padding: 4rem 1.5rem 6rem;
}

.wrap {
  max-width: 580px;
  margin: 0 auto;
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 3rem;
  transition: color 0.2s ease;
}

.back:hover { color: var(--green); }
.back svg { flex-shrink: 0; }

h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 2.5rem;
}

h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 2.5rem 0 0.6rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--rule);
}

p {
  margin-bottom: 0.75rem;
  color: var(--text);
}

ul {
  margin: 0.5rem 0 0.75rem 1.25rem;
  color: var(--text);
}

ul li { margin-bottom: 0.3rem; }

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

a:hover { text-decoration: underline; }

strong {
  font-family: var(--font-serif);
  font-weight: 600;
  font-style: normal;
}
