@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,700&family=Source+Serif+4:opsz,wght@8..60,500;8..60,600&display=swap");

:root {
  --bg: #f7f4ed;
  --ink: #10221c;
  --muted: #5f6f68;
  --line: #ddd6c8;
  --accent: #0f6b54;
  --accent-soft: #dceee7;
  --card: #fffdf8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.top {
  max-width: 58rem;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  letter-spacing: -0.03em;
}

nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.92rem;
}

nav a {
  text-decoration: none;
  color: var(--muted);
}

main {
  max-width: 58rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.hero {
  padding: 4.5rem 0 5rem;
  max-width: 38rem;
}

.kicker {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.intro {
  margin: 1.35rem 0 0;
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 34rem;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
}

.button {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
}

.text-link {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #9ec9b8;
}

.split {
  display: grid;
  gap: 2rem;
  padding: 2rem 0 4rem;
  border-top: 1px solid var(--line);
}

@media (min-width: 768px) {
  .split {
    grid-template-columns: 1fr 1.05fr;
    align-items: start;
  }
}

.split-copy h2,
.pricing-copy h2,
.contact h2 {
  margin: 0 0 0.75rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.85rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.split-copy p,
.pricing-copy p,
.contact p {
  margin: 0;
  color: var(--muted);
}

.split-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
}

.note {
  padding: 1rem 0.75rem;
  border-bottom: 1px solid var(--line);
}

.note:last-child {
  border-bottom: none;
}

.note-date {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
}

.note-title {
  margin: 0.25rem 0;
  font-weight: 600;
}

.note-body {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.note.faded {
  opacity: 0.55;
}

.quote {
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

blockquote {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.35;
  max-width: 30rem;
}

.quote-by {
  margin: 1.25rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.pricing {
  display: grid;
  gap: 2rem;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .pricing {
    grid-template-columns: 1fr 16rem;
    align-items: start;
  }
}

.price-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.35rem;
}

.price-name {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.price-amount {
  margin: 0.35rem 0 1rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
}

.price-amount span {
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  color: var(--muted);
}

.price-box ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact {
  padding: 1rem 0 4.5rem;
}

footer {
  max-width: 58rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}
