/* Kiki's Reset Room — high-fidelity responsive homepage, July 2026.
   This file is intentionally homepage-scoped so the verified interior pages
   continue to use the shared site design system without layout regressions. */

.kr-home-page {
  --kr-page-pad: max(28px, calc((100vw - 1320px) / 2));
  background: var(--cream);
  color: var(--cocoa);
}

.kr-home-page main {
  /* `hidden` is the fallback for browsers that do not support `overflow: clip`. */
  overflow: hidden;
  overflow: clip;
}

.kr-home-page :where(a, button, input):focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--wine);
}

.kr-home-page main h1,
.kr-home-page main h2,
.kr-home-page main h3,
.kr-home-page main h4,
.kr-home-page main p {
  text-wrap: pretty;
}

.kr-home-page main h2 {
  font-size: clamp(42px, 4.4vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.kr-home-page main h3 {
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.12;
}

.kr-home-page main h4 {
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.2;
}

.kr-eyebrow {
  margin: 0 0 12px;
  color: var(--deep-rose);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.kr-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid var(--deep-rose);
  border-radius: 7px;
  background: var(--deep-rose);
  color: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.kr-button:hover {
  border-color: var(--cocoa);
  background: var(--cocoa);
  color: var(--white);
  transform: translateY(-1px);
}

.kr-button--secondary {
  background: var(--cream);
  color: var(--cocoa);
}

/* Header */
.kr-home-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: grid;
  min-height: 76px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: 10px var(--kr-page-pad);
  border-bottom: 1px solid rgba(157, 76, 81, 0.16);
  background: rgba(255, 253, 249, 0.96);
  backdrop-filter: blur(12px);
}

.kr-home-brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  color: var(--deep-rose);
  font-family: var(--serif);
  font-size: clamp(24px, 2.15vw, 30px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  text-decoration: none;
  white-space: nowrap;
}

.kr-home-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.kr-home-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0;
  border-bottom: 1px solid transparent;
  color: var(--cocoa);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.kr-home-nav a:hover,
.kr-home-nav a:focus-visible {
  border-bottom-color: var(--deep-rose);
  color: var(--deep-rose);
}

.kr-header-cta {
  min-height: 44px;
  padding: 11px 20px;
  font-size: 13px;
  line-height: 1.25;
}

/* Hero */
.kr-home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(560px, 1.05fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  padding: 48px var(--kr-page-pad) 44px;
  background:
    radial-gradient(circle at 7% 14%, rgba(228, 185, 181, 0.14), transparent 28rem),
    var(--surface-warm);
}

.kr-home-hero__copy {
  padding: 18px 0 30px;
}

.kr-home-hero h1 {
  max-width: 650px;
  color: var(--cocoa);
  font-size: clamp(58px, 4.7vw, 80px);
  line-height: 1.045;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.kr-home-hero__lede {
  max-width: 58ch;
  margin: 18px 0 0;
  color: var(--text);
  font-size: clamp(18px, 1.35vw, 19px);
  line-height: 1.68;
}

.kr-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.kr-home-hero__visual {
  position: relative;
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--surface-clay);
  box-shadow: 0 18px 44px rgba(62, 36, 27, 0.11);
}

.kr-home-hero__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(62, 36, 27, 0.16));
  content: "";
  pointer-events: none;
}

.kr-home-hero__visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.kr-home-hero__visual figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 22px;
  width: min(365px, calc(100% - 56px));
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 14px;
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 12px 30px rgba(62, 36, 27, 0.10);
  color: var(--text);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.25;
}

.kr-home-hero__visual figcaption em {
  display: block;
  margin-top: 5px;
  color: var(--deep-rose);
}

.kr-mobile-hero-cta {
  display: none;
}

.kr-section-intro {
  margin-bottom: 28px;
}

.kr-section-intro > p:not(.kr-eyebrow),
.kr-method__intro > p:not(.kr-eyebrow) {
  max-width: 650px;
  margin: 11px 0 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.65;
}

