:root {
  --cream: #FAF5EC;
  --cream-deep: #F3ECDD;
  --emerald: #146B4A;
  --emerald-deep: #0E3B2C;
  --emerald-ink: #0A2C21;
  --moss: #6E9440;
  --ember: #D4552B;
  --gold: #E0862F;
  --gold-soft: #EBAA5C;
  --ink: #23332B;
  --ink-soft: #4E5F55;
  --radius: 22px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 500; line-height: 1.15; color: var(--emerald-ink); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--emerald); }
.wrap { max-width: 880px; margin: 0 auto; padding: 0 24px; }

header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 245, 236, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(20, 107, 74, 0.12);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: 1120px; margin: 0 auto; }
.wordmark { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.wordmark .diamond { width: 30px; height: auto; flex: none; }
.wordmark .name { font-family: 'Fraunces', serif; font-size: 1.12rem; font-weight: 600; color: var(--emerald-ink); letter-spacing: 0.01em; }
.wordmark .name span { color: var(--ember); }
nav.links { display: flex; gap: 28px; align-items: center; }
nav.links a:not(.btn) { text-decoration: none; color: var(--ink-soft); font-weight: 600; font-size: 0.95rem; transition: color .2s; }
nav.links a:not(.btn):hover { color: var(--emerald); }
.btn {
  display: inline-block; text-decoration: none; font-weight: 700; font-size: 0.95rem;
  padding: 11px 22px; border-radius: 999px; transition: transform .15s, box-shadow .2s, background .2s;
}
.btn-solid { background: var(--emerald); color: var(--cream); box-shadow: 0 4px 14px rgba(14, 59, 44, 0.25); }
.btn-solid:hover { background: var(--emerald-deep); transform: translateY(-1px); }

.service-hero { padding: 76px 0 40px; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--emerald); background: rgba(20,107,74,.08);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 24px;
}
.kicker::before { content: ""; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }
.service-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); margin-bottom: 18px; }
.service-hero h1 em { font-style: italic; color: var(--emerald); }
.service-hero .lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 36em; }

.service-body { padding: 24px 0 64px; }
.service-body h2 { font-size: 1.5rem; margin: 40px 0 16px; }
.service-body p { color: var(--ink-soft); max-width: 40em; margin-bottom: 16px; }
.offer-list { list-style: none; margin: 8px 0 8px; display: grid; gap: 12px; }
.offer-list li {
  background: #fff; border: 1px solid rgba(20,107,74,.1); border-radius: 14px;
  padding: 16px 20px 16px 46px; position: relative; color: var(--ink);
}
.offer-list li::before {
  content: "◆"; position: absolute; left: 18px; top: 16px; color: var(--gold); font-size: 0.8rem;
}
.offer-list li strong { color: var(--emerald-ink); }

.cta-band {
  background: linear-gradient(150deg, var(--emerald-deep), #0A2C21 65%);
  border-radius: var(--radius); padding: 44px 40px; margin: 48px 0 0;
  text-align: center; color: #E9EFE4;
}
.cta-band h2 { color: var(--cream); font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 10px; }
.cta-band p { color: rgba(233,239,228,.85); margin-bottom: 22px; }
.cta-band .row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-ember { background: var(--ember); color: #fff; box-shadow: 0 4px 14px rgba(212, 85, 43, 0.3); }
.btn-ember:hover { background: #BC4520; transform: translateY(-1px); }
.btn-outline { border: 2px solid rgba(250,245,236,.4); color: var(--cream); }
.btn-outline:hover { border-color: var(--gold-soft); color: var(--gold-soft); }

.backlink { display: inline-block; margin: 44px 0 72px; font-weight: 700; text-decoration: none; }
.backlink::before { content: "← "; }

footer { background: var(--emerald-deep); color: rgba(233,239,228,.75); padding: 34px 0; font-size: 0.9rem; }
footer .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; max-width: 1120px; }
footer .fm { display: flex; align-items: center; gap: 10px; font-family: 'Fraunces', serif; color: var(--cream); font-size: 1rem; }

@media (max-width: 900px) {
  nav.links a:not(.btn) { display: none; }
}
