/* Inkkspiration homepage — premium editorial system */
:root {
  --maxw: 1280px;
  --radius: 14px;
  --home-shadow: 0 24px 70px -42px rgba(25, 50, 39, 0.34);
  --home-shadow-hover: 0 30px 80px -42px rgba(25, 50, 39, 0.46);
  --home-border: rgba(29, 74, 56, 0.12);
  --home-section-space: clamp(4.75rem, 7vw, 7rem);
  --home-soft-ivory: #fffbf5;
  --home-sage-wash: #f3f7f3;
  --home-warm-cream: #f8f5ef;
}

body {
  background: var(--warm-white);
}

.home-page {
  overflow: clip;
}

.home-page .wrap {
  width: min(100%, var(--maxw));
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.home-page h1,
.home-page h2,
.home-page h3 {
  text-wrap: balance;
}

.home-page h2 {
  font-size: clamp(2.15rem, 3.2vw, 3.35rem);
  line-height: 1.07;
  letter-spacing: -0.03em;
}

.home-page h3 {
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.home-page p {
  max-width: 600px;
}

.home-page .eyebrow {
  margin-bottom: 1rem;
  color: #896936;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.home-page .btn {
  min-height: 48px;
  justify-content: center;
  padding: 0.8rem 1.45rem;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.home-page .btn:hover {
  transform: translateY(-2px);
}

.home-page .btn-primary:hover {
  box-shadow: 0 12px 30px -18px rgba(29, 74, 56, 0.8);
}

.site-header {
  background: rgba(255, 253, 249, 0.88);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: rgba(29, 74, 56, 0.08);
}

.main-nav {
  max-width: var(--maxw);
}

.nav-links {
  gap: clamp(0.8rem, 1.5vw, 1.45rem);
}

.nav-links a {
  font-size: 0.84rem;
}

.nav-cta {
  border-radius: 999px;
}

.hp-section {
  position: relative;
  padding-block: var(--home-section-space);
}

.hp-section-heading {
  max-width: 780px;
}

.hp-section-heading > p,
.hp-heading-row > p {
  margin-top: 1.25rem;
  color: var(--muted);
  line-height: 1.75;
}

.hp-section-heading-center {
  margin-inline: auto;
  text-align: center;
}

.hp-section-heading-center > p {
  margin-inline: auto;
}

.hp-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.hp-heading-row > p,
.hp-heading-row > .hp-text-link {
  justify-self: end;
}

.hp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hp-text-link,
.hp-program-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--forest);
}

.hp-text-link svg,
.hp-program-card a svg {
  transition: transform 180ms ease;
}

.hp-text-link:hover svg,
.hp-program-card a:hover svg {
  transform: translateX(4px);
}

.hp-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--forest-pale);
}

.hp-image img,
.hp-program-card > img,
.hp-article-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hp-image:hover img,
.hp-program-card:hover > img,
.hp-article-card:hover .hp-article-image img {
  transform: scale(1.025);
}

/* Hero */
.hp-hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  padding-block: clamp(4.5rem, 7vw, 7rem);
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 237, 216, 0.72), transparent 28rem),
    linear-gradient(135deg, var(--warm-white), var(--cream));
}

.hp-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176, 141, 87, 0.42), transparent);
}

.hp-hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
  align-items: center;
}

.hp-hero-copy {
  grid-column: 1 / span 6;
  position: relative;
  z-index: 2;
}

.hp-hero-copy h1 {
  max-width: 760px;
  margin: 0 0 1.75rem;
  font-size: clamp(3.35rem, 6vw, 6.35rem);
  line-height: 0.94;
  letter-spacing: -0.052em;
}

.hp-hero-copy h1 em {
  display: block;
  color: var(--forest);
  font-weight: 400;
}

.hp-hero-lead {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  line-height: 1.45;
  color: var(--ink);
}

