:root {
  --bg: #f5f1ea;
  --bg-alt: #fdfaf4;
  --ink: #1a1612;
  --ink-soft: #3d352c;
  --muted: #7a6f63;
  --line: #e3dccf;
  --primary: #2d4a3a;
  --primary-deep: #1f3429;
  --accent: #c47a3d;
  --accent-soft: #f3e2cf;
  --highlight: #e8b870;
  --shadow: 0 22px 44px -22px rgba(26, 22, 18, 0.22);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, "Hoefler Text", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1200px, calc(100% - 56px)); margin: 0 auto; }
h1, h2, h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
h1 { max-width: 780px; font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.1rem); }
h3 { font-size: 1.35rem; }
.eyebrow {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-primary { background: var(--primary); color: var(--bg); }
.btn-primary:hover { background: var(--primary-deep); box-shadow: 0 12px 30px -12px rgba(45, 74, 58, 0.5); transform: translateY(-2px); }
.btn-ghost { border-color: var(--ink); background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }
.btn:focus-visible, .nav-links a:focus-visible, .topbar-social a:focus-visible, .article-link:focus-visible {
  outline: 3px solid var(--highlight);
  outline-offset: 3px;
}

.topbar { padding: 10px 0; background: var(--ink); color: rgba(245, 241, 234, 0.85); font-size: 13px; }
.topbar-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar-tagline { color: var(--highlight); font-family: var(--serif); font-size: 14px; font-style: italic; }
.topbar-social { display: flex; align-items: center; gap: 8px; }
.topbar-social a {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(245, 241, 234, 0.08);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.topbar-social a:hover { background: var(--accent); color: white; transform: translateY(-2px); }
.topbar-social svg { width: 16px; height: 16px; fill: currentColor; }

header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(245, 241, 234, 0.9);
  backdrop-filter: saturate(180%) blur(16px);
  transition: border-color 0.3s ease;
  -webkit-backdrop-filter: saturate(180%) blur(16px);
}
header.scrolled { border-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.logo { font-family: var(--serif); font-size: 1.45rem; font-weight: 700; letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: var(--ink-soft); font-size: 15px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-cta { padding: 10px 22px; border-radius: 999px; background: var(--primary); color: var(--bg) !important; }
.nav-cta:hover { background: var(--primary-deep); }
.menu-toggle { display: none; border: 0; background: none; cursor: pointer; }

.hero { position: relative; overflow: hidden; padding: 68px 0 96px; }
.hero::before {
  position: absolute;
  top: 8%;
  right: -10%;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 122, 61, 0.13), transparent 68%);
  content: "";
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr); align-items: center; gap: 72px; }
.crumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 34px; color: var(--muted); font-size: 14px; }
.crumbs a:hover { color: var(--accent); }
.hero-lead { max-width: 720px; margin-top: 28px; color: var(--ink-soft); font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.5; }
.hero-visual { position: relative; }
.hero-image { overflow: hidden; aspect-ratio: 25 / 16; border-radius: 4px 42px 4px 42px; box-shadow: var(--shadow); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-note {
  position: absolute;
  right: -22px;
  bottom: -26px;
  max-width: 280px;
  padding: 18px 22px;
  border-radius: 3px 18px 3px 18px;
  background: var(--primary);
  box-shadow: 0 18px 35px -20px rgba(31, 52, 41, 0.7);
  color: var(--bg);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.4;
}

main section { padding: 92px 0; }
.recognition { background: var(--bg-alt); }
.prose-layout { display: grid; grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr); gap: 100px; }
.prose-copy { max-width: 760px; color: var(--ink-soft); font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.65; }
.section-intro { max-width: 760px; margin-bottom: 46px; }
.section-intro p:not(.eyebrow) { margin-top: 16px; color: var(--muted); }
.outcome-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.outcome-card {
  position: relative;
  grid-column: span 6;
  min-height: 230px;
  overflow: hidden;
  padding: 38px 38px 34px;
  border: 1px solid var(--line);
  border-radius: 4px 26px 4px 26px;
  background: var(--bg-alt);
  box-shadow: 0 14px 35px -30px rgba(26, 22, 18, 0.5);
}
.outcome-card:nth-child(2), .outcome-card:nth-child(3) { transform: translateY(18px); }
.outcome-number { display: block; margin-bottom: 24px; color: var(--accent); font-family: var(--serif); font-size: 1rem; font-style: italic; }
.outcome-card p { margin-top: 12px; color: var(--muted); }

