:root {
  --green: #2c4a2e;
  --green-dark: #1e3322;
  --green-tile: #3d6b42;
  --gold: #c9a84c;
  --gold-light: #e4c876;
  --cream: #fcfaf7;
  --cream-tile: #F5F0E8;
  --ink: #23301f;
  --muted: #5d6656;
  --rule: #e6dfcf;
  --max: 1080px;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Cormorant', 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  color: var(--green);
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); letter-spacing: 0.01em; }
h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 0.6em; }
h3 { font-size: 1.35rem; margin-bottom: 0.3em; }

p { margin-bottom: 1em; }
a { color: var(--green); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
a:hover { color: var(--green-dark); text-decoration-color: var(--green); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 16px; }

/* HEADER */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-top: 0.7rem; padding-bottom: 0.7rem; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand img { width: 52px; height: 52px; }
.brand span {
  font-family: 'Cormorant', Georgia, serif; font-weight: 700; font-size: 1.45rem; color: var(--green); letter-spacing: 0.02em;
}
.nav { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.nav a { text-decoration: none; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--green); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--gold); }

/* HERO */
.hero { text-align: center; padding: 3rem 0 2.5rem; }
.hero img.seal { width: min(280px, 60vw); height: auto; margin-bottom: 1.2rem; }
.hero .tagline {
  font-family: 'Cormorant', Georgia, serif; font-size: clamp(1.25rem, 3vw, 1.7rem); color: var(--ink); max-width: 640px; margin: 0.8rem auto 1.6rem;
}
.hero .subline { color: var(--muted); font-size: 0.98rem; max-width: 600px; margin: 1rem auto 0; }

/* SEARCH */
.search { max-width: 560px; margin: 0 auto; position: relative; text-align: left; }
.search form { display: flex; gap: 0.5rem; }
.search input {
  flex: 1; min-width: 0; font: inherit; font-size: 1.1rem; padding: 0.8rem 1rem;
  border: 2px solid var(--green); border-radius: 6px; background: #fff; color: var(--ink);
}
.search input:focus { outline: 3px solid var(--gold-light); outline-offset: 1px; }
.search button, .button {
  font: inherit; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.9rem;
  background: var(--green); color: var(--cream); border: 0; border-radius: 6px; padding: 0.8rem 1.2rem; cursor: pointer; text-decoration: none; display: inline-block;
}
.search button:hover, .button:hover { background: var(--green-dark); color: var(--gold-light); }
.button.secondary { background: transparent; color: var(--green); border: 2px solid var(--green); }
.button.secondary:hover { background: var(--green); color: var(--cream); }
.suggestions { list-style: none; margin-top: 0.4rem; background: #fff; border: 1px solid var(--rule); border-radius: 6px; display: none; }
.suggestions.open { display: block; }
.suggestions li a { display: block; padding: 0.55rem 1rem; text-decoration: none; border-bottom: 1px solid var(--rule); }
.suggestions li:last-child a { border-bottom: 0; }
.suggestions li a:hover, .suggestions li a:focus { background: var(--cream-tile); }
.suggestions li.more a { color: var(--muted); font-size: 0.92rem; }
.search .hint { font-size: 0.88rem; color: var(--muted); margin-top: 0.5rem; }

/* SECTIONS */
section { padding: 2.6rem 0; }
section + section { border-top: 1px solid var(--rule); }
.divider { display: block; width: 180px; height: auto; margin: 0 auto 1.2rem; opacity: 0.9; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; margin-top: 1.2rem; }
.step { background: #fff; border-top: 4px solid var(--gold); border-radius: 6px; padding: 1.3rem 1.3rem 1rem; box-shadow: 0 1px 4px rgba(44,74,46,0.08); }
.step .num { font-family: 'Cormorant', Georgia, serif; font-size: 2rem; color: var(--gold); line-height: 1; margin-bottom: 0.4rem; }
.step p { font-size: 0.98rem; color: var(--muted); margin-bottom: 0; }

.samples { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.samples a, .letters a {
  font-family: 'Cormorant', Georgia, serif; font-size: 1.3rem; font-weight: 600;
  background: var(--cream-tile); color: var(--green); border: 1px solid var(--rule); border-radius: 6px;
  padding: 0.5rem 1rem; text-decoration: none;
}
.samples a:hover, .letters a:hover { background: var(--green-tile); color: var(--cream); border-color: var(--green-tile); }

.faq details { border-bottom: 1px solid var(--rule); padding: 0.8rem 0; }
.faq summary { cursor: pointer; font-family: 'Cormorant', Georgia, serif; font-size: 1.3rem; font-weight: 600; color: var(--green); list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "+"; color: var(--gold); display: inline-block; width: 1.2em; }
.faq details[open] summary::before { content: "-"; }
.faq details p { margin: 0.6rem 0 0 1.2em; color: var(--ink); }

.prose { max-width: 720px; }
.prose p { font-size: 1.05rem; }
.lead { font-family: 'Cormorant', Georgia, serif; font-size: 1.35rem; color: var(--ink); }

/* BROWSE */
.letters { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 1rem 0 2rem; }
.letters a { padding: 0.35rem 0.75rem; font-size: 1.2rem; }
.letter-block { padding: 1.4rem 0; border-top: 1px solid var(--rule); }
.letter-block h2 { font-size: 2.4rem; color: var(--gold); margin-bottom: 0.4rem; }
.names { display: flex; flex-wrap: wrap; gap: 0.35rem 1.4rem; }
.names a { text-decoration: none; font-size: 1.08rem; padding: 0.15rem 0; }
.names a:hover { text-decoration: underline; }
.top { font-size: 0.9rem; }

/* FOOTER */
.site-footer { background: var(--green); color: var(--cream); padding: 2.4rem 0 2rem; margin-top: 2rem; }
.site-footer a { color: var(--gold-light); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer .cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.6rem; }
.site-footer h3 { color: var(--gold); font-size: 1.15rem; margin-bottom: 0.5rem; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.3rem; font-size: 0.97rem; }
.site-footer .legal { border-top: 1px solid rgba(252,250,247,0.18); margin-top: 1.6rem; padding-top: 1rem; font-size: 0.88rem; color: rgba(252,250,247,0.75); }
.site-footer img { width: 72px; height: 72px; margin-bottom: 0.6rem; }

@media (max-width: 600px) {
  .site-header .wrap { justify-content: center; text-align: center; }
  .nav { justify-content: center; gap: 0.9rem; }
  .search form { flex-direction: column; }
}