.hp-hero-body {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.hp-hero .hp-actions {
  margin-top: 2rem;
}

.hp-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

.hp-note span {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hp-hero-visual {
  grid-column: 8 / -1;
  position: relative;
  margin: 0;
}

.hp-hero-image {
  aspect-ratio: 4 / 5;
  border-radius: 48% 48% 20px 20px;
  box-shadow: var(--home-shadow);
}

.hp-hero-image img {
  object-position: 72% center;
}

.hp-hero-visual::before {
  content: "";
  position: absolute;
  inset: -20px 28px 24px -20px;
  border: 1px solid rgba(176, 141, 87, 0.55);
  border-radius: 49% 49% 24px 24px;
}

.hp-hero-visual figcaption {
  position: absolute;
  left: clamp(-4rem, -4vw, -2rem);
  bottom: 2rem;
  max-width: 220px;
  padding: 1.25rem;
  border: 1px solid rgba(29, 74, 56, 0.1);
  border-radius: 12px;
  background: rgba(255, 253, 249, 0.93);
  backdrop-filter: blur(12px);
  box-shadow: var(--home-shadow);
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.4;
}

.hp-hero-visual figcaption span {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--sans);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Reflection */
.hp-reflection {
  background: var(--home-soft-ivory);
}

.hp-feelings {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  margin: clamp(2.5rem, 5vw, 4.5rem) 0 0;
  list-style: none;
}

.hp-feelings li {
  grid-column: span 3;
  min-height: 150px;
  display: flex;
  align-items: flex-end;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--home-border);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.84);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.65vw, 1.4rem);
  font-style: italic;
  line-height: 1.35;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.hp-feelings li:nth-child(n + 5) {
  grid-column: span 4;
}

.hp-feelings li::before {
  content: "";
  position: absolute;
  top: 1.45rem;
  left: 1.5rem;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.hp-feelings li:hover {
  transform: translateY(-4px);
  border-color: rgba(176, 141, 87, 0.35);
  box-shadow: var(--home-shadow);
}

.hp-reassurance {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius);
  background: var(--forest);
  color: var(--forest-pale);
}

.hp-reassurance > p {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.15;
  color: var(--warm-white);
}

.hp-reassurance > div {
  padding-left: clamp(1.5rem, 3vw, 3rem);
  border-left: 1px solid rgba(255, 253, 249, 0.18);
}

.hp-reassurance > div p {
  color: rgba(255, 253, 249, 0.72);
  font-size: 0.95rem;
}

.hp-reassurance > div p + p {
  margin-top: 0.75rem;
}

/* Editorial splits */
.hp-split {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
}

.hp-split-image-left > .hp-image {
  grid-column: 1 / span 6;
}

.hp-split-image-left > .hp-copy {
  grid-column: 8 / -1;
}

.hp-split-copy-left > .hp-copy {
  grid-column: 1 / span 6;
}

.hp-split-copy-left > .hp-image {
  grid-column: 8 / -1;
}

.hp-editorial-image {
  aspect-ratio: 1 / 1.05;
  box-shadow: var(--home-shadow);
}

.hp-copy h2 {
  margin-bottom: 1.4rem;
}

.hp-copy > p {
  color: var(--muted);
  line-height: 1.75;
}

.hp-copy > p + p {
  margin-top: 0.9rem;
}

/* Mission */
.hp-mission {
  background: var(--forest);
  color: var(--forest-pale);
}

.hp-mission::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0, rgba(245, 237, 216, 0.1), transparent 34rem);
}

.hp-mission h2 {
  color: var(--warm-white);
}

.hp-mission .hp-section-heading > p {
  color: rgba(255, 253, 249, 0.7);
}

.hp-needs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.hp-need-card {
  position: relative;
  min-width: 0;
  padding: 0.75rem 0.75rem 1.5rem;
  border: 1px solid rgba(255, 253, 249, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.055);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.hp-need-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 237, 216, 0.4);
  background: rgba(255, 253, 249, 0.09);
}