.kr-method__intro h2 span {
  color: var(--deep-rose);
  font-size: 0.64em;
  vertical-align: 0.09em;
}

.kr-method__button {
  margin-top: 22px;
}

/* Free guide */
.kr-guide {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(460px, 1.28fr);
  grid-template-areas:
    "copy visual"
    "offer visual"
    "details visual";
  column-gap: clamp(52px, 8vw, 112px);
  align-items: center;
  padding: 62px var(--kr-page-pad) 56px;
  background: var(--cream);
}

.kr-guide__copy {
  grid-area: copy;
  align-self: end;
}

.kr-guide__copy h2 {
  max-width: 540px;
}

.kr-guide__offer {
  grid-area: offer;
  align-self: start;
}

.kr-check-list {
  margin: 24px 0 25px;
  padding: 0;
  list-style: none;
}

.kr-check-list li {
  position: relative;
  margin: 0 0 11px;
  padding-left: 22px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.55;
}

.kr-check-list li::before {
  position: absolute;
  left: 0;
  top: 0.44em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
  content: "";
}

.kr-guide__visual {
  position: relative;
  grid-area: visual;
  min-height: 510px;
}

.kr-guide__page {
  position: absolute;
  display: block;
  border: 1px solid rgba(157, 76, 81, 0.18);
  border-radius: 6px;
  background: var(--surface-warm);
  box-shadow: 0 22px 42px rgba(62, 36, 27, 0.16);
  object-fit: contain;
}

.kr-guide__page--cover {
  z-index: 4;
  top: 14px;
  left: 0;
  width: 43%;
  transform: rotate(-0.8deg);
}

.kr-guide__page--welcome {
  z-index: 1;
  top: 46px;
  right: 2%;
  width: 60%;
  transform: rotate(1.2deg);
}

.kr-guide__page--transition {
  z-index: 3;
  top: 122px;
  right: 0;
  width: 27%;
  transform: rotate(1.7deg);
}

.kr-guide__page--method {
  z-index: 5;
  bottom: 2px;
  left: 39%;
  width: 28%;
  transform: rotate(0.6deg);
}

.kr-guide__page--tracker {
  z-index: 2;
  right: 20%;
  bottom: 14px;
  width: 22%;
  transform: rotate(-1.6deg);
}

.kr-guide__details {
  display: grid;
  grid-area: details;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  margin: 28px 0 0;
}

.kr-guide__details div {
  min-width: 0;
}

.kr-guide__details dt {
  color: var(--deep-rose);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.kr-guide__details dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

/* Featured stories */
.kr-featured {
  padding: 48px var(--kr-page-pad) 56px;
  background: var(--surface-warm);
}

.kr-section-intro--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.kr-section-intro--split > a,
.kr-founder__copy > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--deep-rose);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.kr-section-intro--split > a:hover,
.kr-founder__copy > a:hover {
  color: var(--cocoa);
  text-decoration: underline;
}

.kr-featured .kr-section-intro h2 {
  font-size: clamp(38px, 3.8vw, 52px);
}

.kr-home-page .kr-featured-grid {
  display: grid;
  max-width: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.kr-home-page .kr-featured-grid .story-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: visible;
  border: 1px solid rgba(157, 76, 81, 0.17);
  border-radius: 12px;
  background: var(--cream);
  box-shadow: 0 12px 24px rgba(62, 36, 27, 0.07);
}

.kr-home-page .kr-featured-grid .story-card-image-link {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.kr-home-page .kr-featured-grid .story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  transition: transform 200ms ease;
}

.kr-home-page .kr-featured-grid .story-card-image-link[href*="rest-guilt"] img {
  object-position: 50% 42%;
}

.kr-home-page .kr-featured-grid .story-card-image-link[href*="worth-keeping"] img {
  object-position: 50% 34%;
}

.kr-home-page .kr-featured-grid .story-card-image-link[href*="tired-thought"] img {
  object-position: 50% 22%;
}

