/* ─────────────────────────────────────────────────────────
   newfarmer.in — shared stylesheet
   Fraunces (display, via Google Fonts, italic-focused subset)
   System sans for body · Fluid type · Mobile-first
───────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;1,9..144,400;1,9..144,500&display=swap');

:root {
  --paper: #f5ede0;
  --paper-warm: #ede2cf;
  --paper-deep: #e4d7bd;
  --soil: #3d2e23;
  --soil-light: #4f3c2e;
  --ink: #1f1812;
  --ink-soft: #524438;
  --ink-faint: #8a7b6b;
  --rule: #d4c7b0;
  --rule-soft: #e4d9c3;
  --accent: #c8421f;
  --accent-soft: #e8a590;
  --accent-deep: #a8361a;

  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --max: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 4px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--accent); }

::selection { background: var(--accent); color: var(--paper); }

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 8px 16px;
  z-index: 200;
}
.skip-link:focus { top: 0; color: var(--paper); }

/* ─── Header / Nav ─────────────────────────────── */

.site-header {
  padding: 18px var(--gutter);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  display: block;
}

.brand-text {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--ink);
}

.brand-text em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 2.5vw, 28px);
  align-items: center;
  font-size: 15px;
}

.nav-links a {
  color: var(--ink-soft);
  transition: color 0.15s;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--accent);
}

.nav-cta {
  background: var(--ink) !important;
  color: var(--paper) !important;
  padding: 9px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600 !important;
  transition: background 0.15s;
}

.nav-cta:hover {
  background: var(--accent) !important;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 8px 12px;
  font-size: 13px;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 500;
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: calc(100% + 18px);
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    width: 240px;
    box-shadow: 0 12px 32px rgba(61, 46, 35, 0.12);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 12px 20px;
    border-bottom: 1px solid var(--rule-soft);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta {
    margin: 8px 12px !important;
    text-align: center;
  }
}

/* ─── Typography utilities ─────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--ink);
}

.display-1 {
  font-family: var(--serif);
  font-size: clamp(44px, 7.5vw, 104px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.display-1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.display-2 {
  font-family: var(--serif);
  font-size: clamp(34px, 5.5vw, 64px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.display-2 em {
  font-style: italic;
  color: var(--accent);
}

.display-3 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}

.lead {
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 60ch;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}

/* ─── Layout primitives ────────────────────────── */

main { min-height: 60vh; }

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

section {
  padding: clamp(48px, 7vw, 80px) 0;
}

.section-alt {
  background: var(--paper-warm);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.section-deep {
  background: var(--paper-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.section-dark {
  background: var(--soil);
  color: var(--paper);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark p { color: var(--paper); }

.section-dark p { color: rgba(245, 237, 224, 0.85); }

.section-dark em { color: var(--accent-soft) !important; }

.section-dark .eyebrow { color: var(--accent-soft); }
.section-dark .eyebrow::before { background: var(--accent-soft); }

.section-dark a { color: var(--accent-soft); }

/* ─── Buttons & links ──────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
}

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

.btn-secondary:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn .arrow {
  transition: transform 0.15s;
  display: inline-block;
}

.btn:hover .arrow { transform: translateX(3px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: gap 0.15s;
  font-size: 15px;
}

.link-arrow:hover {
  gap: 10px;
  color: var(--accent-deep);
  border-color: var(--accent-deep);
}

.section-dark .link-arrow {
  color: var(--accent-soft);
  border-color: var(--accent-soft);
}

.section-dark .link-arrow:hover {
  color: var(--paper);
  border-color: var(--paper);
}

/* ─── Forms ────────────────────────────────────── */

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: border-color 0.15s;
}

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

.form-field textarea {
  min-height: 120px;
  resize: vertical;
  font-family: var(--sans);
}

.form-submit {
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background 0.15s;
  font-family: var(--sans);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.form-submit:hover { background: var(--accent); }

.form-note {
  font-size: 13px;
  color: var(--ink-faint);
  margin-top: 14px;
  line-height: 1.5;
}

/* ─── Footer ───────────────────────────────────── */

.site-footer {
  background: var(--soil);
  color: var(--paper);
  padding: 64px var(--gutter) 32px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(245, 237, 224, 0.15);
  margin-bottom: 28px;
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 500px) {
  .footer-top { grid-template-columns: 1fr; }
}

.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-brand-block img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
}

.footer-brand-text {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  color: var(--paper);
}

.footer-brand-text em {
  font-style: italic;
  color: var(--accent-soft);
}

.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: rgba(245, 237, 224, 0.75);
  margin-bottom: 20px;
  line-height: 1.4;
}

.footer-address {
  font-size: 14px;
  color: rgba(245, 237, 224, 0.6);
  line-height: 1.7;
}

.footer-address a { color: rgba(245, 237, 224, 0.85); }
.footer-address a:hover { color: var(--accent-soft); }

.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 18px;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  padding: 4px 0;
}

.footer-col ul a {
  font-size: 15px;
  color: rgba(245, 237, 224, 0.75);
  transition: color 0.15s;
}

.footer-col ul a:hover {
  color: var(--accent-soft);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.4);
  gap: 20px;
  flex-wrap: wrap;
}