.hp-need-card img {
  width: 100%;
  aspect-ratio: 1;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.hp-need-card:nth-child(1) img { object-position: 50% 32%; }
.hp-need-card:nth-child(2) img { object-position: 50% 44%; }
.hp-need-card:nth-child(3) img { object-position: 50% 38%; }
.hp-need-card:nth-child(4) img { object-position: 50% 38%; }
.hp-need-card:nth-child(5) img { object-position: 50% 58%; }

.hp-need-card .hp-card-number {
  position: absolute;
  z-index: 2;
  top: 1.25rem;
  left: 1.25rem;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.92);
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 500;
}

.hp-need-card h3 {
  margin: 1.25rem 0.5rem 0;
  color: var(--warm-white);
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
}

/* Method */
.hp-method {
  background: var(--home-soft-ivory);
}

.hp-method-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.hp-method-list li {
  min-width: 0;
  min-height: 220px;
  position: relative;
}

.hp-method-list li > a {
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  border: 1px solid var(--home-border);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.72);
  color: var(--ink);
  box-shadow: 0 16px 40px -36px rgba(29, 74, 56, 0.42);
  transition: transform 240ms ease, background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, color 240ms ease;
}

.hp-method-list li > a::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -72px;
  bottom: -72px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.08;
  transform: scale(0.75);
  transition: transform 340ms ease, opacity 240ms ease;
  pointer-events: none;
}

.hp-method-list li > a:hover,
.hp-method-list li > a:focus-visible {
  transform: translateY(-6px);
  background: var(--forest);
  border-color: rgba(29, 74, 56, 0.7);
  color: var(--warm-white);
  box-shadow: 0 26px 60px -34px rgba(29, 74, 56, 0.65);
}

.hp-method-list li > a:hover::before,
.hp-method-list li > a:focus-visible::before {
  opacity: 0.16;
  transform: scale(1.45);
}

.hp-method-list li > a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.hp-method-top,
.hp-method-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.hp-method-number {
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.hp-method-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest-pale);
  color: var(--forest);
  transition: transform 260ms ease, background 240ms ease, color 240ms ease;
}

.hp-method-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hp-method-list li > a:hover .hp-method-icon,
.hp-method-list li > a:focus-visible .hp-method-icon {
  transform: translateY(-3px) rotate(-3deg);
  background: rgba(255, 253, 249, 0.12);
  color: var(--gold-light);
}

.hp-method-list h3 {
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  color: inherit;
  transition: color 220ms ease;
}

.hp-method-arrow {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.hp-method-list li > a:hover .hp-method-arrow,
.hp-method-list li > a:focus-visible .hp-method-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Audiences */
.hp-audiences {
  background: var(--home-sage-wash);
}

.hp-audiences .hp-section-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  column-gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.hp-audiences .hp-section-heading .eyebrow,
.hp-audiences .hp-section-heading h2 {
  grid-column: 1;
}

.hp-audiences .hp-section-heading > p {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin-top: 0;
  padding-bottom: 0.2rem;
}

.hp-audience-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.hp-card {
  min-height: 0;
  position: relative;
  padding: 0;
  border: 1px solid var(--home-border);
  border-radius: var(--radius);
  background: var(--warm-white);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.hp-audience-card:nth-child(1) { grid-column: span 5; }
.hp-audience-card:nth-child(2) { grid-column: span 3; margin-top: 1.5rem; }
.hp-audience-card:nth-child(3) { grid-column: span 4; }
.hp-audience-card:nth-child(4) { grid-column: span 5; }
.hp-audience-card:nth-child(5) { grid-column: span 7; margin-top: -0.75rem; }

.hp-audience-card > a {
  min-height: 310px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 2.6vw, 2.15rem);
  border-radius: inherit;
  color: var(--ink);
  transition: transform 240ms ease, background 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.hp-audience-card > a::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -110px;
  bottom: -112px;
  border-radius: 48% 52% 64% 36% / 52% 38% 62% 48%;
  background: var(--forest-pale);
  opacity: 0.72;
  transform: rotate(-12deg);
  transition: transform 420ms cubic-bezier(0.2, 0.75, 0.2, 1), opacity 240ms ease;
  pointer-events: none;
}

.hp-audience-card > a:hover,
.hp-audience-card > a:focus-visible {
  transform: translateY(-6px);
  color: var(--ink);
  box-shadow: 0 28px 64px -36px rgba(29, 74, 56, 0.58);
}

.hp-audience-card > a:hover::before,
.hp-audience-card > a:focus-visible::before {
  opacity: 1;
  transform: translate(-18px, -14px) rotate(10deg) scale(1.15);
}

.hp-audience-card > a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.hp-audience-card:first-child {
  border-color: var(--forest);
  background: var(--forest);
}

.hp-audience-card:first-child > a {
  color: var(--warm-white);
}

.hp-audience-card:first-child > a::before {
  background: var(--gold);
  opacity: 0.12;
}

.hp-audience-card:first-child .hp-card-number {
  color: var(--gold-light);
}

.hp-card-number {
  display: inline-block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.hp-audience-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.hp-audience-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest-pale);
  color: var(--forest);
  transition: transform 260ms ease, background 240ms ease, color 240ms ease;
}

