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

:root {
  --ink: #1b1e24;
  --muted: #6b7078;
  --line: #e3e0da;
  --paper: #faf9f6;
  --brand: #1f5f4d;
  --sand: #f0ece3;
}

body {
  font-family: "Iowan Old Style", Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

.wrap { max-width: 940px; margin: 0 auto; padding: 0 24px; }

header {
  background: var(--ink);
  color: #fff;
  padding: 16px 0;
  border-bottom: 4px solid var(--brand);
}
.bar { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.brand { font-size: 20px; font-weight: bold; letter-spacing: 0.5px; }
.brand em { color: #8fc9b5; font-style: normal; }
nav { margin-left: auto; display: flex; gap: 18px; flex-wrap: wrap; }
nav a {
  color: #c4c8ce; text-decoration: none; font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
nav a:hover, nav a.on { color: #fff; }

.hero { background: var(--sand); padding: 54px 0; border-bottom: 1px solid var(--line); }
.hero h1 { font-size: 36px; line-height: 1.15; max-width: 620px; }
.hero p { margin-top: 14px; max-width: 520px; color: #55585e; font-size: 17px; }

main { padding: 46px 0; }
h2 { font-size: 25px; margin-bottom: 8px; }
h3 { font-size: 17px; margin-bottom: 6px; }
.lede { color: var(--muted); margin-bottom: 26px; }
p { margin-bottom: 14px; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.card { border: 1px solid var(--line); background: #fff; padding: 22px; }
.card p { font-size: 15px; color: #55585e; margin-bottom: 0; }
.card .price { margin-top: 12px; font-size: 14px; color: var(--brand); font-weight: bold; }

table { width: 100%; border-collapse: collapse; margin: 18px 0 26px; background: #fff; }
th, td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); font-size: 15px; }
th { background: var(--sand); font-size: 13px; letter-spacing: 0.6px; text-transform: uppercase; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
dl { margin-bottom: 20px; }
dt { font-weight: bold; margin-top: 14px; font-size: 15px; }
dd { color: #55585e; font-size: 15px; }

.note {
  border-left: 3px solid var(--brand); background: #fff;
  padding: 14px 18px; margin: 24px 0; font-size: 15px;
}

.faq { margin-bottom: 24px; }
.faq h3 { margin-bottom: 4px; }
.faq p { font-size: 15px; color: #55585e; margin-bottom: 0; }

footer {
  border-top: 1px solid var(--line); padding: 26px 0 70px;
  font-size: 14px; color: var(--muted);
}
footer strong { color: var(--ink); }

@media (max-width: 680px) {
  .split { grid-template-columns: 1fr; gap: 26px; }
  .hero h1 { font-size: 27px; }
  nav { margin-left: 0; gap: 14px; }
}
