:root {
  --ink: #151914;
  --muted: #555f56;
  --paper: #f7f4ea;
  --paper-2: #eee8d8;
  --white: #fffdf8;
  --forest: #173c2b;
  --forest-2: #244e3a;
  --gold: #bb8c18;
  --brick: #7e3f32;
  --line: rgba(21, 25, 20, 0.14);
  --line-dark: rgba(255, 253, 248, 0.18);
  --shadow: 0 22px 70px rgba(21, 25, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(187, 140, 24, 0.88);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  border-bottom: 1px solid transparent;
  background: rgba(247, 244, 234, 0.94);
  backdrop-filter: blur(14px);
  transition: padding 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  padding: 12px 32px;
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(21, 25, 20, 0.08);
}

.brand {
  font-weight: 900;
  text-decoration: none;
}

.brand span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--brick);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-active .menu-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-active .menu-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.section-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brick);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(4rem, 8vw, 8.5rem);
  line-height: 0.88;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.18;
}

#proof-title,
#story-title,
#evidence-title,
#consulting-title,
#articles-title,
#contact-title {
  scroll-margin-top: 96px;
}

#proof,
#story,
#evidence,
#consulting,
#articles,
#contact {
  scroll-margin-top: 82px;
}

.hero {
  padding: 124px 0 64px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: 72px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.hero-line {
  max-width: 690px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.18;
}

.hero-subline {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 12px 18px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  background: var(--ink);
  color: var(--white);
}

.button.primary:hover {
  background: var(--forest);
}

.button.secondary {
  border-color: rgba(21, 25, 20, 0.28);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--brick);
  color: var(--brick);
}

.button.light {
  background: var(--white);
  color: var(--ink);
}

.button.outline-light {
  border-color: rgba(255, 253, 248, 0.56);
  color: var(--white);
}

.hero-figure {
  margin: 0;
}

.hero-figure img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-strip div {
  padding: 24px 30px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 5px;
  font-size: 1.18rem;
  line-height: 1.1;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.compact-heading {
  max-width: 640px;
}

.logo-section {
  background: var(--paper);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.logo-grid a {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  background: var(--white);
  text-decoration: none;
}

.logo-grid img {
  max-width: 128px;
  max-height: 48px;
  object-fit: contain;
}

.logo-grid span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
}

.proof-section,
.consulting-section {
  background: var(--white);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.proof-list article {
  min-height: 230px;
  padding: 26px;
  background: var(--white);
}

.proof-list span {
  display: block;
  margin-bottom: 12px;
  color: var(--brick);
  font-weight: 900;
}

.proof-list p,
.article-grid p,
.consulting-grid p:not(.price):not(.card-label) {
  color: var(--muted);
}

.story-section {
  background: var(--paper);
}

.story-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.5fr);
  gap: 54px;
  align-items: end;
  max-width: none;
}

.story-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

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

.story-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.story-entry {
  display: grid;
  grid-template-columns: 150px minmax(0, 0.98fr) minmax(300px, 0.72fr);
  gap: 28px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.story-date {
  align-self: start;
  padding-top: 8px;
}

.story-date time,
.story-date span {
  display: block;
}

.story-date time {
  margin-bottom: 8px;
  color: var(--brick);
  font-weight: 900;
}

.story-date span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.story-media {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.story-media a {
  display: block;
}

.story-media img,
.story-media video {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.story-video {
  display: flex;
  justify-content: center;
  background: #0c100d;
}

.story-video video {
  width: min(100%, 242px);
  object-fit: contain;
}

.story-copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  line-height: 1.02;
}

.story-copy h3 a {
  color: inherit;
}

.story-copy p a {
  color: var(--brick);
  font-weight: 800;
}

.story-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.evidence-section {
  background: var(--paper-2);
}

.evidence-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.5fr);
  gap: 54px;
  align-items: end;
  max-width: none;
}

.evidence-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

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

.evidence-table {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.evidence-table article {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(260px, 1fr) minmax(260px, 0.88fr);
  gap: 24px;
  align-items: start;
  padding: 22px 24px;
  background: var(--white);
}

.evidence-table h3,
.evidence-table p {
  margin-bottom: 0;
}

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

.evidence-table div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.evidence-table a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 6px 10px;
  color: var(--brick);
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
}

.evidence-note {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.evidence-note a {
  color: var(--brick);
  font-weight: 900;
}

.consulting-head {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.58fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 34px;
}

.consulting-head p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.consulting-grid article {
  display: flex;
  min-height: 370px;
  flex-direction: column;
  padding: 24px;
  background: var(--white);
}

.consulting-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  line-height: 1.05;
}

.card-label {
  margin-bottom: 10px;
  color: var(--brick);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin-bottom: 18px;
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
}

.consulting-grid .button {
  width: 100%;
  margin-top: auto;
}

.featured-card {
  background: var(--forest) !important;
  color: var(--white);
}

.featured-card .card-label,
.featured-card .price {
  color: var(--gold);
}

.featured-card p:not(.card-label):not(.price) {
  color: rgba(255, 253, 248, 0.76);
}

.workshop-row {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.workshop-row img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  object-position: center 55%;
}

.workshop-row p {
  margin: 0;
  padding: 22px 22px 22px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.articles-section {
  background: var(--paper);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.article-grid article {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px;
  background: var(--white);
}

.article-grid a {
  margin-top: auto;
  color: var(--brick);
  font-weight: 900;
}

.contact-section {
  padding: 86px 0;
  background: var(--forest);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.56fr);
  gap: 72px;
  align-items: center;
}

.contact-grid p {
  color: rgba(255, 253, 248, 0.78);
  font-size: 1.04rem;
}

.contact-section .eyebrow {
  color: var(--gold);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  background: var(--ink);
  color: rgba(255, 253, 248, 0.82);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .hero-grid,
  .two-column,
  .story-heading,
  .evidence-heading,
  .consulting-head,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

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

  .story-entry {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .story-media,
  .story-copy {
    grid-column: 2;
  }

  .story-media img,
  .story-media video {
    height: 390px;
  }

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

  .evidence-table article {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-header.is-scrolled,
  .site-header.nav-active {
    padding: 12px 18px;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .section-inner {
    width: min(100% - 32px, 1160px);
  }

  .hero {
    padding: 102px 0 46px;
  }

  .hero-grid {
    gap: 34px;
  }

  h1 {
    font-size: clamp(4rem, 19vw, 5.5rem);
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-line {
    font-size: 1.24rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .proof-strip {
    grid-template-columns: 1fr 1fr;
  }

  .proof-strip div {
    padding: 20px;
  }

  .proof-strip div:nth-child(2) {
    border-right: 0;
  }

  .section {
    padding: 66px 0;
  }

  .logo-grid,
  .proof-list,
  .story-entry,
  .consulting-grid,
  .article-grid,
  .workshop-row {
    grid-template-columns: 1fr;
  }

  .logo-grid a {
    min-height: 92px;
  }

  .proof-list article,
  .consulting-grid article {
    min-height: 0;
  }

  .story-media,
  .story-copy {
    grid-column: auto;
  }

  .story-entry {
    gap: 14px;
    padding: 28px 0;
  }

  .story-date {
    padding-top: 0;
  }

  .story-media img,
  .story-media video,
  .workshop-row img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .story-video video {
    width: 100%;
    aspect-ratio: 9 / 16;
  }

  .workshop-row p {
    padding: 0 20px 20px;
  }

  .contact-section {
    padding: 70px 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 18px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