.format { position: relative; overflow: hidden; background: var(--primary-deep); color: rgba(245, 241, 234, 0.82); }
.format::after {
  position: absolute;
  right: -120px;
  bottom: -200px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(232, 184, 112, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(232, 184, 112, 0.04), 0 0 0 140px rgba(232, 184, 112, 0.025);
  content: "";
}
.format .container { position: relative; z-index: 1; }
.format h2 { color: var(--bg); }
.format-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr); gap: 96px; align-items: start; }
.format-copy { font-size: 1.12rem; }
.format-copy p + p { margin-top: 22px; }
.article-links { display: grid; gap: 12px; }
.article-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(245, 241, 234, 0.16);
  border-radius: 3px 16px 3px 16px;
  background: rgba(245, 241, 234, 0.06);
  color: var(--bg);
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.article-link:hover { background: rgba(245, 241, 234, 0.12); transform: translateX(4px); }
.article-link span { color: var(--highlight); font-size: 1.2rem; }

.testimonial { padding-top: 110px; }
.quote-box {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 68px 76px 58px;
  border: 1px solid var(--line);
  border-radius: 4px 44px 4px 44px;
  background: var(--accent-soft);
  box-shadow: var(--shadow);
}
.quote-box::before { position: absolute; top: 18px; left: 34px; color: rgba(196, 122, 61, 0.25); content: "“"; font-family: Georgia, serif; font-size: 7rem; line-height: 1; }
blockquote { position: relative; color: var(--primary-deep); font-family: var(--serif); font-size: clamp(1.65rem, 3.6vw, 2.75rem); line-height: 1.35; }
.quote-source { margin-top: 26px; color: var(--ink-soft); font-size: 14px; font-weight: 600; }

.closing { padding-top: 22px; }
.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  padding: 58px 64px;
  border-radius: 4px 36px 4px 36px;
  background: var(--bg-alt);
  box-shadow: var(--shadow);
}
.cta-copy p { max-width: 620px; margin-top: 15px; color: var(--muted); }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }

footer { padding: 28px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.footer-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
footer a:hover { color: var(--accent); }

@media (max-width: 1060px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 28px;
    left: 28px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--bg-alt);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 11px 13px; }
  .nav-cta { text-align: center; }
  .menu-toggle { display: grid; width: 42px; height: 42px; place-content: center; gap: 5px; }
  .menu-toggle span { display: block; width: 23px; height: 2px; background: var(--ink); transition: transform 0.2s, opacity 0.2s; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 760px; }
  .prose-layout, .format-grid, .cta-panel { grid-template-columns: 1fr; gap: 38px; }
  .cta-actions { justify-content: flex-start; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .container { width: min(100% - 36px, 1200px); }
  .topbar-row { justify-content: center; }
  .topbar-tagline { display: none; }
  .hero { padding: 46px 0 72px; }
  .hero-grid { gap: 46px; }
  .hero-note { position: static; max-width: none; margin-top: 12px; }
  main section { padding: 68px 0; }
  .outcome-grid { display: grid; grid-template-columns: 1fr; }
  .outcome-card { grid-column: auto; min-height: auto; padding: 30px 26px; }
  .outcome-card:nth-child(2), .outcome-card:nth-child(3) { transform: none; }
  .quote-box { padding: 54px 28px 38px; }
  .quote-box::before { top: 12px; left: 18px; font-size: 5rem; }
  .cta-panel { padding: 40px 26px; }
  .cta-actions { display: grid; }
  .footer-row { justify-content: center; text-align: center; }
}

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