.hp-audience-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hp-audience-card:first-child .hp-audience-icon {
  background: rgba(255, 253, 249, 0.12);
  color: var(--gold-light);
}

.hp-audience-card > a:hover .hp-audience-icon,
.hp-audience-card > a:focus-visible .hp-audience-icon {
  transform: translateY(-3px) rotate(-4deg);
  background: var(--gold-light);
  color: var(--forest);
}

.hp-audience-copy {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: clamp(2rem, 4vw, 3.75rem);
}

.hp-card h3 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.7rem, 2.5vw, 2.25rem);
}

.hp-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.hp-card .hp-card-lead {
  margin-bottom: 0.75rem;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-style: italic;
}

.hp-audience-card:first-child p {
  color: rgba(255, 253, 249, 0.68);
}

.hp-audience-card:first-child .hp-card-lead {
  color: var(--gold-light);
}

.hp-audience-arrow {
  position: absolute;
  z-index: 3;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 20px;
  height: 20px;
  color: var(--forest);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.hp-audience-card:first-child .hp-audience-arrow {
  color: var(--gold-light);
}

.hp-audience-card > a:hover .hp-audience-arrow,
.hp-audience-card > a:focus-visible .hp-audience-arrow {
  opacity: 1;
  transform: translateX(0);
}

.hp-audience-wide {
  background: linear-gradient(135deg, var(--warm-white), rgba(232, 242, 237, 0.74));
}

/* Why */
.hp-why {
  background: var(--warm-white);
}

.hp-tall-image {
  height: clamp(520px, 45vw, 600px);
  min-height: 0;
  box-shadow: var(--home-shadow);
}

.hp-tall-image img {
  position: absolute;
  inset: 0;
  object-position: 58% center;
}

.hp-check-list {
  display: grid;
  gap: 0;
  margin-top: 1.5rem;
  list-style: none;
}

.hp-check-list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.75rem;
  border-top: 1px solid var(--home-border);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.hp-check-list li::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* Programs */
.hp-programs {
  background: var(--home-warm-cream);
}

.hp-programs .hp-heading-row,
.hp-programs .hp-program-grid {
  position: relative;
  z-index: 2;
  visibility: visible;
  opacity: 1;
  transform: none;
}

.hp-program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hp-program-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--home-border);
  border-radius: var(--radius);
  background: var(--warm-white);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.hp-program-card:hover {
  transform: translateY(-5px);
  border-color: rgba(176, 141, 87, 0.35);
  box-shadow: var(--home-shadow-hover);
}

.hp-program-card > img {
  flex: 0 0 auto;
  height: auto;
  aspect-ratio: 16 / 9;
}

.hp-program-card > div {
  flex: 1;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
}

.hp-program-card > div > span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.hp-program-card h3 {
  margin: 1.5rem 0 0.75rem;
  font-size: clamp(1.45rem, 2vw, 1.8rem);
}

