:root {
  --cream: #f7f5ef;
  --card: #fffdf8;
  --ink: #1d2b26;
  --muted: #5b6b64;
  --emerald: #14503c;
  --gold: #b48a3f;
  --line: rgba(20, 80, 60, 0.14);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background:
    radial-gradient(900px 480px at 100% -10%, rgba(180, 138, 63, 0.12), transparent 60%),
    var(--cream);
  color: var(--ink);
  font-family: "Karla", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.75;
}

a { color: var(--emerald); text-underline-offset: 3px; }
a:hover { color: var(--gold); }

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(16px, 5vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.8);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--emerald);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.brand span { color: var(--gold); }

.back {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
}
.back:hover { color: var(--emerald); }

.sheet {
  max-width: 780px;
  margin: clamp(28px, 6vw, 64px) auto clamp(56px, 10vw, 96px);
  padding: clamp(24px, 6vw, 56px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 28px 60px -38px rgba(20, 80, 60, 0.45);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.1rem, 6vw, 3.1rem);
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--emerald);
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 52ch;
}

.rule {
  height: 1px;
  margin: 28px 0 8px;
  background: linear-gradient(90deg, var(--gold), rgba(180, 138, 63, 0));
}

section { margin-top: 32px; }

h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 3.4vw, 1.75rem);
  line-height: 1.25;
  margin: 0 0 10px;
  color: var(--emerald);
}

p {
  margin: 0 0 14px;
  max-width: 66ch;
  color: var(--ink);
}

section p { color: #35443e; }

ul { margin: 0 0 14px; padding-left: 1.1rem; max-width: 66ch; color: #35443e; }
li { margin-bottom: 8px; }

.sheet-footer {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

.sheet-footer p { margin: 0; }

.sheet-footer nav { display: flex; gap: 22px; }

.sheet-footer a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 520px) {
  .sheet { border-radius: 18px; margin-left: 12px; margin-right: 12px; }
}
