:root {
  --cream: #f4efe4;
  --cream-2: #ebe4d4;
  --ink: #141414;
  --ink-2: #2a2a2a;
  --mute: #5c564c;
  --amber: #e8a317;
  --line: #d7cfc0;
  --white: #fffdf8;
  --max: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 18px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name strong { font-size: 1.15rem; letter-spacing: -0.02em; }
.brand-name span { font-size: 0.78rem; color: var(--mute); font-weight: 500; }

nav { display: flex; gap: 22px; align-items: center; font-size: 0.95rem; }
nav a { text-decoration: none; color: var(--ink-2); }
nav a:hover { color: var(--ink); }
nav .btn { margin-left: 6px; }

.btn {
  display: inline-block;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid var(--ink);
}
.btn:hover { background: #000; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { background: var(--cream-2); }
.btn-amber {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
}

.hero {
  padding: 56px 0 36px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.kicker {
  color: var(--mute);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 12px;
}
h1 {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  font-weight: 700;
}
.lede { font-size: 1.15rem; color: var(--ink-2); max-width: 38rem; margin: 0 0 26px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-note { margin-top: 16px; color: var(--mute); font-size: 0.92rem; }

.hero-card {
  background: var(--ink);
  color: var(--cream);
  border-radius: 22px;
  padding: 28px 26px 22px;
  box-shadow: 8px 8px 0 #00000022;
}
.hero-card img { width: 88px; margin-bottom: 16px; }
.hero-card h2 {
  font-family: "Iowan Old Style", Palatino, Georgia, serif;
  font-size: 1.6rem;
  margin: 0 0 8px;
}
.hero-card p { margin: 0; color: #d8d0c2; font-size: 0.98rem; }
.hero-card ul { margin: 16px 0 0; padding: 0; list-style: none; }
.hero-card li { padding: 6px 0; border-top: 1px solid #2d2d2d; color: #ece6da; font-size: 0.95rem; }

section { padding: 28px 0; }
.section-title {
  font-family: "Iowan Old Style", Palatino, Georgia, serif;
  font-size: 2rem;
  margin: 0 0 8px;
}
.section-sub { color: var(--mute); margin: 0 0 24px; max-width: 40rem; }

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.plan {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.plan.featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-6px);
}
.plan .name { font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.78rem; color: var(--mute); }
.plan.featured .name { color: var(--amber); }
.plan .price {
  font-family: "Iowan Old Style", Palatino, Georgia, serif;
  font-size: 2.4rem;
  margin: 8px 0 2px;
}
.plan .price small { font-size: 1rem; font-family: inherit; font-weight: 500; }
.plan .renew { color: var(--mute); font-size: 0.88rem; margin-bottom: 14px; }
.plan.featured .renew { color: #c9c1b3; }
.plan ul { margin: 0 0 18px; padding: 0; list-style: none; flex: 1; }
.plan li { padding: 7px 0; border-top: 1px solid var(--line); font-size: 0.95rem; }
.plan.featured li { border-top-color: #2e2e2e; }
.plan .btn { text-align: center; }

.grid-3, .grid-2 {
  display: grid;
  gap: 16px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; }
.tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}
.tile h3 { margin: 0 0 8px; font-size: 1.1rem; }
.tile p { margin: 0; color: var(--ink-2); font-size: 0.98rem; }

.faq details {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-weight: 650; }
.faq p { margin: 8px 0 0; color: var(--ink-2); }

.page { padding: 36px 0 64px; }
.page h1 { font-size: clamp(2rem, 4vw, 3rem); }
.prose { max-width: 40rem; }
.prose p { color: var(--ink-2); }

.foot {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--mute);
  font-size: 0.9rem;
}
.foot-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.foot a { color: var(--ink-2); text-decoration: none; }
.foot a:hover { text-decoration: underline; }

.soon {
  display: inline-block;
  background: var(--amber);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
}

@media (max-width: 860px) {
  .hero, .plans, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .plan.featured { transform: none; }
  nav { display: none; }
}
