/* Crave marketing site — tokens aligned with mobile Journal / Review */

:root {
  --bg: #f7f4ef;
  --bg-deep: #ebe6dc;
  --surface: #ffffff;
  --ink: #1a1a1a;
  --ink-muted: #5c5c5c;
  --brand: #6f8940;
  --accent: #879d60;
  --contrast: #ef8203;
  --border: #e8e4df;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: Georgia, "Times New Roman", serif;
  --max: 40rem;
  --pad: clamp(1.25rem, 4vw, 2rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  background:
    radial-gradient(ellipse 90% 60% at 80% -10%, rgba(135, 157, 96, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 10% 100%, rgba(239, 130, 3, 0.1), transparent 50%),
    linear-gradient(165deg, var(--bg) 0%, var(--bg-deep) 100%);
  background-attachment: fixed;
}

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

a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--contrast);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
  padding: 1.25rem var(--pad);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.wordmark img {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.55rem;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

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

.nav-links a:hover {
  color: var(--brand);
}

/* —— Hero: one composition —— */
.hero {
  min-height: calc(100vh - 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem var(--pad) 4rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 12vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--brand);
  margin: 0 0 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  line-height: 1.3;
  margin: 0 0 0.85rem;
  max-width: 22ch;
  color: var(--ink);
}

.hero-lede {
  margin: 0 0 2rem;
  max-width: 36ch;
  color: var(--ink-muted);
  font-size: 1.1rem;
  line-height: 1.5;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand);
  color: #fff;
}

.btn-primary.is-disabled,
.btn-primary[aria-disabled="true"] {
  background: #b7c4a0;
  pointer-events: none;
  cursor: default;
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--brand);
}

.cta-note {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* —— Sections —— */
.section {
  max-width: 56rem;
  margin: 0 auto;
  padding: 3rem var(--pad) 4rem;
}

.section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.section-intro {
  margin: 0 0 1.75rem;
  color: var(--ink-muted);
  max-width: 40ch;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: var(--max);
}

.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 3rem;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}

.steps strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.steps p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1rem;
}

.contact-line {
  margin: 2rem 0 0;
  color: var(--ink-muted);
}

.site-footer {
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem var(--pad) 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.site-footer a {
  color: var(--ink-muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--brand);
}

/* —— Privacy —— */
.page-main {
  max-width: 40rem;
  margin: 0 auto;
  padding: 2rem var(--pad) 4rem;
}

.page-main h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: var(--brand);
}

.page-meta {
  margin: 0 0 2rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.page-main h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 2rem 0 0.65rem;
}

.page-main p,
.page-main li {
  color: var(--ink);
}

.page-main ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0 1rem;
}

.page-main li {
  margin-bottom: 0.35rem;
}

.disclaimer {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--ink-muted);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