/* ─── Page-load entrance ───────────────────────── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  animation: fadeUp 0.7s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}

.reveal-1 { animation-delay: 0.05s; }
.reveal-2 { animation-delay: 0.15s; }
.reveal-3 { animation-delay: 0.28s; }
.reveal-4 { animation-delay: 0.42s; }
.reveal-5 { animation-delay: 0.56s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ─── Home-specific modules ────────────────────── */

.hero {
  padding: clamp(32px, 5vw, 64px) 0 clamp(28px, 4vw, 56px);
  position: relative;
}

/* Two-column: text | image. Stacks on mobile. */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero-content {
  min-width: 0;
}

.hero-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 6px;
  background: var(--bg-soft, #efece5);
  box-shadow: 0 8px 32px rgba(61, 46, 35, 0.12);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Stack below 860px */
@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-image {
    aspect-ratio: 5 / 4;
    max-width: 560px;
  }
}

.hero-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: clamp(20px, 3vw, 36px);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-meta::after {
  content: "";
  flex: 1;
  max-width: 200px;
  min-width: 40px;
  height: 1px;
  background: var(--rule);
}

.hero h1 {
  max-width: 10ch;
  margin-bottom: clamp(20px, 3vw, 36px);
  font-size: clamp(44px, 6.5vw, 88px);
}

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(19px, 2.3vw, 26px);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: clamp(24px, 3.5vw, 36px);
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

/* Coaching section */

.coaching-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

@media (max-width: 860px) {
  .coaching-block { grid-template-columns: 1fr; }
}

.phases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  margin-bottom: 32px;
}

.phase {
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: baseline;
}

@media (max-width: 620px) {
  .phase { grid-template-columns: 1fr; gap: 8px; }
}

.phase-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.phase-body {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.coaching-sidenote {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Workshops section */

.workshops-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: clamp(28px, 4vw, 40px);
  margin-bottom: 32px;
}

.workshops-covers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.workshops-tag {
  font-size: 14px;
  padding: 8px 14px;
  background: var(--paper-deep);
  border: 1px solid var(--rule);
  border-radius: 100px;
  color: var(--ink-soft);
}

.workshops-where {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 24px;
}

.workshops-next {
  background: var(--ink);
  color: var(--paper);
  padding: 24px 28px;
  border-radius: 6px;
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
}

@media (max-width: 620px) {
  .workshops-next { grid-template-columns: 1fr; }
}

.workshops-next-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  white-space: nowrap;
}

.workshops-next-text {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--paper);
  line-height: 1.3;
}

.workshops-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

