:root {
  --text: #2C2A26;
  --background: #F5F1EB;
  --accent: #3F5544;
  --accent-dark: #314436;
  --secondary: #9CA88F;
  --muted: #8B847A;
  --line: rgba(156, 168, 143, 0.2);
  --card-line: rgba(156, 168, 143, 0.3);
  --max-width: 720px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--background);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  transition: color 160ms ease, text-decoration-color 160ms ease, background-color 160ms ease;
}

a:hover,
a:focus-visible {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

h1,
h2,
h3 {
  margin: 0 0 18px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

h1 {
  max-width: 650px;
  font-size: clamp(2.6rem, 10vw, 5rem);
}

h2 {
  font-size: clamp(1.9rem, 7vw, 3rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 18px;
}

ul,
ol {
  margin: 20px 0 24px;
  padding-left: 1.35rem;
}

li + li {
  margin-top: 10px;
}

strong {
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 18px clamp(20px, 5vw, 48px);
  background: rgba(245, 241, 235, 0.94);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: var(--accent);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
}

.brand-logo {
  display: block;
  width: auto;
  height: 56px;
}

.brand-fallback {
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 5vw, 32px);
  font-size: 0.95rem;
}

.section {
  padding: 48px 20px;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.hero {
  padding-top: 64px;
}

.hero-logo {
  display: block;
  width: auto;
  height: 112px;
  margin-bottom: 30px;
}

.hero-fallback {
  margin-bottom: 30px;
  color: var(--accent);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.7rem, 8vw, 2.6rem);
  font-weight: 500;
  line-height: 1.2;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 600;
}

.lead {
  color: var(--text);
  font-size: 1.16rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 12px;
  padding: 12px 20px;
  color: var(--background);
  background: var(--accent);
  border-radius: 6px;
  font-weight: 600;
}

.button:hover,
.button:focus-visible {
  color: var(--background);
  background: var(--accent-dark);
  text-decoration: none;
}

.deliverables li {
  padding-left: 4px;
}

.wide-section {
  padding-left: 20px;
  padding-right: 20px;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: min(100%, 1080px);
  margin: 22px auto 0;
}

.card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--card-line);
  border-radius: 8px;
}

.card p {
  color: var(--muted);
}

.card a {
  margin-top: auto;
}

.offer {
  background: rgba(156, 168, 143, 0.09);
}

.faq details {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 600;
}

.faq summary:hover {
  color: var(--accent);
}

.faq details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.email-link {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.6rem;
  overflow-wrap: anywhere;
}

.footer {
  padding: 36px 20px 44px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer p {
  margin-bottom: 8px;
}

.sample-page .site-header {
  position: static;
}

.sample-page main {
  padding: 48px 20px 80px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 42px;
}

.sample-section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.sample-section:first-of-type {
  margin-top: 34px;
}

.sample-section h2 {
  font-size: clamp(1.45rem, 6vw, 2rem);
}

.topic {
  max-width: 690px;
  color: var(--accent);
  font-size: clamp(1.45rem, 6vw, 2.25rem);
}

@media (min-width: 760px) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero {
    padding-top: 92px;
  }

  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 430px) {
  .site-header {
    align-items: flex-start;
    padding: 16px 18px;
  }

  .brand-logo {
    height: 48px;
  }

  .nav {
    gap: 14px;
  }

  .hero-logo {
    height: 96px;
  }

  .email-link {
    font-size: 1.32rem;
  }
}