.kr-home-page .kr-featured-grid .story-card:hover img {
  transform: scale(1.025);
}

.kr-home-page .kr-featured-grid .story-card-content {
  display: flex;
  min-height: 0;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.kr-home-page .kr-featured-grid .mini-eyebrow,
.kr-home-page .kr-featured-grid .story-card-content > p:not(.mini-eyebrow) {
  display: none;
}

.kr-home-page .kr-featured-grid h3 {
  margin: 0;
  font-size: clamp(26px, 2.15vw, 32px);
  line-height: 1.16;
}

.kr-home-page .kr-featured-grid h3 a {
  text-decoration: none;
}

.kr-home-page .kr-featured-grid .text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  font-size: 14px;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

/* Reset shelf */
.kr-shelf {
  padding: 54px var(--kr-page-pad) 62px;
  background: var(--cream);
}

.kr-shelf .kr-section-intro h2 {
  font-size: clamp(42px, 4.4vw, 61px);
  text-transform: uppercase;
}

.kr-shelf .kr-section-intro p {
  max-width: 760px;
  margin: 1px 0 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
}

.kr-shelf-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 18px;
  align-items: stretch;
}

.kr-shelf-grid > a {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: stretch;
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(157, 76, 81, 0.18);
  border-radius: 10px;
  background: var(--surface-warm);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.kr-shelf-card__content {
  display: grid;
  min-width: 0;
  grid-template-rows: auto 1fr auto;
  align-content: stretch;
}

.kr-shelf-grid > a:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(62, 36, 27, 0.08);
}

.kr-shelf-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  background: var(--surface-warm);
}

.kr-shelf-photo--contain {
  padding: 7px;
  object-fit: contain;
  object-position: center;
  background:
    linear-gradient(135deg, rgba(255, 247, 244, 0.82), rgba(245, 223, 221, 0.86)),
    url("/assets/soft-background.jpg") center 72% / cover;
}

.kr-shelf-grid > a:nth-child(2) .kr-shelf-photo {
  object-position: center 38%;
}

.kr-shelf-grid > a:nth-child(3) .kr-shelf-photo {
  object-position: center 34%;
}

.kr-shelf-grid > a:nth-child(4) .kr-shelf-photo {
  object-position: center 35%;
}

.kr-shelf-grid strong {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 14px 14px 11px;
  color: var(--cocoa);
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
  text-align: center;
  text-transform: uppercase;
}

.kr-shelf-grid .kr-shelf-card__content p {
  margin: 0;
  padding: 0 14px 14px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.kr-shelf-grid span {
  display: flex;
  min-height: 46px;
  align-items: center;
  margin-top: 0;
  justify-content: center;
  padding: 11px 13px;
  border-top: 1px solid rgba(157, 76, 81, 0.14);
  background: rgba(245, 223, 221, 0.56);
  color: var(--deep-rose);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

@supports (aspect-ratio: 16 / 9) {
  .kr-shelf-photo {
    height: auto;
  }
}

/* Founder */
.kr-founder {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  padding: 40px var(--kr-page-pad);
  background: var(--surface-warm);
}

.kr-founder__photo {
  display: block;
  width: 100%;
  aspect-ratio: 1.08;
  border-radius: 18px;
  object-fit: cover;
}

.kr-founder__copy h2 {
  max-width: 660px;
  font-size: clamp(30px, 3.1vw, 43px);
  line-height: 1.08;
}

.kr-founder__copy > p:not(.kr-eyebrow) {
  max-width: 650px;
  margin: 15px 0 18px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.68;
}

/* Newsletter and footer */
.kr-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.8fr);
  gap: 60px;
  align-items: center;
  padding: 44px var(--kr-page-pad);
  background: var(--soft-pink);
}

.kr-newsletter h2 {
  font-size: clamp(38px, 4vw, 52px);
}

.kr-newsletter > div:first-child > p:not(.kr-eyebrow) {
  max-width: 650px;
  margin: 8px 0 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.65;
}