.hp-program-card p {
  flex: 1;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.hp-program-card a {
  margin-top: 1.5rem;
}

/* Founder */
.hp-founder {
  background: linear-gradient(90deg, var(--warm-white), var(--home-sage-wash));
}

.hp-founder-grid > .hp-image {
  grid-column: 1 / span 5;
}

.hp-founder-grid > .hp-copy {
  grid-column: 7 / -1;
}

.hp-founder-image {
  aspect-ratio: 4 / 4.5;
  box-shadow: var(--home-shadow);
}

.hp-founder-image img {
  object-position: 68% center;
}

.hp-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.75rem;
  list-style: none;
}

.hp-credentials li {
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--home-border);
  border-radius: 999px;
  background: var(--warm-white);
  color: var(--muted);
  font-size: 0.75rem;
}

.hp-founder blockquote {
  max-width: 660px;
  margin: 0 0 2rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.15vw, 1.55rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--forest);
}

/* Journal */
.hp-journal {
  background: var(--warm-white);
}

.hp-journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hp-article-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--home-border);
  border-radius: var(--radius);
  background: var(--warm-white);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.hp-article-card:hover {
  transform: translateY(-5px);
  border-color: rgba(176, 141, 87, 0.35);
  box-shadow: var(--home-shadow-hover);
}

.hp-article-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.hp-article-card > div {
  padding: 1.75rem;
}

.hp-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.7rem;
}

.hp-article-card h3 {
  margin: 1.25rem 0 0.75rem;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
}

.hp-article-card h3 a {
  color: var(--ink);
}

.hp-article-card h3 a:hover {
  color: var(--forest);
}

.hp-article-card > div > p:not(.hp-meta) {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.hp-tag {
  display: block;
  margin-top: 1.25rem;
  color: var(--forest-mid);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

/* FAQ */
.hp-faq {
  background: var(--home-sage-wash);
}

.hp-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}

.hp-faq .hp-section-heading {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.hp-faq .hp-section-heading .hp-text-link {
  margin-top: 1.75rem;
}

.hp-faq-list {
  border-top: 1px solid var(--home-border);
}

.hp-faq-list details {
  border-bottom: 1px solid var(--home-border);
}

.hp-faq-list summary {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.3;
}

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

.hp-faq-list summary::after {
  content: "+";
  flex: none;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 180ms ease;
}

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

.hp-faq-list details p {
  padding: 0 3rem 1.75rem 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Final CTA */
.hp-final-cta {
  position: relative;
  padding-block: clamp(5.5rem, 10vw, 9rem);
  text-align: center;
  background: linear-gradient(90deg, rgba(29, 74, 56, 0.97), rgba(29, 74, 56, 0.79));
  color: var(--forest-pale);
}

.hp-final-cta .eyebrow {
  color: var(--gold-light);
}

.hp-final-cta h2 {
  max-width: 860px;
  margin-inline: auto;
  color: var(--warm-white);
}

.hp-final-cta p {
  margin: 1.5rem auto 0;
  color: rgba(255, 253, 249, 0.74);
  line-height: 1.75;
}

.hp-final-cta .hp-actions {
  justify-content: center;
  margin-top: 2rem;
}

/* Refined depth and art direction */
.hp-hero,
.hp-section,
.hp-final-cta {
  isolation: isolate;
}

.hp-hero > .wrap,
.hp-section > .wrap,
.hp-final-cta > .wrap {
  position: relative;
  z-index: 2;
}

.hp-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: min(42vw, 620px);
  aspect-ratio: 1;
  right: -8%;
  top: 8%;
  border: 1px solid var(--forest);
  border-radius: 50%;
  opacity: 0.055;
  pointer-events: none;
}

.hp-reflection::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 420px;
  height: 420px;
  right: -90px;
  top: 9%;
  opacity: 0.05;
  pointer-events: none;
  background-image: radial-gradient(circle, var(--forest) 1.2px, transparent 1.3px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(circle, #000 18%, transparent 70%);
  mask-image: radial-gradient(circle, #000 18%, transparent 70%);
}

.hp-intro::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: min(54vw, 760px);
  height: 68%;
  left: -9%;
  top: 16%;
  border-radius: 42% 58% 54% 46% / 56% 44% 56% 44%;
  background: var(--forest);
  opacity: 0.045;
  transform: rotate(-6deg);
  pointer-events: none;
}

.hp-intro::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -30px;
  left: 7%;
  right: 7%;
  height: 60px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: var(--warm-white);
  pointer-events: none;
}

.hp-mission::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0.07;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% -10%, var(--gold-light), transparent 38%),
    linear-gradient(118deg, transparent 49.9%, var(--warm-white) 50%, transparent 50.1%);
}

