/* ==========================================================================
   The Lemon Mind Ã¢â‚¬â€ Design Foundation v2
   Bespoke editorial: Kinfolk Ãƒâ€” McKinsey Quarterly
   ========================================================================== */

/* ---------- Self-hosted fonts ---------- */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Fraunces-Regular.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/WorkSans-Regular.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Token layer v2 ---------- */
:root {
  /* Core palette */
  --ink: #1a2a3a;
  --dark: #243243;
  --green: #536c48;
  --sage: #536c48;
  --gold: #c18b13;
  --brass: #c18b13;
  --cream: #fbf8f1;
  --pale: #f3f5ee;
  --line: #ddd8cc;
  --muted: #6e7477;

  /* Extended palette */
  --hero-bg: #fdfcfa;
  --brass-hover: #a97810;

  /* Spacing scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 28px;
  --space-lg: 48px;

  /* Radii */
  --radius: 6px;
  --radius-lg: 10px;

  /* Shadows */
  --shadow: 0 6px 18px rgba(36, 50, 67, .07);
  --shadow-lg: 0 12px 32px rgba(36, 50, 67, .09);

  /* Motion */
  --ease: 150ms ease;

  /* Type scale */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Work Sans', Arial, Helvetica, sans-serif;
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--hero-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* ---------- Layout ---------- */
.wrap {
  max-width: 1160px;
  margin: auto;
  padding: 0 28px;
}
.note {
  background: #fff4d8;
  border-bottom: 1px solid var(--line);
  padding: 11px 20px;
  text-align: center;
  font-size: 13px;
  color: #5d5d5d;
}

/* ---------- Navigation ---------- */
nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 16px 4vw;
  display: flex;
  align-items: center;
  gap: 22px;
}
nav img {
  width: 142px;
  transition: opacity var(--ease);
}
nav img:hover {
  opacity: 0.88;
}
nav .links {
  display: flex;
  gap: 20px;
  flex: 1;
  justify-content: center;
  font-size: 14px;
}
nav .links a {
  position: relative;
  padding: 4px 2px;
  transition: color var(--ease);
}
nav .links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--ease);
  transform-origin: left;
}
nav .links a:hover {
  color: var(--green);
}
nav .links a:hover::after,
nav .links a[aria-current='page']::after {
  transform: scaleX(1);
}
nav .links a[aria-current='page'] {
  color: var(--green);
  font-weight: 700;
}

/* ---------- Links & buttons ---------- */
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-cta {
  margin-left: auto;
}
.btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 14px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  will-change: transform;
  border: 1px solid transparent;
}
.btn:hover {
  background: #435a3a;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(83, 108, 72, 0.22);
}
.btn:active {
  transform: translateY(0);
}
.btn.alt {
  background: var(--gold);
}
.btn.alt:hover {
  background: var(--brass-hover);
  box-shadow: 0 8px 24px rgba(193, 139, 19, 0.22);
}

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  min-height: 610px;
  gap: 0;
}
.hero .copy {
  padding: 80px 56px 72px 0;
  align-self: center;
}
.hero .photo {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 0 40px;
}
.hero .photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.hero .photo:hover img {
  transform: scale(1.02);
}

/* ---------- Sections ---------- */
section {
  padding: clamp(48px, 7vw, 80px) 0;
}
section + section {
  border-top: 1px solid var(--line);
}
.soft {
  background: var(--cream);
}
.pale {
  background: var(--pale);
}

/* ---------- Typography ---------- */
h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--green);
  font-weight: 400;
}
h1 {
  font-size: clamp(34px, 5.2vw, 54px);
  line-height: 1.08;
  margin: 0 0 20px;
}
h2 {
  font-size: clamp(26px, 3.8vw, 38px);
  line-height: 1.16;
  margin: 0 0 18px;
}
h3 {
  font-size: clamp(19px, 2.2vw, 23px);
  line-height: 1.25;
  margin: 0 0 10px;
}
p {
  font-size: clamp(16px, 1.2vw, 17px);
  line-height: 1.65;
  margin: 0 0 16px;
  max-width: 62ch;
}
.lead {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.4vw, 23px);
  line-height: 1.45;
  font-style: italic;
  color: var(--green);
}