.kr-newsletter__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.kr-newsletter__form input {
  min-width: 0;
  min-height: 47px;
  padding: 0 16px;
  border: 1px solid rgba(157, 76, 81, 0.22);
  border-radius: 7px;
  background: var(--cream);
  color: var(--cocoa);
  font: 16px var(--sans);
}

.kr-newsletter__form button {
  min-height: 47px;
  padding-inline: 24px;
  border-radius: 7px;
  font-size: 14px;
  text-transform: uppercase;
}

.kr-newsletter .privacy {
  margin: 8px 0 0;
  font-size: 13px;
}

@media (max-width: 1080px) {
  .kr-home-page {
    --kr-page-pad: clamp(24px, 5vw, 54px);
  }

  .kr-home-header {
    gap: 24px;
  }

  .kr-home-nav {
    gap: 16px;
  }

  .kr-home-nav a {
    font-size: 14px;
  }

  .kr-home-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  }

  .kr-guide {
    grid-template-columns: minmax(300px, 0.8fr) minmax(400px, 1.2fr);
    column-gap: 50px;
  }

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

  .kr-founder {
    grid-template-columns: 260px 1fr;
  }

}

@media (max-width: 980px) {
  .kr-home-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .kr-home-hero__copy {
    max-width: 760px;
    padding-bottom: 0;
  }

  .kr-home-hero h1 {
    max-width: 760px;
  }

  .kr-home-hero__visual {
    min-height: 460px;
  }
}