.hp-mission::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 480px;
  height: 480px;
  right: -230px;
  bottom: -260px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

.hp-needs {
  position: relative;
}

.hp-needs::after {
  content: "";
  position: absolute;
  z-index: 3;
  width: 76px;
  height: 76px;
  right: -22px;
  bottom: -24px;
  border: 1px solid var(--gold-light);
  border-radius: 18px;
  background: var(--warm-white);
  opacity: 0.07;
  transform: rotate(8deg);
  box-shadow: 0 18px 38px -22px rgba(5, 18, 13, 0.8);
  pointer-events: none;
}

.hp-method::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 330px;
  height: 330px;
  right: 2%;
  top: 8%;
  opacity: 0.04;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--forest) 1px, transparent 1px),
    linear-gradient(var(--forest) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: linear-gradient(135deg, transparent, #000, transparent);
  mask-image: linear-gradient(135deg, transparent, #000, transparent);
}

.hp-audiences::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: min(52vw, 720px);
  height: 360px;
  left: -14%;
  bottom: 8%;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.055;
  filter: blur(70px);
  pointer-events: none;
}

.hp-why::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 46%;
  height: 68%;
  right: -4%;
  top: 16%;
  background: var(--forest);
  opacity: 0.052;
  clip-path: polygon(12% 0, 100% 8%, 92% 100%, 0 90%);
  pointer-events: none;
}

.hp-programs::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: repeating-linear-gradient(125deg, transparent 0 38px, var(--forest) 39px, transparent 40px);
  -webkit-mask-image: linear-gradient(90deg, transparent 40%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 40%, #000 100%);
}

.hp-founder::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 560px;
  height: 560px;
  left: -280px;
  top: 12%;
  border: 70px solid var(--forest);
  border-radius: 50%;
  opacity: 0.035;
  pointer-events: none;
}

.hp-founder::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -26px;
  left: 7%;
  right: 7%;
  height: 52px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: var(--warm-white);
  pointer-events: none;
}

.hp-journal::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 640px;
  height: 240px;
  right: -180px;
  top: 7%;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.07;
  transform: rotate(-12deg);
  pointer-events: none;
}

.hp-faq::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 520px;
  height: 520px;
  right: -180px;
  bottom: -180px;
  border-radius: 50%;
  background: var(--forest);
  opacity: 0.055;
  filter: blur(80px);
  pointer-events: none;
}

.hp-final-cta::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 520px;
  height: 520px;
  left: 50%;
  top: 50%;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  opacity: 0.08;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hp-split {
  position: relative;
}

.hp-split > .hp-image,
.hp-split > .hp-copy {
  position: relative;
  z-index: 1;
}

.hp-image {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.58) inset,
    0 30px 80px -48px rgba(25, 50, 39, 0.5);
}

.hp-image::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: inherit;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.08), transparent 28%, transparent 74%, rgba(29, 74, 56, 0.045));
  pointer-events: none;
}

.hp-image img,
.hp-program-card > img,
.hp-article-image img,
.hp-need-card img {
  filter: saturate(0.9) contrast(1.025) brightness(1.015);
}

.hp-editorial-image {
  transform: translateZ(0);
  translate: 10px -8px;
}

.hp-tall-image {
  translate: -8px 8px;
}

.hp-founder-image {
  translate: 8px -6px;
}

.hp-intro .hp-split::before,
.hp-why .hp-split::before,
.hp-founder .hp-split::before {
  content: "";
  position: absolute;
  z-index: 0;
  border: 1px solid var(--gold);
  opacity: 0.08;
  pointer-events: none;
}