/* Kicker Ã¢â‚¬â€ oversized letterspaced with brass rule beneath */
.kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold);
  display: inline-block;
}

/* ---------- Grids ---------- */
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.two img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}
.cards2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* ---------- Cards ---------- */
.card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: box-shadow 220ms ease, border-color 220ms ease, transform 220ms ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 280ms ease;
  transform-origin: left;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: #d6d0c0;
  transform: translateY(-3px);
}
.card:hover::before {
  transform: scaleX(1);
}
.card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
.card h3 {
  transition: color var(--ease);
}
.card:hover h3 {
  color: var(--green);
}

/* ---------- Process steps ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(36, 50, 67, 0.04);
}
.process div {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  transition: background 200ms ease;
  position: relative;
}
.process div::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 260ms ease;
  transform-origin: left;
}
.process div:hover {
  background: var(--cream);
}
.process div:hover::after {
  transform: scaleX(1);
}
.process div:last-child {
  border-right: 0;
}
.process div h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

/* ---------- Framework ---------- */
.framework {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 26px;
}
.framework .card {
  background: var(--cream);
}

/* ==========================================================================
   Editorial layer Ã¢â‚¬â€ Kinfolk Ãƒâ€” McKinsey composition
   ========================================================================== */

/* ---------- Editorial hero Ã¢â‚¬â€ asymmetric 1.15fr / 0.85fr ---------- */
.hero--editorial {
  grid-template-columns: 1.15fr 0.85fr;
}
.hero--editorial .photo {
  position: relative;
}
.hero--editorial .photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.hero__caption {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* ---------- Pull-quote Ã¢â‚¬â€ large italic serif statement ---------- */
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 28px);
  line-height: 1.4;
  color: var(--green);
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 28px 0;
  max-width: 52ch;
}

/* ---------- Feature cards Ã¢â‚¬â€ editorial list with brass left rule ---------- */
.cards--feature {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cards--feature .card {
  border: none;
  border-left: 3px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 20px 0 20px 24px;
  margin-bottom: 0;
  transition: border-color var(--ease), background var(--ease);
}
.cards--feature .card + .card {
  border-top: 1px solid var(--line);
}
.cards--feature .card:hover {
  border-left-color: var(--gold);
  background: var(--cream);
}
.cards--feature .card h3 {
  font-size: clamp(17px, 2vw, 20px);
  margin-bottom: 6px;
}

/* ---------- Numbered steps Ã¢â‚¬â€ 01Ã¢â‚¬â€œ04 brass markers with hairline connector ---------- */
.steps--numbered {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps--numbered > div {
  position: relative;
  padding: 32px 24px 28px;
  text-align: left;
  border: none;
}
/* Brass number marker */
.steps--numbered > div::before {
  content: attr(data-step);
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
/* Hairline connector between steps */
.steps--numbered > div:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 48px;
  right: 0;
  width: 1px;
  height: calc(100% - 64px);
  background: var(--line);
}
.steps--numbered > div h3 {
  margin-bottom: 8px;
}
.steps--numbered > div p {
  font-size: 15px;
}

/* ---------- Editorial framework Ã¢â‚¬â€ list not equal grid ---------- */
.editorial-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 28px;
}
.editorial-list .card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: baseline;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 18px 0;
  transition: background var(--ease);
}
.editorial-list .card:hover {
  background: var(--cream);
}
.editorial-list .card h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  min-width: 120px;
}
.editorial-list .card p {
  font-size: 15px;
  margin: 0;
}

/* ---------- Section hairline dividers ---------- */
section > .wrap > .kicker + h2 {
  margin-top: 0;
}