@media (max-width: 840px) {
  .kr-home-hero {
    grid-template-columns: 1fr;
  }

  .kr-home-hero__copy {
    padding-bottom: 0;
  }

  .kr-home-hero h1 {
    max-width: 760px;
  }

  .kr-home-hero__visual {
    min-height: 460px;
  }

  .kr-guide {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "visual" "offer" "details";
  }

  .kr-guide__copy h2 {
    max-width: 720px;
  }

  .kr-guide__visual {
    width: min(100%, 650px);
    margin: 22px auto 0;
  }

  .kr-home-page .kr-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .kr-founder {
    grid-template-columns: 220px 1fr;
  }

  .kr-newsletter {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .kr-home-page {
    --kr-page-pad: 18px;
  }

  .kr-home-page main h2 {
    font-size: 38px;
  }

  .kr-eyebrow {
    margin-bottom: 9px;
    font-size: 12px;
  }


  .kr-header-cta {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .kr-home-hero {
    gap: 12px;
    padding-top: 24px;
    padding-bottom: 8px;
  }

  .kr-home-hero__copy {
    padding: 0;
  }

  .kr-home-hero h1 {
    font-size: clamp(42px, 12.7vw, 54px);
    line-height: 1;
  }

  .kr-desktop-actions {
    display: none;
  }

  .kr-home-hero__lede {
    display: block;
    max-width: none;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.58;
    letter-spacing: -0.01em;
  }

  .kr-home-hero__visual {
    min-height: 0;
    aspect-ratio: 1.47;
    border-radius: 16px;
    box-shadow: none;
  }

  .kr-home-hero__visual img {
    object-position: 55% center;
  }

  .kr-home-hero__visual figcaption {
    display: none;
  }

  .kr-mobile-hero-cta {
    display: inline-flex;
    width: 100%;
  }

  .kr-method__intro {
    margin-bottom: 24px;
  }

  .kr-method__intro h2 {
    font-size: clamp(34px, 9.7vw, 37px);
    white-space: normal;
    text-wrap: balance;
  }

  .kr-method__intro > p:not(.kr-eyebrow) {
    display: block;
  }

  .kr-method__button {
    display: inline-flex;
    width: 100%;
  }

  .kr-guide {
    padding-top: 46px;
    padding-bottom: 42px;
  }

  .kr-guide__visual {
    min-height: 335px;
    margin-top: 15px;
  }

  .kr-guide__page:not(.kr-guide__page--cover) {
    display: none;
  }

  .kr-guide__page--cover {
    top: 0;
    right: auto;
    bottom: auto;
    left: 50%;
    width: 205px;
    height: auto;
    transform: translateX(-50%);
  }

  .kr-guide__offer {
    display: grid;
  }

  .kr-check-list {
    margin-top: 4px;
  }

  .kr-check-list li {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .kr-guide__offer .kr-button {
    width: 100%;
  }

  .kr-guide__details {
    display: none;
  }

  .kr-featured {
    padding-top: 38px;
    padding-bottom: 42px;
  }

  .kr-featured .kr-section-intro {
    margin-bottom: 20px;
  }

  .kr-featured .kr-section-intro h2 {
    font-size: 38px;
    text-transform: none;
  }

  .kr-featured .kr-section-intro .kr-eyebrow,
  .kr-featured .kr-section-intro > a {
    display: block;
  }

  .kr-featured .kr-section-intro > a {
    min-height: 44px;
    padding-top: 12px;
  }

  .kr-featured .kr-section-intro--split {
    display: block;
  }

  .kr-home-page .kr-featured-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .kr-home-page .kr-featured-grid .story-card {
    display: flex;
    min-height: 0;
    border-radius: 13px;
    box-shadow: none;
  }

  .kr-home-page .kr-featured-grid .story-card-image-link {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .kr-home-page .kr-featured-grid .story-card img {
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
  }

  .kr-home-page .kr-featured-grid .story-card-content {
    min-height: 0;
    padding: 21px;
  }

  .kr-home-page .kr-featured-grid h3 {
    font-size: 26px;
  }

  .kr-home-page .kr-featured-grid .text-link {
    font-size: 14px;
  }

  .kr-shelf {
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .kr-shelf .kr-section-intro {
    margin-bottom: 18px;
  }

  .kr-shelf .kr-section-intro h2 {
    font-size: 34px;
  }

  .kr-shelf-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 10px;
  }

  .kr-shelf-grid > a {
    grid-template-columns: clamp(112px, 34vw, 128px) minmax(0, 1fr);
    grid-template-rows: auto;
    min-height: 154px;
    height: auto;
    border: 1px solid rgba(157, 76, 81, 0.18);
    border-radius: 12px;
    background: var(--surface-warm);
  }

  .kr-shelf-photo {
    grid-column: 1;
    grid-row: 1;
    height: 100%;
    min-height: 154px;
    aspect-ratio: auto;
    border-radius: 0;
  }

  .kr-shelf-card__content {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 11px 12px;
  }

  .kr-shelf-grid strong {
    min-height: 0;
    justify-content: flex-start;
    padding: 0;
    font-size: 14px;
    text-align: left;
  }

  .kr-shelf-grid .kr-shelf-card__content p {
    padding: 0;
    font-size: 12px;
    line-height: 1.42;
    text-align: left;
  }

  .kr-shelf-grid span {
    display: flex;
    min-height: 0;
    justify-content: flex-start;
    margin-top: 1px;
    padding: 7px 0 0;
    background: transparent;
    font-size: 12px;
  }

  .kr-founder {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 36px;
    padding-bottom: 38px;
  }

  .kr-founder__photo {
    width: min(100%, 340px);
    aspect-ratio: 0.82;
    border-radius: 13px;
  }

  .kr-founder__copy h2 {
    font-size: 34px;
    line-height: 1.1;
  }

  .kr-founder__copy > p:not(.kr-eyebrow) {
    display: block;
  }

  .kr-founder__copy > a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .kr-newsletter {
    display: grid;
  }

  .kr-newsletter__form {
    grid-template-columns: 1fr;
  }

  .kr-method__intro > p:not(.kr-eyebrow),
.kr-shelf .kr-section-intro p,
.kr-founder__copy > p:not(.kr-eyebrow),
.kr-newsletter > div:first-child > p:not(.kr-eyebrow) {
    font-size: 16px;
    line-height: 1.65;
  }

}

/* Keep the homepage header on the same compact mobile navigation system as
   interior pages; this intentionally follows the earlier responsive rules. */
@media (max-width: 900px) {
  .kr-home-header {
    position: sticky;
    top: 0;
    display: grid;
    min-height: 68px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 10px var(--kr-page-pad);
  }

  .kr-home-header > .kr-home-nav,
  .kr-home-header > .kr-header-cta {
    display: none;
  }
}

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

/* Approved homepage editorial treatment.
   This is the single authority for the homepage on desktop and mobile. */

/* Lighter reader-recognition cards */
.kr-home-page .kr-pain-strip {
  padding: clamp(38px, 4.5vw, 56px) var(--kr-page-pad) clamp(42px, 5vw, 62px);
  border-top: 1px solid rgba(157, 76, 81, 0.12);
  border-bottom: 1px solid rgba(157, 76, 81, 0.16);
  background:
    radial-gradient(circle at 91% 6%, rgba(201, 114, 120, 0.11), transparent 24rem),
    radial-gradient(circle at 7% 92%, rgba(244, 213, 141, 0.1), transparent 20rem),
    linear-gradient(180deg, #fffaf7, #f8ebe7);
}

.kr-home-page .kr-strip-title {
  width: min(1180px, 100%);
  max-width: none;
  margin: 0 auto 24px;
  color: var(--cocoa);
  font-family: var(--serif);
  font-size: clamp(36px, 3.7vw, 50px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  text-align: left;
}

.kr-home-page .kr-strip-title::after {
  width: 54px;
  height: 2px;
  margin: 12px 0 0;
}

.kr-home-page .kr-pain-grid {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin: 0 auto;
}

.kr-home-page .kr-pain-grid article,
.kr-home-page .kr-pain-grid article:first-child,
.kr-home-page .kr-pain-grid article:last-child {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 258px;
  flex-direction: column;
  padding: 27px 25px 24px;
  overflow: hidden;
  border: 1px solid rgba(157, 76, 81, 0.17);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 15px 34px rgba(62, 36, 27, 0.07);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.kr-home-page .kr-pain-grid article:nth-child(2) {
  background: rgba(255, 247, 244, 0.96);
}

.kr-home-page .kr-pain-grid article:nth-child(3) {
  background: rgba(253, 242, 239, 0.96);
}

.kr-home-page .kr-pain-grid article::before {
  position: relative;
  z-index: 1;
  display: block;
  width: 44px;
  height: 2px;
  flex: 0 0 auto;
  margin-bottom: 21px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--deep-rose), rgba(201, 114, 120, 0.45));
  content: "";
}

.kr-home-page .kr-pain-grid article::after {
  position: absolute;
  top: -58px;
  right: -54px;
  width: 150px;
  aspect-ratio: 1;
  border: 1px solid rgba(157, 76, 81, 0.11);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 114, 120, 0.09), rgba(201, 114, 120, 0.015) 64%, transparent 65%);
  content: "";
  pointer-events: none;
}

.kr-home-page .kr-pain-grid article > div {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
}

.kr-home-page .kr-pain-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(157, 76, 81, 0.3);
  box-shadow: 0 19px 40px rgba(62, 36, 27, 0.1);
}

.kr-home-page .kr-pain-grid h2 {
  max-width: 16ch;
  min-height: 0;
  margin: 0 0 14px;
  color: var(--cocoa);
  font-size: clamp(27px, 2.15vw, 32px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.kr-home-page .kr-pain-grid article > div > p:not(.kr-pain-card__action) {
  max-width: 35ch;
  margin: 0;
  color: #6c5a53;
  font-size: 14px;
  line-height: 1.62;
}

.kr-home-page .kr-pain-grid .kr-pain-card__action {
  max-width: 35ch;
  margin: auto 0 0;
  padding-top: 17px;
  border-top: 1px solid rgba(157, 76, 81, 0.13);
  color: #6c5a53;
  font-size: 13.5px;
  line-height: 1.58;
}

.kr-home-page .kr-pain-grid a {
  padding: 1px 3px 2px;
  border-radius: 4px;
  background: rgba(157, 76, 81, 0.09);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: var(--deep-rose);
  font-weight: 800;
  text-decoration-color: rgba(157, 76, 81, 0.52);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.kr-home-page .kr-pain-grid a:hover,
.kr-home-page .kr-pain-grid a:focus-visible {
  background: var(--deep-rose);
  color: white;
  text-decoration-color: white;
}

/* Face • Space • Emotions */
.kr-home-page .kr-method {
  position: relative;
  overflow: hidden;
  padding: 58px var(--kr-page-pad) 66px;
  background:
    radial-gradient(circle at 88% 12%, rgba(244, 213, 141, 0.12), transparent 22rem),
    radial-gradient(circle at 8% 92%, rgba(201, 114, 120, 0.16), transparent 26rem),
    linear-gradient(135deg, #3f0615, #65152d 58%, #4a0618);
}

.kr-home-page .kr-method::before {
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(244, 213, 141, 0.22);
  border-bottom: 1px solid rgba(244, 213, 141, 0.18);
  content: "";
  pointer-events: none;
}

.kr-home-page .kr-method__intro {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(940px, 100%);
  margin: 0 auto 32px;
  text-align: center;
}

.kr-home-page .kr-method__intro .kr-eyebrow {
  margin-bottom: 10px;
  color: #f4d58d;
}

.kr-home-page .kr-method__intro h2 {
  margin: 0;
  color: #fff8ef;
  font-size: clamp(48px, 5.4vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.kr-home-page .kr-method__intro h2 span {
  color: #f4d58d;
  font-size: 0.46em;
  vertical-align: 0.16em;
}

.kr-home-page .kr-method__intro > p:not(.kr-eyebrow) {
  max-width: 680px;
  margin: 14px auto 0;
  color: #f7e7e2;
  font-size: 18px;
  line-height: 1.55;
}

.kr-home-page .kr-method__button {
  margin-top: 20px;
  border-color: #f4d58d;
  background: linear-gradient(#fff9e9, #f1d28e);
  color: #3a0c16;
  box-shadow: 0 10px 24px rgba(20, 0, 7, 0.24);
}

.kr-home-page .kr-method__button:hover,
.kr-home-page .kr-method__button:focus-visible {
  border-color: #fff1c9;
  background: #fff1c9;
  color: #3a0c16;
}

.kr-home-page .kr-method-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.kr-home-page .kr-method-card {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-rows: 260px auto;
  overflow: hidden;
  border: 1px solid rgba(244, 213, 141, 0.42);
  border-radius: 18px;
  background: #fffaf6;
  box-shadow: 0 20px 44px rgba(22, 2, 8, 0.28);
}

.kr-home-page .kr-method-card > img {
  display: block;
  width: 100%;
  height: 260px;
  aspect-ratio: auto;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(157, 76, 81, 0.16);
  background: #f4e1dd;
  object-fit: cover;
}

.kr-home-page .kr-method-card:first-child > img { object-position: 50% 28%; }
.kr-home-page .kr-method-card:nth-child(2) > img { object-position: 50% 52%; }
.kr-home-page .kr-method-card:nth-child(3) > img { object-position: 50% 42%; }

.kr-home-page .kr-method-card__body {
  position: relative;
  display: block;
  min-height: 0;
  padding: 24px 22px 26px;
}

.kr-home-page .kr-method-card__body::before {
  display: block;
  width: 38px;
  height: 2px;
  margin-bottom: 15px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d9aa54, #f4d58d);
  content: "";
}

.kr-home-page .kr-method-card__body > div {
  display: block;
}

.kr-home-page .kr-method-card__body p {
  margin: 0 0 7px;
  color: var(--deep-rose);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.kr-home-page .kr-method-card__body h3 {
  margin: 0;
  color: var(--cocoa);
  font-family: var(--serif);
  font-size: clamp(27px, 2.3vw, 33px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

/* Reset Shelf intro uses one column and one full-shelf link. */
.kr-home-page .kr-shelf .kr-section-intro {
  display: block;
  width: min(1180px, 100%);
  margin-right: auto;
  margin-bottom: 24px;
  margin-left: auto;
}

.kr-home-page .kr-shelf .kr-section-intro > div {
  max-width: 820px;
}

@media (max-width: 900px) {
  .kr-home-page .kr-pain-grid {
    width: min(680px, 100%);
    grid-template-columns: 1fr;
  }

  .kr-home-page .kr-pain-grid article,
  .kr-home-page .kr-pain-grid article:first-child,
  .kr-home-page .kr-pain-grid article:last-child {
    min-height: 0;
  }

  .kr-home-page .kr-pain-grid .kr-pain-card__action {
    margin-top: 18px;
  }

  .kr-home-page .kr-method-grid {
    width: min(680px, 100%);
    grid-template-columns: 1fr;
  }

  .kr-home-page .kr-method-card {
    grid-template-columns: minmax(230px, 0.42fr) minmax(0, 0.58fr);
    grid-template-rows: auto;
    min-height: 250px;
  }

  .kr-home-page .kr-method-card > img {
    width: 100%;
    height: 100%;
    min-height: 250px;
  }

  .kr-home-page .kr-method-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 26px;
  }
}

@media (max-width: 560px) {
  .kr-home-page .kr-pain-strip {
    padding: 31px 18px 36px;
  }

  .kr-home-page .kr-strip-title {
    margin-bottom: 18px;
    font-size: clamp(31px, 9vw, 39px);
  }

  .kr-home-page .kr-pain-grid {
    gap: 12px;
  }

  .kr-home-page .kr-pain-grid article,
  .kr-home-page .kr-pain-grid article:first-child,
  .kr-home-page .kr-pain-grid article:last-child {
    padding: 21px 19px 20px;
    border-radius: 16px;
  }

  .kr-home-page .kr-pain-grid article::before {
    width: 40px;
    margin-bottom: 15px;
  }

  .kr-home-page .kr-pain-grid article::after {
    top: -70px;
    right: -70px;
  }

  .kr-home-page .kr-pain-grid h2 {
    margin-bottom: 11px;
    font-size: 27px;
  }

  .kr-home-page .kr-pain-grid article > div > p:not(.kr-pain-card__action),
  .kr-home-page .kr-pain-grid .kr-pain-card__action {
    font-size: 14px;
    line-height: 1.56;
  }

  .kr-home-page .kr-pain-grid .kr-pain-card__action {
    margin-top: 15px;
    padding-top: 14px;
  }

  .kr-home-page .kr-method {
    padding: 46px 18px 50px;
  }

  .kr-home-page .kr-method__intro {
    margin-bottom: 24px;
  }

  .kr-home-page .kr-method__intro h2 {
    font-size: clamp(39px, 11.8vw, 50px);
  }

  .kr-home-page .kr-method__intro > p:not(.kr-eyebrow) {
    font-size: 16px;
  }

  .kr-home-page .kr-method__button {
    width: 100%;
  }

  .kr-home-page .kr-method-grid {
    gap: 14px;
  }

  .kr-home-page .kr-method-card {
    display: grid;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    border-radius: 15px;
  }

  .kr-home-page .kr-method-card > img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 2;
    padding: 0;
    object-fit: contain;
    object-position: center;
  }

  .kr-home-page .kr-method-card__body {
    display: block;
    padding: 21px 18px 22px;
  }

  .kr-home-page .kr-method-card__body::before {
    margin-bottom: 12px;
  }

  .kr-home-page .kr-method-card__body h3 {
    font-size: clamp(25px, 7.4vw, 30px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .kr-home-page .kr-pain-grid article,
  .kr-home-page .kr-method-card {
    transition: none;
  }
}