/* Credibility tiles */

.credentials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  background: var(--rule);
}

@media (max-width: 860px) {
  .credentials { grid-template-columns: repeat(2, 1fr); }
}

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

.cred {
  background: var(--paper);
  padding: 32px 28px;
}

.cred-number {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.cred-number em {
  font-style: italic;
}

.cred-text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.cred-text strong {
  color: var(--ink);
  font-weight: 600;
}

/* FAQ */

.faq-list {
  max-width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 32px;
}

.faq-item {
  border-top: 1px solid var(--rule);
  padding: 18px 0 4px;
}

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

.faq-question {
  font-family: var(--serif);
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
  line-height: 1.3;
}

.faq-answer {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* Mobile: collapse to single column */
@media (max-width: 720px) {
  .faq-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Farm list */

.farms-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

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

.farm-list {
  list-style: none;
  border-top: 1px solid var(--rule);
}

.farm-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 70px 1fr 1fr;
  gap: 20px;
  align-items: baseline;
}

@media (max-width: 500px) {
  .farm-list li { grid-template-columns: 1fr; gap: 4px; }
}

.farm-year {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}

.farm-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}

.farm-detail {
  font-size: 14px;
  color: var(--ink-faint);
}

/* Writing list */

.writing-list {
  list-style: none;
  border-top: 1px solid var(--rule);
  max-width: 840px;
}

.writing-list li {
  border-bottom: 1px solid var(--rule);
}

.writing-list a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 22px 0;
  align-items: baseline;
  transition: padding-left 0.15s;
}

.writing-list a:hover {
  padding-left: 10px;
}

.writing-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.15s;
}

.writing-list a:hover .writing-title {
  color: var(--accent);
}

.writing-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap;
}

/* OWC */

.owc-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: end;
  margin-bottom: 56px;
}

@media (max-width: 860px) {
  .owc-header { grid-template-columns: 1fr; gap: 32px; }
}

.owc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.6);
}

@media (max-width: 500px) {
  .owc-stats { grid-template-columns: 1fr; gap: 16px; }
}

.owc-stat-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  color: var(--paper);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  text-transform: none;
  line-height: 1;
  font-style: italic;
}

.owc-body {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(245, 237, 224, 0.82);
  margin-bottom: 36px;
}

.owc-body p + p { margin-top: 18px; }
.owc-body em { font-style: italic; color: var(--paper); }

.owc-status {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: 32px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-soft);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

/* Inquiry form */

.inquiry {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

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

.inquiry-form {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: clamp(24px, 4vw, 36px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ─── Sub-page styles ──────────────────────────── */

/* Page hero (shorter than home hero) */
.page-hero {
  padding: clamp(24px, 4vw, 44px) 0 clamp(16px, 2.5vw, 28px);
  border-bottom: 1px solid var(--rule);
}

.page-hero .eyebrow { margin-bottom: 14px; }

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 5.5vw, 68px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 16ch;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.page-hero .lead {
  max-width: 64ch;
}

/* Breadcrumb-lite */
.crumb {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 16px;
}

.crumb a {
  color: var(--ink-faint);
  border-bottom: 1px solid transparent;
}

.crumb a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* Two-column prose + sidebar */
.prose-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

@media (max-width: 900px) {
  .prose-layout { grid-template-columns: 1fr; }
}

.prose {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 68ch;
}

.prose h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 56px;
  margin-bottom: 20px;
}

.prose h2:first-child { margin-top: 0; }

.prose h2 em {
  font-style: italic;
  color: var(--accent);
}

.prose h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 36px;
  margin-bottom: 14px;
}

.prose p { margin-bottom: 20px; }

.prose p strong { color: var(--ink); }

.prose ul, .prose ol {
  margin: 0 0 24px 24px;
  padding: 0;
}

.prose li {
  margin-bottom: 10px;
  padding-left: 6px;
}

.prose li::marker { color: var(--accent); }

.prose blockquote {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 24px;
  margin: 28px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
  line-height: 1.4;
}

.prose a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent-soft);
  transition: border-color 0.15s;
}