/* ---------- Editorial two-col with offset image ---------- */
.two--editorial {
  grid-template-columns: 1.15fr 0.85fr;
}
.two--editorial > img {
  height: 440px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Editorial intro Ã¢â‚¬â€ asymmetric text/image ---------- */
.intro--editorial {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.intro--editorial img {
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Highlight editorial Ã¢â‚¬â€ softer ---------- */
.highlight--editorial {
  margin-top: 28px;
  padding: 28px 32px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ==========================================================================
   Responsive Ã¢â‚¬â€ editorial overrides within existing breakpoints
   ========================================================================== */
@media (max-width: 850px) {
  .hero--editorial {
    grid-template-columns: 1fr;
  }
  .hero--editorial .photo {
    height: 400px;
    order: -1;
  }
  .steps--numbered {
    grid-template-columns: 1fr 1fr;
  }
  .steps--numbered > div:not(:last-child)::after {
    display: none;
  }
  .two--editorial {
    grid-template-columns: 1fr;
  }
  .two--editorial > img {
    height: 320px;
    order: -1;
  }
  .intro--editorial {
    grid-template-columns: 1fr;
  }
  .intro--editorial img {
    height: 320px;
    order: -1;
  }
  .editorial-list .card {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
@media (max-width: 560px) {
  .steps--numbered {
    grid-template-columns: 1fr;
  }
}

/* ---------- Highlight ---------- */
.highlight {
  margin-top: 28px;
  padding: 27px;
  background: #fff7df;
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.small {
  font-size: 14px;
  color: var(--muted);
}

/* ---------- Editorial footer ---------- */
.site-footer {
  background: var(--dark);
  color: #fff;
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: 'The Lemon Mind';
  position: absolute;
  bottom: -12px;
  right: -8px;
  font-family: var(--font-display);
  font-size: clamp(60px, 12vw, 140px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.site-footer .footer-wordmark {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
  color: #fff;
}
.site-footer .footer-tagline {
  font-size: 14px;
  margin: 16px 0 0;
  opacity: 0.75;
  font-style: italic;
}
.site-footer h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 16px;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer ul li {
  margin: 0 0 10px;
}
.site-footer ul li a {
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  transition: opacity var(--ease);
  text-underline-offset: 3px;
}
.site-footer ul li a:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.site-footer .contact-line {
  font-size: 15px;
  margin: 0 0 8px;
}
.site-footer .contact-line strong {
  font-weight: 600;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: 0.7;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 450ms ease, transform 450ms ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Hero entrance animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  .hero .copy {
    animation: fadeUp 0.55s ease both;
  }
  .hero .copy .kicker {
    animation: fadeUp 0.5s ease both 0.06s;
  }
  .hero .copy h1 {
    animation: fadeUp 0.5s ease both 0.12s;
  }
  .hero .copy .lead {
    animation: fadeUp 0.5s ease both 0.18s;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Editorial: Asymmetric hero grid ---------- */
.editorial-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
}
.editorial-hero.reverse {
  grid-template-columns: 0.85fr 1.15fr;
}
.editorial-hero .copy {
  padding: 0;
}
.editorial-hero img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.editorial-hero.overlap {
  position: relative;
}
.editorial-hero.overlap img {
  position: relative;
  top: 20px;
  left: -20px;
  width: calc(100% + 40px);
}

/* ---------- Editorial: Numbered index cards (speaking) ---------- */
.editorial-index {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.editorial-index-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition: background var(--ease);
  align-items: start;
}
.editorial-index-item:first-child {
  padding-top: 0;
}
.editorial-index-item:last-child {
  border-bottom: none;
}
.editorial-index-item:hover {
  background: var(--cream);
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: var(--radius);
}
.editorial-index-number {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  min-width: 56px;
  padding-top: 4px;
}
.editorial-index-content h3 {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.2vw, 23px);
  color: var(--green);
  margin: 0 0 8px;
  line-height: 1.25;
}
.editorial-index-content p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
.editorial-index-content .btn {
  margin-top: 14px;
}

/* ---------- Editorial: Feature list (journal) ---------- */
.editorial-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.editorial-list-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: background var(--ease), padding var(--ease);
}
.editorial-list-item:first-child {
  padding-top: 0;
}
.editorial-list-item:last-child {
  border-bottom: none;
}
.editorial-list-item:hover {
  background: var(--cream);
  margin: 0 -16px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: var(--radius);
}
.editorial-list-date {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 110px;
  flex-shrink: 0;
}
.editorial-list-text {
  flex: 1;
}
.editorial-list-text h3 {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--dark);
  margin: 0 0 4px;
  line-height: 1.35;
  transition: color var(--ease);
}
.editorial-list-item:hover .editorial-list-text h3 {
  color: var(--green);
}
.editorial-list-text p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* ---------- Editorial: Pull-quote ---------- */
.editorial-quote {
  position: relative;
  padding: 40px 0 40px 32px;
  margin: 48px 0;
  border-left: 3px solid var(--gold);
}
.editorial-quote p {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 28px);
  line-height: 1.4;
  color: var(--green);
  font-style: italic;
  margin: 0;
  max-width: 52ch;
}
.editorial-quote cite {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  color: var(--muted);
  margin-top: 12px;
}

/* ---------- Editorial: Credential/timeline list ---------- */
.editorial-credentials {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.editorial-credential {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.editorial-credential:last-child {
  border-bottom: none;
}
.editorial-credential-icon {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}
.editorial-credential p {
  font-size: 15px;
  margin: 0;
  line-height: 1.55;
}

/* ---------- Editorial: CTA card (contact) ---------- */
.editorial-cta-card {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 36px 40px;
  max-width: 540px;
  margin: 32px auto;
}
.editorial-cta-card h3 {
  font-family: var(--font-display);
  color: var(--green);
  margin: 0 0 12px;
}
.editorial-cta-card p {
  margin: 0 0 20px;
  color: var(--muted);
}
.editorial-cta-card .btn {
  display: inline-block;
}

/* ---------- Editorial: Contact details ---------- */
.editorial-contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 28px;
}
.editorial-contact-line {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.editorial-contact-line:last-child {
  border-bottom: none;
}
.editorial-contact-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 90px;
  flex-shrink: 0;
}
.editorial-contact-value {
  font-size: 15px;
  color: var(--dark);
}

/* ---------- Editorial: Divider ---------- */
.editorial-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 48px 0;
}

/* ---------- Editorial: Section header ---------- */
.editorial-section-header {
  margin-bottom: 36px;
}
.editorial-section-header h2 {
  margin-bottom: 8px;
}

/* ---------- Utility ---------- */
body.no-scroll {
  overflow: hidden;
}

/* ---------- Responsive ---------- */
@media (max-width: 850px) {
  .nav-toggle {
    display: flex;
  }
  nav {
    flex-wrap: wrap;
  }
  nav .links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 4vw 16px;
    gap: 4px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  }
  nav .links[data-open] {
    display: flex;
  }
  nav .links a {
    padding: 12px 4px;
    font-size: 16px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-cta {
    display: none;
  }
  .hero,
  .two,
  .cards2,
  .editorial-hero {
    grid-template-columns: 1fr;
  }
  .editorial-hero.reverse {
    grid-template-columns: 1fr;
  }
  .editorial-hero.overlap img {
    top: 0;
    left: 0;
    width: 100%;
  }
  .editorial-index-item {
    grid-template-columns: auto 1fr;
    gap: 16px;
  }
  .editorial-list-item {
    flex-direction: column;
    gap: 4px;
  }
  .editorial-list-date {
    min-width: auto;
  }
  .editorial-cta-card {
    padding: 28px 24px;
    margin: 24px 0;
  }
  .editorial-contact-line {
    flex-direction: column;
    gap: 4px;
  }
  .cards3,
  .process,
  .framework {
    grid-template-columns: 1fr 1fr;
  }
  .hero .copy {
    padding: 50px 0;
  }
  .hero .photo {
    height: 430px;
  }
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .site-footer .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
@media (max-width: 560px) {
  .cards3,
  .process,
  .framework {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   REVIZE 2026-09-01 â€” Olive footer + new grids per revize.docx
   ========================================================================== */

/* Decision 4-block */
.decision-blocks .section-intro { max-width: 58ch; color: var(--muted); margin: 0 0 24px; }
.decision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.decision-block { border: 1px solid var(--line); background: #fff; border-radius: var(--radius-lg); padding: 22px 20px; transition: box-shadow 200ms ease, transform 200ms ease, border-color 200ms ease; }
.decision-block:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: #d6d0c0; }
.decision-block h3 { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.decision-block p { font-size: 14px; color: var(--dark); margin: 0; line-height: 1.5; }

/* Work 5 blocks */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.work-block { border: 1px solid var(--line); background: #fff; border-radius: var(--radius-lg); padding: 20px; transition: box-shadow 200ms ease, transform 200ms ease; }
.work-block:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.work-block h3 { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 8px; line-height: 1.3; }
.work-block p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }
@media (max-width: 900px) { .work-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .work-grid { grid-template-columns: 1fr; } }

/* Approach 2-col */
.approach-section .approach-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; }
.approach-text h2 { margin-bottom: 12px; }
.approach-text p { color: var(--muted); }
.tools-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 18px; }
.tool-item { border-left: 3px solid var(--gold); padding: 12px 14px; background: rgba(255,255,255,0.7); border-radius: 0 var(--radius) var(--radius) 0; }
.tool-item h4 { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); margin: 0 0 6px; }
.tool-item p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5; }
.approach-photo img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; }
@media (max-width: 900px) { .approach-section .approach-grid { grid-template-columns: 1fr; } .approach-photo { order: -1; } }

/* Mentoring hero compact */
.mentoring-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 36px; align-items: center; }
.mentoring-hero-grid h1 { font-size: clamp(32px, 4vw, 44px); line-height: 1.05; }
.mentoring-hero-photo img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-lg); }
@media (max-width: 900px) { .mentoring-hero-grid { grid-template-columns: 1fr; } .mentoring-hero-photo img { height: 300px; } }

/* Journal grid */
.journal-grid .card { min-height: 160px; }

/* Footer â€” deep warm olive */
.site-footer { background: #3a3d2b; /* deep warm olive */ color: #f5f1e8; padding: 48px 0 24px; border-top: none; }
.site-footer .footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr; gap: 32px; align-items: start; }
.site-footer .footer-wordmark { font-family: var(--font-display); font-size: 22px; color: #f5f1e8; margin: 0 0 8px; }
.site-footer .footer-tagline { font-size: 14px; color: rgba(245,241,232,0.75); margin: 0; letter-spacing: 0.04em; }
.site-footer h4 { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #e8d5a3; margin: 0 0 12px; }
.site-footer p, .site-footer a { color: rgba(245,241,232,0.88); }
.site-footer a:hover { color: #e8d5a3; }
.site-footer .footer-contact .contact-line { margin: 0 0 8px; font-size: 14px; }
.site-footer .footer-cta { display: inline-block; margin-top: 8px; padding: 8px 16px; background: rgba(232,213,163,0.12); border: 1px solid rgba(232,213,163,0.3); border-radius: 999px; color: #e8d5a3; font-size: 13px; font-weight: 600; }
.site-footer .footer-cta:hover { background: #e8d5a3; color: #3a3d2b; }
.site-footer .footer-bottom { margin-top: 32px; padding-top: 18px; border-top: 1px solid rgba(245,241,232,0.12); display: flex; justify-content: space-between; gap: 12px; font-size: 12px; color: rgba(245,241,232,0.6); flex-wrap: wrap; }
.site-footer .footer-legal a { margin-left: 8px; color: rgba(245,241,232,0.6); }
.site-footer .footer-legal a:hover { color: #e8d5a3; }
@media (max-width: 700px) { .site-footer .footer-grid { grid-template-columns: 1fr; text-align: center; } .site-footer .footer-bottom { justify-content: center; text-align: center; flex-direction: column; } }

/* Mobile adjustments for decision */
@media (max-width: 600px) { .decision-grid { grid-template-columns: 1fr 1fr; gap: 12px; } .decision-block { padding: 16px 14px; } }

/* Hide speaking nav is already via config; ensure no leftover */
/* Mentoring hero compact - reduce empty space */
.mentoring-hero { padding: 32px 0 28px !important; }
.mentoring-hero-grid { gap: 28px; }

/* Journal A Place to Begin stronger visual */
#resources .editorial-cta-card { box-shadow: var(--shadow-lg); border-width: 1.5px; }