:root {
  --ink: #1a1207;
  --parchment: #f7f1e3;
  --parchment-2: #efe6d2;
  --gold: #b8860b;
  --gold-deep: #8a6308;
  --crimson: #7a1f1f;
  --muted: #6b5d47;
  --max: 920px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  color: var(--ink);
  background: var(--parchment);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* Header / nav */
header.site {
  border-bottom: 1px solid var(--parchment-2);
  background: rgba(247, 241, 227, 0.92);
  backdrop-filter: saturate(140%) blur(6px);
  position: sticky; top: 0; z-index: 10;
}
header.site .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px;
}
.brand { font-size: 1.35rem; font-weight: 700; letter-spacing: 0.5px; color: var(--ink); }
.brand span { color: var(--gold-deep); }
nav a { margin-left: 20px; font-size: 0.98rem; color: var(--muted); }
nav a:hover { color: var(--ink); text-decoration: none; }

/* Hero */
.hero {
  text-align: center;
  padding: 84px 0 64px;
  background:
    radial-gradient(1200px 400px at 50% -10%, rgba(184,134,11,0.16), transparent 60%),
    var(--parchment);
}
.hero h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); line-height: 1.1; margin-bottom: 18px; }
.hero .lede { font-size: clamp(1.1rem, 2.4vw, 1.4rem); color: var(--muted); max-width: 680px; margin: 0 auto 30px; }
.kicker { text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem; color: var(--gold-deep); margin-bottom: 14px; }

.btn {
  display: inline-block;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  color: #fff; font-weight: 700; letter-spacing: 0.4px;
  padding: 14px 30px; border-radius: 999px; font-size: 1.05rem;
  box-shadow: 0 6px 20px rgba(138,99,8,0.35);
}
.btn:hover { text-decoration: none; filter: brightness(1.05); }
.price-note { display: block; margin-top: 12px; font-size: 0.92rem; color: var(--muted); }

/* Sections */
section { padding: 56px 0; }
section h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); text-align: center; margin-bottom: 12px; }
section .sub { text-align: center; color: var(--muted); max-width: 640px; margin: 0 auto 40px; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 760px) { .grid { grid-template-columns: 1fr; } }
.card {
  background: var(--parchment-2);
  border: 1px solid #e3d7bd;
  border-radius: 16px; padding: 26px;
}
.card h3 { font-size: 1.25rem; margin-bottom: 8px; color: var(--crimson); }
.card p { color: var(--muted); }

.band { background: var(--parchment-2); border-top: 1px solid #e3d7bd; border-bottom: 1px solid #e3d7bd; }

/* Legal / content pages */
.content { padding: 56px 0 72px; }
.content h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 8px; }
.content .updated { color: var(--muted); font-size: 0.92rem; margin-bottom: 30px; }
.content h2 { font-size: 1.3rem; margin: 30px 0 10px; color: var(--crimson); text-align: left; }
.content p, .content li { color: #3a3220; margin-bottom: 12px; }
.content ul { padding-left: 22px; margin-bottom: 12px; }

/* Footer */
footer.site { border-top: 1px solid var(--parchment-2); padding: 30px 0 50px; color: var(--muted); font-size: 0.92rem; }
footer.site .container { display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: center; justify-content: space-between; }
footer.site nav a { margin-left: 0; margin-right: 18px; }