.prose a:hover {
  border-bottom-color: var(--accent);
}

.prose hr {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 48px 0;
}

/* Sidebar aside */
.sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 28px;
  margin-bottom: 20px;
}

.sidebar-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.sidebar-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.sidebar-card .btn { width: 100%; justify-content: center; }

.sidebar-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  line-height: 1.8;
}

.sidebar-meta strong {
  color: var(--ink);
  font-weight: 600;
}

/* Stats strip (about page, coaching page) */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: 56px 0;
}

@media (max-width: 720px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stats-strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
}

@media (max-width: 500px) {
  .stats-strip { grid-template-columns: 1fr; }
  .stats-strip > div { border-bottom: 1px solid var(--rule); border-right: none !important; }
  .stats-strip > div:last-child { border-bottom: none; }
}

.stat {
  padding: 32px 28px;
  border-right: 1px solid var(--rule);
}

.stat:last-child { border-right: none; }

.stat-num {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-num em { font-style: italic; }

.stat-label {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* FAQ category headers (Learn page) */
.faq-category {
  margin-bottom: 40px;
}

.faq-category-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}

.faq-category-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.faq-category-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: -0.015em;
}

/* Writing archive list (Learn page, full list) */
.archive-list {
  list-style: none;
  border-top: 1px solid var(--rule);
  margin-top: 0;
}

.archive-list li {
  border-bottom: 1px solid var(--rule);
}

.archive-list a {
  display: block;
  padding: 22px 0;
  transition: padding-left 0.15s;
}

.archive-list a:hover {
  padding-left: 12px;
}

.archive-list .writing-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}

.archive-list a:hover .writing-title { color: var(--accent); }

.archive-list .writing-excerpt {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 6px;
  line-height: 1.5;
}

.archive-list .writing-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* Workshop upcoming list */
.workshop-entry {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}

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

.workshop-entry:first-child { border-top: 1px solid var(--rule); }

.workshop-date {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
}

.workshop-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.workshop-detail {
  font-size: 14px;
  color: var(--ink-faint);
}

.workshop-status {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  font-weight: 500;
}

.status-open {
  background: var(--paper-warm);
  color: var(--accent-deep);
  border: 1px solid var(--accent-soft);
}

.status-tbd {
  background: var(--paper-deep);
  color: var(--ink-faint);
  border: 1px solid var(--rule);
}

/* About page hero credit block */
.credit-block {
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 32px;
  margin: 32px 0;
}

.credit-block-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 500;
}

.credit-block h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.credit-block p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* Contact page specifics */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

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

.contact-info {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.contact-info h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  margin-top: 32px;
  margin-bottom: 10px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.contact-info h3:first-child { margin-top: 0; }

.contact-info a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent-soft);
}

.contact-info a:hover { border-color: var(--accent); }

/* Philosophy list (About) */
.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  background: var(--rule);
  margin: 32px 0;
}

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

.principle {
  background: var(--paper);
  padding: 32px;
}

.principle-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 14px;
  font-weight: 400;
}

.principle h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.2;
}

.principle p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* 404 / stub pages */
.stub-hero {
  padding: clamp(40px, 7vw, 88px) 0;
  text-align: center;
}

.stub-hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  margin: 0 auto 20px;
  max-width: 18ch;
}

.stub-hero .lead {
  margin: 0 auto 32px;
}

.stub-hero .hero-ctas { justify-content: center; }


/* ─── Email reveal button (anti-spam) ──────────── */
.email-reveal {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--accent);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid var(--accent-soft);
  transition: border-color 0.15s, color 0.15s;
}

.email-reveal:hover,
.email-reveal:focus {
  color: var(--accent-deep);
  border-bottom-color: var(--accent);
  outline: none;
}