.hp-intro .hp-split::before {
  width: 45%;
  height: 78%;
  left: -18px;
  bottom: -20px;
  border-radius: 24px;
}

.hp-why .hp-split::before {
  width: 42%;
  height: 82%;
  right: -18px;
  top: -20px;
  border-radius: 24px;
}

.hp-founder .hp-split::before {
  width: 38%;
  height: 78%;
  left: -18px;
  top: -18px;
  border-radius: 24px;
}

.hp-floating-note {
  position: absolute;
  z-index: 4;
  width: min(210px, 22vw);
  padding: 1rem 1.1rem;
  border: 1px solid rgba(29, 74, 56, 0.11);
  border-radius: 12px;
  background: rgba(255, 253, 249, 0.9);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  box-shadow: 0 20px 48px -28px rgba(25, 50, 39, 0.52);
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.35;
  pointer-events: none;
}

.hp-floating-note > span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hp-intro-note {
  left: 41%;
  bottom: 7%;
}

.hp-experience-note {
  right: 32%;
  bottom: 8%;
  width: 170px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
}

.hp-experience-note strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1;
}

.hp-experience-note > span {
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.7rem;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

.hp-founder-note {
  left: 34%;
  bottom: 9%;
}

.hp-method > .wrap > .hp-text-link,
.hp-programs .hp-heading-row > .hp-text-link,
.hp-journal .hp-heading-row > .hp-text-link,
.hp-faq .hp-section-heading > .hp-text-link {
  position: relative;
  z-index: 4;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(29, 74, 56, 0.1);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 36px -26px rgba(25, 50, 39, 0.5);
}

.hp-method > .wrap > .hp-text-link {
  margin-top: -0.15rem;
}

.hp-need-card,
.hp-card,
.hp-program-card,
.hp-article-card {
  box-shadow: 0 16px 42px -38px rgba(25, 50, 39, 0.42);
}

.hp-need-card {
  box-shadow: 0 18px 46px -34px rgba(5, 18, 13, 0.7);
}

.hp-final-cta .hp-actions {
  position: relative;
}

.hp-final-cta .hp-actions::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -20px -32px;
  border-radius: 999px;
  background: var(--gold-light);
  opacity: 0.06;
  filter: blur(20px);
}

/* The previous homepage script adds these elements; keep them inert. */
.home-page .scroll-line,
.home-page .section-motion-line,
.home-page .card-glow,
.home-page .ambient-shape,
.home-page .ambient-hero-glow {
  display: none !important;
}

.home-page .section-heading-reveal {
  overflow: visible;
}

.home-page .section-heading-reveal > * {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1100px) {
  .hp-hero-copy {
    grid-column: 1 / span 7;
  }

  .hp-hero-visual {
    grid-column: 9 / -1;
  }

  .hp-hero-copy h1 {
    font-size: clamp(3.25rem, 7vw, 5.3rem);
  }

  .hp-hero-visual figcaption {
    left: -3rem;
  }

  .hp-needs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hp-need-card:nth-child(4),
  .hp-need-card:nth-child(5) {
    grid-column: span 1;
  }

  .hp-audience-card {
    grid-column: span 6 !important;
    margin-top: 0 !important;
  }

  .hp-audience-card:last-child {
    grid-column: 4 / span 6 !important;
  }
}

