/* Boring Brief — base styles */

:root {
  --bg: #faf7f2;
  --ink: #17140f;
  --muted: #6b6459;
  --line: #e7e1d8;
  --accent: #d94f2b;
  --accent-ink: #fffaf5;
  --card: #f2ede4;
  --max: 760px;
  --max-wide: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
}

a {
  color: inherit;
}

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.wrap-wide {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}

section:last-of-type {
  border-bottom: none;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 16px;
}

/* Header */

.site-header {
  padding: 32px 0 0;
}

.wordmark {
  display: inline-block;
  text-decoration: none;
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.wordmark span {
  color: var(--accent);
}

/* Hero */

.hero {
  padding-top: 64px;
  padding-bottom: 96px;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  max-width: 14ch;
}

.hero .lede p {
  font-size: 20px;
  color: var(--ink);
  max-width: 46ch;
}

.hero .lede p.muted-line {
  color: var(--muted);
}

.hero-cta {
  margin-top: 40px;
}

.trust-line {
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
}

/* Buttons */

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  padding: 16px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(217, 79, 43, 0.28);
}

.btn:active {
  transform: translateY(0);
}

/* Prose lines (preserve short-line rhythm) */

.lines p {
  margin: 0 0 0.9em;
}

.lines p:last-child {
  margin-bottom: 0;
}

/* Checklist */

.checklist {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-size: 19px;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Who for / not for */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

@media (max-width: 720px) {
  .split {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

.split-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.split-card ul {
  margin: 0;
  padding-left: 20px;
}

.split-card li {
  margin-bottom: 12px;
}

.split-card.not-for {
  color: var(--muted);
}

.split-card.not-for h3 {
  color: var(--ink);
}

/* How it works */

.steps {
  counter-reset: step;
  margin-top: 40px;
  display: grid;
  gap: 40px;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
}

.step-number {
  font-family: "Fraunces", Georgia, serif;
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  margin-bottom: 0;
}

/* Selected work */

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 820px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
}

.work-item {
  display: block;
}

.work-thumb {
  aspect-ratio: 4 / 5;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.work-thumb span {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  color: var(--ink);
}

.work-caption {
  margin-top: 14px;
  font-size: 15px;
  color: var(--muted);
}

.work-caption strong {
  color: var(--ink);
  font-weight: 600;
}

.work-note {
  margin-top: 32px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* Pricing */

.price-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 48px;
  margin-top: 32px;
}

.price-headline {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.price-headline h3 {
  font-size: 28px;
  margin: 0;
}

.price-amount {
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
  color: var(--accent);
}

.price-card ul {
  margin: 0 0 24px;
  padding-left: 20px;
}

.price-card li {
  margin-bottom: 10px;
}

.addons {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 8px;
}

.addons h4 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 16px;
}

.price-note {
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted);
}

/* FAQ */

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

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-size: 24px;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding-bottom: 24px;
  color: var(--muted);
  max-width: 60ch;
}

/* Final CTA */

.final-cta {
  text-align: left;
  padding-top: 96px;
  padding-bottom: 96px;
}

.final-cta h2 {
  font-size: clamp(32px, 5vw, 48px);
}

/* Footer */

.site-footer {
  padding: 40px 0 64px;
  font-size: 14px;
  color: var(--muted);
}

/* Intake form page */

.form-page {
  padding-top: 64px;
}

.form-page .eyebrow {
  margin-bottom: 8px;
}

.form-page h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
}

.form-intro {
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 48px;
}

.field {
  margin-bottom: 28px;
}

.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 16px;
}

.field .hint {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

.field input[type="text"],
.field input[type="date"],
.field input[type="file"],
.field textarea {
  width: 100%;
  font: inherit;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-submit {
  margin-top: 40px;
}

.form-footer-note {
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted);
}

.back-link {
  display: inline-block;
  margin-bottom: 40px;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}

.back-link:hover {
  color: var(--ink);
}