.email-revealed {
  color: var(--accent);
  border-bottom: 1px solid var(--accent-soft);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  padding-bottom: 1px;
}

.email-revealed:hover {
  border-bottom-color: var(--accent);
}

/* ─── Netlify Forms honeypot ──────────── */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* ─── OWC Archive card grid ──────────── */
.owc-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.owc-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  min-height: 180px;
}

.owc-card:hover,
.owc-card:focus-visible {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(61, 46, 35, 0.08);
  outline: none;
}

.owc-card-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 10px;
}

.owc-card-title {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 8px;
  font-weight: 600;
}

.owc-card-location {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.owc-card-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 16px 0;
  flex: 1;
}

.owc-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.owc-card-lang {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding: 3px 8px;
  background: var(--bg-soft);
  border-radius: 3px;
}

.owc-card-cta {
  font-size: 14px;
  color: var(--accent, var(--ink));
  font-weight: 500;
  margin-left: auto;
}

/* ─── OWC Browse page specifics ──────────── */
.owc-browse-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.owc-search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.owc-search-box:focus-within {
  border-color: var(--ink);
}

.owc-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  padding: 0;
}

.owc-search-input::placeholder {
  color: var(--ink-faint);
}

.owc-search-count {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.owc-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.owc-filter-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-right: 6px;
}

.owc-filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.owc-filter-chip:hover {
  border-color: var(--ink-soft);
  color: var(--ink);
}

.owc-filter-chip.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.owc-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  padding: 8px 0;
}

.owc-reset-link {
  font-size: 13px;
  color: var(--ink-faint);
  text-decoration: underline;
  margin-left: auto;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px 8px;
  font-family: inherit;
}

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

.owc-empty-state {
  text-align: center;
  padding: 64px 24px;
  color: var(--ink-faint);
  font-style: italic;
  font-family: var(--serif);
  font-size: 18px;
}

@media (max-width: 640px) {
  .owc-card-grid {
    grid-template-columns: 1fr;
  }
  .owc-filter-bar {
    font-size: 12px;
  }
}

/* ─── Essay cards (Learn page) ──────────── */

.essays-subhead {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 20px 0;
  letter-spacing: -0.01em;
}

.essay-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.essay-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  min-height: 120px;
}

.essay-card:hover,
.essay-card:focus-visible {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(61, 46, 35, 0.08);
  outline: none;
}

.essay-card-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.essay-card-title {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.3;
  color: var(--ink);
  font-weight: 600;
}

.essay-card-teaser {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-top: 2px;
  flex: 1;
}

.essay-card-cta {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
  margin-top: 4px;
  transition: color 0.15s ease;
}

.essay-card:hover .essay-card-cta {
  color: var(--ink);
}

.essay-card-cta .arrow {
  display: inline-block;
  transition: transform 0.15s ease;
}

.essay-card:hover .essay-card-cta .arrow {
  transform: translateX(2px);
}

/* Mobile: stack cards 1 per row */
@media (max-width: 720px) {
  .essay-grid {
    grid-template-columns: 1fr;
  }
  .essay-card {
    min-height: auto;
    padding: 16px 18px;
  }
  .essay-card-title {
    font-size: 16px;
  }
}

/* Reduce top margin on hero paragraphs + leads */
.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero .lead {
  margin-top: 0;
}

/* Tighten vertical rhythm on mobile */
@media (max-width: 720px) {
  .display-2 {
    margin-bottom: 16px;
  }
  .lead {
    margin-bottom: 24px;
  }
}

/* ─── OWC card subtitle ──────────── */
.owc-card-subtitle {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  line-height: 1.35;
  color: var(--ink-soft);
  margin-top: -4px;
  margin-bottom: 10px;
}

/* Tightening up the card title margin when subtitle is present */
.owc-card-title + .owc-card-subtitle {
  margin-top: 4px;
}