@media (max-width: 900px) {
  :root {
    --home-section-space: clamp(4.25rem, 8vw, 5.5rem);
  }

  .hp-floating-note {
    display: none;
  }

  .hp-audiences .hp-section-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hp-audiences .hp-section-heading .eyebrow,
  .hp-audiences .hp-section-heading h2,
  .hp-audiences .hp-section-heading > p {
    grid-column: 1;
    grid-row: auto;
  }

  .hp-audiences .hp-section-heading > p {
    margin-top: 1.25rem;
  }

  .hp-editorial-image,
  .hp-tall-image,
  .hp-founder-image {
    translate: none;
  }

  .hp-hero {
    min-height: auto;
  }

  .hp-hero-grid,
  .hp-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hp-hero-copy,
  .hp-hero-visual,
  .hp-split-image-left > .hp-image,
  .hp-split-image-left > .hp-copy,
  .hp-split-copy-left > .hp-copy,
  .hp-split-copy-left > .hp-image,
  .hp-founder-grid > .hp-image,
  .hp-founder-grid > .hp-copy {
    grid-column: 1;
  }

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

  .hp-hero-visual {
    width: min(76%, 560px);
    margin: 1rem auto 0;
  }

  .hp-hero-visual figcaption {
    left: -2.5rem;
  }

  .hp-feelings li,
  .hp-feelings li:nth-child(n + 5) {
    grid-column: span 6;
  }

  .hp-feelings li:last-child {
    grid-column: 4 / span 6;
  }

  .hp-heading-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
  }

  .hp-heading-row > p,
  .hp-heading-row > .hp-text-link {
    justify-self: start;
  }

  .hp-method-list {
    grid-template-columns: repeat(5, minmax(170px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .hp-method-list li {
    scroll-snap-align: start;
  }

  .hp-tall-image {
    height: 520px;
    min-height: 0;
    order: -1;
  }

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

  .hp-founder-image {
    width: min(76%, 560px);
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .home-page h2 {
    font-size: clamp(2rem, 8.5vw, 2.65rem);
    line-height: 1.08;
  }

  .hp-hero {
    padding-block: 3.75rem 5rem;
  }

  .hp-tall-image {
    height: 410px;
  }

  .hp-hero-copy h1 {
    font-size: clamp(3.05rem, 14vw, 4.8rem);
  }

  .hp-hero-visual {
    width: calc(100% - 2rem);
  }

  .hp-hero-visual figcaption {
    left: -1rem;
    bottom: 1rem;
    max-width: 190px;
    padding: 1rem;
    font-size: 0.98rem;
  }

  .hp-feelings {
    display: flex;
    overflow-x: auto;
    gap: 0.75rem;
    margin-inline: -1.25rem;
    padding: 0 1.25rem 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .hp-feelings::-webkit-scrollbar {
    display: none;
  }

  .hp-feelings li,
  .hp-feelings li:nth-child(n + 5),
  .hp-feelings li:last-child {
    flex: 0 0 82vw;
    min-height: 150px;
    scroll-snap-align: center;
  }

  .hp-reassurance {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hp-reassurance > div {
    padding: 1.5rem 0 0;
    border-top: 1px solid rgba(255, 253, 249, 0.18);
    border-left: 0;
  }

  .hp-needs {
    display: flex;
    overflow-x: auto;
    gap: 0.75rem;
    margin-inline: -1.25rem;
    padding: 0 1.25rem 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .hp-needs::-webkit-scrollbar {
    display: none;
  }

  .hp-needs::after {
    display: none;
  }

  .hp-need-card,
  .hp-need-card:nth-child(4),
  .hp-need-card:nth-child(5) {
    flex: 0 0 70vw;
    scroll-snap-align: center;
  }

  .hp-audience-grid {
    grid-template-columns: 1fr;
  }

  .hp-audience-card,
  .hp-audience-wide {
    grid-column: 1 !important;
    margin-top: 0 !important;
    min-height: 0;
    display: block;
  }

  .hp-audience-card > a {
    min-height: 290px;
  }

  .hp-program-grid,
  .hp-journal-grid,
  .hp-faq-grid {
    grid-template-columns: 1fr;
  }

  .hp-program-card > div {
    min-height: auto;
  }

  .hp-program-card p {
    min-height: 4.5rem;
  }

  .hp-founder-image {
    width: 100%;
  }

  .hp-faq .hp-section-heading {
    position: static;
  }

  .hp-faq-list summary {
    min-height: 78px;
  }

  .hp-final-cta .hp-actions,
  .hp-hero .hp-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hp-final-cta .btn,
  .hp-hero .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page *,
  .home-page *::before,
  .home-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
